/* ボタンの透明化を強制的に上書き（TT5対応版） */
:where(.wp-block-button__link),
:where(.wp-element-button),
.wp-block-button .wp-block-button__link.has-background,
.wp-block-button__link {
    background-color: var(--wp--preset--color--contrast, #333333) !important;
    color: var(--wp--preset--color--base, #ffffff) !important;
    border: none !important;
    opacity: 1 !important;
}



/* ボタンの角丸（9999px）を強制リセットして四角にする */
.wp-block-button__link, 
.wp-element-button {
    border-radius: 0 !important;
}




/* ヘッダー専用の出し分け設定 */

/* 【PCヘッダー】スマホサイズかつ非ログイン時に隠す */
@media (max-width: 599.98px) {
  :not(.logged-in) .header-pc { display: none !important; }
}
/* 【SPヘッダー】PCサイズかつ非ログイン時に隠す */
@media (min-width: 600px) {
  :not(.logged-in) .header-sp { display: none !important; }
}
/* エディター内での強制表示 */
.editor-styles-wrapper .header-pc, 
.editor-styles-wrapper .header-sp { display: block !important; }


/* 個別パーツ（バナー等）の出し分け設定 */

/* 【PC用パーツ】スマホサイズかつ非ログイン時に隠す */
@media (max-width: 599.98px) {
  :not(.logged-in) .xpcdbn { display: none !important; }
}
/* 【SP用パーツ】PCサイズかつ非ログイン時に隠す */
@media (min-width: 600px) {
  :not(.logged-in) .xspdbn { display: none !important; }
}
/* エディター内での強制表示 */
.editor-styles-wrapper .xpcdbn, 
.editor-styles-wrapper .xspdbn { display: block !important; }



/*TT5のiPhone12での左寄り・右空白の対策*/
@supports (-webkit-touch-callout: none) {
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    text-wrap: wrap;
  }
}


/*フッターを押し下げたり無効化したりする処置は2カラムでは困難なため2カラムのTT5では特になにもしない*/


/*TT5　CF7入力画面上下の余白を少なく調整*/
.wpcf7 p {margin: 0.25rem;}

/*----------------------------------------------------------------------------------------------------*/
/*フォントまわり*//*行間・文字間・フォントウェイト*/

/*フォントサイズ流動変化*/
:root {
  --min-font: 0.75rem;
  --max-font: 1rem;
  --fluid-font: calc(0.5rem + 0.5vw);
}

html {
  font-size: clamp(var(--min-font), var(--fluid-font), var(--max-font));
}


/*フォント指定*/　/*試行錯誤の末にHiraginoを追加してみたバージョン*/
html {font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;}
body {font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;}
h1,h2,h3,h4,h5,h6 {font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;}
.gothic {font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;}
.mincho {font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;}


/*body {
  font-weight: 400;
  line-height: 2.0;
  letter-spacing: 0.05em;*/
  /*text-transform: none;*/
  /*text-transform:
  none入力した通りに表示する（自動変換しない）
  uppercaseすべて大文字にする（例：apple → APPLE）
  lowercaseすべて小文字にする（例：APPLE → apple）
  capitalize単語の先頭だけを大文字にする（例：hello world → Hello World）*/
/*}*/

/* リンク */
/*a {
  font-weight: 400;
  line-height: 2.0;*/
  /*text-decoration: none;*/
  /*text-decoration:
  none	装飾をすべて消す（下線を引かない）
  underline	下線を引く
  line-through	打ち消し線を引く*/
/*}*/

/* 見出し */
/*h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;*/
  /*text-transform: none;*/
/*}*/

/* キャプション */
/*figcaption, .wp-element-caption {
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;*/
  /*text-transform: none;*/
/*}*/

/* ボタン */
/*.wp-block-button__link {
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.05em;*/
  /*text-transform: none;*/
/*}*/


/*個別　テキストシャドウ 黒影*/
.xshadb {text-shadow:0.1rem 0.1rem 0 rgba(51, 51, 51, 1.0);}
/*個別　テキストシャドウ 灰影*/
.xshadg {text-shadow:0.1rem 0.1rem 0 rgba(221, 221, 221, 1.0);}
/*個別　テキストシャドウ 白影*/
.xshadw {text-shadow:0.1rem 0.1rem 0 rgba(255, 255, 255, 1.0);}

/*----------------------------------------------------------------------------------------------------*/

/*ボタンhover時に少し暗くする　100%を超えて大きくすると明るくもできる*/
/*.wp-block-button__link {
  transition: filter 0.3s ease;
}
.wp-block-button__link:hover {
  filter: brightness(90%);
}*/



/*ボタン周囲のパディングを一括調整*/
/*.wp-block-button__link {
  padding-top: 0.5rem;
  padding-right: 1rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
}*/

/*----------------------------------------------------------------------------------------------------*/

/*カバーブロック 上下余白を0にして左右余白は1remのままにする*/
.wp-block-cover {
  padding: 0 1rem;
}

/*----------------------------------------------------------------------------------------------------*/

/*指定　カラムの片側をサイドメニューにした時などに固定させる*/
.fixcolum.wp-block-column {
  position: sticky;
  top: 0;
  align-self: flex-start;
}

/* 管理バーがある場合は32px分ずらす */
body.admin-bar .fixcolum.wp-block-column {
  top: 32px;
}

/*----------------------------------------------------------------------------------------------------*/


/*----------------------------------------------------------------------------------------------------*/

/* TT5　管理バーの高さを考慮（ログイン時）*/
body.admin-bar .wp-site-blocks > header {
  top: 2rem;
}


/* TT5　CSSのみでのグローバルメニュー固定*/
/*992px以上のサイズで反映*/
@media (min-width: 992px) {
.wp-site-blocks > header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  /*background-color: #fff;*/ /*必要に応じて背景色を調整*/
  box-shadow: 0 2px 4px rgba(0,0,0,0.1); /*視認性向上*/
  }
}

/* TT5　CSSのみでのグローバルメニュー固定*/
/*992px未満のサイズで反映*/
@media (max-width: 991.98px) {
.wp-site-blocks > header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  /*background-color: #fff;*/ /*必要に応じて背景色を調整*/
  /*box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/ /*視認性向上*/
  }
}

/*----------------------------------------------------------------------------------------------------*/


/*----------------------------------------------------------------------------------------------------*/

/*トップページ等のボックスを上に移動させる*/

/*PCのみ個別トップボックス上移動(-100px)*/
@media (min-width:1280px) {
.xtbpu {
position:relative;
transform:translateY(-7rem);
z-index:1;
}
}

/*PC以外個別トップボックス上移動(-50px)*/
@media (max-width:1279.98px) {
.xtbpu {
position:relative;
transform:translateY(-5rem);
z-index:1;
}
}

/*PCのみ個別ページボックス上移動(-50px)*/
@media (min-width:1280px) {
.xpbpu {
position:relative;
transform:translateY(-5rem);
z-index:1;
}
}

/*PC以外個別ページボックス上移動(-25px)*/
@media (max-width:1279.98px) {
.xpbpu {
position:relative;
transform:translateY(-3rem);
z-index:1;
}
}

/*個別ボックスシャドウ*/
.xbxbs {
box-shadow:0 -8px 8px rgba(0, 0, 0, 0.1);
}

/*----------------------------------------------------------------------------------------------------*/


/*----------------------------------------------------------------------------------------------------*/

/*スマホサイズのみ改行を無効化し一文にする　600未満*/
@media (max-width: 599.98px) {
br {
display:none;
 }
}

/*個別スマホサイズのみ改行の無効化を打ち消しスマホサイズでも改行させる*/
@media (max-width: 599.98px) {
.xbrdb br {
display:block;
 }
}

/*個別スマホサイズ以上の改行の指定を無効化し一文にする　.xbrdbとの併用でスマホサイズでのみ改行させられる*/
@media (min-width: 600px) {
.xbrdn br {
display:none;
 }
}

/* PC（600px以上）では改行として扱う */
brpc {
  display: block;
}

/* スマホ（599px未満）では改行しない */
@media screen and (max-width: 599.98px) {
  brpc {
    display: inline;
  }
}


/*スマホサイズのみ改行を無効化し一文にする　782未満*/
/*@media (max-width: 781.98px) {
br {
display:none;
}
}*/

/*個別スマホサイズのみ改行の無効化を打ち消しスマホサイズでも改行させる*/
/*@media (max-width: 781.98px) {
.xbrdb br {
display:block;
}
}*/

/*個別スマホサイズ以上の改行の指定を無効化し一文にする　.xbrdbとの併用でスマホサイズでのみ改行させられる*/
/*@media (min-width: 782px) {
.xbrdn br {
display:none;
}
}*/

/*----------------------------------------------------------------------------------------------------*/


/*画面遷移フェードインエフェクト*/
body {
  animation: fadeIn 1s ease-in-out forwards;
}
@keyframes fadeIn {
  0.1% { opacity: 0; }
  100% { opacity: 1; }
}


/*----------------------------------------------------------------------------------------------------*/

/*iPhoneカバーブロックパララックスCSSのみ版*/

/*カバーブロックの基本設定*/
.wp-block-cover.has-parallax {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  position: relative;
  overflow: hidden;
}

/*背景画像の設定*/
.wp-block-cover__image-background.has-parallax {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;　/*100vhは100dvhが効かない古いブラウザ時のフォールバック用*/
  height: 100dvh;　/*100dvhを加えてiOSに対応　これだけでもよい気もするが*/
  object-fit: cover;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  /*will-change: transform;*/　/*ない方がよいらしいのでオフにして様子見*/
}

/*モバイルデバイスでの最適化*/
@media screen and (max-width: 781.98px) {
  .wp-block-cover__image-background.has-parallax {
    transform: none;
    -webkit-transform: none;
  }
}

/*----------------------------------------------------------------------------------------------------*/
/*コアのグリッドへのCSS*/ /*TT5用　ブレイクポイントの違いにより　992　782　600*/

/*指定　グリッド　レスポンシブ　4カラム-4442*/
.xgr-4442 {
  display: grid;
}

/* PC：992px以上（最大レンジ） */
@media (min-width: 992px) {
  .xgr-4442 {
    grid-template-columns: repeat(4, 1fr); /* PC：4カラム */
  }
}

/* タブレット横向き：〜991.98px かつ 782px以上 */
@media (max-width: 991.98px) and (min-width: 782px) {
  .xgr-4442 {
    grid-template-columns: repeat(4, 1fr); /* タブレット横向き：4カラム */
  }
}

/* タブレット縦向き：〜781.98px かつ 600px以上 */
@media (max-width: 781.98px) and (min-width: 600px) {
  .xgr-4442 {
    grid-template-columns: repeat(4, 1fr); /* タブレット縦向き：4カラム */
  }
}

/* スマホ：〜599.98px（最小レンジ） */
@media (max-width: 599.98px) {
  .xgr-4442 {
    grid-template-columns: repeat(2, 1fr); /* スマホ：2カラム */
  }
}


/*指定　グリッド　レスポンシブ　4カラム-4422*/
.xgr-4422 {
  display: grid;
}

/* PC：992px以上（最大レンジ） */
@media (min-width: 992px) {
  .xgr-4422 {
    grid-template-columns: repeat(4, 1fr); /* PC：4カラム */
  }
}

/* タブレット横向き：〜991.98px かつ 782px以上 */
@media (max-width: 991.98px) and (min-width: 782px) {
  .xgr-4422 {
    grid-template-columns: repeat(4, 1fr); /* タブレット横向き：4カラム */
  }
}

/* タブレット縦向き：〜781.98px かつ 600px以上 */
@media (max-width: 781.98px) and (min-width: 600px) {
  .xgr-4422 {
    grid-template-columns: repeat(2, 1fr); /* タブレット縦向き：2カラム */
  }
}

/* スマホ：〜599.98px（最小レンジ） */
@media (max-width: 599.98px) {
  .xgr-4422 {
    grid-template-columns: repeat(2, 1fr); /* スマホ：2カラム */
  }
}


/*指定　グリッド　レスポンシブ　4カラム-4222*/
.xgr-4222 {
  display: grid;
}

/* PC：992px以上（最大レンジ） */
@media (min-width: 992px) {
  .xgr-4222 {
    grid-template-columns: repeat(4, 1fr); /* PC：4カラム */
  }
}

/* タブレット横向き：〜991.98px かつ 782px以上 */
@media (max-width: 991.98px) and (min-width: 782px) {
  .xgr-4222 {
    grid-template-columns: repeat(2, 1fr); /* タブレット横向き：2カラム */
  }
}

/* タブレット縦向き：〜781.98px かつ 600px以上 */
@media (max-width: 781.98px) and (min-width: 600px) {
  .xgr-4222 {
    grid-template-columns: repeat(2, 1fr); /* タブレット縦向き：2カラム */
  }
}

/* スマホ：〜599.98px（最小レンジ） */
@media (max-width: 599.98px) {
  .xgr-4222 {
    grid-template-columns: repeat(2, 1fr); /* スマホ：2カラム */
  }
}


/*指定　グリッド　レスポンシブ　3カラム-3331*/
.xgr-3331 {
  display: grid;
}

/* PC：992px以上（最大レンジ） */
@media (min-width: 992px) {
  .xgr-3331 {
    grid-template-columns: repeat(3, 1fr); /* PC：3カラム */
  }
}

/* タブレット横向き：〜991.98px かつ 782px以上 */
@media (max-width: 991.98px) and (min-width: 782px) {
  .xgr-3331 {
    grid-template-columns: repeat(3, 1fr); /* タブレット横向き：3カラム */
  }
}

/* タブレット縦向き：〜781.98px かつ 600px以上 */
@media (max-width: 781.98px) and (min-width: 600px) {
  .xgr-3331 {
    grid-template-columns: repeat(3, 1fr); /* タブレット縦向き：3カラム */
  }
}

/* スマホ：〜599.98px（最小レンジ） */
@media (max-width: 599.98px) {
  .xgr-3331 {
    grid-template-columns: repeat(1, 1fr); /* スマホ：1カラム */
  }
}


/*指定　グリッド　レスポンシブ　3カラム-3221*/
.xgr-3221 {
  display: grid;
}

/* PC：992px以上（最大レンジ） */
@media (min-width: 992px) {
  .xgr-3221 {
    grid-template-columns: repeat(3, 1fr); /* PC：3カラム */
  }
}

/* タブレット横向き：〜991.98px かつ 782px以上 */
@media (max-width: 991.98px) and (min-width: 782px) {
  .xgr-3221 {
    grid-template-columns: repeat(2, 1fr); /* タブレット横向き：2カラム */
  }
}

/* タブレット縦向き：〜781.98px かつ 600px以上 */
@media (max-width: 781.98px) and (min-width: 600px) {
  .xgr-3221 {
    grid-template-columns: repeat(2, 1fr); /* タブレット縦向き：2カラム */
  }
}

/* スマホ：〜599.98px（最小レンジ） */
@media (max-width: 599.98px) {
  .xgr-3221 {
    grid-template-columns: repeat(1, 1fr); /* スマホ：1カラム */
  }
}


/*指定　グリッド　レスポンシブ　2カラム-2221*/
.xgr-2221 {
  display: grid;
}

/* PC：992px以上（最大レンジ） */
@media (min-width: 992px) {
  .xgr-2221 {
    grid-template-columns: repeat(2, 1fr); /* PC：2カラム */
  }
}

/* タブレット横向き：〜991.98px かつ 782px以上 */
@media (max-width: 991.98px) and (min-width: 782px) {
  .xgr-2221 {
    grid-template-columns: repeat(2, 1fr); /* タブレット横向き：2カラム */
  }
}

/* タブレット縦向き：〜781.98px かつ 600px以上 */
@media (max-width: 781.98px) and (min-width: 600px) {
  .xgr-2221 {
    grid-template-columns: repeat(2, 1fr); /* タブレット縦向き：2カラム */
  }
}

/* スマホ：〜599.98px（最小レンジ） */
@media (max-width: 599.98px) {
  .xgr-2221 {
    grid-template-columns: repeat(1, 1fr); /* スマホ：1カラム */
  }
}


/*指定　グリッド　スマホ2列*/
/*@media (max-width: 781.98px) {
  .xwbg2.wp-block-group {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 5px !important;
  }
  .xwbg2.wp-block-group > * {
    width: 100% !important;
  }
}*/


/*指定　カラム　レスポンシブ　料金プラン　3カラム　クラス：column-custom-plan*/
/*同じことができるのでグリッドでいいかな　ただカラムは減らすと消えてくれるので　一応残しておく*/
/*.wp-block-columns.column-custom-plan {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: var(--wp--preset--spacing--40) !important;
  flex-direction: row !important;
}

.wp-block-columns.column-custom-plan > .wp-block-column {
  flex: 1 1 calc(33.333% - var(--wp--preset--spacing--40)) !important;
}

@media (max-width: 991.98px) {
  .wp-block-columns.column-custom-plan {
    flex-direction: row !important;
  }

  .wp-block-columns.column-custom-plan > .wp-block-column {
    flex: 1 1 calc(50% - var(--wp--preset--spacing--40)) !important;
  }
}

@media (max-width: 575.98px) {
  .wp-block-columns.column-custom-plan {
    flex-direction: column !important;
  }

  .wp-block-columns.column-custom-plan > .wp-block-column {
    flex: 1 1 100% !important;
  }
}*/

/*----------------------------------------------------------------------------------------------------*/


/*----------------------------------------------------------------------------------------------------*/

/*reCAPTCHA非表示*/
.grecaptcha-badge {
visibility:hidden;
}

/*----------------------------------------------------------------------------------------------------*/

/*指定　Google Map 高さ指定と下段に出る謎の余白削除*/
.xgmapvh iframe {
/*height:50vh;*/
display:block;
}

/*----------------------------------------------------------------------------------------------------*/


/*----------------------------------------------------------------------------------------------------*/

/*TT5　もともとの下線を非表示に*/
.wp-block-navigation .wp-block-navigation-item a {
  text-decoration: none !important;
}

/*TT5　ホバー時のアンダーライン（アニメーション）*/
.wp-block-navigation .wp-block-navigation-item a {
  position: relative;
  text-decoration: none !important;
  display: inline-block;
  padding-bottom: 4px;
}
.wp-block-navigation .wp-block-navigation-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #666666;
  transition: width 0.3s ease;
}
.wp-block-navigation .wp-block-navigation-item a:hover::after {
  width: 100%;
}


/*TT5　カレント状態の下線（静的表示）*/
.wp-block-navigation .wp-block-navigation-item.current-menu-item > a {
  position: relative;
  text-decoration: none;
  display: inline-block;
  padding-bottom: 4px;
}
.wp-block-navigation .wp-block-navigation-item.current-menu-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}


/*TT5　ホバー時にグローバルメニューリンクの色を変える*/
.wp-block-navigation .wp-block-navigation-item a:hover {
  color: #666666;
  text-decoration: underline;
}

/*TT5　ホバー時に文字の色を変更*/
/*.wp-block-navigation .wp-block-navigation-item a:hover {
  color: #666666;
}*/

/*TT5　ホバー時に背景色を変える　★使えるがこのままだとなくてもいいと思う*/
/*.wp-block-navigation .wp-block-navigation-item a:hover {
  background-color: #eeeeee;
}*/

/*TT5　ホバー時に拡大する　★使えるが視差でズレを感じてしまうことあり*/
/*.wp-block-navigation .wp-block-navigation-item a:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}*/

/*TT5　カレントメニュー項目のカラーを変更*/
.wp-block-navigation .wp-block-navigation-item.current-menu-item > a {
  color: #666666;
  /*font-weight: bold;*/
}

/*TT5　マウスオーバー時の項目周囲のフォーカス枠線を非表示*/
:where(.wp-site-blocks *:focus) {
  outline: none !important;
  box-shadow: none !important;
}

/*----------------------------------------------------------------------------------------------------*/


/*----------------------------------------------------------------------------------------------------*/

/*CF7送信ボタンなど　TT5*/
.wpcf7-submit {
    background-color: black; /* ボタンカラー */
    color: white;
    font-size: 1.125rem; /* フォントサイズを少し大きく */
    font-weight: bold;
    padding: 0.875rem 1.75rem; /* 余白を大きく */
    border-radius: 0px;
    border: 1px solid black;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: inline-block;
    cursor: pointer;
    width: 100%; /* ボタンの幅を広げる（適宜変更） */
    max-width: 300px; /* 必要なら最大幅を指定 */
    transition: background-color 0.3s ease, color 0.3s ease; /* 色変更のみ */
    margin-bottom: 5px; /* ボタン下の余白を調整 */
}
/*ボタンホバーカラー*/
.wpcf7-submit:hover {
    background-color: white;
    color: black;
}

/*アラート文字色など*/
.wpcf7-response-output {
    color: red; /* 文字を赤色に */
    font-size: 1rem; /* フォントサイズ調整 */
    font-weight: normal; /* 文字を強調 */
    text-align: center; /* 中央配置 */
    background: none !important; /* 背景色を完全に消す */
    border: none !important; /* 枠線を完全に削除 */
    box-shadow: none !important; /* 影を削除（もし適用されていた場合） */
  margin: 0 !important;
  padding: 0 !important;
}


/*CF7　必須項目です等のメッセージカラー*/
span.wpcf7-not-valid-tip {
color:red;
}

/*CF7　送信完了メッセージカラー*/
.wpcf7 form.sent .wpcf7-response-output {
color:blue;
}

/*CF7　アラート枠線の打ち消しとメッセージカラー*/
/*.wpcf7 form .wpcf7-response-output {
border:initial;
color:red;
}*/

/*CF7　アラートボトム等調整*/
/*.wpcf7 form .wpcf7-response-output {
margin:1em 0.5em 0em;
padding:0.2em 1em 0em;
}*/

/*スピナー非表示*/
/*.wpcf7-spinner {
    display: none !important;
}*/

/*スピナーカラー調整*/
.wpcf7-spinner {
    background-color: #fff !important;
}

/*スピナー回転ボールの調整*/
.wpcf7-spinner::before {
  background-color: #ccc !important;
}

/* 送信ボタンを中央に配置 */
.wpcf7 .wpcf7-submit {
  display: block;
  margin: 0 auto;
}

/* スピナーの位置を調整 */
.wpcf7 .wpcf7-spinner {
  display: block;
  margin: 10px auto 0 auto; /* 上に余白をつけて中央揃え */
  position: relative;
}


/*CF7 日付時間ファイル等のフォント*/
.wpcf7 input {
font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
}


/*CF7　ファイル選択　行間等調整　テキスト部の手のマウスカーソル非表示*/
.wpcf7 input[type="file"] {
width: 50%;
border: none;
margin:0rem 0rem 0rem 0rem;
cursor:initial!important;
font-family: "Noto Sans JP", "Hiragino Sans", sans-serif; /* フォントを統一 */
}

@media (max-width: 991.98px) {
.wpcf7 input[type="file"] {
width: 75%;
border: none;
margin:0rem 0rem 0rem 0rem;
cursor:initial!important;
font-family: "Noto Sans JP", "Hiragino Sans", sans-serif; /* フォントを統一 */
}
}


/* テキストフィールドとテキストエリアのサイズ・フォントを統一 */
.wpcf7-form-control.wpcf7-text, 
.wpcf7-form-control.wpcf7-textarea {
    width: 100%; /* 幅を最大化 */
    max-width: 98%; /* 必要なら最大幅を設定 TT5では98%等の指定が必要 */
    font-size: 16px; /* フォントサイズ統一 */
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif; /* フォントを統一 */
    padding: 5px; /* 内側の余白調整 */
    border:1px solid #ccc;
    line-height: 1.25;
    letter-spacing: 0.05em;
    color:#333333;
}


/* テキストエリアの高さを適切に調整 */
/*.wpcf7-form-control.wpcf7-textarea {
    height: 10rem;
    resize: vertical;
}*/


/* プレースホルダーのデザイン調整 */
::placeholder {
    font-size: 1rem; /* プレースホルダーの文字サイズを統一 */
    color: #999; /* 視認性を向上するための色調整 */
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif; /* フォントをテキスト欄と統一 */
}


/*CF7　radioの左余白をナシにして右余白アリに変更調整*/
.wpcf7-list-item {
  display: inline-block;
  margin: 0 1rem 0 0 !important;
}

/*CF7　日付項目の上下余白調整など*/
/*main input, main textarea, main select {
  padding: 0.125rem;
  border: 1px solid var(--wp--preset--color--border-normal);
}*/

/*CF7　日付項目幅等調整　スマホサイズのみ幅を狭く　X-T9*/
/*@media (max-width: 599.98px) {
input[type="date"] {
  width: 100%;
  max-width: 25%;
  box-sizing: border-box;
}
}*/

/*指定　CF7で使用するコアテーブルブロックの項目カラーの変更*/
/*.xwbtbc .wp-block-table table td:first-child {
  background-color: #fafafa;
}*/

/*CF7　入力エラー時入力欄カラー変更　文字数超過jsを使う場合はオフに*/
/*input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #ff0000;
  background-color: #fffafa;
}*/


