@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

.fx-focus {
    text-align:center;
    width:400px;
    margin:0 auto;
}

@media (max-width: 768px) {
    .fx-focus {
        width:300px;
    }
}

.fx-focus img{
  filter: blur(12px) brightness(1.3);
  transform: scale(1.06);
  opacity: 0;
  animation: focusIn 900ms cubic-bezier(.2,.7,.2,1) .15s forwards;
  will-change: filter, transform, opacity;
}
@keyframes focusIn{
  60% { opacity:1; filter: blur(2px) brightness(1.05); transform: scale(1.01); }
  100%{ opacity:1; filter: blur(0)    brightness(1);    transform: scale(1); }
}
@media (prefers-reduced-motion: reduce){
  .fx-focus img{ filter:none; transform:none; opacity:1; animation:none; }
}

.post_content .is-style-section_ttl {
    font-weight:500;
}

.top-about {
  width:36%;
  margin-left:20%;
}

@media (max-width: 768px) {
  .top-about {
  width:95%;
  margin:0 auto;
  }

  .p-postList__body {
  display: block !important;
  }

  .-type-simple .p-postList__title {
  padding-left:0 !important;
  }

}

.diagonal-l {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

/* 画像を斜めにカット */
.diagonal-l img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 400%);
}

.diagonal-r {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

/* 画像を斜めにカット */
.diagonal-r img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(100% 400%, 0 0, 400% 0);
}

@media (max-width: 768px)  {
.swell-col-reverse .swell-block-columns__inner{
flex-direction: column-reverse;
}
}

.map iframe {
  width: 100%;
  height: 500px;
  border: 0;
 filter: grayscale(100%) brightness(90%) contrast(120%);
}

.map {
  padding-bottom:0 !imporatnt;
}

.l-content {
  margin-bottom: 0 !important;
}


/* ハンバーガーメニュー */

:root{
  --menu-bg: rgba(10,10,12,0.9); /* 透明度を下げる */
  --menu-fg: #fff;
  --menu-accent: #6fd3ff;
  --menu-z: 2147483647; /* 最前面 */
}

/* 左側の固定アイコン */
.menu-toggle {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* 中央寄せ */
  background: none;            /* 背景なし */
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: var(--menu-z);
}

.menu-toggle img {
  display: block;
  width: 100px;   /* 画像サイズ調整 */
  height: auto;
}

/* ハンバーガーの見た目 */
.menu-icon{ display:block; position:relative; width:22px; height:2px; background:#fff; margin:0 auto; }
.menu-icon::before,.menu-icon::after{
  content:""; position:absolute; left:0; width:22px; height:2px; background:#fff;
}
.menu-icon::before{ top:-7px; } .menu-icon::after{ top:7px; }

/* ===== 全画面メニュー本体（一本化） ===== */
.fs-menu{
  position: fixed; inset: 0; z-index: var(--menu-z);
  background: var(--menu-bg); color: var(--menu-fg);

  /* 最初は小さな円で隠す状態 */
  opacity: 0; pointer-events: none;
  transform: scale(0.92);
  clip-path: circle(0 at 38px 50vh);
  -webkit-clip-path: circle(0 at 38px 50vh);

  transition:
    opacity .8s ease,
    transform 1.6s ease-in-out,
    clip-path 2.8s cubic-bezier(.2,.8,.2,1)
}

.fs-menu[data-open="true"]{
  opacity: 1; pointer-events: auto;
  transform: scale(1);
  clip-path: circle(150vmax at 38px 50vh); /* ←円を大きくして全画面 */
  -webkit-clip-path: circle(150vmax at 38px 50vh);
}

.fs-menu__inner{ display:grid; place-items:center; height:100%; padding:24px; }
.fs-menu__list{
  list-style:none; margin:0; padding:0; display:grid; gap:50px; text-align:center;
}
.fs-menu__list a{
  color: var(--menu-fg);
  text-decoration: none;
  font-size: clamp(20px, 3.5vw, 30px);
  font-weight: 200;
  letter-spacing: .02em;
  transition: color .3s ease, opacity .3s ease; /* ←変化をなめらかに */
}

.fs-menu__list a:hover{
  color: var(--menu-fg); /* 色は変えずに */
  opacity: 0.6;          /* ←透明度を下げて“薄くなる” */
  text-decoration: none; /* 下線は出さない */
}

/* 右上の閉じる（バツだけ） */
.fs-menu__close{
  position:absolute; right:16px; top:16px;
  background:none; border:none; cursor:pointer; color:#fff;
  font-size:32px; line-height:1; z-index: 1;
}
.fs-menu__close:focus-visible{ outline:2px solid var(--menu-accent); outline-offset:2px; }

/* メニュー開いている間はヘッダーのクリックを無効化（誤爆防止） */
body.menu-open .l-header,
body.menu-open .l-header .l-header__inner{
  pointer-events: none !important;
}

/* 省モーション配慮 */
@media (prefers-reduced-motion: reduce){
  .fs-menu{
    transition: none;
    transform: none;
    clip-path: none; -webkit-clip-path: none;
  }
  .fs-menu[data-open="true"]{ opacity: 1; pointer-events: auto; }
}

/* 古い環境フォールバック（clip-pathなしでフェード＋スケール） */
@supports not (clip-path: circle(50% at 50% 50%)){
  .fs-menu{ clip-path: none; -webkit-clip-path: none; }
}


.fs-menu__sublist {
  display: flex;
  flex-wrap: wrap;          /* 複数行に折り返す */
  justify-content: center;  /* 中央揃え */
  gap: 16px 48px;           /* 上下=16px, 左右=48px の間隔 */
  margin: 12px auto 0 auto; /* 親からの余白 + 左右中央寄せ */
  padding: 0;
  list-style: none;
  max-width: 900px;         /* ←横幅制限して2行になるように */
}

.fs-menu__sublist a {
  font-size: 16px;
  font-weight: 400;
  color: var(--menu-fg);
  text-decoration: none;
  white-space: nowrap;      /* 語内で改行しない */
}

.fs-menu__sublist a:hover {
  color: var(--menu-fg); /* 色はそのまま */
  opacity: 0.6;          /* ←文字が薄くなる */
  text-decoration: none; /* 下線は出さない */
}

@media (min-width: 769px){
  .menu-toggle,
  .fs-menu {
    display: block;
  }
}

/* スマホ用（768px以下では非表示） */
@media (max-width: 768px){
  .menu-toggle,
  .fs-menu {
    display: none !important;
  }
}


@media (min-width: 769px) {
.contact-fixed {
  position: fixed;
  top: 0;       /* 画面上からの距離 */
  right: 0;     /* 画面右からの距離 */
  z-index: 9999;   /* 他の要素より前面 */
  display: block;
}

.contact-fixed img {
  display: block;
  width: 100px;     /* サイズ調整 */
  height: auto;
}
}

/* スマホでは非表示 */
@media (max-width: 768px) {
  .contact-fixed {
    display: none !important;
  }
}



/* ローディング全体 */
.site-loader{
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: grid;
  place-items: center;
  /* 青からオレンジへのグラデーション */
  background: linear-gradient(135deg, #1e3c72, #f37335);
  opacity: 1;
  pointer-events: auto;
  transition: opacity .5s ease;
}

/* ロゴ・バー・％を縦並び */
.loader-content{
  display: flex;
  flex-direction: column;
  align-items: center; /* ←ロゴは中央に */
  gap: 40px;
  width: 100%;         /* バーを全幅にするため必要 */
}

/* ロゴ（拡大縮小アニメーション） */
.loader-logo{
  width: 200px;
  height: auto;
  animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* バー（画面端から端まで） */
.loader-bar{
  width: 100%;      /* ←フル幅 */
  height: 2px;
  background: #fff;
  border-radius: 0; /* ←端まで伸ばすので角丸なし */
  overflow: hidden;
}

/* バーの進捗 */
.loader-progress{
  width: 0%;
  height: 100%;
  background: #6fd3ff;
  transition: width .18s linear; /* ←JSがwidthを更新して滑らかに */
}

@keyframes loadingBar{
  from { width: 0%; }
  to   { width: 100%; }
}

/* 数字 */
.loader-percent{
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  margin-top: 8px;
}

body.is-subpage .l-footer {
  margin-top: 60px;  /* ← トップ以外のページに余白 */
}




/* ===== CF7 モダン完成版（スコープ：.cf7-modern） ===== */

/* ラベル（会社名/お名前…）：少し大きめ＋次ラベルまでの間隔を18pxに */
.cf7-modern p{
  margin: 0 0 5px;
  font-size: 15px;
  font-weight: 600;
  color:#222;
  line-height:1.6;
}
/* <br>が余白を作るのを抑制（間隔はCSSで管理） */
.cf7-modern p br{ display:none; }

/* チェックボックス行 */
.cf7-modern .wpcf7-list-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0 18px 6px 0;
  font-size:15px;
  font-weight:500;
}
.cf7-modern .wpcf7-form-control.wpcf7-checkbox{ margin-top:3px; }

/* 入力コントロール（テキスト/メール/電話/セレクト/テキストエリア共通） */
.cf7-modern input[type="text"],
.cf7-modern input[type="email"],
.cf7-modern input[type="tel"],
.cf7-modern textarea,
.cf7-modern select{
  width:100%;
  box-sizing:border-box;
  background:#fff;
  border:1px solid #e5e7eb;   /* 薄いグレー枠 */
  border-radius:8px;          /* 角丸 */
  padding:12px 16px;          /* 縦12pxで少し低め */
  font-size:16px;
  line-height:1.6;
  outline:none;
  transition:border-color .2s, box-shadow .2s, background-color .2s;
  appearance:none;
  display:block;
  margin-bottom: 30px;
}
/* フォーカス時 */
.cf7-modern input:focus,
.cf7-modern textarea:focus,
.cf7-modern select:focus{
  border-color:#111;
  box-shadow:0 0 0 3px rgba(0,0,0,.06);
}
/* テキストエリアは少しだけ低め */
.cf7-modern textarea{ min-height:150px; resize:vertical; }
/* プレースホルダ色 */
.cf7-modern ::placeholder{ color:#a3a3a3; }

/* 注意書き */
.cf7-modern .note{
  margin-top:4px;
  color:#666;
  font-weight:400;
}


/* お問い合わせ1 */
.c-btn02.slide02 {
  color: #006098;
  background: transparent;
  border: 2px solid #006098;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: color 0.2s ease;
}

/* スライドする背景 */
.c-btn02.slide02::after {
  content: '';
  background: #006098;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.c-btn02.slide02:hover {
  color: #fff;
}

.c-btn02.slide02:hover::after {
  transform: scaleX(1);
}


.c-btn02.slide02 {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 16px;
  color: #006098;
  background: transparent;
  border: 2px solid #006098;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: color 0.2s ease;
}

/* スライドする背景 */
.c-btn02.slide02::after {
  content: '';
  background: #006098;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.c-btn02.slide02:hover {
  color: #fff;
}

.c-btn02.slide02:hover::after {
  transform: scaleX(1);
}



/* 送信フォーム */
.c-btn03.slide03 {
  color: #006098;
  background: transparent;
  border: 2px solid #006098;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: color 0.2s ease;
}

/* スライドする背景 */
.c-btn03.slide03::after {
  content: '';
  background: #006098;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.c-btn03.slide03:hover {
  color: #fff;
}

.c-btn03.slide03:hover::after {
  transform: scaleX(1);
}


.c-btn03.slide03 {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 16px;
  color: #006098;
  background: transparent;
  border: 2px solid #006098;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: color 0.2s ease;
}

/* スライドする背景 */
.c-btn03.slide03::after {
  content: '';
  background: #006098;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.c-btn03.slide03:hover {
  color: #fff;
}

.c-btn03.slide03:hover::after {
  transform: scaleX(1);
}


.cf7-modern .wpcf7-response-output{ border-radius:8px; }

/* SWELLデフォルトが強い場合の保険（必要最小限の !important） */
.cf7-modern input[type="text"],
.cf7-modern input[type="email"],
.cf7-modern input[type="tel"],
.cf7-modern textarea{
  background:#fff !important;
  border-color:#e5e7eb !important;
  border-radius:8px !important;
}

.mb30 {
  margin-bottom:30px !important;
}

@media (min-width: 960px) {
    .-series-right .l-header__inner {
        justify-content: space-between;
        display: none;
    }
}

/* フォーム全体 */
.cf7-stylish {
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
  background: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-family: 'Noto Sans JP', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 16px; /* 各項目の縦スペース */
}

/* ラベル */
.cf7-stylish .label {
  font-weight: 600;
  color: #333;
  display: inline-block;
}

/* ラベルごとの間隔調整 */
.cf7-stylish .label-narrow {
  margin-bottom: 4px;  /* 狭め */
}
.cf7-stylish .label-wide {
  margin-bottom: 0; /* 広め */
}

/* 入力欄・テキストエリア・セレクト */
.cf7-stylish input,
.cf7-stylish textarea,
.cf7-stylish select {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  transition: border 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.cf7-stylish input:focus,
.cf7-stylish textarea:focus,
.cf7-stylish select:focus {
  border-color: #1f3c88;
  box-shadow: 0 0 6px rgba(31,60,136,0.2);
  outline: none;
}

.cf7-stylish textarea {
  min-height: 120px;
  resize: vertical;
}

/* 送信ボタン */
.cf7-stylish .wpcf7-submit,
.cf7-stylish [submit] {
  background-color: #111;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 1em;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.cf7-stylish .wpcf7-submit:hover,
.cf7-stylish [submit]:hover {
  background-color: #0f2a6b;
}

/* 戻るボタン */
.cf7-stylish .previous {
  background: #e0e0e0;
  color: #333;
  margin-right: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}

.cf7-stylish .previous:hover {
  background: #c0c0c0;
}

/* マルチステップボタン配置 */
.cf7-stylish .multistep-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .cf7-stylish {
    padding: 16px;
    gap: 12px;
  }
  .cf7-stylish .wpcf7-submit,
  .cf7-stylish [submit],
  .cf7-stylish .previous {
    width: 100%;
    margin-right: 0;
  }
  .cf7-stylish .multistep-buttons {
    flex-direction: column;
    gap: 8px;
  }
}

.cf7-stylish .multistep-buttons {
  display: flex;
  flex-direction: column; /* 縦並び */
  align-items: stretch;   /* 親幅いっぱいに */
  gap: 12px;              /* ボタン間のスペース */
  margin-top: 16px;
}

.cf7-stylish .multistep-buttons input,
.cf7-stylish .multistep-buttons button {
  width: 100%;
  margin-bottom:5%;          /* 横幅いっぱいに */
}

.l-topTitleArea__body {
    color: #fff;
    position: relative;
    text-shadow: 0 0 0 rgba(0, 0, 0, 0,); */
    width: 100%;
    z-index: 3;
}




.center{ text-align:center; }

/* ---- ボタン本体（SWELLと被らないクラス名） ---- */
.mk-btn.mk-slide,
.mk-btn.mk-slide:link,
.mk-btn.mk-slide:visited{
  display:inline-block;
  width:50%;
  box-sizing:border-box;
  padding:5px 28px;
  font:inherit;            /* SWELLのフォントを継承 */
  font-weight:700;
  font-size:14px;
  color:#006098 !important;
  border:2px solid #006098 !important;
  border-radius:0;
  background:transparent !important;
  background-image:none !important; /* テーマの装飾打消し */
  text-decoration:none !important;
  box-shadow:none !important;
  position:relative;
  overflow:hidden;
  isolation:isolate;       /* 擬似要素の描画を隔離 */
  transition:color .2s ease;
  clip-path: inset(0);
}

/* スライド面（transformを使わずwidthで伸ばす＝にじみに強い） */
.mk-btn.mk-slide::after{
  content:"";
  position:absolute;
  top:0; left:0;
  height:100%;
  width:0;                          /* 初期0% */
  background:#006098;
  border-radius:0;
  transition:width .22s cubic-bezier(.45,0,.55,1);
  will-change: width;
  z-index:-1;
  pointer-events:none;
}

/* hover / focus */
.mk-btn.mk-slide:hover,
.mk-btn.mk-slide:focus-visible{
  color:#fff !important;
  outline:2px solid rgba(0,96,152,.3);
  outline-offset:2px;
}
.mk-btn.mk-slide:hover::after,
.mk-btn.mk-slide:focus-visible::after{
  width:102%; /* 右端の1px隙間を確実に覆う */
}

/* スマホ任意調整 */
@media (max-width:768px){
  .mk-btn.mk-slide{ width:80%; font-size:16px; }
}




input[type="checkbox"] {
  accent-color: transparent; /* 背景を透明に */
}

.cf7-modern .wpcf7-list-item {
  padding-right:10px;
}






/* メインビジュアル全体を relative にして、子要素を absolute で配置できるようにする */
.mv-content, .l-mainVisual__content {
  position: relative;
}

.latest-post-line {
  position: absolute;
  bottom: -70%;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  text-align: center;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
  z-index: 10;
  width:100%;
}

.latest-post-line:hover {
  opacity: 0.6;
}

.latest-post-line .post-date,
.latest-post-line .post-title {
  color: inherit;
}

.latest-post-line {
  white-space: nowrap;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .latest-post-line {
    font-size: 16px; /* ← スマホだけフォント少し大きめに */
  }
}

.c-pageTitle {
  font-weight: normal;
  font-size:2em !important;
  text-shadow: none !important;
}







:root{
  --accent:#0a66c2;        /* 年の色・縦線の色 */
  --dot:#0a66c2;           /* ドット色 */
  --text:#2b2b2b;
  --muted:#6b7280;
}

/* レイアウト全体 */
.timeline{
  margin: 40px auto;
  padding: 0 16px 0 8px;
  color: var(--text);
}

/* 1年=1ブロック */
.tl-year{
  display: grid;
  grid-template-columns: 140px 1fr; /* 左:年 / 右:出来事 */
  position: relative;
  padding: 24px 0;
}

/* 左の年ラベル */
.tl-year__label{
  font-weight: 700;
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}

/* 右の出来事リスト */
.tl-items{
  list-style: none;
  margin: 0;
  padding: 0 !important;
}
.tl-item{
  display: grid;
  grid-template-columns: 50px 1fr; /* 月 / 内容 */
  line-height: 1.8;
  position: relative;
  margin-top:-3px !important;
  margin-bottom:30px !important;
}
.tl-item__month{
  color: var(--accent);
  font-weight: 700;
  text-align:right;
  padding-right:14px;
}
.tl-item__note{
  color: var(--muted);
  font-size: 0.92rem;
}

/* 左側の縦ライン（年ブロックごとに連続して見える） */
.tl-year::before{
  content:"";
  position: absolute;
  left: 108px;               /* 年ラベル右端からの位置合わせ */
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--accent),var(--accent));
  opacity: .35;
}

/* 年ごとのドット（ライン上の丸） */
.tl-year::after{
  content:"";
  position: absolute;
  left: 108px;      /* 既存と同じ位置 */
  top: 33px;        /* 既存と同じ位置 */
  transform: translate(-50%,-50%);
  width: 12px;      /* 少し大きめにしてもOK */
  height: 12px;
  background: var(--dot);  /* ← 塗りつぶし */
  border: none;            /* ← 枠線は不要 */
  border-radius: 50%;
}

/* 最初と最後のライン端の処理（お好みで） */
.tl-year:first-child::before{ top: 36px; }  /* ドットの中心から上に伸びる */
.tl-year:last-child::before{  bottom: calc(100% - 36px); } /* 下側を止める */

/* 文字サイズの微調整 */
.tl-item strong{ font-weight:700; }

/* レスポンシブ（スマホ） */
@media (max-width: 640px){
  .tl-year{
    grid-template-columns: 92px 1fr;
    column-gap: 18px;
    padding: 20px 0;
  }
  .tl-year__label{ font-size: 16px; }
  .tl-year::before{ left: 72px; }
  .tl-year::after{  left: 72px; top: 32px; }
  .tl-item{
    grid-template-columns: 48px 1fr;
    column-gap: 0;
  }
  .tl-year__label {
    padding-top:4px;
  }
  .tl-year {
    column-gap:0;
  }
  .tl-item{
    margin-top:-1px !important;
  }
}




:root{
  --faq-accent: #006098;   /* 文字＆アイコン青 */
  --faq-bg:     #eaf5ff;   /* 薄水色 */
  --faq-text:   #000;   /* 本文色(任意) */
}

/* コンテナ */
.faq{
  max-width: 900px;
  margin: 24px auto 48px;
  padding: 0 16px;
  font-family: inherit;
}

/* 1項目の枠（質問も回答も同じ水色の中に） */
.faq-item{
  background: var(--faq-bg);
  border-radius: 18px;
  margin: 0 0 16px;
  padding: 0;                 /* 余白は中の要素で調整 */
  overflow: hidden;           /* 角丸内に収める */
  border: 0;
}

/* 質問行 */
.faq-item > summary{
  list-style: none;           /* 既定の三角を消す */
  color: var(--faq-accent);
  font-weight: 700;
  line-height: 1.7;
  padding: 18px 56px 18px 24px; /* 右はアイコン分 */
  position: relative;
  cursor: pointer;
  background: transparent;
  outline: none;
  user-select: none;
}

/* 右のアイコン：閉じてる時は＋ */
.faq-item > summary::after{
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--faq-accent);
  line-height: 1;
}

/* 開いたら − に変える（マイナス） */
.faq-item[open] > summary::after{
  content: "–";               /* ハイフンより少し長いダッシュ */
  font-weight: 700;
}

/* 回答：水色のボックスの中でそのまま続けて表示 */
.faq-a{
  color: var(--faq-text);
  padding: 18px 24px 18px 24px;   /* 上はsummaryと密着、下だけ余白 */
  line-height: 1.8;
  background: transparent;     /* 白背景をやめる */
  border-radius: 0;
}

/* ちょい演出（任意） */
.faq-item > summary:hover{ background: rgba(33,150,243,.05); }
.faq-item > summary:focus-visible{
  outline: 2px solid rgba(33,150,243,.35);
  outline-offset: 2px;
}

/* 既定マーカー完全非表示（Safari対策） */
.faq-item > summary::-webkit-details-marker{ display:none; }

/* スマホ微調整 */
@media (max-width:768px){
  .faq-item > summary{ padding: 16px 52px 16px 16px; }
  .faq-a{ padding: 0 16px 16px 16px; }
}