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

/*ヘッダーモバイルボタンの色と高さ、アイコンの位置を変更*/

.logo-menu-button.menu-button{
	background-color: #2b2b2b;
	height: 60px;
}

.search-menu-button.menu-button,
.navi-menu-button.menu-button{
	background-color: #2b2b2b;
	color: #ffffff;
	height: 60px;
	padding-top: 5px;
}

.mobile-menu-buttons{
	background: #2b2b2b;
height: 60px;

}
/************************************/
/* スマホ（768px以下）の固定お問い合わせボタン */
/************************************/
@media screen and (max-width: 768px) {
  .fixed-contact-buttons {
    position: fixed !important; 
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background: transparent !important;
    text-align: center !important;
    padding: 10px 0 !important;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1) !important;

    display: flex !important; 
    flex-direction: column !important; 
    gap: 10px !important; 
    align-items: center !important;
  }

  .fixed-contact-buttons a {
    display: inline-block !important;
    width: 90% !important;           /* 横幅は90%（お好みで100%でもOK） */
    max-width: 600px !important;     /* 必要なら最大幅 */
    color: #fff !important;
    padding: 25px 0 !important;      /* ★上下のpaddingで“高さ”を太く！ */
    font-size: 18px !important;      /* 必要なら文字も少し大きめ */
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: bold !important;
  }

  /* お問い合わせボタンの多色グラデーション */
  .fixed-contact-buttons a.btn-contact {
    background: linear-gradient(to right, 
      #FFD700,  /* 黄色 */
      #FF0000,  /* 赤 */
      #800080,  /* 紫 */
      #00FF00   /* 緑 */
    ) !important;
  }

  /* 固定ボタン分の下余白を確保 */
  body {
    padding-bottom: 150px !important;
  }
}

/************************************/
/* PC（769px以上）の固定お問い合わせボタン */
/************************************/
@media screen and (min-width: 769px) {
  .fixed-contact-buttons {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background: transparent !important;
    text-align: center !important;
    padding: 10px 0 !important;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1) !important;

    flex-direction: row !important; 
    gap: 10px !important;
    justify-content: center !important; 
    align-items: center !important;
  }

  .fixed-contact-buttons a {
    display: inline-block !important;
    padding: 25px 60px !important;   /* ★上下padding大きめで“高さ”を太く！左右もゆったり */
    font-size: 18px !important;      /* 必要なら文字も少し大きめ */
    border-radius: 50px !important;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    max-width: none !important;
    width: auto !important;
  }

  .fixed-contact-buttons a.btn-contact {
    background: linear-gradient(to right, 
      #FFD700,  /* 黄色 */
      #FF0000,  /* 赤 */
      #800080,  /* 紫 */
      #00FF00   /* 緑 */
    ) !important;
  }
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 10px 0;
}

.social-icons i {
  font-size: 32px;
  transition: color 0.3s;
}

.social-icons a.tiktok-icon i {
  color: #69C9D0;
}

.social-icons a.insta-icon i {
  color: #E4405F;
}

.social-icons a.youtube-icon i {
  color: #FF0000;
}

.social-icons a.x-icon i {
  color: #1DA1F2;
}

.social-icons a:hover i {
  opacity: 0.8;
}

.members-instagram {
  margin-top: 20px;
  display: flex;
  flex-direction: column;  /* 縦並び */
  align-items: center;     /* 中央寄せ */
  gap: 12px;               /* 各メンバーの上下スペース */
  max-width: 300px;        /* 必要に応じて調整 */
  margin-left: auto;
  margin-right: auto;
}

.member {
  width: 100%;
  text-align: center;
}

.member a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  gap: 8px;
  transition: color 0.3s;
}

.member a:hover i {
  color: #E4405F;
}

.member a i {
  font-size: 24px;
  color: #C13584;
}