@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){
  /*必要ならばここにコードを書く*/
}


/* === 3カラム（ロゴ＋住所電話＋画像&リンク）カスタム === */
.custom-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.custom-header-left {
  flex: 1;
  text-align: center;
}

.custom-header-center {
  flex: 1;
  text-align: center;
}

.custom-header-right {
  flex: 1;
  text-align: center;
}

.header-contact-info {
  font-size: 14px;
  line-height: 1.6;
}

.header-contact-info .header-tel a {
  color: #0073aa;
  text-decoration: none;
}

.header-contact-info .header-tel a:hover {
  text-decoration: underline;
}

/* モバイルでは縦並び */
@media (max-width: 768px) {
  .custom-header-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
　.custom-header-left,
  .custom-header-center,
  .custom-header-right {
    text-align: center;
    margin: 10px auto 0 auto; /* ← 要素自体を中央に配置 */
    width: fit-content; /* 必要に応じて幅を調整 */

  }
}