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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/*全てをまとめて非表示*/
.home.page .entry-title,
.home.page .sns-share,
.home.page .sns-follow,
.home.page .date-tags,
.home.page .author-info{
  display: none;
}
/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

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

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

/* 
* ヘッダーロゴ(テキスト)の反対側に問い合わせボタン表示
*/
div#header-in {
  /* ヘッダーロゴ(テキスト)と問い合わせボタンを横並び */
  flex-direction: row;
}
.header-in .logo-header {
  /* ヘッダーロゴ(テキスト)と問い合わせボタンの位置を両端にする */
  margin-right: auto;
}
.header-contact {
  /* 問い合わせボタンにパディングを追加（見た目を整える） */
  padding: 10px 0;
}

}
.header-in {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.header-in:after {
  content: none;
}

.logo-text {
  padding: 10px 0;
}

.my-header {
  align-items: center;
  display: flex;
  gap: 10px;
}

.my-box > div {
  font-size: 12px;
}

.my-box .my-phone,
.my-box .my-phone a {
  color: #333;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: bold;
  text-decoration: none;
}

html .my-header .btn-wrap {
  margin-bottom: 0;
}

.my-header .btn-wrap a {
  font-size: clamp(10px, 2vw, 16px);
}

@media (width > 768px) {
  a[href*="tel:"] {
    pointer-events: none;
  }
}