@charset "UTF-8";

/* =========================================
  Base
========================================= */
:root{
  --bg:#ffffff;
  --text:#111111;
  --muted:#666666;
  --line:rgba(0,0,0,.10);
  --container:1120px;

  --dd-bg:#f2f2f2;
  --dd-line:#dcdcdc;
  --dd-shadow:0 12px 28px rgba(0,0,0,.08);
  --dd-gap:12px;
  --dd-bridge-height:14px;

  --join:#f36058;
  --blue:#143f9d;
  --light-gray:#f3f4f6;
  --light-blue:#e0f2fc;
}

*{
  box-sizing:border-box;
}

html,
body{
  margin:0;
  padding:0;
}

body{
  font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue","Hiragino Sans","Hiragino Kaku Gothic ProN","Noto Sans JP","Yu Gothic",Meiryo,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.7;
}

body.menu-open{
  overflow:hidden;
}

img{
  display:block;
  max-width:100%;
  height:auto;
}

a{
  color:inherit;
  text-decoration:none;
}

button{
  font:inherit;
}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

/* =========================================
  Header
========================================= */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  overflow:visible;
}

.header__inner{
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
}

.brand__img{
  height:34px;
  width:auto;
  display:block;
}

/* =========================================
  Nav
========================================= */
.gnav{
  display:flex;
  align-items:center;
  position:relative;
}

.gnav__toggle{
  display:none;
  width:40px;
  height:40px;
  padding:0;
  margin:0;
  background:transparent;
  border:none;
  outline:none;
  box-shadow:none;
  position:relative;
  cursor:pointer;
  flex:0 0 40px;
  appearance:none;
  -webkit-appearance:none;
}

.gnav__toggle::-moz-focus-inner{
  border:0;
}

.gnav__toggle:focus,
.gnav__toggle:focus-visible{
  outline:none;
  box-shadow:none;
}

.gnav__toggle span{
  position:absolute;
  left:50%;
  width:22px;
  height:2px;
  background:#111;
  border-radius:2px;
  transform:translateX(-50%);
  transition:.3s;
  margin:0;
}

.gnav__toggle span:nth-child(1){
  top:12px;
}

.gnav__toggle span:nth-child(2){
  top:19px;
}

.gnav__toggle span:nth-child(3){
  top:26px;
}

.gnav__toggle.is-open span:nth-child(1){
  top:19px;
  transform:translateX(-50%) rotate(45deg);
}

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

.gnav__toggle.is-open span:nth-child(3){
  top:19px;
  transform:translateX(-50%) rotate(-45deg);
}

.gnav__panel{
  display:flex;
  align-items:center;
  gap:22px;
}

.gnav__list{
  display:flex;
  align-items:center;
  gap:22px;
  list-style:none;
  margin:0;
  padding:0;
}

.navitem{
  position:relative;
}

.navlink{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 2px;
  font-size:14px;
  font-weight:600;
  color:rgba(17,17,17,.88);
  white-space:nowrap;
}

.gnav__right{
  display:flex;
  align-items:center;
}

/* =========================================
  Header Button
========================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:104px;
  height:40px;
  padding:0 18px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  white-space:nowrap;
}

.btn--join{
  background:var(--join);
  color:#fff;
  box-shadow:none;
}

/* =========================================
  Dropdown (PC)
========================================= */
.has-dd{
  position:relative;
}

.has-dd .dd{
  position:absolute;
  top:100%;
  left:0;
  width:240px;
  margin-top:var(--dd-gap);
  background:var(--dd-bg);
  border-right:2px solid var(--dd-line);
  border-radius:6px;
  box-shadow:var(--dd-shadow);
  overflow:hidden;
  display:none;
  z-index:30;
}

.has-dd::after{
  content:"";
  position:absolute;
  top:100%;
  left:0;
  width:260px;
  height:var(--dd-bridge-height);
  display:none;
  background:transparent;
}

.has-dd:hover::after,
.has-dd:focus-within::after{
  display:block;
}

.has-dd:hover .dd,
.has-dd:focus-within .dd{
  display:block;
}

.has-dd .dd a{
  display:block;
  padding:18px 20px;
  font-size:15px;
  font-weight:700;
  color:#222;
  border-bottom:1px solid var(--dd-line);
  background:#f2f2f2;
}

.has-dd .dd a:last-child{
  border-bottom:none;
}

.has-dd .dd a:hover{
  background:#ebebeb;
}

/* PCでは矢印なし */
.has-dd > .navlink::after{
  content:none;
}

/* =========================================
  Hero
========================================= */
.hero{
  width:100%;
}

.hero__media{
  width:100%;
  aspect-ratio:1850 / 813;
}

.hero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* =========================================
  Common Section
========================================= */
.section{
  padding:88px 20px;
  text-align:center;
}

.section--white{
  background:#fff;
}

.section--gray{
  background:var(--light-gray);
}

.section--reason{
  background:var(--light-gray);
}

.section--steps{
  background:var(--light-blue);
}

.section__inner{
  width:min(1120px, 100%);
  margin:0 auto;
}

.section__title{
  margin:0 0 38px;
  font-size:34px !important;
  line-height:1.4 !important;
  font-weight:600 !important;
  color:#111;
}

.section__text{
  margin:0;
  font-size:16px;
  line-height:2.2;
  font-weight:400;
  color:#222;
}

/* =========================================
  About CTA / Note
========================================= */
.about-cta{
  margin-top:60px;
  text-align:center;
}

.about-cta__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:360px;
  max-width:100%;
  height:72px;
  padding:0 24px;
  border-radius:999px;
  background:#fff;
  color:#666;
  border:2px solid #6b6b6b;
  box-shadow:none;
  font-size:18px;
  font-weight:700;
  line-height:1;
  white-space:nowrap;
}

.about-cta__btn:hover{
  background:#f7f7f7;
}

.about-note{
  margin:22px auto 0;
  max-width:760px;
  text-align:center;
}

.about-note p{
  margin:0;
  font-size:12px;
  line-height:1.8;
  color:#666;
}

.about-note p + p{
  margin-top:4px;
}

/* =========================================
  Feature Section
========================================= */
.feature-section{
  text-align:left;
}

.feature-section .section__title{
  text-align:center;
}

.feature-section__inner{
  width:min(1120px, 100%);
}

.feature-list{
  margin-top:56px;
}

.feature-item{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 460px;
  gap:56px;
  align-items:start;
  padding:44px 0;
  border-top:1px solid #e5e5e5;
}

.feature-item:first-child{
  border-top:none;
  padding-top:0;
}

.feature-item__text{
  min-width:0;
}

.feature-item__head{
  display:flex;
  align-items:center;
  gap:18px;
  margin:0 0 22px;
}

.feature-item__num{
  flex:0 0 auto;
  display:inline-block;
  min-width:64px;
  font-size:56px;
  line-height:1;
  font-weight:700;
  color:var(--blue);
  letter-spacing:.01em;
}

.feature-item__title{
  margin:0;
  font-size:20px;
  line-height:1.45;
  font-weight:700;
  color:#111;
}

.feature-item__desc{
  margin:0;
  font-size:15px;
  line-height:2;
  color:#222;
}

.feature-item__image{
  align-self:start;
}

.feature-item__image img{
  width:100%;
  height:auto;
  display:block;
}

/* =========================================
  Reason Section
========================================= */
.reason{
  background:#f3f4f6;
  padding:100px 20px;
}

.reason__inner{
  max-width:1120px;
  margin:0 auto;
}

.reason__title{
  text-align:center;
  font-size:28px;
  font-weight:600;
  margin:0 0 40px;
}

.reason-tabs{
  display:flex;
  gap:10px;
  margin-bottom:0;
}

.reason-tab{
  flex:1;
  padding:16px 0;
  border:none;
  background:#bfc4cc;
  color:#fff;
  font-weight:600;
  border-radius:10px 10px 0 0;
  cursor:pointer;
}

.reason-tab.is-active{
  background:#3a8ecb;
}

.reason-contents{
  background:#fff;
  padding:40px;
  border-radius:0 0 10px 10px;
}

.reason-content{
  display:none;
}

.reason-content.is-active{
  display:block;
}

.reason-box{
  display:flex;
  gap:40px;
  align-items:center;
}

.reason-text{
  flex:1;
  min-width:0;
}

.reason-text h3{
  margin:0 0 20px;
  font-size:22px;
  line-height:1.5;
}

.reason-text p{
  margin:0;
  font-size:14px;
  line-height:1.9;
}

.reason-image{
  width:260px;
  height:200px;
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:600;
  flex:0 0 260px;
}

.red{
  color:#e60012;
  font-weight:600;
}

/* =========================================
  3STEP
========================================= */
.steps{
  width:min(1120px, 100%);
  margin:80px auto 0;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:44px;
}

.step{
  position:relative;
  background:#fff;
  border-radius:20px;
  padding:54px 30px 38px;
  text-align:center;
  min-height:0;
}

.step__badge{
  position:absolute;
  top:-24px;
  left:50%;
  transform:translateX(-50%);
  width:54px;
  height:auto;
}

.step__title{
  margin:24px 0 0;
  font-size:18px;
  line-height:1.75;
  font-weight:700;
  color:#111;
}

.step__title span{
  color:#e60012;
}

.step__text{
  margin:18px 0 0;
  font-size:14px;
  line-height:1.9;
  color:#555;
}

.step__img{
  display:block;
  margin:22px auto 0;
  max-width:140px;
  height:auto;
}

.step__btn{
  display:block;
  margin:20px auto 0;
  width:260px;
  height:56px;
  line-height:56px;
  text-align:center;
  background:#f36058;
  color:#fff;
  font-weight:700;
  font-size:16px;
  border-radius:999px;
  transition:.3s;
}

.step__btn:hover{
  opacity:.85;
}

/* =========================================
  CTA LINE Section
========================================= */
.cta-line{
  background:#fff;
  padding:52px 20px 60px;
}

.cta-line__inner{
  width:min(980px, 100%);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
}

.cta-line__image{
  flex:0 0 210px;
}

.cta-line__image img{
  width:100%;
  height:auto;
}

.cta-line__button{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  width:480px;
  min-height:96px;
  padding:20px 30px;
  border-radius:999px;
  background:linear-gradient(180deg,#36d64f 0%,#20c847 100%);
  color:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.cta-line__lineicon{
  width:60px;
  height:60px;
  flex-shrink:0;
}

.cta-line__text{
  flex:1;
  font-size:26px;
  line-height:1.2;
  font-weight:600;
  text-align:center;
}

.cta-line__arrow{
  position:relative;
  width:42px;
  height:42px;
  flex-shrink:0;
  border-radius:50%;
  background:#fff;
}

.cta-line__arrow::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:9px;
  height:9px;
  border-top:3px solid #20c847;
  border-right:3px solid #20c847;
  transform:translate(-60%,-50%) rotate(45deg);
}

/* =========================================
  Divider
========================================= */
.footer-divider{
  width:100%;
  height:1px;
  background:#111;
  opacity:.18;
}

/* =========================================
  Footer
========================================= */
.site-footer{
  background:#fff;
  padding:54px 20px 34px;
}

.site-footer__inner{
  width:min(980px, 100%);
  margin:0 auto;
  text-align:center;
}

.site-footer__logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.site-footer__logoImg{
  height:27px;
  width:auto;
}

.site-footer__nav{
  margin-top:34px;
}

.site-footer__list{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:32px;
  list-style:none;
  margin:0;
  padding:0;
}

.site-footer__list li{
  margin:0;
  padding:0;
}

.site-footer__list a{
  display:inline-block;
  font-size:15px;
  line-height:1.6;
  color:#222;
}

.site-footer__copy{
  margin:34px 0 0;
  font-size:12px;
  line-height:1.6;
  color:#666;
}

/* =========================================
  Responsive
========================================= */
@media (max-width:900px){
  .feature-item{
    grid-template-columns:1fr;
    gap:28px;
    padding:36px 0;
  }

  .feature-item__num{
    min-width:52px;
    font-size:46px;
  }

  .feature-item__title{
    font-size:18px;
  }

  .feature-item__desc{
    font-size:14px;
    line-height:1.9;
  }

  .steps{
    grid-template-columns:1fr;
    gap:60px;
  }
}

@media (max-width:840px){
  .gnav{
    position:static;
  }

  .gnav__toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    z-index:1002;
  }

  .gnav__panel{
    position:fixed;
    top:76px;
    left:0;
    right:0;
    bottom:0;
    z-index:1001;
    display:none;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    gap:0;
    width:100vw;
    height:calc(100vh - 76px);
    padding:28px 20px 40px;
    background:#ffffff;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
  }

  .gnav__panel.is-open{
    display:flex;
  }

  .gnav__list{
    width:100%;
    max-width:360px;
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:0;
  }

  .navitem{
    width:100%;
  }

  .navlink{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:100%;
    min-height:56px;
    padding:0 12px;
    text-align:center;
    font-size:18px;
    font-weight:700;
    line-height:1.4;
    gap:8px;
  }

  .has-dd > .navlink::after{
    content:"";
    display:inline-block;
    width:9px;
    height:9px;
    border-right:2px solid #222;
    border-bottom:2px solid #222;
    transform:rotate(45deg) translateY(-2px);
    transition:transform .2s ease;
    flex:0 0 auto;
  }

  .has-dd.is-open > .navlink::after{
    transform:rotate(-135deg) translateY(-1px);
  }

  .has-dd::after{
    display:none !important;
  }

  .has-dd .dd{
    position:static;
    width:100%;
    margin:0;
    padding:0 0 8px;
    border:none;
    border-radius:0;
    box-shadow:none;
    background:transparent;
    display:none;
    overflow:visible;
  }

  .has-dd.is-open .dd{
    display:block;
  }

  .has-dd .dd a{
    display:block;
    padding:0 12px 14px;
    background:transparent;
    border:none;
    text-align:center;
    font-size:14px;
    font-weight:600;
    line-height:1.6;
    color:#444;
  }

  .has-dd .dd a:hover{
    background:transparent;
  }

  .gnav__right{
    width:100%;
    display:flex;
    justify-content:center;
    margin-top:24px;
  }

  .gnav__right .btn--join{
    min-width:168px;
    height:54px;
    font-size:18px;
  }
	  .has-dd:hover .dd,
  .has-dd:focus-within .dd{
    display:none;
  }

  .has-dd.is-open .dd{
    display:block;
  }

  .has-dd:hover::after,
  .has-dd:focus-within::after{
    display:none !important;
  }
		
}

@media (max-width:767px){
  .container{
    width:calc(100% - 32px);
  }

  .hero__media{
    aspect-ratio:9 / 16;
  }

  .section{
    padding:68px 16px;
  }

  .section__title{
    margin-bottom:28px;
    font-size:28px !important;
  }

  .section__text{
    font-size:14px;
    line-height:2;
  }

  .about-cta{
    margin-top:32px;
  }

  .about-cta__btn{
    width:85%;
    height:60px;
    font-size:16px;
  }

  .about-note{
    margin-top:18px;
  }

  .about-note p{
    font-size:11px;
    line-height:1.7;
  }

  .feature-list{
    margin-top:40px;
  }

  .feature-item__head{
    gap:14px;
    margin-bottom:18px;
  }

  .feature-item__num{
    min-width:46px;
    font-size:42px;
  }

  .feature-item__title{
    font-size:18px;
  }

  .reason{
    padding:68px 16px;
  }

  .reason__title{
    font-size:28px;
  }

    .reason-tabs{
    flex-direction:row;   /* ← 横並びに戻す */
    gap:6px;
  }

  .reason-tab{
    flex:1;
    padding:12px 0;
    font-size:12px;
    border-radius:10px 10px 0 0;
  }

  .reason-contents{
    padding:20px 16px;
  }

  .reason-contents{
    padding:24px 20px;
    border-radius:0 0 10px 10px;
  }

  .reason-box{
    flex-direction:column;
    align-items:flex-start;
	gap:16px;
  }

 .reason-image{
    width:100%;
    max-width:260px;  
    height:auto;      
    margin:2px auto 0;
  }

  .reason-image img{
    width:100%;
    height:auto;
  }

  .steps{
    margin-top:50px;
  }

  .step{
    padding:50px 22px 34px;
  }

  .step__title{
    margin-top:22px;
    font-size:17px;
  }

  .step__text{
    font-size:13px;
  }

  .step__btn{
    width:100%;
    max-width:260px;
  }

  .cta-line{
    padding:36px 16px 42px;
  }

  .cta-line__inner{
    flex-direction:column;
    gap:20px;
  }

  .cta-line__image{
    flex:none;
    width:170px;
  }

  .cta-line__button{
    width:100%;
    max-width:420px;
    min-height:88px;
    padding:16px 22px;
  }

  .cta-line__lineicon{
    width:46px;
    height:46px;
  }

  .cta-line__text{
    font-size:19px;
  }

  .cta-line__arrow{
    width:34px;
    height:34px;
  }

  .site-footer{
    padding:42px 16px 28px;
  }

  .site-footer__logoImg{
    height:21px;
  }

  .site-footer__nav{
    margin-top:24px;
  }

  .site-footer__list{
    gap:14px 20px;
  }

  .site-footer__list a{
    font-size:14px;
  }

  .site-footer__copy{
    margin-top:26px;
    font-size:11px;
  }
}


/* デフォルト（PC）では非表示 */
.sp-br{
  display: none;
}

/* スマホだけ表示 */
@media (max-width: 767px){
  .sp-br{
    display: inline;
  }
}

.pc-br{
  display: inline;
}

@media (max-width: 767px){
  .pc-br{
    display: none;
  }
}

@media (max-width:767px){

  /* セクション全体 */
  .feature-section{
    padding:68px 24px;
  }

  /* 各ブロックの中身も少し余白追加 */
  .feature-item{
    padding-left:4px;
    padding-right:4px;
  }
}

@media (max-width:767px){

  .feature-section .section__title{
    margin-bottom:48px;
  }

}

/* =========================================
  Floating Chat Button
========================================= */
.floating-chat{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:999;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  width:320px;
  min-height:72px;
  padding:14px 20px;
  border-radius:999px;
  background:linear-gradient(180deg,#36d64f 0%,#20c847 100%);
  color:#fff;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
  transition:opacity .3s ease, transform .3s ease, visibility .3s ease;
}

.floating-chat:hover{
  transform:translateY(-2px);
}

.floating-chat.is-hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(8px);
}

.floating-chat__icon{
  width:42px;
  height:42px;
  flex:0 0 42px;
}

.floating-chat__text{
  flex:1;
  min-width:0;
  font-size:20px;
  line-height:1.3;
  font-weight:700;
  text-align:center;
  white-space:nowrap;
}

.floating-chat__arrow{
  position:relative;
  width:34px;
  height:34px;
  flex:0 0 34px;
  border-radius:50%;
  background:#fff;
}

.floating-chat__arrow::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:8px;
  height:8px;
  border-top:3px solid #20c847;
  border-right:3px solid #20c847;
  transform:translate(-60%,-50%) rotate(45deg);
}

@media (min-width:768px){
  .floating-chat{
    width:340px;
    min-height:76px;
    right:24px;
    bottom:24px;
    padding:16px 22px;
  }

  .floating-chat__text{
    font-size:21px;
  }
}

@media (max-width:767px){
  .floating-chat{
    left:12px;
    right:12px;
    bottom:12px;
    width:auto;
    min-height:64px;
    padding:12px 16px;
    gap:12px;
    border-radius:999px;
  }

  .floating-chat__icon{
    width:36px;
    height:36px;
    flex:0 0 36px;
  }

  .floating-chat__text{
    font-size:18px;
  }

  .floating-chat__arrow{
    width:30px;
    height:30px;
    flex:0 0 30px;
  }

  .floating-chat__arrow::after{
    width:7px;
    height:7px;
    border-top:2px solid #20c847;
    border-right:2px solid #20c847;
  }
}



.cta-line__content{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.cta-line__bubble{
  position:relative;
  margin:0 0 14px;
  padding:10px 18px;
  background:#fff;
  border:2px solid #20c847;
  border-radius:999px;
  color:#20c847;
  font-size:16px;
  line-height:1.5;
  font-weight:700;
  text-align:center;
  box-shadow:0 6px 16px rgba(0,0,0,.08);
}

.cta-line__bubble::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-15px;
  transform:translateX(-50%);
  width:16px;
  height:16px;
  background:#fff;
  border-right:2px solid #20c847;
  border-bottom:2px solid #20c847;
  rotate:45deg;
}

@media (max-width:767px){
  .cta-line__content{
    width:100%;
  }

  .cta-line__bubble{
    margin:0 0 12px;
    padding:9px 14px;
    font-size:13px;
    line-height:1.5;
    width:100%;
    max-width:420px;
  }
}




/* =========================================
  FAQ Page
========================================= */
.faq-hero{
  background:#dce9f5;
  padding:92px 20px 86px;
}

.faq-hero__inner{
  width:min(1120px, 100%);
  margin:0 auto;
  text-align:center;
}

.faq-hero__title{
  margin:0;
  font-size:44px;
  line-height:1.2;
  font-weight:700;
  color:#143f9d;
  letter-spacing:.04em;
}

.faq-page{
  background:#fff;
  padding:72px 20px 120px;
}

.faq-page__inner{
  width:min(980px, 100%);
  margin:0 auto;
}

.faq-page__list{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.faq-page__item{
  border:1px solid #d9e2ec;
  border-radius:18px;
  background:#fff;
  box-shadow:0 6px 18px rgba(0,0,0,.04);
  overflow:hidden;
}

.faq-page__question{
  list-style:none;
  display:flex;
  align-items:flex-start;
  gap:18px;
  padding:26px 28px;
  cursor:pointer;
  position:relative;
}

.faq-page__question::-webkit-details-marker{
  display:none;
}

.faq-page__q{
  flex:0 0 28px;
  width:28px;
  display:block;
  color:#111;
  font-size:28px;
  line-height:1.2;
  font-weight:700;
  font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue","Hiragino Sans","Hiragino Kaku Gothic ProN","Noto Sans JP","Yu Gothic",Meiryo,sans-serif;
  text-align:left;
}

.faq-page__questionText{
  flex:1;
  min-width:0;
  font-size:16px;
  line-height:1.9;
  font-weight:700;
  color:#111;
  padding-right:40px;
}

.faq-page__icon{
  position:absolute;
  right:28px;
  top:50%;
  width:18px;
  height:18px;
  transform:translateY(-50%);
}

.faq-page__icon::before,
.faq-page__icon::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:18px;
  height:2px;
  background:#143f9d;
  border-radius:999px;
  transform:translate(-50%,-50%);
  transition:transform .25s ease, opacity .25s ease;
}

.faq-page__icon::after{
  transform:translate(-50%,-50%) rotate(90deg);
}

.faq-page__item[open] .faq-page__icon::after{
  opacity:0;
}

.faq-page__answer{
  padding:0 28px 26px;
  border-top:1px solid #edf2f7;
}

.faq-page__answerInner{
  display:flex;
  align-items:flex-start;
  gap:18px;
  padding-top:22px;
}

.faq-page__a{
  flex:0 0 28px;
  width:28px;
  display:block;
  color:#84a7f5;
  font-size:28px;
  line-height:1.2;
  font-weight:700;
  font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue","Hiragino Sans","Hiragino Kaku Gothic ProN","Noto Sans JP","Yu Gothic",Meiryo,sans-serif;
  text-align:left;
}

.faq-page__answerInner p{
  flex:1;
  margin:0;
  font-size:16px;
  line-height:2;
  font-weight:400;
  color:#333;
}

@media (max-width:767px){
  .faq-hero{
    padding:54px 16px 50px;
  }

  .faq-hero__title{
    font-size:24px;
    line-height:1.3;
  }

  .faq-page{
    padding:38px 16px 72px;
  }

  .faq-page__list{
    gap:12px;
  }

  .faq-page__item{
    border-radius:14px;
  }

  .faq-page__question{
    gap:14px;
    padding:20px 18px;
  }

  .faq-page__q{
    flex:0 0 24px;
    width:24px;
    font-size:24px;
    line-height:1.2;
  }

  .faq-page__questionText{
    font-size:14px;
    line-height:1.8;
    padding-right:28px;
  }

  .faq-page__icon{
    right:18px;
    width:16px;
    height:16px;
  }

  .faq-page__icon::before,
  .faq-page__icon::after{
    width:16px;
  }

  .faq-page__answer{
    padding:0 18px 20px;
  }

  .faq-page__answerInner{
    gap:14px;
    padding-top:18px;
  }

  .faq-page__a{
    flex:0 0 24px;
    width:24px;
    font-size:24px;
    line-height:1.2;
  }

  .faq-page__answerInner p{
    font-size:12px;
    line-height:1.9;
    font-weight:400;
    color:#333;
  }
}


/* =========================================
  NextAsset Page
========================================= */
.about-page-hero{
  background:#dce9f5;
}

.about-anchor{
  background:#fff;
  padding:26px 20px;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.about-anchor__inner{
  width:min(1120px, 100%);
  margin:0 auto;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.about-anchor__link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:220px;
  min-height:54px;
  padding:0 24px;
  border:1px solid #cfd8e3;
  border-radius:999px;
  background:#fff;
  color:#143f9d;
  font-size:15px;
  line-height:1.4;
  font-weight:700;
  transition:.3s;
}

.about-anchor__link:hover{
  background:#f5f9fd;
}

.about-section{
  padding:88px 20px;
}

.about-section--white{
  background:#fff;
}

.about-section--gray{
  background:#f7f8fb;
}

.about-section__inner{
  width:min(1120px, 100%);
  margin:0 auto;
}

.about-section__head{
  text-align:center;
  margin-bottom:52px;
}

.about-section__sub{
  margin:0 0 10px;
  color:#6b7ea5;
  font-size:14px;
  line-height:1.4;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.about-section__title{
  margin:0;
  color:#111;
  font-size:38px;
  line-height:1.4;
  font-weight:700;
}

.about-block{
  display:grid;
  grid-template-columns:460px minmax(0, 1fr);
  gap:56px;
  align-items:center;
}

.about-block--reverse{
  grid-template-columns:minmax(0, 1fr) 460px;
}

.about-block--reverse .about-block__image{
  order:2;
}

.about-block--reverse .about-block__content{
  order:1;
}

.about-block__image img{
  width:100%;
  height:auto;
  display:block;
  border-radius:24px;
  box-shadow:0 12px 28px rgba(0,0,0,.08);
}

.about-block__content p{
  margin:0;
  color:#222;
  font-size:16px;
  line-height:2.1;
  font-weight:400;
}

.about-block__content p + p{
  margin-top:24px;
}

.service-cards{
  display:flex;
  flex-direction:column;
  gap:36px;
}

.service-card{
  display:grid;
  grid-template-columns:320px minmax(0, 1fr);
  gap:68px;
  align-items:start;
  padding:68px;
  border:1px solid #e4e8ef;
  border-radius:24px;
  background:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.05);
}

.service-card__image img{
  width:100%;
  height:auto;
  display:block;
  border-radius:18px;
}

.service-card__body{
  min-width:0;
}

.service-card__title{
  margin:0 0 18px;
  color:#111;
  font-size:28px;
  line-height:1.4;
  font-weight:700;
}

.service-card__body p{
  margin:0;
  color:#222;
  font-size:16px;
  line-height:2;
  font-weight:400;
}

.service-card__body p + p{
  margin-top:20px;
}

@media (max-width:900px){
  .about-block,
  .about-block--reverse{
    grid-template-columns:1fr;
    gap:30px;
  }

  .about-block--reverse .about-block__image,
  .about-block--reverse .about-block__content{
    order:initial;
  }

  .service-card{
    grid-template-columns:1fr;
    gap:44px;
    padding:44px;
  }
}

@media (max-width:767px){
  .about-anchor{
    padding:18px 16px;
  }

  .about-anchor__inner{
    gap:10px;
    flex-wrap:nowrap;
  }

  .about-anchor__link{
    min-width:0;
    width:calc(50% - 5px);
    min-height:46px;
    padding:0 10px;
    font-size:13px;
  }

  .about-section{
    padding:60px 16px;
  }

  .about-section__head{
    margin-bottom:34px;
  }

  .about-section__sub{
    margin-bottom:8px;
    font-size:12px;
  }

  .about-section__title{
    font-size:28px;
    line-height:1.4;
  }

  .about-block{
    gap:22px;
  }

  .about-block__image img{
    border-radius:18px;
  }

  .about-block__content p{
    font-size:14px;
    line-height:2;
  }

  .about-block__content p + p{
    margin-top:18px;
  }

  .service-cards{
    gap:20px;
  }

  .service-card{
    gap:36px;
    padding:36px;
    border-radius:18px;
  }

  .service-card__image img{
    border-radius:14px;
  }

  .service-card__title{
    margin-bottom:14px;
    font-size:22px;
    line-height:1.4;
  }

  .service-card__body p{
    font-size:14px;
    line-height:1.9;
  }

  .service-card__body p + p{
    margin-top:16px;
  }
}

@media (max-width:767px){
  .about-section--philosophy{
    padding-left:24px;
    padding-right:24px;
  }
}

.about-section--philosophy .about-block__image img{
  border-radius:0;
  box-shadow:none;
}


/* =========================================
  NextAsset-K Page
========================================= */
.about-anchor--triple{
  background:#fff;
  padding:26px 20px;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.about-anchor__inner--triple{
  width:min(1120px, 100%);
  margin:0 auto;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.about-anchor__link--triple{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:220px;
  min-height:54px;
  padding:0 24px;
  border:1px solid #cfd8e3;
  border-radius:999px;
  background:#fff;
  color:#143f9d;
  font-size:15px;
  line-height:1.4;
  font-weight:700;
  text-align:center;
  transition:.3s;
}

.about-anchor__link--triple:hover{
  background:#f5f9fd;
}

.service-cards--k{
  display:flex;
  flex-direction:column;
  gap:36px;
}

.service-card--k{
  display:grid;
  grid-template-columns:320px minmax(0, 1fr);
  gap:68px;
  align-items:start;
  padding:68px;
  border:1px solid #e4e8ef;
  border-radius:24px;
  background:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.05);
}

.price-wrap{
  width:min(960px, 100%);
  margin:0 auto;
}

.price-table{
  border:1px solid #dfe5ee;
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.05);
}

.price-table__row{
  display:grid;
  grid-template-columns:235px minmax(0, 1fr);
}

.price-table__row + .price-table__row{
  border-top:1px solid #e8edf4;
}

.price-table__label{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px 24px;
  background:#f4f7fb;
  color:#143f9d;
  font-size:20px;
  line-height:1.5;
  font-weight:700;
  border-right:1px solid #e8edf4;
  text-align:center;
}

.price-table__value{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:28px 34px;
  text-align:center;
}

.price-table__valueMain{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  color:#111;
  font-size:34px;
  line-height:1.4;
  font-weight:700;
}

.price-table__valueMain span{
  font-size:16px;
  font-weight:400;
  color:#555;
}

.price-table__subnote{
  margin-top:14px;
  color:#bf0a0a;
  font-size:15px;
  line-height:1.8;
  font-weight:700;
  text-align:center;
}

.funds-block--plain{
  display:flex;
  flex-direction:column;
  gap:0;
}

.funds-section{
  padding:72px 0;
  border:none;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.funds-section + .funds-section{
  border-top:1px solid #d9d9d9;
}

.funds-section__title{
  margin:0 0 54px;
  color:#111;
  font-size:26px;
  line-height:1.5;
  font-weight:700;
  text-align:center;
}

.funds-section__body{
  text-align:left;
}

.funds-section__body p{
  margin:0;
  color:#222;
  font-size:16px;
  line-height:2.2;
  font-weight:400;
}

.funds-section__body p + p{
  margin-top:28px;
}

@media (max-width:900px){
  .service-card--k{
    grid-template-columns:1fr;
    gap:44px;
    padding:44px;
  }
}

@media (max-width:767px){
  .about-anchor--triple{
    padding:18px 16px;
  }

  .about-anchor__inner--triple{
    gap:8px;
    flex-wrap:nowrap;
  }

  .about-anchor__link--triple{
    min-width:0;
    width:calc((100% - 16px) / 3);
    min-height:48px;
    padding:0 6px;
    font-size:12px;
    line-height:1.3;
    white-space:normal;
  }

  .service-card--k{
    gap:36px;
    padding:36px;
    border-radius:18px;
  }

  .price-table{
    border-radius:18px;
  }

  .price-table__row{
    grid-template-columns:120px minmax(0, 1fr);
  }

  .price-table__label{
    padding:18px 12px;
    font-size:15px;
    line-height:1.5;
  }

  .price-table__value{
    padding:18px 14px;
  }

  .price-table__valueMain{
    gap:6px;
    font-size:26px;
    line-height:1.4;
  }

  .price-table__valueMain span{
    font-size:13px;
  }

  .price-table__subnote{
    margin-top:10px;
    font-size:12px;
    line-height:1.7;
  }

  .funds-block--plain{
    gap:0;
  }

  .funds-section{
    padding:52px 12px;
  }

  .funds-section__title{
    margin:0 0 34px;
    font-size:20px;
    line-height:1.5;
  }

  .funds-section__body p{
    font-size:14px;
    line-height:2;
  }

  .funds-section__body p + p{
    margin-top:22px;
  }
}


/* =========================================
  Signup Page
========================================= */
.signup-page-hero{
  background:#dce9f5;
}

.signup-page{
  background:#fff;
  padding:72px 20px 120px;
}

.signup-page__inner{
  width:min(760px, 100%);
  margin:0 auto;
}

.signup-form{
  padding:42px 40px 48px;
  border:1px solid #e4e8ef;
  border-radius:24px;
  background:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.05);
}

.signup-form__row + .signup-form__row{
  margin-top:26px;
}

.signup-form__label{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 10px;
  color:#111;
  font-size:16px;
  line-height:1.5;
  font-weight:700;
}

.signup-form__required{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  height:24px;
  padding:0 8px;
  border-radius:6px;
  background:#f36c5f;
  color:#fff;
  font-size:11px;
  line-height:1;
  font-weight:700;
  letter-spacing:.02em;
}

.signup-form__input{
  width:100%;
  height:58px;
  padding:0 18px;
  border:1px solid #d7dee8;
  border-radius:14px;
  background:#fff;
  color:#111;
  font-size:16px;
  line-height:1.5;
  outline:none;
  appearance:none;
  -webkit-appearance:none;
}

.signup-form__input:focus{
  border-color:#143f9d;
}

.signup-form__input::placeholder{
  color:#9aa3af;
}

.signup-form__note{
  margin:10px 0 0;
  color:#666;
  font-size:13px;
  line-height:1.7;
  font-weight:400;
}

.signup-form__error,
.signup-form__globalError{
  margin:10px 0 0;
  color:#bf0a0a;
  font-size:13px;
  line-height:1.8;
  font-weight:700;
}

.signup-form__submit{
  margin-top:38px;
  text-align:center;
}

.signup-form__button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:320px;
  max-width:100%;
  min-height:64px;
  padding:0 28px;
  border:none;
  border-radius:999px;
  background:#f36058;
  color:#fff;
  font-size:18px;
  line-height:1.4;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
  appearance:none;
  -webkit-appearance:none;
}

.signup-form__button:hover{
  opacity:.9;
}

.signup-form__button--link{
  text-decoration:none;
}

.signup-complete{
  padding:52px 40px 58px;
  border:1px solid #e4e8ef;
  border-radius:24px;
  background:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.05);
  text-align:center;
}

.signup-complete__title{
  margin:0 0 20px;
  color:#111;
  font-size:30px;
  line-height:1.5;
  font-weight:700;
}

.signup-complete__text{
  margin:0;
  color:#333;
  font-size:16px;
  line-height:2;
  font-weight:400;
}

.signup-complete__buttonWrap{
  margin-top:34px;
}

@media (max-width:767px){
  .signup-page{
    padding:38px 16px 72px;
  }

  .signup-page__inner{
    width:100%;
  }

  .signup-form{
    padding:26px 20px 32px;
    border-radius:18px;
  }

  .signup-form__row + .signup-form__row{
    margin-top:20px;
  }

  .signup-form__label{
    gap:8px;
    margin-bottom:8px;
    font-size:14px;
  }

  .signup-form__required{
    min-width:38px;
    height:22px;
    padding:0 7px;
    border-radius:5px;
    font-size:10px;
  }

  .signup-form__input{
    height:52px;
    padding:0 14px;
    border-radius:12px;
    font-size:14px;
  }

  .signup-form__note{
    margin-top:8px;
    font-size:12px;
    line-height:1.7;
  }

  .signup-form__error,
  .signup-form__globalError{
    font-size:12px;
    line-height:1.7;
  }

  .signup-form__submit{
    margin-top:30px;
  }

  .signup-form__button{
    width:100%;
    min-width:0;
    min-height:58px;
    font-size:16px;
  }

  .signup-complete{
    padding:34px 22px 38px;
    border-radius:18px;
  }

  .signup-complete__title{
    margin-bottom:14px;
    font-size:22px;
  }

  .signup-complete__text{
    font-size:14px;
    line-height:1.9;
  }

  .signup-complete__buttonWrap{
    margin-top:24px;
  }
}


/* =========================================
  Legal Page
========================================= */
.legal-section{
  padding:80px 20px;
  background:#fff;
}

.legal-section--alt{
  background:#f7f8fb;
}

.legal-section__inner{
  width:min(980px, 100%);
  margin:0 auto;
}

.legal-section__title{
  margin:0 0 34px;
  color:#111;
  font-size:34px;
  line-height:1.5;
  font-weight:700;
  text-align:center;
}

.legal-table{
  border:1px solid #222;
  border-radius:0;
  overflow:visible;
  background:#fff;
  box-shadow:none;
}

.legal-table__row{
  display:grid;
  grid-template-columns:250px minmax(0, 1fr);
}

.legal-table__row + .legal-table__row{
  border-top:1px solid #222;
}

.legal-table__head{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px 20px;
  background:#fff;
  border-right:1px solid #222;
  color:#111;
  font-size:18px;
  line-height:1.6;
  font-weight:700;
  text-align:center;
}

.legal-table__body{
  padding:22px 24px;
  color:#111;
  font-size:16px;
  line-height:1.9;
  font-weight:400;
  background:#fff;
}

.legal-table__note{
  display:inline-block;
  margin-top:6px;
  font-size:14px;
  line-height:1.7;
  color:#555;
}

/* ===== 本文共通 ===== */
.legal-content{
  color:#222;
}

.legal-content > p{
  margin:0;
  font-size:16px;
  line-height:2.1;
  font-weight:400;
}

.legal-content > p + p{
  margin-top:22px;
}

.legal-article{
  margin-top:34px;
}

.legal-article h3{
  margin:0 0 14px;
  color:#111;
  font-size:22px;
  line-height:1.6;
  font-weight:700;
}

.legal-article p{
  margin:0;
  font-size:16px;
  line-height:2.1;
  color:#222;
  font-weight:400;
}

.legal-article ul{
  margin:12px 0 0 1.4em;
  padding:0;
}

.legal-article li{
  margin:0;
  font-size:16px;
  line-height:2;
  color:#222;
}

.legal-date{
  margin-top:36px !important;
  text-align:right;
  color:#555;
}

.legal-important{
  color:#bf0a0a;
  font-weight:700 !important;
}

@media (max-width:767px){
  .legal-section{
    padding:54px 16px;
  }

  .legal-section__title{
    margin-bottom:24px;
    font-size:24px;
    line-height:1.5;
  }

  .legal-table{
    border-radius:0;
    box-shadow:none;
  }

  .legal-table__row{
    grid-template-columns:1fr;
  }

  .legal-table__head{
    justify-content:flex-start;
    padding:14px 16px 12px;
    border-right:none;
    border-bottom:1px solid #222;
    background:#fff;
    color:#111;
    font-size:15px;
    line-height:1.6;
    text-align:left;
  }

  .legal-table__body{
    padding:14px 16px 16px;
    font-size:14px;
    line-height:1.9;
    background:#fff;
  }

  .legal-table__note{
    font-size:12px;
    line-height:1.7;
  }

  .legal-content > p{
    font-size:14px;
    line-height:2;
  }

  .legal-content > p + p{
    margin-top:18px;
  }

  .legal-article{
    margin-top:28px;
  }

  .legal-article h3{
    margin-bottom:10px;
    font-size:18px;
    line-height:1.6;
  }

  .legal-article p,
  .legal-article li{
    font-size:14px;
    line-height:1.9;
  }

  .legal-date{
    margin-top:28px !important;
    font-size:14px;
    line-height:1.8;
    text-align:left;
  }
}


/* =========================================
  Contact Page
========================================= */
.contact-page-hero{
  background:#dce9f5;
}

.contact-page{
  background:#fff;
  padding:72px 20px 120px;
}

.contact-page__inner{
  width:min(760px, 100%);
  margin:0 auto;
}

.contact-form{
  padding:0;
  border:none;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.contact-form__row + .contact-form__row{
  margin-top:26px;
}

.contact-form__label{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 10px;
  color:#111;
  font-size:16px;
  line-height:1.5;
  font-weight:700;
}

.contact-form__required{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  height:24px;
  padding:0 8px;
  border-radius:6px;
  background:#f36c5f;
  color:#fff;
  font-size:11px;
  line-height:1;
  font-weight:700;
  letter-spacing:.02em;
}

.contact-form__input,
.contact-form__textarea{
  width:100%;
  border:1px solid #d7dee8;
  border-radius:14px;
  background:#fff;
  color:#111;
  font-size:16px;
  line-height:1.5;
  outline:none;
  appearance:none;
  -webkit-appearance:none;
}

.contact-form__input{
  height:58px;
  padding:0 18px;
}

.contact-form__textarea{
  min-height:220px;
  padding:16px 18px;
  resize:vertical;
}

.contact-form__input:focus,
.contact-form__textarea:focus{
  border-color:#143f9d;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder{
  color:#9aa3af;
}

.contact-form__error,
.contact-form__globalError{
  margin:10px 0 0;
  color:#bf0a0a;
  font-size:13px;
  line-height:1.8;
  font-weight:700;
}

.contact-form__submit{
  margin-top:38px;
  text-align:center;
}

.contact-form__button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:320px;
  max-width:100%;
  min-height:64px;
  padding:0 28px;
  border:none;
  border-radius:999px;
  background:#f36058;
  color:#fff;
  font-size:18px;
  line-height:1.4;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
  appearance:none;
  -webkit-appearance:none;
}

.contact-form__button:hover{
  opacity:.9;
}

.contact-form__button--link{
  text-decoration:none;
}

.contact-complete{
  padding:0;
  border:none;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  text-align:center;
}

.contact-complete__title{
  margin:0 0 20px;
  color:#111;
  font-size:30px;
  line-height:1.5;
  font-weight:700;
}

.contact-complete__text{
  margin:0;
  color:#333;
  font-size:16px;
  line-height:2;
  font-weight:400;
}

.contact-complete__buttonWrap{
  margin-top:34px;
}

@media (max-width:767px){
  .contact-page{
    padding:38px 16px 72px;
  }

  .contact-page__inner{
    width:100%;
  }

  .contact-form__row + .contact-form__row{
    margin-top:20px;
  }

  .contact-form__label{
    gap:8px;
    margin-bottom:8px;
    font-size:14px;
  }

  .contact-form__required{
    min-width:38px;
    height:22px;
    padding:0 7px;
    border-radius:5px;
    font-size:10px;
  }

  .contact-form__input,
  .contact-form__textarea{
    border-radius:12px;
    font-size:14px;
  }

  .contact-form__input{
    height:52px;
    padding:0 14px;
  }

  .contact-form__textarea{
    min-height:180px;
    padding:14px;
  }

  .contact-form__error,
  .contact-form__globalError{
    font-size:12px;
    line-height:1.7;
  }

  .contact-form__submit{
    margin-top:30px;
  }

  .contact-form__button{
    width:100%;
    min-width:0;
    min-height:58px;
    font-size:16px;
  }

  .contact-complete__title{
    margin-bottom:14px;
    font-size:22px;
  }

  .contact-complete__text{
    font-size:14px;
    line-height:1.9;
  }

  .contact-complete__buttonWrap{
    margin-top:24px;
  }
}


.contact-page{
  padding-bottom: 40px;
}

.contact-page + .cta-line{
  padding-top: 12px;
}

@media (max-width:767px){
  .contact-page{
    padding-bottom: 20px;
  }

  .contact-page + .cta-line{
    padding-top: 4px;
  }
}
