/* ===== スタジオ情報ボックス ===== */
.studio-info-box {
  background-color: #f8f5db;  /* 背景色（画像の淡いクリーム色） */
  border-radius: 12px;        /* 角丸 */
  padding: 2em 1.5em;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  line-height: 1.7;
  color: #222;
  max-width: 700px;
  margin: 0 auto 2em auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.studio-item {
  margin-bottom: 1.2em;
}

.studio-label {
  display: inline-block;
  background-color: #cc6b2f;   /* オレンジのラベル色 */
  color: #fff;
  font-weight: bold;
  padding: 0.2em 0.8em;
  border-radius: 16px;
  margin-right: 0.8em;
  min-width: 5em;
  text-align: center;
}

.studio-text {
  display: inline-block;
  vertical-align: middle;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .studio-info-box {
    padding: 1.5em 1em;
    font-size: 0.95rem;
  }
  .studio-label {
    display: block;
    margin-bottom: 0.3em;
  }
}

@font-face {
  font-family: "TsunagiGothic";
  src: url("https://umeyashikistudio501.com/wp-content/uploads/2025/10/TsunagiGothic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.info-box {
  font-family: "TsunagiGothic", "Noto Sans JP", sans-serif;
}

@font-face {
  font-family: "TsunagiGothic";
  src: url("https://umeyashikistudio501.com/wp-content/uploads/2025/10/TsunagiGothic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Lightningのボタン全体にフォントを適用 */
.btn,
.btn-block,
.btn-primary,
.wp-block-button__link {
  font-family: "TsunagiGothic", "Noto Sans JP", sans-serif !important;
  font-weight: bold;
  letter-spacing: 0.03em; /* 少し間をあけて読みやすく */
}

/* デザインを今の雰囲気に統一（オプション） */
.btn,
.wp-block-button__link {
  background-color: #ce7b29;  /* オレンジブラウン */
  color: #000;                /* 黒文字 */
  border: 3px solid #000;
  border-radius: 30px;
  padding: 10px 25px;
  transition: 0.2s ease;
}

.btn:hover,
.wp-block-button__link:hover {
  background-color: #f6f3d3;  /* クリーム色に変化 */
  color: #000;
}

/* 固定ページタイトル（上部のヘッダー部分） */
.page-header .page-header-title,
.entry-title {
  font-family: "TsunagiGothic", "Noto Sans JP", sans-serif; /* フォント変更 */
  color: #000 !important;  /* ← オレンジブラウンに */
  font-weight: bold;
  letter-spacing: 0.05em;
}

/* ヘッダーメニューのフォントを変更 */
.global-nav-list > li > a,
.global-nav-list > li > span,
.vk-menu-acc,
.vk-mobile-nav-menu a {
  font-family: "TsunagiGothic", "Noto Sans JP", sans-serif !important;
  font-weight: bold;
  letter-spacing: 0.05em;
}

/* 左上のサイトタイトル（テキストロゴ） */
.site-header-logo a,
.site-header-logo-text {
  font-family: "TsunagiGothic", "Noto Sans JP", sans-serif !important;
  color: #000 !important;        /* ← 黒文字（お好みで変更） */
  font-weight: bold;
  letter-spacing: 0.05em;
  font-size: 28px;               /* ← 大きさも調整可 */
}

/* ホバー時の色（マウスをのせたとき） */
.site-header-logo a:hover {
  color: #ce7b29 !important;     /* ← オレンジブラウンに変化 */
}

/* ▼ 全体ボックスのデザイン */
.wpcf7-form {
  background: #f1f1ce; /* あなたのクリーム色 */
  border: 1px solid #ce7b29; /* オレンジブラウン */
  border-radius: 10px;
  padding: 24px;
  font-family: "Tsunagi Gothic", "游ゴシック体", "Yu Gothic", "Hiragino Sans", "メイリオ", sans-serif;
  color: #333;
  line-height: 1.6;
}

/* ▼ ラベル（項目名） */
.wpcf7-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

/* ▼ テキスト・メール・日付・時間入力欄 */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="date"],
.wpcf7-form textarea {
  width: 100%;
  padding: 8px 10px;
  border: 2px solid #333;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  background-color: #fffaf3;
  box-sizing: border-box;
}

/* ▼ フォーカス時（選択中） */
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: #b66622;
  box-shadow: 0 0 4px rgba(206, 123, 41, 0.4);
}

/* ▼ 送信ボタン */
.wpcf7-submit {
  background: #ce7b29;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 26px;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  margin-top: 10px;
}

.wpcf7-submit:hover {
  background: #b66622;
  transform: translateY(-1px);
}

/* ▼ 送信完了・エラー表示 */
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #ce7b29;
  background-color: #fff5e6;
  color: #333;
}
.wpcf7 form.invalid .wpcf7-response-output {
  border-color: #d93025;
  background-color: #ffeaea;
}

/* ▼ フォント調整（Lightning本文よりやや柔らかく） */
.wpcf7-form p,
.wpcf7-form span,
.wpcf7-form label {
  font-family: "Tsunagi Gothic", "游ゴシック体", "Yu Gothic", "Hiragino Sans", "メイリオ", sans-serif;
}

/* ▼ 送信ボタンを中央寄せに */
.wpcf7-form p:last-of-type {
  text-align: center;
}
.wpcf7-submit {
  display: inline-block;
  margin: 10px auto 0;
}

/* ========== 🌟 スマホ全体の調整セット 🌟 ========== */

/* ▼ 全体の余白・フォント調整 */
body {
  font-family: "Tsunagi Gothic", "游ゴシック体", "Yu Gothic", "Hiragino Sans", "メイリオ", sans-serif;
  line-height: 1.8;
  color: #333;
  background-color: #fffdf8;
}

/* ▼ セクション間の間隔をゆるやかに */
section,
.wp-block-group {
  margin-bottom: 40px;
}

/* ▼ スマホで画像がはみ出さないように */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ▼ テーブルが横にスクロールできるように（料金表など） */
table {
  width: 100%;
  border-collapse: collapse;
}
.wp-block-table,
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ▼ フォーム・地図・iframe類をスマホ幅にフィット */
iframe,
.wpcf7-form,
.google-calendar-wrapper {
  max-width: 100%;
  box-sizing: border-box;
}

/* ▼ Lightning特有の余白をやや広げる */
.site-content {
  padding-left: 4%;
  padding-right: 4%;
}

/* ▼ 見出しをスマホで見やすく（少し小さく） */
@media screen and (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.1rem; }
  p, li, label, td, th {
    font-size: 15px;
  }
  .site-content {
    padding-left: 6%;
    padding-right: 6%;
  }
  /* カレンダーやフォームの上下余白をコンパクトに */
  .wpcf7-form, .google-calendar-wrapper {
    padding: 12px;
  }
}

/* ▼ ボタンのタップ感を上げる */
button,
input[type="submit"],
.wpcf7-submit {
  touch-action: manipulation;
  min-height: 44px;
}

/* ▼ カスタムHTMLブロックの文字スタイル統一 */
.entry-content .wp-block-html,
.wp-block-html,
.custom-html,
.custom-html p,
.custom-html span,
.custom-html div {
  font-family: "Tsunagi Gothic", "游ゴシック体", "Yu Gothic", "Hiragino Sans", "メイリオ", sans-serif;
  font-size: 16px; /* ← 通常本文と同じくらいに統一 */
  line-height: 1.8;
  color: #333;
}

/* スマホでは少し小さめ */
@media screen and (max-width: 600px) {
  .entry-content .wp-block-html,
  .wp-block-html,
  .custom-html {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* ▼ 左ラベル＋右テキストのレイアウト調整 */
.custom-html .label-row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap; /* スマホで折り返し可 */
  margin-bottom: 6px;
}

/* 左側ラベル部分 */
.custom-html .label-row .label {
  flex: 0 0 110px; /* ← ラベル幅をここで調整（小さくしたいなら90〜110px） */
  margin-right: 8px;
  text-align: right;
  font-weight: 600;
  color: #ce7b29;
  line-height: 1.6;
}

/* 右側テキスト部分 */
.custom-html .label-row .text {
  flex: 1;
  font-size: 15px;  /* ← 字を少し小さめに */
  line-height: 1.7;
}

/* ▼ スマホ時の再配置（縦並び） */
@media screen and (max-width: 600px) {
  .custom-html .label-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .custom-html .label-row .label {
    width: 100%;
    text-align: left;
    margin-bottom: 2px;
  }
  .custom-html .label-row .text {
    font-size: 14px;
  }
}

.google-calendar-wrapper {
  background: #f1f1ce; /* クリーム色 */
  border: 1px solid #ce7b29; /* オレンジブラウン */
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}
.google-calendar-wrapper iframe {
  border: none;
  width: 100%;
  max-width: 900px;
  height: 600px;
  border-radius: 6px;
}
