:root{
  --brand:#9E023B;         
  --brandSoft:#EF8D8D;    
  --headerH: 74px;
  --container: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: "FOT-筑紫A丸ゴシック Std B","TsukuARdGothicStd-B", sans-serif;
  color:var(--text);
  background:#fff;
}
html {
  scroll-behavior: smooth;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.br-sp,.br-cp{ display: none; }
@media (max-width:900px){
  .br-sp, .br-cp{ display: inline; }
}

/* ============================
   HEADER
============================ */

.siteHeader{
  position: fixed;
  inset: 0 0 auto 0;
  height: 80px;
  z-index: 1000;
}

.siteHeader__inner{
  position: relative;
  height: 100%;
  padding: 0 16px;
  display: flex;
  align-items: center;
}

/* ===== decorative bg ===== */
.siteHeader__bg{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 342px;
  height: 170px;
  z-index: 0;
  pointer-events: none;
}

.siteHeader__bg img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== logo ===== */
.siteHeader__logo{
  position: relative;
  z-index: 2;
  padding-top: 28px;
  padding-left: 36px;
}

.siteHeader__logo img{
  height: 70px;
  display: block;
}

/* ===== center nav ===== */
.siteHeader__nav{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  z-index: 2;
}
.siteHeader__navWrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 32px);
  font-size: clamp(12px, 1.1vw, 18px);
  color: #9E023B;
  width: 1045px;
  max-width: calc(100vw - 390px);
}


/* 左右余白を擬似要素で作る */
.siteHeader__navWrap::before,
.siteHeader__navWrap::after{
  content:"";
  flex: 0 0 clamp(18px, 2.5vw, 46px);
}
.siteHeader__navBg{
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.92);
  border-radius: 0 0 35px 35px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  z-index: 1;
}

.siteHeader__navWrap a{
  position: relative;
  z-index: 2;
  white-space: nowrap;
  padding: 6px 4px;
}

.siteHeader__navWrap a{
  transition: opacity .2s ease;
}
.siteHeader__navWrap a:hover{
  opacity: .6;
}

/* ===== CTA ===== */
.siteHeader__cta{
  position: absolute;
  top: 0;
  right: 16px;
  height: 100px;

  display: flex;
  align-items: center;

  padding: 0 26px;
  background: #b11f52;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 24px;
  text-align: center;

  border-radius: 0 0 18px 18px;
  z-index: 3;
}
.siteHeader__cta{
  transition: opacity .25s ease;
}

.siteHeader__cta:hover{
  opacity: .85;
}
/* ===== hamburger ===== */
.siteHeader__burger {
  display: none;
  width: 100px;
  height: 74px;
  background: none;
  border: none;
  background-image: url(../img/burger-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: 37px;
  transform: translateY(-50%);
  z-index: 2000;
}

.siteHeader__burger span {
  position: absolute;
  left: 58px;
  right: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform .28s ease, top .28s ease, opacity .2s ease;
  transform-origin: center;
}

.siteHeader__burger span:nth-child(1){ top: 18px; }
.siteHeader__burger span:nth-child(2){ top: 26px; }
.siteHeader__burger span:nth-child(3){ top: 34px; }

/* ===== OPEN時：✖へ ===== */
body.is-menu-open .siteHeader__burger span:nth-child(1){
  top: 26px;                
  transform: rotate(45deg);
}

body.is-menu-open .siteHeader__burger span:nth-child(2){
  opacity: 0;
}

body.is-menu-open .siteHeader__burger span:nth-child(3){
  top: 26px;                
  transform: rotate(-45deg);
}
.siteHeaderBgStatic{
  position: absolute;
  left: 0;
  top: 0;
  width: 342px;
  height: 170px;
  z-index: 1;
  pointer-events: none;
}

.siteHeaderBgStatic img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.siteLogoStatic{
  position: absolute;
  left: 36px;
  top: 28px;
  z-index: 1200;
}

.siteLogoStatic img{
  height: 70px;
}

/* SP調整（あなたの既存値に合わせる） */
@media (max-width: 960px){
  .siteHeaderBgStatic{
    width: 219px;
    height: 109px;
  }

  .siteLogoStatic{
    left: 16px;
    top: 14px;
  }

  .siteLogoStatic img{
    height: 50px;
  }
}
/* ===== mobile nav ===== */
.mnav{
  
  position: fixed;
  inset: 0;                
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);

  z-index: 900;             

  padding: 160px 90px 220px; 
  color: #9E023B;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .55s ease, transform .55s ease, visibility 0s linear .55s;

  overflow-y: auto;
  -webkit-overflow-scrolling: touch;

  overflow-y: auto;         
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 960px){
.mnav{
  padding: 100px 40px 220px;
}
}
/* リンク：右矢印＋下破線 */
.mnav a{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 22px 12px;
  font-size: 17px;
  color: #9E023B;
  text-decoration: none;
}

/* 右矢印 */
.mnav a::after{
  content: "→";            
  font-size: 22px;
  color: rgba(158,2,59,.55);
  transform: translateY(-1px);
}

/* 下の破線 */
.mnav a::before{
  content:"";
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  border-bottom: 2px dashed rgba(242,120,148,.55);
}

.mnav a:last-child::before{
  display: none;
}


/* ===== open ===== */
body.is-menu-open .mnav{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity .55s ease, transform .55s ease, visibility 0s;
}

/* ===== responsive ===== */
@media (max-width: 1274px){
  .siteHeader__nav{ display: none; }
  .siteHeader__cta{ display: none; }
  .siteHeader__burger{ display: block; }
}
@media (max-width: 960px){
  .siteHeader__bg {
    width: 219px;
    height: 109px;}
  .siteHeader__logo {
    padding-top: 0px;
    padding-left: 0px;
}
  .siteHeader__logo img {
    height: 50px;}
  }
/* ========== Hero (movie inside) ========== */
.hero{
  position: relative;
  min-height: 100vh;
  height: clamp(620px, 78vh, 820px);
  overflow: clip;
}

/* video layer */
.hero__movie{
  position:absolute;
  inset: 0;
  z-index: 0;
}
.hero__movie video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* PC */
.heroMovie__pc{
  display: block;
}
.heroMovie__sp{
  display: none;
}
/* SP */
@media (max-width: 1050px){
  .heroMovie__pc{
    display: none;
  }
  .heroMovie__sp{
    display: block;
  }
}

.hero__veil{
  position: absolute;
    right: 0;
    bottom: 138px;
    display: flex;
    gap: 14px;
    align-items: stretch;
}

.hero__inner{
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 24px));
  margin: 0 auto;
  height: 100%;
}


.hero__corner{
  position:absolute;
  top: 0;
  width: 220px;
  height: 140px;
  background: #ffd6e2;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity:.75;
  pointer-events:none;
}
.hero__corner--right{
  right: 0;
  transform: scaleX(-1);
}
.hero__corner--left{
  left: 0;
}

/* catch copy */
.hero__copy{
  position:absolute;
  left: 0;
  bottom: 120px;
  padding-left: 10px;
  font-size: 40px;
  color: #9E023B;
}

.copyLine{
  display:inline-block;
  background: rgba(255,255,255,.9);
  padding: 0px 14px;
  box-shadow: var(--shadow);
  font-weight: 900;
  letter-spacing:.02em;
  color: var(--brand);
  margin-bottom: 10px;
}
.copyLine--big{
  display:block;
}

/* stat cards */
.hero__stats {
    position: absolute;
    right: 0;
    bottom: 130px;
    display: flex;
    gap: 14px;
    align-items: stretch;
}
.stat{
  background: rgba(255,255,255,.92);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 12px 14px;
  min-width: 210px;
  border: 1px solid rgba(0,0,0,.05);
}
.stat__label{
  font-size: 23px;
  line-height: 1.5;
  text-align: center;
}
.stat__value{
  display:flex;
  align-items: baseline;
  gap: 8px;
  color: var(--brandSoft);
  font-weight: 1000;
  line-height: 1;
}
.stat__value img{
  width: 39px;
}
.stat__num{
  display: flex;
  align-items: center;
  gap: 6px;             
  font-size: 46px;
}

.stat__unit{
  font-size: 23px;
  font-weight: 900;
  color: var(--brandSoft);
}
.stat__unit img{
  width: 33px;
}

.hero__ground{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 595px;                
  background-image: url("../img/hero_ground.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  z-index: 0;                   
  pointer-events: none;
}

/* =========================
   Tablet (<=1024px)
========================= */
@media (max-width: 1024px){

  /* .nav, .header__cta{ display:none; } */
  .hamburger{ display:block; }
  .header__inner{ width: calc(100% - 8px); }

  .hero{
    height: 100vh;
    min-height: 520px;
  }

  .hero__copy{
    bottom: 280px;
  }

  .hero__stats{
    left: 8px;
    right: auto;
    bottom: 170px;
    gap: 10px;
  }

  .stat{
    min-width: 180px;
    padding: 10px 12px;
  }

  .stat__label{
    font-size: 18px;
  }

  .stat__num{
    font-size: 36px;
  }

  .stat__unit{
    font-size: 18px;
  }

  .hero__ground{
    height: 420px;
  }
}
/* =========================
   SP (<=728px)
========================= */
@media (max-width: 728px){

  :root{ --headerH: 64px; }

  .logo__mark{
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  /* video切り替え */
  .heroMovie__pc{ display:none; }
  .heroMovie__sp{ display:block; }

  .copyLine{
    margin-left: -40px;
    padding: 5px 20px;
  }

  .hero__copy{
    left: 8px;
    bottom: 300px;
    font-size: 25px;
  }

  .hero__stats{
    flex-direction: row;
    align-items: flex-start;
    left: 8px;
    bottom: 220px;
    gap: 8px;
  }

  .stat{
    min-width: 155px;
    padding: 10px 12px;
  }

  .stat__label{
    font-size: 16px;
  }

  .stat__value img{
    width: 27px;
  }

  .stat__num{
    font-size: 32px;
  }

  .stat__unit{
    font-size: 16px;
  }

  .hero__ground{
    height: 380px;
  }
}

@media (max-width: 344px){
.hero__copy {
  font-size: 24px;
}
}


/* ====== Base ====== */
.recruitFormWrap{
  padding: 48px 16px 64px;
  color: #333;
  background: #fff;
}
.recruitFormWrap{
  position: relative;

  background:
    url("../img/flag_left.png") top left no-repeat,
    url("../img/flag_right.png") top right no-repeat,
    #ffffff;

  background-size:
    auto 110px,
    auto 110px;

  padding-top: 50px;
}
.Contents-title{
  text-align:center;
  position: relative;
  margin-bottom: 22px;
}

.form-titleMark{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom: 6px;
  color:#d34b6a;
  font-weight:700;
  letter-spacing:.02em;
}
.form-titleMark img,.titleMark img{
  width: 72px;
}
.recruitMark__text{ font-size: 14px; }
.recruitMark__dot{
  width: 14px; height: 14px;
  border: 2px solid #d34b6a;
  border-radius: 999px;
  position: relative;
}
.recruitMark__dot::after{
  content:"";
  position:absolute;
  inset: 3px;
  background:#d34b6a;
  border-radius:999px;
}
.recruitSub{
  margin: 0;
  color: var(--brandSoft);
  font-size: 20px;
}
.recruitTitle{
  margin: 0;
  font-size: 32px;
  line-height: 42px;
}
.recruitTitle span.red{
  color: var(--brand);
}
.recruitTitle span.big{
  font-size: 42px;
}

/* ====== Card ====== */
.formCard{
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid #EF8D8D;
  border-radius: 10px;
  padding: 80px 80px;
  background:#fff;
}

/* =========================
   Rows
========================= */
.recruitForm{
  display: block;
}

.fRow {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 31px;
  padding: 30px 0;
  border-bottom: 1px solid #F7D1D1;
  align-items: center;
}

.fRow.is-last{
  border-bottom: 0;
}

/* =========================
   Label（全行共通幅）
========================= */
.fLabel{
  position: relative;
  width: 350px;             
  display: flex;
  align-items: center;
}

/* ピンク枠 */
.labelPill{
  position: relative;
  width: 100%;            
  display: flex;
  align-items: center;

  min-height: 57px;
  padding: 0 18px;
  padding-right: 72px;       
  border-radius: 18px;
  background: #FCF2EF;

  color: #000;
  font-size: 18px;
  white-space: nowrap;
}

/* =========================
   必須・任意（完全固定位置）
========================= */
.badgeReq,
.badgeOpt{
  position: absolute;
  right: 16px;               
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 5px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .04em;
}

/* 色 */
.badgeReq{
  background: #EF8D8D;
  color: #fff;
}

.badgeOpt{
  background: #c7c7c7;
  color: #fff;
}

/* =========================
   SP
========================= */
@media (max-width: 900px){

  .fRow{
    grid-template-columns: 1fr;
  }

  .fLabel{
    width: 100%;
  }

  .labelPill{
    width: 100%;
    font-size: 14px;
  }
  .recruitFormWrap {
    background-size: auto 54px, auto 54px;
  }
  .recruitTitle {
    font-size: 24px;
    line-height: 36px;
  }
  .badgeReq, .badgeOpt {
    font-size: 10px;
}
.recruitFormWrap {
  padding: 48px 16px 20px;}
}

/* right fields */
.fField{
  display:flex;
  align-items:center;
  gap: 16px;
  min-width: 0;
}
.fField.is-split{
  gap: 14px;
}
.split{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}
.split__cap{
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.input, .textarea, select{
  width: 100%;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  background:#fff;
  font-size: 17px;
  padding: 12px 12px;
  outline: none;
  min-width: 0;
  font-family: "FOT-筑紫A丸ゴシック Std B","TsukuARdGothicStd-B", sans-serif;
  color: #000;
}
.input:focus, .textarea:focus, select:focus{
  border-color:#f06a85;
  box-shadow: 0 0 0 3px rgba(240,106,133,.15);
}
.input::placeholder, .textarea::placeholder{
  color:#b8b8b8;
}
/* label */
.radio{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:18px;
  color:#333;
  cursor:pointer;
}

/* 元inputは隠す */
.radio input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

/* 見た目の丸 */
.radioMark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #333;
  box-sizing: border-box;
}

/* チェック時：ピンク丸のみ */
.radio input:checked + .radioMark {
  background: #ef8d8c;
  border: none;
}

/* フォーカス時（キーボード対応） */
.radio input:focus-visible + .radioMark{
  outline:2px solid rgba(240,106,133,.4);
  outline-offset:2px;
}

/* select arrow */
.select{
  position: relative;
  width: 100%;
}
.select select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  padding-right: 38px;
  color: #D0D0D0;
}
.select::after{
  content:"";
  position:absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #777;
  border-bottom: 2px solid #777;
  transform: translateY(-65%) rotate(45deg);
  pointer-events:none;
}
.select select:has(option:checked:not([value=""])){
  color: #000;
}

/* textarea row */
.fRow.is-textarea{
  align-items: start;
}
.textarea{
  height: 170px;
  resize: vertical;
}
.help{
  margin: 10px 0 0;
  font-size: 12px;
  color:#666;
  line-height: 1.6;
}

/* agree */
.agreeBox{
  margin-top: 18px;
  padding-top: 18px;
}
.agreeNote{
  margin: 0 0 14px;
  font-size: 12px;
  color:#666;
  line-height: 1.7;
}
.checkbox{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color:#222;
}
.checkbox input{
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color:#f06a85;
}

/* submit */
.submitArea{
  margin-top: 28px;
  display:flex;
  justify-content:center;
}
.submitBtn{
  width: min(420px, 100%);
  border: none;
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 16px;
  font-weight: 800;
  color:#fff;
  background: #8c0033; 
  cursor:pointer;
}
.submitBtn:hover{ filter: brightness(1.05); }
.submitBtn:active{ transform: translateY(1px); }


/* =========================
   その他 下の注意文
========================= */
.formNotice {
  font-size: 15px;
  color: #737373;
  text-align: center;
  margin-top: 35px;
}

/* =========================
   同意エリア
========================= */
.agreeBox {
  margin-top: 0;
  padding-top: 23px;
}

.agreeText {
  font-size: 15px;
  color: #737373;
  line-height: 22px;
  text-align: center;
}

/* =========================
   custom checkbox
========================= */

.checkbox{
  display: inline-flex;
  align-items:center;
  gap:10px;
  font-size:18px;
  color:#000;
  cursor:pointer;
}
.agreeBox{
  text-align: center;
}
/* 元inputは非表示 */
.checkbox input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

/* 枠 */
.checkMark{
  width:18px;
  height:18px;
  border:2px solid #bfbfbf;
  border-radius:4px;
  background:#fff;
  display:inline-block;
  position:relative;
  box-sizing:border-box;
}

/* ✓ チェックマーク */
.checkMark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: -1px;
  width: 6px;
  height: 10px;
  border-right: 3px solid #9f244a;
  border-bottom: 3px solid #9f244a;
  transform: rotate(45deg);
  opacity: 0;
}

/* checked */
.checkbox input:checked + .checkMark::after{
  opacity:1;
}

/* focus */
.checkbox input:focus-visible + .checkMark{
  outline:2px solid rgba(240,106,133,.35);
  outline-offset:2px;
}

/* =========================
   送信ボタン
========================= */
.submitArea{
  margin-top: 54px;
  text-align: center;
}

.submitBtn{
  width: 100%;
  max-width: 420px;
  padding: 18px 20px;
  background: #8c0033;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 0 rgba(0,0,0,0.12);
  font-family: "FOT-筑紫A丸ゴシック Std B","TsukuARdGothicStd-B", sans-serif;
}

.submitBtn:hover{
  opacity: 0.9;
}

.submitBtn:active{
  transform: translateY(2px);
  box-shadow: 0 3px 0 rgba(0,0,0,0.12);
}

/* ====== Responsive ====== */
@media (max-width: 900px){
  .formCard{ padding: 8px 14px 28px; }
  .fRow{
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }
  .labelPill{
    width: 100%;
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
    padding: 10px 14px;
    min-height: auto;
    border-radius: 10px
  }
  .fLabel{
    justify-content:flex-start;
  }
  .split{
    flex: 1;
  }
  .fField.is-split{
    flex-direction: column;
    align-items: stretch;
  }
  .radio {font-size: 13px;}
  .input, .textarea, select {
    font-size: 12px;}
  .split__cap {
      font-size: 12px;}
   input, textarea, select{
        font-family: "FOT-筑紫A丸ゴシック Std B","TsukuARdGothicStd-B", sans-serif !important;
      }
  .formNotice {
    font-size: 12px;
    margin-top: 0px;
    text-align: justify;
  }
  .agreeBox {
    padding-top: 0px;
    text-align: justify;}
  .checkbox{align-items:flex-start; }

/* 完全正方形 */
.checkbox input{
  margin-top: 0;         
  border-radius: 2px;    
  flex-shrink: 0;        
}
.checkMark {
  width: 28px;
  height: 18px;
  margin-top: 8px;
}
.agreeText {
  font-size: 12px;
  line-height: 18px;
  text-align: justify;
}
.checkbox {
  font-size: 16px;}
.submitBtn {
    max-width: 290px;
    font-size: 18px;}
.submitArea {
      margin-top: 24px;}

}
/* =====================================================
   4つの魅力
===================================================== */
.bg-wave{
  position: relative;
  overflow: hidden;
  background: url("../img/bg_texture.webp") center / cover no-repeat;
  padding-bottom: 100px;
}

.bg-wave .inner{
  position: relative;
  z-index: 2;
  padding: 90px 0 110px;
}

.bg-wave::before,
.bg-wave::after{
  content:"";
  position:absolute;
  left:0;
  width:100%;
  height:140px;
  z-index: 1;
  background-repeat:no-repeat;
  background-size:cover;
}

.illust{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;

  display: block;
}

.illust img{
  width: 170px;   
  height: auto;
  display: block;
}

.titleMark{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom: 6px;
  color:#d34b6a;
  font-weight:700;
  letter-spacing:.02em;
  margin-top: 75px;
}
.Title{
  margin: 0;
  font-size: 32px;
  line-height: 42px;
  color: var(--brand);
}
:root{
  --cardW: 615px;    
  --peek: 10px;      
  --navW: 54px;
}

/* 全幅背景 */
.charmSlider{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 56px 0 50px;
  overflow: hidden;
}

/* Swiper本体 */
.charmSwiper{
  width: 100%;
  position: relative;
}

.charmSwiper .swiper-wrapper{
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box;
}

.charmSwiper .swiper-slide{
  width: auto;
}


.charmSwiper .charmCard{
  width: 615px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  overflow: hidden;
}

/* =========================
   Charm Panels (01-04)
========================= */
.charmPanel{
  background:#fff;
  border-radius: 28px;
  padding: 34px 34px 28px;
}

/* head */
.charmHead{
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 18px;
}
.charmNo{
  width: 92px;
  height: 92px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
  background: url("../img/charm-num-bg.png") center / cover no-repeat;
}
.charmTitle{
  margin: 8px 0 0;
  color: #8c0033;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: .02em;
}
.charmIllust{
  position: absolute;
  right: 4px;
  top: 0;
  width: 110px;
  height: auto;
}

/* photo */
.charmPhoto{
  margin-top: 8px;
  border-radius: 26px;
  overflow: hidden;
}
.charmPhoto img{
  width: 100%;
  display:block;
  object-fit: cover;
}

/* lead text */
.charmLead{
  margin: 18px 2px 0;
  color:#111;
  font-size: 18px;
  line-height: 1.9;
}
.charmFoot{
  margin: 18px 2px 0;
  color:#111;
  font-size: 18px;
  line-height: 1.9;
}
.hl{ color:#ef8d8d; font-weight: 800; }

/* bullets (03) */
.charmBullets{
  margin: 10px 0 10px;
  padding: 0;
  list-style: none;
}
.charmBullets li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  margin: 6px 0;
}
.charmBullets .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background:#ef8d8d;
  margin-top: 14px;
  flex: 0 0 auto;
}



/* box */
.charmBox{
  position: relative;
  margin-top: 18px;
  padding: 5px 22px;
  border-radius: 22px;
  background: #fff6cc;
}
.charmBoxIllust {
  position: absolute;
  right: 18px;
  top: -11px;
  width: 27px;
  height: auto;
  opacity: .9;
}

/* list */
.charmList{
  margin: 0;
  padding: 0;
  list-style: none;
}
.charmItem{
  padding: 14px 0;
  border-bottom: 3px dotted rgba(140,0,51,.35);
}
.charmItem:last-child{ border-bottom: 0; }

.charmItemT{
  color:#8c0033;
  font-weight: 900;
  font-size: 18px;
}
.charmItemT::before{
  content:"• ";
  font-weight: 900;
}
.charmItemD{
  color:#111;
  font-size: 16px;
  line-height: 1.4;
}

/* まず swiper が勝手に付ける style を邪魔しないように */
.charmSwiper .swiper-pagination{
  position: static;
  margin-top: 28px;
  text-align: center;
}

/* bullet は常に表示 */
.charmSwiper .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  background: #EF8D8D;
  opacity: .45;
  display: inline-block !important;
}

/* active */
.charmSwiper .swiper-pagination-bullet-active{
  background: #9E023B;
  opacity: 1;
}

/* ✅ 5個目以降は強制で消す（HTMLが何枚あっても、loopで増えても関係なく固定） */
.charmSwiper .swiper-pagination-bullet:nth-child(n+5){
  display: none !important;
}
:root{
  --cardW: 615px;
  --gap: 90px;      /* カード間 */
  --navW: 54px;
}

/* 初期ズレ防止 */
.charm-slider{
  opacity: 0;
}
.charm-slider.slick-initialized{
  opacity: 1;
}

/* ベース */
.charm-slider{
  position: relative;
  width: 100%;
}

/* スライド幅固定（variableWidth用） */
.charm-slider .slick-slide{
  width: var(--cardW);
  margin: 0 calc(var(--gap) / 2);
}

.charm-slider .slick-list{
  margin: 0 calc(var(--gap) / -2);
  overflow: visible; /* 端を見切れさせたい場合 */
}

/* カード幅も念のため合わせる */
.charm-slider .charmCard{
  width: var(--cardW);
}

/* =========================
   矢印（54px）
========================= */
.charm-slider .slick-prev,
.charm-slider .slick-next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: var(--navW);
  height: 96px;
  border-radius: 10px;
  background:#ef8d8dd4;
  backdrop-filter: blur(6px);
  border: 0;
  cursor: pointer;
  font-size: 0;
}

/* 位置（中央カード基準） */
.charm-slider .slick-prev{
  left: calc(50% - (var(--cardW) / 2) - 40px - (var(--navW) / 2));
}

.charm-slider .slick-next{
  left: calc(50% + (var(--cardW) / 2) + 40px - (var(--navW) / 2));
}

/* 矢印アイコン */
.charm-slider .slick-prev:before,
.charm-slider .slick-next:before{
  content: "›";
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.charm-slider .slick-prev:before{
  display: inline-block;
  transform: scaleX(-1);
}

/* =========================
   ドット
========================= */
.charm-slider .slick-dots{
  position: static;
  margin-top: 28px;
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 0;
  list-style: none;
}

.charm-slider .slick-dots li{
  margin: 0;
}

.charm-slider .slick-dots button{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #EF8D8D;
  opacity: .45;
  font-size: 0;
}

.charm-slider .slick-dots .slick-active button{
  background: #9E023B;
  opacity: 1;
}
/* hoverを完全上書き */
.charm-slider .slick-prev:hover,
.charm-slider .slick-next:hover,
.charm-slider .slick-prev:focus,
.charm-slider .slick-next:focus{
  background:#ef8d8dd4 !important;
  color:inherit !important;
  outline: none !important;
}

/* slick-themeの透明指定も潰す */
.charm-slider .slick-prev:before,
.charm-slider .slick-next:before{
  color:#fff !important;
}
.charm-slider .slick-dots li button:before{
  display: none !important;
  content: none !important;
}


/* =========================
   Responsive
========================= */
@media (max-width: 820px){
  .charmPanel{ padding: 22px 16px 18px; border-radius: 24px; }
  .charmHead{ grid-template-columns: 68px 1fr; gap: 12px; }
  .charmNo{ width: 68px; height: 68px; font-size: 26px; }
  .charmTitle{ font-size: 22px; }
  .charmIllust{ width: 70px; right: 0; }
  .charmLead, .charmFoot{ font-size: 15px; line-height: 21px; }
  .charmPhoto{ border-radius: 22px; }
  .charmBox{ padding: 16px 14px; border-radius: 18px; }
  .charmBoxIllust{ width: 33px; right: 12px; top: -13px; }
  .charmItemT{ font-size: 16px; }
  .charmItemD{ font-size: 15px;  line-height: 21px; }
}

@media (max-width: 820px){
  .charmBullets .dot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background:#ef8d8d;
    margin-top: 6px;
    flex: 0 0 auto;
  }
}
.charmSwiper .charmImg{
  height: auto;
}
.charmSwiper .charmImg img{
  
  height: auto;
  display: block;
  object-fit: cover; /* 切りたくなければ contain に */
}
/* 画像
.charmSwiper .charmImg{ width: 100%; overflow: hidden; }
.charmSwiper .charmImg img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}*/

/* 高さ（カードごと） 
.charmSwiper .charmCard.is-01 .charmImg{ height: 718px; }
.charmSwiper .charmCard.is-02 .charmImg{ height: 954px; }
.charmSwiper .charmCard.is-03 .charmImg{ height: 896px; }
.charmSwiper .charmCard.is-04 .charmImg{ height: 945px; }*/

/* 矢印 */
.charmSwiper .nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: var(--navW);
  height: 96px;
  border-radius: 10px;
  background:#ef8d8dd4;
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.charmSwiper .nav::before{
  content: "›";
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.charmSwiper .nav.prev::before{ transform: scaleX(-1); }

/* ←矢印位置は “真ん中カード” 基準 */
.charmSwiper .nav.prev{ left: calc(50% - (var(--cardW) / 2) - 40px - (var(--navW) / 2)); }
.charmSwiper .nav.next{ left: calc(50% + (var(--cardW) / 2) + 40px - (var(--navW) / 2)); }

/* ドット */
.charmSwiper .swiper-pagination{
  position: static;
  margin-top: 28px;
  text-align: center;
}
.charmSwiper .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  background: #EF8D8D;
  opacity: .45;
}
.charmSwiper .swiper-pagination-bullet-active{
  background: #9E023B;
  opacity: 1;
}

/* =========================
   左右見切れ（peek）
========================= */
.charmSwiper{
  padding-left: var(--peek);
  padding-right: var(--peek);
  box-sizing: border-box;
}
.charmSpOnly{ display:none; }
/* SP */
@media (max-width: 900px){
  :root{
    --cardW: 86vw;
    --peek: 16px;
  }
  .charmSlider{
    width: auto;
    margin-left: 0;
    padding: 0px 16px 20px;
    overflow: visible;
  }
   /* Swiper特有の横並びを解除して縦並びに */
   .charmSwiper .swiper-wrapper{
    transform: none !important;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
   /* 1枚ずつ幅100% */
   .charmSwiper .swiper-slide{
    width: 100% !important;
  }
  .charmSwiper .charmCard{
    width: 100% !important;
    box-shadow: none;
  }

  .charmSwiper .nav.prev{ left: 12px; }
  .charmSwiper .nav.next{ left: auto; right: 12px; }
  .charmSwiper .charmCard{
    width: 350px;
  }
  /* 初期：SP用は非表示 */
}

@media (max-width:900px){
  /* PC用（元の#charm）を非表示 */
  #charm{ display:none !important; }

  /* SP用を表示 */
  .charmSpOnly{ display:block; }

  /* SP縦並び */
  .charmSpOnly .charmStack{
    padding: 0 16px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .charmSpOnly .charmCard{
    width: 100%;
    box-shadow: none; /* 必要なら */
  }

  
/* 矢印・ドットは不要 */
  
   /* 画像は切らずに 
   .charmSwiper .charmImg{ height: auto !important; }
   .charmSwiper .charmImg img{ width: 100%; height: auto; display:block; }
   .titleMark {margin-top: 60px;}
}*/
}

/* =========================
   interview
========================= */

section.interview .illust{
  width: 124px;
}
section.interview  {
  top: -90px;
  position: relative;
}
section.interview .titleMark {
  margin-top: 70px;
}
/* =========================
   interview
========================= */

.interview{
  position: relative;
  top: -90px;             
  padding: 20px 0 10px;    
  margin-bottom: -40px;    
}

.interview__inner {
  width: min(1120px, calc(100% - 48px));
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ===== card ===== */

.interviewCard__media {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}

.interviewCard__photo {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* 入社丸 */
.interviewCard__badge {
  position: absolute;
  left: 14px;
  top: 145px;
  width: 81px;
  height: 84px;
  background: #e99a9a;
  color: #fff;
  border-radius: 24px;
  display: grid;
  place-items: center;
  z-index: 2;
  text-align: center;
  font-size: 15px;
  line-height: 17px;
}

/* 木 共通 */
.interviewCard__tree {
  position: absolute;
  bottom: -56px;
  right: 3px;
  z-index: 3;
  pointer-events: none;
}

/* 木ごとにサイズ違い */
.tree--1 {
  width: 90px;
}

.tree--2 {
  width: 110px;
}

.tree--3 {
  width: 105px;
}

/* ===== text ===== */

.interviewCard__name {
  margin-top: 12px;
  text-align: center;
  font-size: 24px;
  margin-bottom: 0;
}

.interviewCard__meta {
  margin-top: 6px;
  text-align: left;
  font-size: 15px;
  color: #EF8D8D;
}

.interviewCard__catch {
  margin-top: 14px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 800;
  color: var(--brand);
}

.interviewCard__rule {
  margin-top: 10px;
  border-top: 2px dotted #EF8D8D;
}
.interviewCard__text p{
  font-size: 15px;
  line-height: 21px;
}
/* responsive */
@media (max-width: 1050px) {
  .interview__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .interview__inner {
    margin: 30px auto 0;
}

@media (max-width: 640px) {
  .interview__inner {
    grid-template-columns: 1fr;
  }
}
}

/* =========================
   message section
========================= */


.messageWrap {
  width: min(1200px, calc(100% - 48px));
  margin: 60px auto 0;

  display: grid;
  grid-template-columns: 460px 1fr; 
  gap: 28px;

  align-items: start; 
}

/* ---------- photo ---------- */
.messagePhoto{
  align-self: flex-start;
}
.messagePhoto img {
  width: 100%;
  border-radius: 32px;
  display: block;
  object-fit: cover;
}

/* ---------- message ---------- */


.messageList__inner{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 1ブロック */
.messageItem{
  position: relative; 
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ===== 白枠タイトル ===== */

.messageTitleBox {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  padding: 10px 88px 10px 28px;
  background: #fff;
}

.messageTitle{
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #b21d53;
}

/* ===== 黒文章 ===== */

.messageBody{
  margin: 0;
  padding-left: 6px;
  font-size: 16px;
  line-height: 1.9;
  color: #222;
  z-index: 1;
}

/* ===== もや ===== */

.messageBlob{
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.messageBlob--blue{
  left: -24px;
  top: -16px;
  width: 70px;
}

.messageBlob--red{
  right: -9px;
  top: 18px;
  width: 56px;
}

/* ===== ピン ===== */

.messagePin {
  position: absolute;
  right: 2px;
  top: -20px;
  width: 22px;
  z-index: 2;
}

/* ===== responsive ===== */

@media (max-width: 900px){
  .messageTitle{ font-size: 24px; }
  .messageTitleBox{ padding: 28px 72px 28px 32px; }
  .messagePin {
    width: 22px;
    right: 6px;
    top: -18px;}
  .messageWrap {margin: 30px auto 0;}
}

@media (max-width: 640px){
  .messageList__inner{ 
    gap: 40px;
    padding: 0;
    margin: 0;
    width: 100%;}
  .messageTitle{         
    font-size: 20px;
    line-height: 24px; }
  .messageBody{ font-size: 15px; line-height: 21px; }
  .messageTitleBox{ padding: 10px 17px 8px 22px; border-radius: 18px; }
}



/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .messageWrap {
    grid-template-columns: 1fr;
    gap: 25px;
  } 
}
section#message {
  top: -40px;
  position: relative;
}
section.schedule{
  top: -55px;
    position: relative;
}
/* =========================
   flow section（背景白）
========================= */
.flowSection{
  background: #fff;
  padding: 40px 0;
}

.flowInner{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* =========================
   PC：3列（縦に 1-2-3 / 4-5-6 / 7-8-9）
========================= */
.flowList{
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  column-gap: 120px;
  row-gap: 40px;
}

/* 1アイテム */
.flowItem{
  position: relative;
  display: grid;
  grid-template-columns: 168px 1fr; /* 写真｜テキスト */
  column-gap: 20px;
  align-items: start;
}

/* 写真 */
.flowPhoto{
  position: relative;
  width: 168px; 
}

.flowPhoto img{
  width: 100%;
  height: auto;
  display: block;
}

/* 点線（写真の下に縦線） */
.flowItem::after {
  content: "";
  position: absolute;
  left: 84px;
  top: 120px;
  height: 83px;
  border-left: 4px dotted #f2a1b2;
  opacity: 1;
}

/* 各列の最後（3 / 6 / 9）は線を消す */
.flowItem:nth-child(3)::after,
.flowItem:nth-child(6)::after,
.flowItem:nth-child(9)::after{
  display: none;
}

/* 時刻ピル */
.flowTime {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  background: #EF8D8D;
  color: #fff;
  font-size: 15px;
  letter-spacing: .04em;
}

/* ラベル */
.flowLabel{
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #b21d53;
}
/* ===== 黒文章 ===== */
.flowText{
  margin: 4px 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: #222;
  max-width: 360px;
}
/* 右の時計 */
.flowClock {
  position: absolute;
  right: -70px;
  top: -3px;
  width: 34px;
}
.flowClock img{
  width: 100%;
  display: block;
}

/* =========================
   SP：縦に 1→9（番号順）
========================= */
@media (max-width: 1270px){

  section.schedule{
    top: -100px;
  }

  .flowSection{
    padding: 40px 0 0;
  }

  .flowList{
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    row-gap: 20px;
    column-gap: 0;
  }
  .flowInner {
    width: min(900px, calc(100% - 48px));
}

  /* ===== 1アイテム：写真 / テキスト / 時計 ===== */
  .flowItem{
    display: grid;
    grid-template-columns: 180px 1fr 56px;
    grid-template-rows: auto auto auto; 
    column-gap: 16px;
    row-gap: 1px; 
    align-items: start;
    position: relative;
  }
  .flowContent{ display: contents; }


  .flowPhoto{
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 180px;
  }

  
  .flowItem::after{
    content: "";
    position: absolute;
    left: 90px;          
    top: 128px;
    height: 60px;
    border-left: 4px dotted #f2a1b2;
    opacity: 1;
  }

  
  .flowItem:nth-child(9)::after{
    display: none;
  }

  
  .flowItem:nth-child(3)::after,
  .flowItem:nth-child(6)::after{
    display: block;
  }

  /* 時計：右上 */
  .flowClock{
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: start;
    
    
    
    position: absolute;
    top: 0;
    right: 0;

    width: 30px;
    margin: 0;
  }
  .flowContent{
    display: contents;
  }

  /* ===== 上段：時刻 + ラベル ===== */
  .flowTime{
    grid-column: 2;
    grid-row: 1;

    width: 64px;
    height: 24px;
    padding: 0;
    margin: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .flowLabel{
    grid-column: 2 / -1; 
    grid-row: 2;

    margin: 0;
    line-height: 1.2;
  }

  /* ===== 下段：本文（右側いっぱい） ===== */
  .flowText{
    grid-column: 2 / -1;
    grid-row: 3;

    margin: 0;
    line-height: 1.55;
    max-width: none;
  }
}

/* ========== req ========== */
.req{
  position: relative;
  overflow: hidden;
}


.req::before{
  content:"";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1200px; 

  background-image: url("../img/recruit-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top; 
  z-index: 0;
}

/* 中身を前面へ */
.req > *{
  position: relative;
  z-index: 1;
}
.req__head{
  text-align: center;
  margin-bottom: 26px;
}
.req__eyebrow{
  margin: 0 0 6px;
  font-weight: 800;
  letter-spacing: .06em;
  color: #b21d53;
}
.req__title{
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  color: #b21d53;
}

/* ========== tabs ========== */
.reqTabs{
  width: min(900px, calc(100% - 48px));
  margin: 40px auto;
}

.reqTabs__list{
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-end;
}

.reqTabs__tab {
  border: 0;
  cursor: pointer;
  color: #fff;
  background: #EF8D8D;
  padding: 14px 62px;
  border-radius: 0;
  transition: transform .15s ease, filter .15s ease;
  font-family: "FOT-筑紫A丸ゴシック Std B","TsukuARdGothicStd-B", sans-serif;
  font-size: 17px;
}

.reqTabs__tab.is-active{
  background: #9E023B;
  font-family: "FOT-筑紫A丸ゴシック Std B","TsukuARdGothicStd-B", sans-serif;
  font-size: 17px;
}

.reqTabs__tab:focus-visible{
  outline: 3px solid rgba(178,29,83,.35);
  outline-offset: 3px;
  
}

/* panel card */
.reqTabs__panelWrap{
  background: #fff;
  border-radius: 0px;
  box-shadow: 0 -3px 35px rgba(0, 0, 0, .12);
  padding: 34px 46px;
}

/* panel */
.reqTabs__panel{
  display: block;
}
.reqTabs__panel[hidden]{
  display: none;
}

/* ========== table-like dl ========== */
.reqTable{
  margin: 0;
}
.reqRow{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 2px dotted rgba(178,29,83,.35);
}
.reqRow:first-child{
  border-top: 0;
}

.reqKey {
  margin: 0;
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 68px;
  padding: 0 -4px;
  border-radius: 15px;
  background: #F7D1D1;
  color: #9E023B;
  font-weight: 900;
  font-size: 16px;
}

.reqVal{
  margin: 0;
  color: #222;
  line-height: 1.9;
  font-size: 15px;
}

/* responsive */
@media (max-width: 900px){
  .reqTabs__list{
    gap: 10px;
    flex-wrap: wrap;
  }
  .reqTabs__tab{
    padding: 5px 22px;

  }
  .reqTabs__tab.is-active {
    font-size: 16px;
}
  .reqTabs__panelWrap{
    padding: 26px 18px;
    box-shadow: none
  }
  .reqRow{
    grid-template-columns: 1fr; 
    gap: 10px;
    padding: 18px 0;
  }
  .reqKey{
    width: 80px;
    min-width: 80px;  
    padding: 6px 8px;
    font-size: 14px;
    height: 30px;
    border-radius: 5px;
  }
  .reqVal{
    font-size: 15px;
    line-height: 1.8;
  }
  .req::before{
    height: 350px; 
    background-image: url("../img/recruit-bg-sp.png");
  }
  section.req .illust {
    top: 20px;
}
.reqTabs {
  margin: 40px auto 10px;
}
}
@media (max-width: 375px) {
  .reqTabs__list {
      gap: 4px;
  }
  .reqTabs__tab {
    padding: 5px 16px;

}
}

/* ========= FAQ ========= */
.faq{
  padding: 40px 0;
}

.faqInner{
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq .illust img {
  width: 63px;
}
.faq .titleMark img {
  width: 37px;
}
/* ========= Q ========= */
.faqQ{
  width: 100%;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: "FOT-筑紫A丸ゴシック Std B", "TsukuARdGothicStd-B",sans-serif;
  display: grid;
  grid-template-columns: 64px 1fr 56px;
  align-items: center;
  gap: 18px;
  padding: 22px 22px;
  border-radius: 22px;
  background: #EF8D8D;
}
.faqItem.is-open .faqQ{
  border-radius: 22px 22px 0 0;
}
.faqQ__icon{
  width: 60x;
  height: 60px;
  border-radius: 999px;
  background: #fff;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #ef8d8d;
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
}

.faqQ__text{
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.5;
}

/* 右の + / - */
.faqQ__toggle{
  position: relative;
  width: 46px;
  height: 46px;
  justify-self: end;
}

.faqQ__toggle::before,
.faqQ__toggle::after{
  content:"";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: #fff;
}

.faqQ__toggle::after{
  transform: rotate(90deg); 
}


.faqItem.is-open .faqQ__toggle::after{
  transform: rotate(90deg) scaleX(0);
}


/* ========= A ========= */
.faqA{
  overflow: hidden;
  height: 0;                
  opacity: 0;
  transform: translateY(-6px);
  transition:
    height .38s ease,
    opacity .25s ease,
    transform .25s ease;
  will-change: height, opacity, transform;
}

.faqItem.is-open .faqA{
  opacity: 1;
  transform: translateY(0);
}

.faqA__inner{
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 20px;

  background: #fff;
  border-radius: 0px 0px 22px 22px;
  padding: 26px 28px;

  box-shadow: 0 12px 30px rgba(0,0,0,.10);
}

.faqA__icon{
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #EF8D8D;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
}

.faqA__body{
  color: #222;
  font-size: 17px;
  line-height: 1.9;
}

/* ========= responsive ========= */
@media (max-width: 900px){
  .faq {
    padding: 0px 0 0;
}
  .faqQ{
    grid-template-columns: 52px 1fr 44px;
    padding: 18px 16px;
    border-radius: 22px;
    gap: 12px;
  }
  .faqQ__icon{
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
  .faqQ__text{
    font-size: 16px;
  }
  .faqQ__toggle{
    width: 40px;
    height: 40px;
  }

  .faqA__inner{
    grid-template-columns: 64px 1fr;
    padding: 18px 16px;
    border-radius: 0px 0px 18px 18px;
  }
  .faqA__icon{
    width: 64px;
    height: 64px;
    font-size: 28px;
  }
  .faqA__body{
    font-size: 15px;
  }
}
.ctaArea{
  padding: 44px 16px 28px;
  display: grid;
  justify-items: center;
  gap: 22px;
}

/* CTA button */
.ctaBtn {
  --cta: #b31b4a;
  width: min(550px, 92vw);
  height: 97px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--cta);
  color: #fff;
  text-decoration: none;
  border: 4px solid rgba(255, 255, 255, .92);
  box-shadow: 3.81px 3.81px 11.42px rgba(59, 59, 59, 0.25);
}

.ctaBtn__icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ctaBtn__icon svg{
  color: #fff; /* stroke色 */
}

.ctaBtn__text {
  font-size: 32px;
  line-height: 1;
}

/* hover */
.ctaBtn:hover{
  opacity: .85;
}

/* copy */
.footerCopy{
  margin: 0;
  text-align: center;
  color: #b31b4a;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
}

/* responsive */
@media (max-width: 900px){
  .ctaArea {
    padding: 0px 16px 28px;}
  .ctaBtn{
    height: 61px;
    gap: 14px;
    width: 324px;
    border-width: 2px;
    margin-bottom: 10px;
  }
  .ctaBtn__icon svg{ width: 34px; height: 34px; }
  .footerCopy{ font-size: 14px; }
  .ctaBtn__text {
    font-size: 22px;}
}
/* ======================
   floating CTA
====================== */

.floatingCtaWrap{
  position: relative;
  width: 100%;
  text-align: center;
}

/* ===== PC用背景（PCで使わないなら消してOK） ===== */
.floatingCtaBg{
  width: 100%;
  height: 300px;
  background: url("../img/cta-bg.webp") center top / cover no-repeat;
}

/* ===== PCではCTAボタン非表示 ===== */
.floatingCta{
  display: none;
}

/* 矢印 */
.floatingCta__arrow{
  font-size: 34px;
  line-height: 1;
  display: flex;
  align-items: center;
  transform: translateY(-3px);
}


/* ======================
   SP fixed CTA
====================== */
@media (max-width: 900px){

  .floatingCtaWrap{
    position: relative;
    width: 100%;
    text-align: center;
  }
  
  /* PCでは出さない（念のため） */
  @media (min-width: 901px){
    .floatingCtaBg,
    .floatingCta{
      display: none !important;
    }
  }
  
  /* ======================
     SP fixed CTA（ふわっと）
  ====================== */
  @media (max-width: 900px){
  
    /* ✅ 固定配置は常にON（見た目だけ隠す） */
    .floatingCtaBg{
      display: block;
      position: fixed;
      left: 50%;
      bottom: 0;
      width: 100%;
      height: 180px;
      transform: translateX(-50%);
      z-index: 998;
  
      background: url("../img/cta-bg.webp") center top / cover no-repeat;
      pointer-events: none;
  
      /* ふわっと用（初期は隠す） */
      opacity: 0;
      visibility: hidden;
      transition: opacity .35s ease, visibility 0s linear .35s;
    }
  
    .floatingCta{
      display: flex;
      align-items: center;
      gap: 12px;
  
      position: fixed;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%) translateY(12px);
      z-index: 999;
  
      width: calc(100% - 75px);
      padding: 11px 16px;
  
      background: #fff;
      color: #9E023B;
      font-size: 20px;
      letter-spacing: .08em;
      text-decoration: none;
  
      border-radius: 10px;
      justify-content: center;
      border: 3px solid #fff;
      box-shadow: 0 6px 18px rgba(0,0,0,.28);
  
      /* ふわっと用（初期は隠す） */
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .35s ease, transform .35s ease, visibility 0s linear .35s;
    }
  
    /* ✅ 表示（ふわっと） */
    .floatingCtaWrap.is-show .floatingCtaBg{
      opacity: 1;
      visibility: visible;
      transition: opacity .35s ease, visibility 0s;
    }
  
    .floatingCtaWrap.is-show .floatingCta{
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
      transition: opacity .35s ease, transform .35s ease, visibility 0s;
    }
   /* 下の固定CTAで被らないように */
   body{
    padding-bottom: 110px;
  }
}

}

@media (max-width: 1274px){

  /* ヘッダーを固定しない */
  .siteHeader{
    position: relative;   /* fixed → relative */
  }

  /* モバイルメニューを固定しない */
  .mnav{
    position: absolute;   /* fixed → absolute */
    inset: 0;             /* そのままでOK（header直後に置かれてる前提） */
  }
  .siteHeader {
    height: 0px;}
}

@media (max-width: 1270px) {
 
    #charm{
      padding-bottom: 30px;

    }
   }
@media (max-width: 900px) {
  .charmSwiper .charmCard:nth-child(n+5) {
      display: none !important;
    }
   
   }

    

/* 上の波（白で覆う） */
.bg-wave::before{
  top:0;
  background-image:url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'>\
<path fill='%23ffffff' d='M0,70 C240,120 480,30 720,30 960,30 1200,120 1440,70 L1440,0 L0,0 Z'/>\
</svg>");
}

/* 下の波（白で覆う） */
.bg-wave::after{
  bottom:0;
  transform: rotate(180deg);
  background-image:url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'>\
<path fill='%23ffffff' d='M0,70 C240,120 480,30 720,30 960,30 1200,120 1440,70 L1440,0 L0,0 Z'/>\
</svg>");
}
