@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}

@media screen and (max-width: 834px) {
  .home .header-in {
    height: 250px;/好みの高さ*/
  }
}

/* 特定のページのスタイルを設定・ヘッダー高さ */
/*特徴*/
.page-id-60 #header { 
    height: 140px
}

/*サービスの内容*/
.page-id-244 #header { 
    height: 140px
}

/*セミナー*/
.page-id-7 #header { 
    height: 140px
}

/*フォルクスについて*/
.page-id-22 #header { 
    height: 140px
}

/*ブログ*/
.page-id-315 #header { 
    height: 140px
}

/*問い合わせフォーム*/
.page-id-23 #header { 
    height: 140px
}

/*問い合わせフォーム*/
.page-id-11 #header { 
    height: 140px
}

/*M&A支援機関登録企業について*/
.page-id-376 #header { 
    height: 140px
}

/*投稿ページ・ヘッダー高さ*/
.single .header{
  height: 140px;
} 

.single .header-in{
  height: 140px;
} 

/************************************
** サイトタイトル非表示
************************************/
 
.site-name-text{
  display: none;
}
 
/*ヘッダーレイアウトがトップメニューのとき*/
.header-container-in.hlt-top-menu .site-name-text{
  display: none;
}
 
/*ヘッダーレイアウトがトップメニュー（小）のとき*/
.header-container-in.hlt-top-menu.hlt-tm-small .site-name-text{
  display: none;
}
 
/*端末幅が768px以下のとき*/
@media screen and (max-width: 768px){
  #header .site-name-text{
    display: none;
  }
}
 
/*端末幅が480px以下のとき*/
@media screen and (max-width: 480px){
  #header .site-name-text{
    display: none;
  }
}

/*ページタイトル非表示*/
.entry-title {
display: none;
}

/*モバイルでもカラムを横並び表示*/
@media screen and (max-width: 768px){

.column-wrap{
flex-direction: row !important;
}

}