.hamburger__bars/* =========================
  Page Styles (LP)
========================= */

html, body{
  width: 100vw;
  overflow-x: hidden;
}

body{
  padding-top: 100px;
}

.grd{
  background: linear-gradient(to right,#FF694E,#F6B966);
}
/* --- Header --- */
.header{
  top: 0;
  z-index: 50;
  background: #ffffff;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226,232,240,.85);
  height: 100px;
  padding-top: 20px;
  position: fixed;
  width: 100%;
  left: 0;
  top:0;
}
.header__in{
  height: var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}
.brand__mark{
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
}
.brand__name{
  font-weight: 900;
  letter-spacing: .02em;
  white-space: nowrap;
}
.nav{
  display:flex;
  align-items:center;
  gap: 35px;
  font-weight: 800;
  color: var(--color-text);
}

.hamburger{
  display:none;
  width:44px; height:44px;
  border-radius: 12px;
  border: 1px solid rgba(226,232,240,.95);
  background:#fff;
  align-items:center;
  justify-content:center;
}
.hamburger__bars{
  width: 22px;
  display:grid;
  gap: 5px;
}
.hamburger__bars span{
  display:block;
  height: 2px;
  background: var(--color-primary);
  border-radius: 99px;
  transition: transform .18s ease, opacity .18s ease;
}

.icon-btn{
  border:none;
}

/* --- Sections --- */
.section{ padding: 56px 0; }
.section--soft{ background: var(--color-bg-soft); }
.section__head{ display:grid; gap: 10px; margin-bottom: 24px; }
.section__desc{ color: var(--color-text-2); }



/* --- Scroll Wrap + Hint --- */
.scroll-wrap{
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}
.scroll-wrap__inner{
  min-width: 860px; /* demo: make it overflow on mobile */
}
.scroll-wrap table{
  width: 100%;
  min-width: 820px;
}
.scroll-wrap th, .scroll-wrap td{
  padding: 12px 10px;
  border-bottom: 1px solid rgba(226,232,240,.9);
  font-size: 14px;
  text-align:left;
}
.scroll-wrap th{
  background: rgba(0,64,144,.06);
  font-weight: 900;
}

/* Hint overlay (shown only when scrollable and not yet scrolled) */
.scroll-wrap__hint{
  pointer-events: none;
  position:absolute;
  inset: 0;
  display:none;
  align-items:flex-end;
  justify-content:center;
  padding: 14px;
}
.scroll-wrap.is-scrollable:not(.is-scrolled) .scroll-wrap__hint{
  display:flex;
}
.hint-pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11,16,32,.70);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(11,16,32,.25);
}

/* Finger icon (SVG data URI) */
.hint-finger{
  width: 34px;
  height: 22px;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  transform: translateX(0);
  animation: hintSwipe 1.35s ease-in-out infinite;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='40' viewBox='0 0 64 40'%3E%3Cpath fill='%23ffffff' d='M24 34c-6 0-10-4-10-10V12a4 4 0 0 1 8 0v9h2V7a4 4 0 0 1 8 0v14h2V9a4 4 0 0 1 8 0v16h2V14a4 4 0 0 1 8 0v12c0 6-4 8-8 8H24z'/%3E%3Cpath fill='%23ffffff' d='M8 22l-6-6 6-6 2 2-4 4 4 4-2 2zm48 0l-2-2 4-4-4-4 2-2 6 6-6 6z' opacity='.85'/%3E%3C/svg%3E");
}
@keyframes hintSwipe{
  0%{ transform: translateX(-10px); opacity: .9; }
  50%{ transform: translateX(10px); opacity: 1; }
  100%{ transform: translateX(-10px); opacity: .9; }
}

.field{ display:grid; gap: 6px; }
.label{ font-weight: 900; }
.input, .textarea{
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid rgba(226,232,240,.95);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}

input::placeholder,
textarea::placeholder{
  color:#D5D5D5;
}
.textarea{ min-height: 140px; resize: vertical; }
.input:focus, .textarea:focus{
  outline: none;
  border-color: rgba(0,64,144,.45);
  box-shadow: 0 0 0 4px rgba(0,64,144,.10);
}
.help{ color: var(--color-text-2); font-size: 13px; }
.msg{
  padding: 10px;
  border-radius: 4px;
  background: rgba(0,64,144,.06);
  color: var(--color-primary);
  font-weight: 800;
  display:none;
}
.msg.is-error{
  background: rgba(220, 38, 38, .08);
  color: #B91C1C;
}
.msg.is-show{ display:block; }

/* main */
  .head-btn{
    display: flex;
    gap:10px;
    align-items: center;
    color:#ffffff;
    height: 50px;
    width: 250px;
    border-radius: 100px;
    justify-content: center;
  }  

/* --- Hero --- */
.hero{
  position: relative;
  background:url("../images/main-bg.webp") center;
  background-size: cover;
  height: 700px;
  padding-top: 110px;
}
.hero__in{
  padding: 44px 0 52px;
  display:grid;
  grid-template-columns: 590px 1fr;
  gap: 28px;
  align-items:center;
}
.hero__cta{
  text-align: center;
  padding: 20px;
  background: #ffffff;
  border-radius: 5px;
  justify-content: center;
}
.hero__card{
  padding: 18px;
}

  .hero__badges{
    color:#ffffff;
    position: relative;
    margin-bottom: 20px;
  }
  
  .hero__badges div{
    position: relative;
    display: inline-block;
  }
  
  .hero__badges div:after{
    content:" ";
    height: calc(100% + 40px);
    right: -20px;
    top:-20px;
    width: 50vw;
    position: absolute;
    background: linear-gradient(to right,transparent 0% ,#0C489C 60%,#0C489C 100%);
    display: block;
    z-index: 1;
  }
  
  .hero__badges span{
    position: relative;
    z-index: 5;
    left: -30px;
  }
  
  .hero-title{
    color:#ffffff;
  }
  
  .hero__card{
    position: relative;
  }
  
  .hero__card img{
    position: absolute;
    max-width: initial;
    left: -50px;
    top:-200px;
  }
  
  .hero__cta-text{
    color:var(--color-primary);
  }
  
  .main-btn{
    display: inline-flex;
    width: 100%;
    max-width: 230px;
    align-items: center;
    gap:10px;
    height: 46px;
    color:#ffffff;
    justify-content: center;
    border-radius: 100px;
    margin-top: 15px;
  }

  .sec01{
    padding-top:80px;
  }
  
  .section__title{
    text-align: center;
    color:var(--color-primary);
    margin-bottom: 20px;
  } 
  
  .section__desc{
    text-align: center;
  }
  
  .w1300{
    width: 90%;
    margin: auto;
    margin-top: 30px;
    max-width: 1300px;
  }

.sec02{
  background-image: url("../images/sec02-bg.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

  .sec02__cont{
    display: grid;
    grid-template-columns: repeat(2,1fr);
  }
  
  .sec02__list{
    display: grid;
    gap:10px;
  }
  
  .sec02__list li{
    text-align: center;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  
  .sec02__box{
    position: relative;
  }
  
  .pt01 .sec02__list li{
    border:2px solid rgba(12 73 153 / 70%);
    border-right: 0;
  }
  
  .pt02 .sec02__list li{
    border:2px solid rgba(12 73 153 / 70%);
    border-left: 0;
    background: rgba(12 73 153 / 70%);
    color:#ffffff;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 10% 50%, 0 0);
  }

  .sec02-img01{
    max-width: inherit;
    left: -130px;
    bottom:-50px;
    position: absolute;
  }  
  
  .sec02-img02{
    max-width: inherit;
    right: -200px;
    bottom:-50px;
    position: absolute;
  }

.sec03{
  background: url("../images/sec03-bg.webp") center;
  background-size: cover;
}

  .sec03 .section__title{
    color:#ffffff;
  }
  
  .sec03-card{
    padding: 20px;
    background: #ffffff;
    border-radius: 5px;
    position: relative;
  }
  
  .sec03__title{
    text-align: center;
    padding: 20px 0;
    background-size:auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 20px;
  }

  .sec03__title.pt01{
    background-image: url("../images/sec03-01.webp");
  }


  .sec03__title.pt02{
    background-image: url("../images/sec03-02.webp");
    margin-bottom: 40px;
  }


  .sec03__title.pt03{
    background-image: url("../images/sec03-03.webp");
    margin-bottom: 50px;
  }
  
  .sec03__attention{
    position: absolute;
    text-align: right;
    right: 0;
    bottom:-50px;
    color:#ffffff;
  }


.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

  .sec03__text02{
    display: flex;
    margin-top: 50px;
    justify-content: center;
    align-items: center;
    gap:20px;
  }
    
  .sec03__text{
    margin-top: 20px;
    text-align: center;
  }
  
  .cvn{
    margin: 50px 0;
    background-image: url("../images/cvn-bg.webp");
    background-size: cover;
    background-position: center;
    text-align: left;
    padding: 10px 0;
  }

.cvn *{
  color:#ffffff;
}

  .cvn .container{
    display: grid;
    grid-template-columns: 550px 1fr;
    align-items: center;
  }
  
  .cvn__title{
    margin-bottom: 20px;
  }
  
  .w1050{
    max-width: 1050px;
  }

  .w1030{
    max-width: 1030px;
  }

.sec04{
  padding: 65px 0 120px;
  background:url("../images/sec04-bg.webp");
  background-size: cover;
}

  .sec04 .grid3{
    gap:30px;
  }
  
  .sec04-card{
    padding: 30px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #ffffff;
  }
  
  .sec04-card:after{
    content:" ";
    display: block;
    height: 10px;
    width: 100%;
    background: var(--color-primary);
    position: absolute;
    left: 0;
    top:0;
  }
  
  .sec04__title{
    padding: 4px;
    margin-top: 15px;
    margin-bottom: 8px;
    border-bottom: 1px dashed #292929;
  }
  
  .sec05{
    background:url("../images/sec05-bg.webp");
    background-size: cover;
  }

  .sec05 .section__desc{
    max-width: 360px;
    width: 100%;
    margin: auto;
    text-align: left;
    line-height: 1.2em;
  }
  
  .sec05__desc{
    padding-bottom: 8px;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    width: 100%;
  }
  
  .sec05__desc:after{
    content:" ";
    width: 180px;
    height: 1px;
    background: #D9D9D9;
    display: block;
    left: calc(50% - 90px);
    bottom:0;
    position: absolute;
  }


  .sec07__list li{
    display: grid;
    grid-template-columns: 330px 1fr 220px;
    gap:20px;
    padding: 5px;
    padding-right: 15px;
    border-bottom: 1px dashed #D9D9D9;
    position: relative;
    align-items: flex-end;
    font-family: "Inter", sans-serif;
  }
  
  .sec07__list li:not(:last-child):after{
    content:" ";
    display: block;
    position: absolute;
    bottom:-15px;
    left: calc(50% - 15px);
    width: 30px;
    height: 15px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    background: #D9D9D9;
  }
  
  .sec06__list-head{
    display: flex;
    gap:20px;
    align-items: flex-end;
    letter-spacing: 0.2em;
  }

  .sec07{
    background: #F4F6F7;
  }
  
  .sec07__cont-list{
    padding:30px 50px;
    background: #ffffff;
    border:1px solid #A8AAAD;
    background: #ffffff;
    border-radius: 5px;
  }
  
  .sec07__cont-title{
    margin-bottom: 24px;
    color:var(--color-primary);
  }

  #contact .container{
    border-radius: 16px;
    padding:60px 40px;
    background: #ffffff;
    box-shadow: 0 0 8px 0 rgba(0 0 0 / 8%);
  }
  .u-hide{
    display: none;
  }
  
  .contact__desc{
    text-align: center;
    line-height: 1.75em;
  }

.form__row{
  display: grid;
  padding: 24px 0;
  gap:20px;
  align-items: center;
  grid-template-columns: 200px 1fr;
}

.form__row:not(.form__row--textarea){
  border-bottom: 1px solid #E3E3E3;
}

.form__error{
  color:red;
}

.badge--req{
  padding: 1px 6px;
  background: #FE9533;
  border-radius: 4px;
  color:#ffffff;
  margin-left: 3px;
  display: inline-block;
}

.badge--any{
  padding: 1px 6px;
  background: #A8AAAD;
  border-radius: 4px;
  color:#ffffff;
  margin-left: 3px;
  display: inline-block;
}

.form__row--textarea{
  align-items: flex-start;
}

/* ===== Checkbox UI (bigger) ===== */
.check{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  justify-content: center;
  margin-bottom: 20px;
}

/* 本体は見えないけど操作可能に */
.check__input{
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

/* 見せる箱 */
.check__box{
  width: 24px;          /* ← 大きさ（好みで 22〜28px） */
  height: 24px;
  border-radius: 6px;   /* 角丸 */
  border: 1px solid #c7c7c7;
  background: #fff;
  flex: 0 0 auto;
  margin-top: 2px;      /* 行頭揃え用（好みで調整） */
  position: relative;
  transition: 0.15s;
}

/* チェックマーク（線で描く） */
.check__box::after{
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 8px;
  height: 14px;
  border-right: 3px solid #004090; /* ← チェック色 */
  border-bottom: 3px solid #004090;
  transform: rotate(45deg);
  opacity: 0;
  transition: 0.15s;
}

/* checked */
.check__input:checked + .check__box{
  border-color: #004090;
  background: rgba(0,64,144,.08);
}
.check__input:checked + .check__box::after{
  opacity: 1;
}

/* focus（キーボード操作） */
.check__input:focus-visible + .check__box{
  outline: 3px solid rgba(0,64,144,.25);
  outline-offset: 2px;
}

/* disabled（必要なら） */
.check__input:disabled + .check__box{
  opacity: .5;
  cursor: not-allowed;
}

.u_line{
  text-decoration: underline;
}

.form__actions{
  text-align: center;
}

.form__actions .btn{
  max-width: 260px;;
  border-radius: 0;
}

.footer{
  border-top:1px solid #E3E3E3;
  padding: 30px 0 10px;
  text-align: center;
}

.foot__logo img{
  display: inline-block;
}


.form__accept .form__error{
  text-align: center;
}


























/* --- Thanks Page --- */
.thanks{
  background:
    radial-gradient(900px 520px at 10% 10%, rgba(0,64,144,.14), transparent 55%),
    radial-gradient(900px 520px at 90% 20%, rgba(32,80,160,.10), transparent 55%),
    linear-gradient(180deg, #fff, var(--color-bg-soft));
}
.thanks__wrap{
  padding: 54px 0 72px;
}
.thanks__card{
  padding: 22px;
}
.thanks__head{
  display:flex;
  align-items:center;
  gap: 14px;
}
.thanks__icon{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  background: rgba(0,64,144,.08);
  border: 1px solid rgba(0,64,144,.18);
}
.thanks__icon svg{ width: 28px; height: 28px; fill: var(--color-primary); }
.thanks__sub{
  color: var(--color-text-2);
}
.thanks__grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 980px){
  .thanks__grid{ grid-template-columns: 1fr; }
}
.thanks__panel{
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(226,232,240,.95);
  background: #fff;
}
.kv{
  display:flex;
  align-items:flex-start;
  gap: 12px;
}
.kv__dot{
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--color-primary);
  flex: 0 0 auto;
}
.kv__title{
  font-weight: 900;
}
.kv__text{
  margin-top: 4px;
  color: var(--color-text-2);
}
.thanks__actions{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.notice{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0,64,144,.06);
  border: 1px solid rgba(0,64,144,.12);
  color: var(--color-primary);
  font-weight: 800;
}
.small-links{
  margin-top: 14px;
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--color-text-2);
  font-weight: 700;
}
.small-links a:hover{ text-decoration: underline; }

/* =========================
  Confirm Modal (default hidden)
========================= */
.modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none; /* default hidden */
}

.modal.is-open{
  display: block;
}

.modal__bg{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}

.modal__panel{
  position: relative;
  width: min(720px, calc(100% - 32px));
  margin: 40px auto;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  max-height: calc(100vh - 80px);
  overflow: auto;
}

@media (max-width: 767px){
  .modal__panel{
    margin: 20px auto;
    padding: 16px;
    max-height: calc(100vh - 40px);
  }
}

/* scroll lock when modal open */
body.is-scroll-locked{
  overflow: hidden;
}

.confirm .confirm__row{
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 20px;
  gap:30px;
  border-bottom: 1px solid #cccccc;
}

.modal__body{
  margin-bottom: 30px;
}
