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

.new-entry-cards.large-thumb {
display: flex;
flex-wrap: wrap;
}

.new-entry-cards.large-thumb a {
width: 33.333%;
}

/768px以下/
@media screen and (max-width: 768px){
.new-entry-cards.large-thumb a {
width: 50%;
}
}

/480px以下/
@media screen and (max-width: 480px){
.new-entry-cards.large-thumb a {
width: 100%;
}
}
/* 投稿ページタイトルを中央揃えに */
.entry-title {
  text-align: center;
}

.sns-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.sns-icons img {
  width: 26px;
  height: 26px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.2s ease;
}

.sns-icons img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.page-id-/about/ .entry-content p {
  line-height: 1.4; /* ちょっとタイトで上品に */
}
/* トップページのみにロゴをメニューバー下に表示 */
.home .header {
  position: relative;
}

.home .header::after {
  content: "";
  display: block;
  position: relative;
  background: url('https://www.istatata.com/wp-content/uploads/2025/11/title.png') no-repeat center center;
  background-size: contain;
  width: 400px;   /* ← ロゴの横幅（ここで大きさ調整） */
  height: 85px;   /* ← ロゴの高さ */
  margin: 1px auto 0; /* メニューバー下との余白調整 */
}

/* スマホサイズのときロゴを少し小さくする */
@media screen and (max-width: 767px) {
  .home .header::after {
    width: 300px;   /* ←スマホ用の幅（お好みで調整） */
    height: 50px;   /* ←スマホ用の高さ */
    background-size: contain;
  }
}
/* トップページのヘッダーとメイン画像の間の余白を詰める */
.home .header-container {
  margin-bottom: 0;
  padding-bottom: 0;
}

.home .header {
  margin-bottom: 0;
  padding-bottom: 0;
}

.home .main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.home #content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.home .header::after {
  margin-bottom: 5px;
}
.page-id-/about/ .entry-content p {
  line-height: 1.7;
}
.footer {
  background: #f9f9f9;
}
.sns-icons img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.15);
  transition: all 0.25s ease;
}


/* Contact 見出しをすっきり＋ちょい手描き感 */
.page .entry-title {
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  border-bottom: 2px solid #e5e5e5;
  padding-bottom: 8px;
  margin-bottom: 24px;
  position: relative;
}


/* 文章の行間を軽く広げて読みやすく */
.entry-content {
  line-height: 1.9;
  font-size: 1.05rem;
}
/* Contactフォーム全体を整える */
.wpcf7 form {
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
/* 入力ボックスのデザイン */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  font-size: 1rem;
  background: #fafafa;
  transition: 0.2s ease;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  background: #fff;
  border-color: #999;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}
/* 送信ボタンを整える */
.wpcf7 input[type="submit"] {
  background: #222;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: 0.25s ease;
}

.wpcf7 input[type="submit"]:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
/* 手描き風ライン（さりげない遊び） */
.contact-illust-divider {
  width: 80px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    #999,
    #999 6px,
    transparent 6px,
    transparent 9px
  );
  margin: 20px 0 28px;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .wpcf7 form {
    padding: 16px 18px;
  }
  .page .entry-title {
    font-size: 1.8rem;
  }
}
/* 送信ボタンに紙飛行機アイコンを付ける */
.wpcf7 input[type="submit"] {
  position: relative;
  padding-left: 40px; /* アイコン分スペース */
}

/* アイコン部分 */
.wpcf7 input[type="submit"]::before {
  content: "✈︎"; /* 好きなアイコンに変更OK */
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  opacity: 0.9;
}
/* Contactページ最後のひとこと枠 */
.contact-message-box {
  margin-top: 40px;
  padding: 20px 24px;
  border-left: 4px solid #999;
  background: #f9f9f9;
  border-radius: 8px;
  line-height: 1.9;
  font-size: 1.05rem;
}

.contact-message-box strong {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 6px;
}

/* フォーム内テキスト（入力欄・テキストエリアなど）のフォントサイズを少し下げる */
.wpcf7-form-control {
  font-size: 0.95rem; /* 今のサイズより少し控えめに */
}

/* ラベル（項目名など）の文字サイズ */
.wpcf7-form .wpcf7-form-control-wrap label {
  font-size: 0.9rem;
}

/* 送信ボタンの文字サイズを微調整 */
.wpcf7 input[type="submit"] {
  font-size: 1rem; /* ボタンは少し大きめか標準くらいに */
}
