:root{
    --lime:#fafafa;           
    --lime-dim:#e4792e;
    --black:#de4d31;
    --white:#FFFFFF;
    --gray:#1C1C1C;
    --gray-soft:#F2F2F2;
    --ink-soft:#666666;
    --sans:'Inter','Noto Sans JP',-apple-system,sans-serif;
  }

.cursor{
  position: fixed;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  z-index: 9999;
  mix-blend-mode: difference;

  /* アニメーション */
  transition: transform .2s ease;
}

@media (max-width: 1048px) {
  .cursor {
    display: none;
  }
}

/* ホバー時 */
.cursor.hover{
  transform: translate(-50%, -50%) scale(2.2);
}

  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--lime);
    color:var(--black);
    font-family:var(--sans);
    font-weight:400;
    line-height:1.4;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
    font-size:12px;
  }


/* スマートフォン */ 
@media (max-width: 480px) {
*{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--lime);
    color:var(--black);
    font-family:var(--sans);
    font-weight:400;
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
    font-size:12px;
  }
}


  [lang="en"] body{
    background:var(--lime);
    color:var(--black);
    font-family:var(--sans);
    font-weight:400;
    line-height:1.3;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
    font-size:14px;
  }

  a{color:inherit;text-decoration:none;}
  img{display:block;max-width:100%;}
  

  /* ============ ANIMATIONS ============ */
  @keyframes fadeUp {
    from { opacity:0; transform:translateY(40px); }
    to { opacity:1; transform:translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity:0; }
    to { opacity:1; }
  }
  @keyframes scrollX {
    from { transform:translateX(0); }
    to { transform:translateX(-50%); }
  }
  @keyframes scrollXReverse {
    from { transform:translateX(-50%); }
    to { transform:translateX(0); }
  }
  @keyframes scrollY {
    from { transform:translateY(0); }
    to { transform:translateY(-50%); }
  }
  @keyframes rotate {
    from { transform:rotate(0); }
    to { transform:rotate(360deg); }
  }
  @keyframes pulse {
    0%,100% { transform:scale(1); }
    50% { transform:scale(1.05); }
  }
  @keyframes marqueeText {
    from { transform:translateX(0); }
    to { transform:translateX(-50%); }
  }

  .reveal {
    opacity:0;
    transform:translateY(40px);
    transition:opacity .8s cubic-bezier(.2,.8,.2,1),transform .8s cubic-bezier(.2,.8,.2,1);
  }
  .reveal.visible {
    opacity:1;
    transform:translateY(0);
  }

  /* ============ NAV ============ */
  nav{
    position:fixed;top:0;left:0;right:0;
    z-index:200;
    mix-blend-mode:difference;
    padding:24px 32px;
    display:flex;justify-content:space-between;align-items:center;
    color:var(--white);
    box-sizing: border-box;
  }
  .logo{
    font-size:22px;
    font-weight:800;
    letter-spacing:-0.02em;
    display:flex;align-items:center;
  }

  .logo span img {
    width: 130px;
}

  /*
  .logo-circle{
    width:10px;height:10px;border-radius:50%;
    background:var(--white);
    animation:pulse 2s ease-in-out infinite;
  }
    */
  .nav-menu{
    display:flex;gap:24px;
    font-size:12px;
    font-weight:500;
  }

  .nav-menu a{
    color:var(--white);
    position:relative;
    font-weight: 600;
  }
  .nav-menu a::after{
    content:"";
    position:absolute;left:0;right:0;bottom:-3px;
    height:1px;background:var(--white);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .3s;
  }
  .nav-menu a:hover::after{transform:scaleX(1);}
  

  .nav-langage a{
    color:var(--white);
    position:relative;
    font-weight: 500;
    font-size:12px;
    border: solid 2px #000000;
    border-radius: 50px;
      padding: 4px 12px;
  }

  /* スマートフォン */ 
@media (max-width: 480px) {
  .nav-langage a{
    color:var(--white);
    position:relative;
    font-weight: 500;
    font-size:10px;
    border: solid 2px #000000;
    border-radius: 50px;
      padding: 4px 12px;
  }
 }

    .nav-langage .active{
      border: solid 2px var(--white);
      border-radius: 50px;
      padding: 4px 12px;
    }

  /* ============ HERO ============ */
  .hero{
    padding:140px 32px 0;
    position:relative;
    display:flex;flex-direction:column;
    justify-content:space-between;
  }

  .hero-top{
    font-size:12px;
    font-weight:500;
    letter-spacing:0.05em;
    display:flex;align-items:center;gap:8px;
    opacity:0;
    animation:fadeIn 1s ease .3s forwards;
  }
  
  .hero-top .dot{
    width:8px;height:8px;border-radius:50%;
    background:var(--black);
    animation:pulse 1.5s ease-in-out infinite;
  }
  .hero h1{
    font-size:clamp(60px,8vw,600px);
    font-weight:900;
    line-height:0.92;
    letter-spacing:1px;
    margin:40px 0 8px;
    max-width:100%;
  }
  .hero h1 .line{
    display:block;
    overflow:hidden;
  }
  .hero h1 .line span{
    display:inline-block;
    transform:translateY(110%);
    animation:heroLine 1.2s cubic-bezier(.2,.8,.2,1) forwards;
  }

   /* スマートフォン */ 
@media (max-width: 480px) {
    .hero h1 .line span {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  }

  .hero h1 .line span b{
    color: #6785cb;
    margin-left: 4px;
    display: inline;
  }

  .hero h1 .line:nth-child(1) span{animation-delay:.2s;}
  .hero h1 .line:nth-child(2) span{animation-delay:.35s;}
  .hero h1 .line:nth-child(3) span{animation-delay:.5s;}
  @keyframes heroLine {
    to { transform:translateY(0); }
  }
  .hero-bottom{
    display:grid;
    grid-template-columns:1.4fr 1fr;
    gap:60px;
    align-items:flex-start;;
    opacity:0;
    animation:fadeIn 1s ease .8s forwards;
  }
  .hero-desc{
    font-size:12px;
    line-height:1.8;
    margin-top: 12px;
  }


  /* スマートフォン */ 
@media (max-width: 480px) {
  .hero-desc{
    font-size:12px;
    line-height:1.5;
  }
 }
  [lang="en"] .hero-desc{
    font-size:14px;
    line-height:1.3;
    margin-top: 12px;
  }
  
  .hero-cta{
    display:inline-flex;align-items:center;gap:14px;
    background:var(--black);
    color:var(--lime);
    padding:22px 32px;
    font-size:12px;
    font-weight:800;
    border-radius:100px;
    transition:transform .3s,.3s;
    justify-self:end;
  }
  .hero-cta:hover{
    transform:scale(1.05);
    background:var(--gray);
  }
  .hero-cta .arrow{
    display:inline-block;
    transition:transform .3s;
  }
  .hero-cta:hover .arrow{transform:translateY(4px);}

  /* decorative rotating mark */
  .hero-deco{
    position:absolute;
    top:180px;right:40px;
    width:160px;height:160px;
    animation:rotate 20s linear infinite;
    pointer-events:none;
  }
  .hero-deco svg{width:100%;height:100%;}

  /* ============ SCROLLING MARQUEE ============ */
  .marquee{
  color:#ffffff;
  padding:0 0 28px;
  overflow:hidden;
  white-space:nowrap;
}

.marquee-track{
  display:flex;              /* ← inline-flex ではなく flex */
  align-items:center;
  width:max-content;         /* ← 中身の横幅に合わせて広がる */
  animation:marqueeText 100s linear infinite;
}

.marquee-item{
  font-size:clamp(48px,24vw,300px);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:-0.02em;
  line-height:1;             /* ← 文字の高さを揃える */
  padding:0;
  display:flex;              /* ← inline-flex ではなく flex */
  align-items:center;
  gap:40px;
  margin-right:40px;         /* ← アイテム間の間隔 */
  flex-shrink:0;             /* ← アイテムが潰れないように */
}


/* スマートフォン */ 
@media (max-width: 480px) {
.marquee-item{
  font-size:clamp(300px,24vw,300px);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:-0.02em;
  line-height:1;             /* ← 文字の高さを揃える */
  padding:0;
  display:flex;              /* ← inline-flex ではなく flex */
  align-items:center;
  gap:40px;
  margin-right:40px;         /* ← アイテム間の間隔 */
  flex-shrink:0;             /* ← アイテムが潰れないように */
}
}



.marquee-item img{
  height:0.8em;              /* ← 文字サイズに連動 */
  width:auto;
  flex-shrink:0;
  margin:0;
  display:block;
}


  /* ============ SECTION NUMBER LABEL ============ */
  .section-label{
    font-size:12px;
    font-weight:400;
    letter-spacing:0.05em;
    display:flex;align-items:center;gap:8px;
    margin-bottom:40px;
  }
  .section-label .dot{
    width:8px;height:8px;border-radius:50%;
    background:var(--black);
  }
  .section-label .tag{
    margin-left:auto;
    opacity:0.6;
  }

  /* ============ SECTION COMMON ============ */
  section{
    padding:120px 32px;
    position:relative;
  }

/* スマートフォン */ 
@media (max-width: 480px) {
section{
    padding:60px 32px;
    position:relative;
  }
}

  .container{max-width:1400px;margin:0 auto;}

  /* ============ INTRO (sub-hero) ============ */
  .intro{
    padding:80px 32px 120px;
  }
  .intro h2{
    font-size:clamp(32px,4.4vw,68px);
    font-weight:700;
    line-height:1.1;
    letter-spacing:-0.02em;
    max-width:1100px;
  }

  /* ============ VALUES (3 column) ============ */
  .values{
    background:var(--black);
    color:var(--white);
  }
  .values-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
  }

  .value-item{
    padding: 20px;
    border: solid 1px #edede84a;
  }

    .value-item span{
      opacity: .7;
    }

  .value-item h3{
    font-size:24px;
    font-weight:700;
    letter-spacing:0.02em;
    margin-bottom:4px;
  }
  .value-item p{
    font-size:10px;
    line-height:1.6;
    color:rgba(255,255,255,0.75);
  }

  [lang="en"] .value-item p{
    font-size:13px;
    line-height:1.4;
    color:rgba(255,255,255,0.75);
  }

  /* ============ SERVICES (numbered rows) ============ */
  .services{
    background:var(--lime);
  }
  .services-head{
    margin-bottom:60px;
  }

  /* スマートフォン */ 
@media (max-width: 480px) {
.services-head{
    margin-bottom:32px;
  }
}
  .services-head h2{
    font-size:clamp(32px,4.5vw,68px);
    font-weight:500;
    line-height:1.2;
    letter-spacing:-0.03em;
    margin-bottom:20px;
    max-width:1100px;
  }

/* スマートフォン */ 
@media (max-width: 480px) {
.services-head h2{
    font-size:clamp(32px,4.5vw,68px);
    font-weight:800;
    line-height:1.2;
    letter-spacing:-0.03em;
    margin-bottom:20px;
    max-width:1100px;
  }

}

[lang="en"] .services-head h2{
    font-size:clamp(50px,5.5vw,68px);
    font-weight:800;
    line-height:1;
    letter-spacing:-0.03em;
    margin-bottom:20px;
    max-width:1100px;
    text-transform: uppercase;
  }


  .services-head h3{
    font-size:20px;
    font-weight:500;
    margin-top:32px;
  }
  .service-row{
    border-top:1px solid var(--black);
    padding:36px 0;
    display:grid;
    grid-template-columns:60px 1fr 2fr;
    gap:40px;
    align-items:start;
    transition:.3s;
  }

  /* スマートフォン */ 
@media (max-width: 480px) {
.service-row{
    border-top:1px solid var(--black);
    padding:24px 0;
    display:grid;
    grid-template-columns:60px 1fr 2fr;
    gap:40px;
    align-items:start;
    transition:.3s;
  }
}

  .service-row:last-of-type{border-bottom:1px solid var(--black);}
  .service-row:hover{
    background:rgba(0,0,0,0.05);
    padding-left:20px;
  }
  .service-num{
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.02em;
    opacity: .7;
    width: 100%;
  }
  .service-name{
    font-size:clamp(24px,3vw,40px);
    font-weight:500;
    letter-spacing:-0.02em;
    line-height:1.05;
  }

  /* スマートフォン */ 
@media (max-width: 480px) {
.service-name{
    font-size:clamp(32px,3vw,40px);
    font-weight:600;
    letter-spacing:-0.02em;
    line-height:1.05;
  }
}
  .service-items{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:4px 24px;
    padding-top:10px;
  }

  /* スマートフォン */ 
@media (max-width: 480px) {
.service-items{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:2px 24px;
    padding-top:0;
  }
}
  .service-items span{
    font-size:12px;
    font-weight:400;
    display:flex;align-items:center;gap:8px;
  }

  [lang="en"] .service-items span{
    font-size:13px;
    font-weight:400;
    display:flex;align-items:center;gap:8px;
  }
  .service-items span::before{
    content:"+";
    font-weight:500;
  }

  /* ============ IMAGE MARQUEE (works loop) ============ */
  .image-marquee{
    background:var(--black);
    padding:40px 0;
    overflow:hidden;
  }

  /* スマートフォン */ 
@media (max-width: 480px) {
.image-marquee{
    background:var(--black);
    padding:40px 0 0;
    overflow:hidden;
  }
}
  .image-track{
    display:flex;
    gap:20px;
    animation:scrollX 40s linear infinite;
    width:max-content;
    align-items: center;
  }
  .image-track.reverse{
    animation:scrollXReverse 50s linear infinite;
    margin-top:20px;
  }
  .image-tile{
    width:260px;
    flex-shrink:0;
    overflow:hidden;
  }
  .image-tile svg{width:100%;height:100%;display:block;}
  

  /* ============ BENEFITS (numbered list) ============ */
  .benefits{
    background:var(--lime);
  }
  .benefits-head{
    margin-bottom:80px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:end;
  }
  .benefits-head h2{
    font-size:clamp(44px,7vw,120px);
    font-weight:500;
    line-height:0.95;
    letter-spacing:-0.03em;
  }
  .benefits-head .img-circle{
    width:100%;
    aspect-ratio:1/1;
    max-width:240px;
    border-radius:50%;
    overflow:hidden;
    justify-self:center;
    animation:rotate 25s linear infinite;
  }

  .benefit-row{
    border-top:1px solid var(--black);
    padding:40px 0;
    display:grid;
    grid-template-columns:80px 1fr;
    gap:40px;
    align-items:start;
  }
  .benefit-row:last-child{border-bottom:1px solid var(--black);}
  .benefit-num{
    font-size:15px;
    font-weight:500;
    opacity:0.6;
  }
  .benefit-content h4{
    font-size:clamp(22px,2.5vw,32px);
    font-weight:500;
    letter-spacing:-0.02em;
    margin-bottom:12px;
    line-height:1.15;
  }
  .benefit-content p{
    font-size:15px;
    line-height:1.6;
    max-width:640px;
    color:var(--black);
    opacity:0.8;
  }

  /* ============ PLANS ============ */
  .plans{
    background:var(--black);
    color:var(--white);
  }
  .plans-head{
    margin-bottom:80px;
  }

  /* スマートフォン */ 
@media (max-width: 480px) {
.plans-head{
    margin-bottom:40px;
  }
}
  .plans-head h2{
    font-size:clamp(32px,4.5vw,68px);
    font-weight:500;
    line-height:1.05;
    letter-spacing:-0.02em;
    margin-bottom:28px;
    max-width:1100px;
  }

  /* スマートフォン */ 
@media (max-width: 480px) {
.plans-head h2{
    font-size:clamp(32px,4.5vw,68px);
    font-weight:800;
    line-height:1.2;
    letter-spacing:-0.03em;
    margin-bottom:28px;
    max-width:1100px;
  }
}

[lang="en"] .plans-head h2{
    font-size:clamp(50px,4.5vw,68px);
    font-weight:800;
    line-height:1;
    letter-spacing:-0.02em;
    margin-bottom:28px;
    max-width:1100px;
    text-transform: uppercase;
  }

  .plans-head h3{
    font-size:clamp(24px,3vw,40px);
    font-weight:500;
    line-height:1.1;
    letter-spacing:-0.02em;
    max-width:900px;
    color:rgba(255,255,255,0.7);
  }

  .plans-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
  }
  .plan-card{
    background: var(--gray);
  padding: 48px;
  border-radius: 28px;
  position: relative;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  min-width: 0;       
  overflow: hidden;   
  }

/* タブレット */ 
@media (min-width: 481px) and (max-width: 1024px) { 
  .plan-card{
    background: var(--gray);
    padding: 48px 24px;
    border-radius: 28px;
    position: relative;
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
    min-width: 0;       
    overflow: hidden;   
  }
}




  .plan-card:hover{transform:translateY(-8px);}
  .plan-card.featured{
    background:var(--lime);
    color:var(--black);
  }
  .plan-tag{
    display:inline-block;
    font-size:10px;
    font-weight:500;
    letter-spacing:0.05em;
    padding:6px 12px;
    border:1px solid currentColor;
    border-radius:100px;
    margin-bottom:16px;
  }

  [lang="en"] .plan-tag{
    display:inline-block;
    font-size:10px;
    font-weight:500;
    letter-spacing:0.05em;
    padding:6px 12px;
    border:1px solid currentColor;
    border-radius:100px;
    margin-bottom:16px;
    text-transform: uppercase;
  }
  .plan-name{
    font-size:clamp(36px,2.5vw,56px);
    font-weight:700;
    letter-spacing:0.02em;
    margin-bottom:16px;
    line-height:1;
  }
  .plan-desc{
    font-size:12px;
    line-height:1.5;
    margin-bottom:24px;
    max-width:380px;
  }

   [lang="en"] .plan-desc{
    font-size:13px;
    line-height:1.5;
    margin-bottom:24px;
    max-width:380px;
  }
  .plan-price{
    display:flex;
    align-items:baseline;
    gap:6px;
    margin-bottom:8px;
  }
  .plan-price .currency{
    font-size:20px;
    font-weight:500;
  }
  .plan-price .amount{
    font-size:54px;
    font-weight:600;
    letter-spacing:-0.04em;
    line-height:1;
  }
  .plan-price .period{
    font-size:10px;
    opacity:0.7;
    margin-left:4px;
  }
  .plan-note{
    font-size:11px;
    opacity:0.9;
    margin-bottom:24px;
    margin-top: 16px;
  }

  [lang="en"] .plan-note{
    font-size:12px;
    opacity:0.9;
    margin-bottom:24px;
    margin-top: 16px;
  }

  .plan-note span{
    font-size:8px;
    margin-left: 4px;
  }

  [lang="en"] .plan-note span{
    font-size:10px;
  }

  .plan-cta{
    display:block;
    text-align:center;
    padding:18px;
    background:var(--black);
    color:var(--lime);
    border-radius:100px;
    font-weight:700;
    font-size:12px;
    margin-bottom:16px;
    transition:transform .3s;
  }

[lang="en"] .plan-cta{
    display:block;
    text-align:center;
    padding:18px;
    background:var(--black);
    color:var(--lime);
    border-radius:100px;
    font-weight:700;
    font-size:14px;
    margin-bottom:16px;
    transition:transform .3s;
    text-transform: uppercase;
  }

  .plan-card.featured .plan-cta{
    background:var(--black);
    color:var(--lime);
  }
  .plan-cta:hover{transform:scale(1.02);}
  .plan-link{
    display:block;
    text-align:center;
    font-size:10px;
    opacity:0.7;
    text-decoration:underline;
    margin-bottom:32px;
  }
[lang="en"] .plan-link{
    display:block;
    text-align:center;
    font-size:11px;
    opacity:0.7;
    text-decoration:underline;
    margin-bottom:32px;
  }

  .plan-includes-label{
    font-size:10px;
    font-weight:600;
    letter-spacing:0.05em;
    margin-bottom:16px;
    text-transform:uppercase;
  }

  .plan-list{
    list-style:none;
    border-top:.5px solid currentColor;
    padding-top:16px;
  }
  .plan-list li{
    padding:4px 0;
    font-size:12px;
    display:flex;align-items:center;
  }

  .plan-list li span{
    padding-left:4px;
    font-size:8px;
  }

  [lang="en"] .plan-list li{
    padding:4px 0;
    font-size:13px;
    display:flex;align-items:center;
  }

  .plan-list li::before{
    content:"→";
    font-weight:500;
    margin-right: 8px;
  }

    .plan-list li a{
      text-decoration:underline;
      margin-right: 4px;
    }

     .plan-list li a:hover{
      opacity: .7;
      transition: .5s;
     }

     
  /* ============ FAQ ============ */
  .faq{
    background:#ffffff;
  }
  .faq-head{
    max-width:900px;
    margin-bottom:60px;
  }

  /* スマートフォン */ 
@media (max-width: 480px) {
.faq-head{
    max-width:900px;
    margin-bottom:40px;
  }

}
  .faq-head h2{
    font-size:clamp(32px, 4.5vw, 68px);
    font-weight:500;
    line-height:1.15;
    letter-spacing:-0.02em;
  }

  /* スマートフォン */ 
@media (max-width: 480px) {
.faq-head h2{
    font-size:clamp(32px, 4.5vw, 68px);
    font-weight:800;
    line-height:1.2;
    letter-spacing:-0.03em;
  }
}

  [lang="en"] .faq-head h2{
    font-size:clamp(50px, 4.5vw, 68px);
    font-weight:800;
    line-height:1;
    letter-spacing:-0.02em;
    text-transform: uppercase;
  }

  .faq-subhead{
    font-size:13px;
    font-weight:500;
    letter-spacing:0.08em;
    margin-bottom:20px;
    text-transform:uppercase;
    padding-top:40px;
    border-top:1px solid var(--black);
  }
 
  .faq-item{
    border-top:1px solid var(--black);
    padding:14px 0;
    cursor:pointer;
  }
  .faq-item:last-child{border-bottom:1px solid var(--black);}
  .faq-q{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:28px;
  }
  .faq-q h4{
    font-size:12px;
    font-weight:500;
    letter-spacing:-0.01em;
    flex:1;
  }

  [lang="en"] .faq-q h4{
    font-size:14px;
    font-weight:500;
    letter-spacing:-0.01em;
    flex:1;
    line-height: 1.5;
  }

  .faq-q .plus{
    width:20px;
    height:20px;
    position:relative;
    flex-shrink:0;
    transition:transform .4s cubic-bezier(.2,.8,.2,1);
  }
  .faq-q .plus::before,
  .faq-q .plus::after{
    content:"";
    position:absolute;
    top:50%;left:50%;
    transform:translate(-50%,-50%);
    background:var(--black);
  }
  .faq-q .plus::before{width:16px;height:2px;}
  .faq-q .plus::after{width:2px;height:16px;transition:transform .4s;}
  .faq-item.open .plus::after{transform:translate(-50%,-50%) rotate(90deg);}
  .faq-item.open .plus{transform:rotate(90deg);}
  .faq-a{
    max-height:0;
    overflow:hidden;
    transition:max-height .5s cubic-bezier(.2,.8,.2,1);
  }
  .faq-a-inner{
    padding:8px 0 4px;
    font-size:11px;
    line-height:1.7;
    max-width:800px;
  }

  [lang="en"] .faq-a-inner{
    padding:8px 0 4px;
    font-size:13px;
    line-height:1.5;
    max-width:800px;
  }

  .faq-item.open .faq-a{max-height:300px;}

/* ============ KNOW US ============ */
.know-us{
  background:var(--lime);
  padding:120px 32px 80px;
  overflow:hidden;
}

.know-us-title{
  font-size:clamp(80px, 18vw, 280px);
  font-weight:900;
  line-height:0.88;
  letter-spacing:-0.04em;
  color:var(--black);
  text-transform:uppercase;
}

.know-us-title a{
  text-decoration: none;
  color:var(--black);
}

.kw-line{
  display:flex;
  align-items:center;
  gap:clamp(20px, 3vw, 60px);
  flex-wrap:nowrap;
}

.kw-line-1{
  justify-content:flex-start;
}

.kw-line-2{
  display:block;
  text-align:left;
}

.kw-word{
  display:inline-block;
  line-height:0.88;
}

.contact-link{
  font-size: 20px;
  font-weight: 700;
  border: solid 2px var(--black);
  padding: 6px 36px 6px 32px;
  border-radius: 50px;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}


/* 矢印の色も変える場合 */
.know-us-title a:hover .contact-link {
  color: #fff;
  background-color: var(--black);
}

.kw-image{
  display:inline-block;
  width:clamp(180px, 22vw, 420px);
  aspect-ratio:16/10;
  overflow:hidden;
  flex-shrink:0;
  align-self:center;
  border-radius:2px;
  position:relative;
}

.kw-image{
  display:inline-block;
  width:clamp(180px, 22vw, 420px);
  aspect-ratio:16/10;
  overflow:hidden;
  flex-shrink:0;
  align-self:center;
  border-radius:2px;
  position:relative;
}

.kw-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:0;
  animation:kwImageSwap 8s steps(1) infinite;
}

/* 4枚それぞれを時差で表示(1枚あたり1秒 × 4枚 = 4秒ループ) */
.kw-img:nth-child(1){ animation-delay: 0s; }
.kw-img:nth-child(2){ animation-delay: 1s; }
.kw-img:nth-child(3){ animation-delay: 2s; }
.kw-img:nth-child(4){ animation-delay: 3s; }
.kw-img:nth-child(5){ animation-delay: 4s; }
.kw-img:nth-child(6){ animation-delay: 5s; }
.kw-img:nth-child(7){ animation-delay: 6s; }
.kw-img:nth-child(8){ animation-delay: 7s; }

@keyframes kwImageSwap{
  0%,
  12.5%  { opacity:1; }
  12.51%,
  100% { opacity:0; }
}

.know-us-bottom{
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:60px;
  align-items:end;
  padding-top:40px;
}

/* スマートフォン */ 
@media (max-width: 480px) {
.know-us-bottom{
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:60px;
  align-items:end;
  padding-top:24px;
}
}

.know-us-article{
  display:block;
  max-width:340px;
  transition:transform .4s cubic-bezier(.2,.8,.2,1);
}

.know-us-article:hover{
  transform:translateY(-4px);
}

.know-us-thumb{
  width:100%;
  aspect-ratio:4/3;
  overflow:hidden;
  margin-bottom:16px;
  border-radius:2px;
}

.know-us-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s cubic-bezier(.2,.8,.2,1);
}

.know-us-article:hover .know-us-thumb img{
  transform:scale(1.05);
}

.know-us-caption h4{
  font-size:25px;
  font-weight:500;
  letter-spacing:-0.01em;
  margin-bottom:6px;
}

.know-us-caption p{
  font-size:12px;
}

[lang="en"] .know-us-caption p{
  font-size:14px;
  line-height: 1.5;
}

.know-us-lead{
  font-size:clamp(18px, 3vw, 28px);
  font-weight:700;
  line-height:1.35;
  letter-spacing:-0.01em;
  max-width:720px;
  justify-self:end;
  text-align: right;
}

.know-us-lead a{
  text-decoration: underline;

}

/* RESPONSIVE */
@media (max-width:900px){
  .know-us{padding:80px 20px 60px;}
  .know-us-title{font-size:clamp(56px, 20vw, 120px);}
  .kw-line{gap:12px;}
  .kw-image{width:clamp(120px, 28vw, 200px);}
  .know-us-bottom{
    grid-template-columns:1fr;
    gap:40px;
  }
  .know-us-lead{justify-self:start;}
  .know-us-hero{margin-bottom:60px;}
}

/* スマートフォン */ 
@media (max-width: 480px) {
.know-us{padding:60px 20px 40px;}
.know-us-hero{margin-bottom:0;}
.know-us-title {
    font-size: clamp(110px, 16vw, 72px);
    letter-spacing: -0.03em;
  }
  
  .kw-line-1 {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .kw-image {
    width: clamp(100px, 40vw, 160px);
  }
  
  .contact-link {
    font-size: 14px;
    padding: 4px 20px 4px 18px;
  }

  .kw-line-2 {
    word-break: break-all;
    overflow-wrap: anywhere;
  }
}

  /* ============ FOOTER CTA ============ */
  .footer-cta{
    background:#2c2b2b;
    color: var(--lime);
    padding:32px;
    
  }
  .footer-cta-inner{
    display:flex;
    align-items:center;
    justify-content: space-between;
    align-items: center;
    border-bottom:.5px solid #ffffff41;
  }
  .footer-cta-inner h3{
    font-size: clamp(32px, 4.5vw, 68px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    max-width: 1100px;
  }


  .footer-cta-btn{
    color:var(--lime);
    font-size: clamp(36px, 3.5vw, 56px);
    font-weight: 600;
    letter-spacing: 0.02em;
    justify-self:start;
    transition:transform .3s;
    border-bottom: solid 2px;
  }
  .footer-cta-btn:hover{
   color:var(--black);
  transition: .5s;
}

  /* ============ FOOTER ============ */
  footer{
    background:#2c2b2b;
    color: var(--lime);
    padding:80px 32px 40px;
  }
  .footer-top{
    max-width:1400px;margin:0 auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
    padding-bottom:40px;
    
  }
  .footer-brand .logo-big{
    font-size:clamp(48px,6vw,96px);
    font-weight:500;
    letter-spacing:-0.03em;
    line-height:1;
    margin-bottom:24px;
  }
  .footer-brand p{
    font-size:14px;
    max-width:320px;
    line-height:1.5;
  }
  footer h5{
    font-size:12px;
    font-weight:500;
    letter-spacing:0.08em;
    text-transform:uppercase;
    margin-bottom:20px;
    opacity:0.6;
  }
  footer ul{list-style:none;}
  footer li{padding:6px 0;font-size:15px;}
  
  .footer-bottom{
    max-width:1400px;
    margin:0 auto;
    display:flex;
    justify-content:space-between;
    font-size:10px;
    font-weight: 600;
    background: var(--lime);
    color: #000000;
    padding:40px 32px;
    list-style: none;
    letter-spacing: .5px;
    border-top: solid 1px #de4e313d;
  }

  /* スマートフォン */ 
@media (max-width: 480px) {
.footer-bottom{
    max-width:1400px;
    margin:0 auto;
    display:block;
    justify-content:space-between;
    font-size:10px;
    font-weight: 600;
    background: var(--lime);
    color: #000000;
    padding:24px 32px 40px;
    list-style: none;
    letter-spacing: .5px;
    border-top: solid 1px #de4e313d;
  }
}

  .footer-bottom li a{
    margin-left: 32px;
  }

  /* スマートフォン */ 
@media (max-width: 480px) {
.footer-bottom li:nth-child(1){
  display: flex;
  justify-content: space-between;
}

.footer-bottom li:nth-child(2){
  display: flex;
  justify-content:flex-end;
  margin-top: 8px;
}

.footer-bottom li:nth-child(2) a{
  margin-left: 16px;
}

.footer-bottom li a{
    margin-left: 0;
  }
}
  



/* ============ PRIVACY MODAL ============ */
.privacy-modal{
  position:fixed;
  inset:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition:opacity .4s ease, visibility .4s ease;
}
.privacy-modal.open{
  opacity:1;
  visibility:visible;
}
.privacy-modal-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  cursor:pointer;
}
.privacy-modal-inner{
  position:relative;
  width:100%;
  height: 95%;
  margin-top: 5%;
  background:#ffffff;
  color:var(--black);
  overflow:hidden;
  transform:translateY(80px) scale(0.98);
  transition:transform .5s cubic-bezier(.2,.8,.2,1);
  box-shadow:0 24px 80px rgba(0,0,0,0.25);
}
.privacy-modal.open .privacy-modal-inner{
  transform:translateY(0) scale(1);
}
.privacy-close{
  position:absolute;
  top:56px;
  right:56px;
  z-index:10;
  width:44px;
  height:44px;
  background:var(--black);
  border:none;
  border-radius:50%;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .3s;
}
.privacy-close:hover{
  transform:rotate(90deg);
}
.privacy-close span{
  position:absolute;
  width:16px;
  height:1.5px;
  background:var(--white);
}
.privacy-close span:first-child{transform:rotate(45deg);}
.privacy-close span:last-child{transform:rotate(-45deg);}
.privacy-modal-scroll{
  max-height:88vh;
  overflow-y:auto;
  padding:56px 56px 40px;
  scrollbar-width:thin;
  scrollbar-color:var(--black) transparent;
}
.privacy-modal-scroll::-webkit-scrollbar{width:6px;}
.privacy-modal-scroll::-webkit-scrollbar-track{background:transparent;}
.privacy-modal-scroll::-webkit-scrollbar-thumb{
  background:var(--black);
  border-radius:100px;
}
.privacy-modal-header{
  margin-bottom:40px;
  padding-bottom:32px;
  border-bottom:1px solid #de4d314f;
}

/* スマートフォン */ 
@media (max-width: 480px) {
.privacy-modal-header{
  margin-bottom:32px;
  padding-bottom:32px;
  border-bottom:1px solid #de4d314f;
}
}

.contact-modal-scroll .privacy-modal-header{
  border: none;
  margin-bottom:0;
}

/* スマホ */
@media (max-width: 480px) {
.contact-modal-scroll .privacy-modal-header{
  border: none;
  margin-bottom:0;
  padding-bottom:24px;
}
}
.privacy-tag{
  display:inline-block;
  font-size:10px;
  font-weight:400;
  letter-spacing:0.05em;
  opacity:0.6;
  margin-bottom:16px;
}
.privacy-modal-header h2{
  font-size:clamp(36px, 5vw, 56px);
  font-weight:700;
  line-height:1;
  letter-spacing:-0.03em;
  margin-bottom:20px;
}


.privacy-lead{
  font-size:12px;
  line-height:1.7;
  font-weight:400;
  max-width:720px;
}
.privacy-section{
  padding:24px 0;
  border-bottom:1px solid #de4e3121;
}
.privacy-section:last-of-type{border-bottom:none;}
.privacy-section h3{
  font-size:16px;
  font-weight:700;
  letter-spacing:-0.01em;
  margin-bottom:12px;
}
.privacy-section h4{
  font-size:12px;
  font-weight:700;
  margin-top:16px;
  margin-bottom:6px;
  letter-spacing:0.02em;
}
.privacy-section p{
  font-size:12px;
  line-height:1.7;
  margin-bottom:8px;
  max-width:720px;
}
.privacy-section ul{
  list-style:none;
  padding:0;
  margin:8px 0;
}
.privacy-section ul li{
  font-size:12px;
  line-height:1.7;
  padding:2px 0 2px 18px;
  position:relative;
}
.privacy-section ul li::before{
  content:"+";
  position:absolute;
  left:0;
  top:2px;
  font-weight:500;
}
.privacy-footer{
  margin-top:32px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:10px;
  opacity:0.8;
}
.privacy-close-btn{
  background:#ffffff;
  color:var(--black);
  border:none;
  padding:12px 24px;
  border-radius:100px;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
  font-family:inherit;
  letter-spacing:0.02em;
  transition:transform .3s;
  border: solid 1px var(--black);
}
.privacy-close-btn:hover{transform:scale(1.05);}

body.modal-open{overflow:hidden;}

@media (max-width:480px){
  .cookie-banner{
    bottom:16px;
    left:16px;
    right:16px;
    transform:translateY(200%);
    padding:12px 16px;
    gap:12px;
    font-size:10px;
  }
  .cookie-banner.show{transform:translateY(0);}
  .privacy-modal{padding:0;}
  
  .privacy-modal-scroll{
    padding:64px 24px 32px;
    max-height:100vh;
  }
  .privacy-close{
    top:16px;
    right:16px;
    width:40px;
    height:40px;
  }
  
}

@media (max-width: 480px) {
  /* モーダル全体を下寄せに */
  .privacy-modal {
    align-items: flex-end;
  }
  
  /* モーダル本体を画面下60%に */
  .privacy-modal-inner {
    height: 60vh;
    max-height: 60vh;
    margin-top: 0;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    border-radius:0;
  }
  
  /* 開いた時のアニメーション */
  .privacy-modal.open .privacy-modal-inner {
    transform: translateY(0);
  }
  
  /* スクロール領域の高さも合わせる */
  .privacy-modal-scroll {
    max-height: 60vh;
    padding: 48px 20px 24px;
  }

  
  /* 閉じるボタンの位置調整 */
  .privacy-close {
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
  }
}



  @media (max-width: 480px) {
.contact-modal-scroll {
    padding: 48px 20px;
  }
  }

/* ============ TOKUSHO LIST ============ */
.tokusho-list{
  margin:0;
  padding:0;
}
.tokusho-row{
  display:grid;
  grid-template-columns:200px 1fr;
  gap:32px;
  padding:20px 0;
  border-bottom:1px solid #de4e3121;
}
.tokusho-row dt{
  font-size:12px;
  font-weight:700;
  letter-spacing:-0.01em;
  line-height:1.6;
}
.tokusho-row dd{
  font-size:12px;
  font-weight:400;
  line-height:1.7;
  margin:0;
}

@media (max-width:1048px){
  .tokusho-row{
    grid-template-columns:1fr;
    gap:6px;
    padding:16px 0;
  }
  
}

  /* ============ RESPONSIVE ============ */
  @media (max-width:900px){
    nav{padding:16px 20px;}
    .nav-menu{display:none;}
    section,.hero,.intro{padding-left:20px;padding-right:20px;}
    .hero{padding-top:100px;}
    .hero-deco{display:none;}
    .hero-bottom{grid-template-columns:1fr;gap:32px;}
    .hero-cta{justify-self:start;}
    .values-grid{grid-template-columns:1fr;gap:32px;}
    .service-row{grid-template-columns:1fr;gap:16px;}
    .service-items{grid-template-columns:1fr;}
    .benefits-head{grid-template-columns:1fr;gap:40px;}
    .benefit-row{grid-template-columns:60px 1fr;gap:20px;}
    .plans-grid{grid-template-columns:1fr;}
    .plan-card{padding:32px 24px;}
    .footer-cta-inner{grid-template-columns:1fr;gap:32px;padding:48px 32px;}
    .footer-top{grid-template-columns:1fr 1fr;}
    .image-tile{width:180px;}
  }

  /* スマートフォン */ 
@media (max-width: 480px) {
.values-grid{grid-template-columns:1fr;gap:14px;}
}



/* ============ CONTACT ============ */
.contact {
  background: var(--lime);
  color: var(--black);
}

.contact-head {
  margin-bottom: 60px;
  max-width: 900px;
}

.contact-head h2 {
  font-size: clamp(32px, 4.5vw, 68px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.contact-head p {
  font-size: 13px;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

/* ========= 予約ボタン側 ========= */
.contact-booking {
  display: flex;
}

.contact-booking-inner {
  background: var(--black);
  color: var(--lime);
  padding: 40px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
}

.contact-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border: 1px solid currentColor;
  border-radius: 100px;
  margin-bottom: 24px;
}

.contact-booking-inner h3 {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.contact-booking-inner p {
  font-size: 12px;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 32px;
  flex-grow: 1;
}

.contact-booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--lime);
  color: var(--black);
  padding: 20px 28px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
  transition: transform .3s, background .3s;
}

.contact-booking-btn:hover {
  transform: scale(1.02);
  background: #fff;
}

.contact-booking-btn .arrow {
  transition: transform .3s;
}

.contact-booking-btn:hover .arrow {
  transform: translateX(4px);
}

/* ========= フォーム側 ========= */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-form h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.form-row {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-row label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.form-row .required {
  color: var(--black);
  margin-left: 2px;
}

.form-row input,
.form-row select,
.form-row textarea {
  font-family: inherit;
  font-size: 13px;
  color: var(--black);
  background: #f7f7f7;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color .3s, background .3s;
  width: 100%;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--black);
  background: #fff;
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-row select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23de4d31' stroke-width='2'%3e%3cpath d='m6 9 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
}

.contact-submit {
  background: var(--black);
  color: var(--lime);
  border: none;
  padding: 18px 28px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  border-radius: 100px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
  transition: transform .3s, background .3s;
}

.contact-submit:hover {
  transform: scale(1.02);
  background: var(--gray);
}

.contact-submit .arrow {
  transition: transform .3s;
}

.contact-submit:hover .arrow {
  transform: translateX(4px);
}

.form-note {
  font-size: 10px;
  opacity: 0.6;
  margin-top: 16px;
  line-height: 1.6;
}

/* ========= スマホ対応 ========= */
@media (max-width: 480px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-booking-inner,
  .contact-form {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .contact-booking-inner,
  .contact-form {
    padding: 28px 20px;
    border-radius: 20px;
  }
  
  .contact-head h2 {
    font-size: clamp(28px, 8vw, 40px);
  }
}

/* ============ CONTACT MODAL (横並びレイアウト) ============ */

/* モーダル全体の幅を広げる */
.contact-modal .privacy-modal-inner {
  max-width: 1400px;
  width: 80%;
}

/* タブレット */ 
@media  (max-width: 1024px) { 
  .contact-modal .privacy-modal-inner {
  max-width: 1400px;
  width: 90%;
}
}

/* 左右の2カラムグリッド */
.contact-modal-grid {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 40px;
  align-items: start;
}

/* タブレット */ 
@media  (max-width: 480px) { 
  .contact-modal-grid {
  display: block;
  grid-template-columns: 1.1fr 2fr;
  gap: 60px;
  align-items: start;
}
}

/* 各カラム */
.contact-modal-col {
  min-width: 0;
}

.contact-modal-col.contact-modal-form-col {
    padding-left: 40px;
}

/* タブレット */ 
@media  (max-width: 480px) { 
.contact-modal-col.contact-modal-form-col {
    border-left: none;
    padding-left: 0;
}
}

.contact-modal-col-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
}


.contact-col-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.6;
  margin-bottom: 8px;
}

.contact-modal-col-header h3 {
  font-size: clamp(44px, 3.5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  line-height: 1;
  word-break: break-word;
        overflow-wrap: anywhere;
}

.contact-modal-col-header h3 span{
  font-size: 12px;
  border: solid 1px var(--black);
  border-radius: 50px;
  margin-left: 8px;
  padding: 4px 16px;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

/* 矢印の色も変える場合 */
.contact-modal-col-header a:hover h3 span {
  color: #fff;
  background-color: var(--black);
}

.contact-modal-col-header p {
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.75;
}

[lang="en"] .contact-modal-col-header p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.75;
}

/* Cal.com 埋め込みのスタイル調整 */
#my-cal-inline {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

/* フォーム */
.contact-modal-form {
  display: flex;
  flex-direction: column;
}

.contact-modal-form .form-row {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.contact-modal-form .form-row label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  color: var(--black);
}

[lang="en"] .contact-modal-form .form-row label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  color: var(--black);
  text-transform: uppercase;
}

.contact-modal-form .required {
  margin-left: 2px;
}

.contact-modal-form input,
.contact-modal-form select,
.contact-modal-form textarea {
  font-family: inherit;
  font-size: 13px;
  color: var(--black);
  background: #f7f7f7;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .3s, background .3s;
  width: 100%;
  box-sizing: border-box;
}

.contact-modal-form input:focus,
.contact-modal-form select:focus,
.contact-modal-form textarea:focus {
  outline: none;
  border-color: var(--black);
  background: #fff;
}

.contact-modal-form textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.6;
  font-family: inherit;
}

.contact-modal-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23de4d31' stroke-width='2'%3e%3cpath d='m6 9 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
}

.contact-submit {
  background: var(--black);
  color: var(--lime);
  border: none;
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  border-radius: 100px;
  cursor: pointer;
  margin-top: 12px;
  transition: transform .3s, background .3s;
}

[lang="en"] .contact-submit {
  background: var(--black);
  color: var(--lime);
  border: none;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  border-radius: 100px;
  cursor: pointer;
  margin-top: 12px;
  transition: transform .3s, background .3s;
}

.contact-submit:hover:not(:disabled) {
  transform: scale(1.02);
  background: var(--gray);
}

.contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* 送信成功メッセージ */
.form-success {
  display: none;
  margin-top: 20px;
  padding: 20px;
  background: #f7f7f7;
  border: 1px solid var(--black);
  border-radius: 12px;
  text-align: center;
}

.form-success.show {
  display: block;
  animation: fadeUp .5s ease forwards;
}

.form-success p {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  margin: 0;
}

[lang="en"] .form-success p {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin: 0;
}

.form-success .form-success-sub {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 6px;
}

[lang="en"] .form-success .form-success-sub {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 6px;
  line-height: 1.5;
}

/* 送信エラーメッセージ */
.form-error {
  display: none;
  margin-top: 20px;
  padding: 16px;
  background: #fff0ed;
  border: 1px solid var(--black);
  border-radius: 12px;
}

.form-error.show {
  display: block;
}

.form-error p {
  font-size: 12px;
  color: var(--black);
  margin: 0;
  text-align: center;
}

[lang="en"] .form-error p {
  font-size: 13px;
  color: var(--black);
  margin: 0;
  text-align: center;
}

.form-note {
  font-size: 10px;
  opacity: 0.6;
  margin-top: 12px;
  line-height: 1.6;
}

[lang="en"] .form-note {
  font-size: 13px;
  opacity: 0.6;
  margin-top: 12px;
  line-height: 1.5;
}


/* スマホ */
@media (max-width: 480px) {
  .contact-modal-grid {
    gap: 40px;
  }


  #my-cal-inline {
    height: 500px !important;
  }
}



@media (max-width: 480px) {

  /* contactModal はスマホで下寄せ・上と左右に余白 */
  div#contactModal {
    align-items: flex-end;
    padding: 5% 5% 0;
    box-sizing: border-box;
  }

  div#contactModal .privacy-modal-inner {
    width: 100% !important;
    max-width: 100% !important;
    height: 100%;
    max-height: 100%;
    margin-top: 0 !important;
    transform: translateY(100%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  div#contactModal.open .privacy-modal-inner {
    transform: translateY(0);
  }

  div#contactModal .privacy-modal-scroll {
    flex: 1;
    height: auto !important;
    max-height: none !important;
    padding: 48px 20px 40px;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.error{
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.error-contents {
    text-align: center;
    flex-direction: column;
    width: 260px;
    display: flex;
    color: #2c2b2b;
}

.error-contents img {
    vertical-align: middle;
    max-width: 100%;
    display: inline-block;
}

.error-contents h1{
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 56px;
  font-weight: 700;
  line-height: 100%;
}


/* タブレット */ 
@media (min-width: 481px) and (max-width: 1024px) { 

}

/* スマホ */
@media (max-width: 480px) {

}


.error img{
  width: 100%;
  margin-bottom: 16px;
}

