@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
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/

.site-name-text {
  white-space: nowrap;
  font-size: 2.2rem;
}

.site-description {
  white-space: nowrap;
  font-size: 1.2rem;
}


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

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

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

/* Cocoonのロゴタイトルを中央寄せ＆幅制限 */
.logo .logo-header .site-name-text {
  white-space: nowrap !important;
  font-size: 2.2rem !important;
  max-width: 90% !important;
  display: block !important;
  margin: 0 auto !important;
  text-align: center !important;
  line-height: 1.4 !important;
}

/* 親テーマに影響を出さず、span要素の表示だけ制御する */
.logo .site-name {
  display: block;
  text-align: center;
}

.logo .site-name-text {
  display: inline-block;
  max-width: 90%;
  white-space: normal;
  font-size: 2.2rem;
  line-height: 1.4;
  word-break: break-word;
}

.word-break: break-word;
}

