@charset "UTF-8";

/* ルート要素のフォントサイズを10pxに指定 */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body {
  --scroll-gap: 41px;
}

/* main */
.body{
  max-width: 750px;
  width:100%;
  margin: 0 auto;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
.body img{
  width: 100%;
  /* height: fit-content; */
}
.w-fv,
.section,
.offer{
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
}
.w-fv img,
.section img,
.offer > img{
  display: block;
}
picture{
  display: block;
}


/* header */
.h-logo{
    max-width: 130px;
    width: 100%;
}
.w-header {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    max-width: 750px;
    background-color: #00081576;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 11px;
}
.logo img { height: 40px; display: block; }

/* ====== Hamburger Button ====== */
.hamburger {
    position: relative;
    max-width: 46px;
    width: 100%;
    height: 34px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 1001;
    padding: 0;
}
.hamburger .line {
    width: 100%;
    height: 4px;
    background: #fff;
    display: block;
    transition: transform .25s ease, opacity .25s ease;
    border-radius: 4px;
}
.hamburger.is-active  .line{
    background: #000;
}
.hamburger.is-active .line:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.hamburger.is-active .line:nth-child(2) { opacity: 0; }
.hamburger.is-active .line:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

/* ====== Overlay ====== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* ====== Global Nav (Full Screen) ====== */
.global-nav {
  position: fixed;
  inset: 0;
  /* 右からスライド */
  transform: translateX(100%);
  background: #f2f2f2d1;
  z-index: -1;
  transition: right .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.global-nav.open {
    transform: translateX(0%);
    z-index: 1000;
}

.global-nav ul {
  list-style: none;
  padding: 0 24px;
  margin: 0;
  width: 100%;
  max-width: 750px;
}
.global-nav li { border-bottom: 1px solid #eee; }
.global-nav li:last-child { border-bottom: none; }
.global-nav a {
  display: block;
  padding: 16px 4px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  letter-spacing: .02em;
}
.global-nav a:focus,
.global-nav a:hover { outline: none; text-decoration: underline; }

/* メニュー開時のスクロール固定 */
.no-scroll { overflow: hidden; height: 100vh; }

/* CTAなど他要素のz-indexが高い場合の保険 */
.w-fv .cta, .offer .campaign_cta, .campaign_cta-bt { z-index: 10; position: relative; }

.cta1-n{
  max-width: 500px;
  width: 100%;
  margin:  0 auto;
}
.ta-dl-n{
  max-width: 500px;
  width: 100%;
  margin:  0 auto;
}
.cta-tel-n{
  max-width: 500px;
  width: 100%;
  margin:  0 auto;
}


/* fv */
.w-fv{
  position: relative;
}
.btn{
  display: inline-block;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
  animation: pulse 2s ease-in-out infinite;
}
.btn:hover{
  opacity: 1;
  animation: none;
  transform: scale(1.03);
  filter: drop-shadow(0 14px 36px rgba(0, 0, 0, 0.55));
  transition: 0.6s ease;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5)); }
  50% { transform: scale(1.02); filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.55)); }
}



/* offer */
.offer{
  position: relative;
}
.cta1{
  position: absolute;
  inset: 0;
  margin: auto;
  top: 5%;
  z-index: 5;
  max-width: 692px;
  width: 100%;
  text-align: center;
}
.cta1_01{
  top: 48%;
}
.cta-dl{
  position: absolute;
  inset: 0;
  margin: auto;
  top: 58%;
  z-index: 5;
  max-width: 582px;
  width: 100%;
}
.cta-tel{
  position: absolute;
  inset: 0;
  margin: auto;
  top: 72.5%;
  z-index: 5;
  max-width: 582px;
  width: 100%;
}

/* achievements */
/* .achievements{
  margin-top: -21%;
} */

/* worries */
.worries{
  position: relative;
  z-index: 5;
}
/* solutio */
.solution{
  margin-top: -4%;
}

/* secret */
.secret-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    top: 9%;
    z-index: 5;
    max-width: 578px;
    width: 100%;
    cursor: pointer;
}
.w-secret-btn{
  position: relative;
}
/* secret をデフォルト非表示に */
.w-secret-in { display: none; }
.w-secret-in.is-open { display: block; }

/* 任意：クリックしやすく */
.secret-btn { cursor: pointer; }

.w-secret-in{
  position: relative;
}
.w-secret-in-btn{
  position: absolute;
  inset: 0;
  margin: auto;
  top:auto;
  bottom: -1.1%;
  z-index: 5;
  max-width: 462px;
  width: 100%;
}


/* plan */
.plan {
  margin-top: -16%;
}


/* contact */
.w-contac-in{
  padding-top: 38px;
}
.contac-in{
  display: flex;
  align-items: flex-start;
  padding-bottom: 52px;
}
.c-t1{
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  background-color: #9E181F;
  max-width: 80px;
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-t1-1{
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  background-color: #3461B2;
  max-width: 80px;
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-t2{
  font-size: 26px;
  font-weight: 300;
  color: #000;
  padding-top:12px;
}
.c-t2-1{
  letter-spacing: -0.15em;
}
.w-c-t1{
  max-width: 158px;
  width: 100%;
}
.in-text{
  background-color: #EBEBEB;
  min-height: 100px;
  width: 100%;
  border-radius: 12px;
  border: none;
  padding-left: 40px;
  font-size: 26px;
}
.in-textarea{
  background-color: #EBEBEB;
  min-height: 100px;
  width: 100%;
  border-radius: 12px;
  border: none;
  padding-left: 40px;
  padding-top: 26px;
  min-height: 200px;
  font-size: 26px;
}
.w-in-text{
  max-width: 524px;
  width: 100%;
}
.contac-in{
  max-width: 680px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin: 0 auto;
}
.pri-t1{
  font-size: 24px;
  font-weight: 300;
  color: #000;
  line-height: 1.4;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 16px;
}
.pri-t1-1{
  text-decoration: underline;
}
.contac-in-bt{
  padding-bottom: 36px;
}
.form-btn{
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  cursor: pointer;
}




/* qa */
.qa{
  padding-bottom: 68px;
  background-color: #F2F2F2;
  padding-top: 112px;
  margin-top: 30px;
}
.qa-haeder{
  padding-bottom: 24px;
}
.qa_q-q{
  max-width: 72px;
  width: 100%;
  height: 72px;
}
.qa_qa{
  position: relative;
  width: 92%;
  margin: 0 auto;
}
.qa_q{
  display: flex;
  align-items: center;
  gap: 46px;
}
.qa_q-text{
  font-size: 30px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #2d4b4b;
  line-height: 1.4;
  width: 77%;
}
.qa_btn{
  position: absolute;
  top: 65px;
  right: 20px;
  transform: rotate(180deg);
  max-width: 37px;
  width: 100%;
}
.qa_a-a{
  max-width: 72px;
  width: 100%;
  height: 72px;
}
.qa_a{
  display: flex;
  align-items: flex-start;
  gap: 46px;
  padding-top: 46px;
}
.qa_a-text{
  font-size: 30px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #3C3C3C;
  line-height: 1.2;
  max-width: 416px;
  width: 100%;
}
.qa_q{
  cursor: pointer;
  transition: 0.4s;
}
.qa_q:hover{
  opacity: 0.6;
}
.qa_btn.rotate{
  transform: rotate(0deg);
}
.qa_qa.faq-item{
  background-color: #fff;
  padding:33px 20px;
  border-radius: 20px;
  margin-bottom: 34px;
}



/* フローティングバナー */
.floating{
  position: fixed;
  left:50%;
  transform: translateX(-50%);
  bottom: 0;
  max-width: 700px;
  width: 100%;
  opacity: 0;
  transition: 0.5s;
  z-index: 1000;
  pointer-events: none;
}
.floating.show {
  opacity: 1;
  pointer-events: auto;
}
.floating:hover{
  opacity: 0.6;
}

/* f */
.f{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 85px;
  padding-bottom: 62px;
  padding-top: 52px;
}
.f-text1{
  display: flex;
  align-items: center;
  gap:15px;
  color: #686868;
  font-size: 22px;
  font-weight: 600;
}
.f-text1-img{
  max-width: 28px;
  width: 100%;
}


/* footer */
footer{
  background-color: #01327C;
}
.f-t1{
  font-size: 20px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  padding-top: 22px;
  padding-bottom: 26px;
  text-align: center;
  background-color: #00193F;
  letter-spacing: 0.15em;
}
.f-logo{
  max-width: 258px;
  width: 100%;
}
.f-t{
  padding-top: 68px;
  padding-left: 38px;
  padding-bottom: 68px;
}
.f-t2{
  text-align: left;
  font-size: 24px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  line-height: 1.6;
  padding-top: 10px;
}



/* form */
.w-contact {
  padding-bottom: 80px;
}
.form_content{
  padding-top: 0!important;
  padding-bottom: 70px!important;
}
.w-f {
    max-width: 682px;
    width: 100%;
    margin: 0 auto;
    margin-top: 8px;
}
.ww-in-text{
  width: 100%;
  gap: 14px;
  display: flex;
  flex-direction: column;
}
.in-text2{
  font-size: 20px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  line-height: 1.6;
}
.contac-in .wpcf7-radio.text-radio,
.contac-in .wpcf7-radio {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 20px;
}
.contac-in .wpcf7-list-item-label{
  font-size: 18px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}
.contac-in input[type="radio" i]{
  margin-bottom: 8px;
  margin-right: 8px;
}
.in-text3{
  height: 70px;
  padding-top: 20px;
}

/* プライバシーポリシーテキスト */
.privacy-text {
  text-align: center;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.8;
  padding: 10px 0 40px;
}
.privacy-text a {
  color: #3461B2;
  text-decoration: underline;
}

/* 送信ボタン btn02.png */
.w-contact .wpcf7-submit,
.form-btn input[type="submit"] {
  display: block;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  border: none;
  background: url('../img/jinji-jyosibu/btn02.png') no-repeat center / contain;
  height: 0;
  padding-top: 20.5%; /* 画像アスペクト比 128/630 */
  cursor: pointer;
  font-size: 0;
  color: transparent;
  -webkit-appearance: none;
  appearance: none;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
  animation: pulse 2s ease-in-out infinite;
}
.w-contact .wpcf7-submit:hover,
.form-btn input[type="submit"]:hover {
  animation: none;
  transform: scale(1.03);
  filter: drop-shadow(0 14px 36px rgba(0, 0, 0, 0.55));
  transition: 0.6s ease;
}


/* 送信完了モーダル */
.thanks-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.thanks-modal-overlay.show {
  display: flex;
}
.thanks-modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 50px 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  animation: thanksModalIn 0.4s ease;
}
@keyframes thanksModalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.thanks-modal-icon {
  width: 64px;
  height: 64px;
  background: #F25C6E;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thanks-modal-icon svg {
  width: 32px;
  height: 32px;
}
.thanks-modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  line-height: 1.8;
  margin-bottom: 16px;
}
.thanks-modal-text {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}
.thanks-modal-close {
  margin-top: 30px;
  background: #F25C6E;
  color: #fff;
  border: none;
  padding: 14px 50px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}
.thanks-modal-close:hover {
  opacity: 0.8;
}

/* CF7デフォルトメッセージ非表示 */
.wpcf7-response-output {
  display: none !important;
}


/* ridatu-popup */
#exitPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6); /* 半透明の黒背景 */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: transparent;
  border-radius: 8px;
  text-align: center;
  transition: 0.4s;
}

.popup-content:hover {
  opacity: 0.6;
}

/* 画像に余白や影をつけたい場合 */
.popup-content img {
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}



/* floatingBanner */
.w-floatingBanner {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  position: fixed;   /* relative ではなく fixed */
  bottom: 20px;
  left: 50%;         /* 中央基準 */
  transform: translateX(-50%); /* 中央揃え */
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: 0.6s;
}

.w-floatingBanner.show {
  z-index: 99;
  visibility: visible;
  opacity: 1;
}

.floatingBanner {
  position: absolute; /* 内側で右寄せしたい場合はこれ */
  right: 0;
  bottom: 0;
  width: 100%;
  cursor: pointer;
}

.w-youtube-video iframe{
  width: 80%;
  min-height: calc(178vw / 750 * 100);
  margin: 0 auto;
}
.youtube{
  padding-bottom: 100%;
}




/* sp */
@media screen and (max-width: 750px) {
body {
  --scroll-gap: calc(41vw / 750 * 100);
}

/* main */
.body{
  max-width: calc(750vw / 750 * 100);
}

/* header */
.h-logo{
    max-width: calc(130vw / 750 * 100);
}
.w-header {
    max-width: calc(750vw / 750 * 100);
}
.header-inner {
    padding: calc(15vw / 750 * 100) calc(11vw / 750 * 100);
}
.logo img { height: calc(40vw / 750 * 100); display: block; }

/* ====== Hamburger Button ====== */
.hamburger {
    max-width: calc(46vw / 750 * 100);
    height: calc(34vw / 750 * 100);
}
.hamburger .line {
    height: calc(4vw / 750 * 100);
    border-radius: calc(4vw / 750 * 100);
}
.hamburger.is-active .line:nth-child(1) { transform: translateY(calc(11vw / 750 * 100)) rotate(45deg); }
.hamburger.is-active .line:nth-child(3) { transform: translateY(calc(-11vw / 750 * 100)) rotate(-45deg); }

.global-nav ul {
  padding: 0 calc(24vw / 750 * 100);
  max-width: calc(750vw / 750 * 100);
}
.global-nav a {
  padding: calc(16vw / 750 * 100) calc(4vw / 750 * 100);
}

.cta1-n{
  max-width: calc(600vw / 750 * 100);
}
.ta-dl-n{
  max-width: calc(600vw / 750 * 100);
}
.cta-tel-n{
  max-width: calc(600vw / 750 * 100);
}

.cta1{
  max-width: calc(692vw / 750 * 100);
}
.cta-dl{
  max-width: calc(582vw / 750 * 100);
}
.cta-tel{
  max-width: calc(582vw / 750 * 100);
}

/* achievements */
/* .achievements{
  margin-top: calc(-21vw / 750 * 100);
} */

/* secret */
.secret-btn {
    max-width: calc(578vw / 750 * 100);
}
.w-secret-in-btn{
  max-width: calc(462vw / 750 * 100);
}

/* contact */
.w-contac-in{
  padding-top: calc(38vw / 750 * 100);
}
.contac-in{
  padding-bottom: calc(52vw / 750 * 100);
}
.c-t1{
  font-size: calc(22vw / 750 * 100);
  max-width: calc(80vw / 750 * 100);
  min-height: calc(40vw / 750 * 100);
}
.c-t1-1{
  font-size: calc(22vw / 750 * 100);
  max-width: calc(80vw / 750 * 100);
  min-height: calc(40vw / 750 * 100);
}
.c-t2{
  font-size: calc(26vw / 750 * 100);
  padding-top:calc(12vw / 750 * 100);
}
.w-c-t1{
  max-width:calc(158vw / 750 * 100);
}
.in-text{
  min-height: calc(100vw / 750 * 100);
  border-radius: calc(12vw / 750 * 100);
  padding-left: calc(40vw / 750 * 100);
  font-size: calc(26vw / 750 * 100);
}
.in-textarea{
  min-height: calc(100vw / 750 * 100);
  border-radius: calc(12vw / 750 * 100);
  padding-left: calc(40vw / 750 * 100);
  padding-top: calc(26vw / 750 * 100);
  min-height: calc(200vw / 750 * 100);
  font-size: calc(26vw / 750 * 100);
}
.w-in-text{
  max-width: calc(524vw / 750 * 100);
}
.contac-in{
  max-width: calc(680vw / 750 * 100);
  gap: calc(6vw / 750 * 100);
}
.pri-t1{
  font-size: calc(24vw / 750 * 100);
  padding-bottom: calc(16vw / 750 * 100);
}
.contac-in-bt{
  padding-bottom: calc(36vw / 750 * 100);
}
.form-btn{
  max-width: calc(720vw / 750 * 100);
}




/* qa */
.qa{
  padding-bottom: calc(68vw / 750 * 100);
  padding-top: calc(112vw / 750 * 100);
  margin-top: calc(30vw / 750 * 100);
}
.qa-haeder{
  padding-bottom: calc(24vw / 750 * 100);
}
.qa_q-q{
  max-width: calc(72vw / 750 * 100);
  height: calc(72vw / 750 * 100);
}
.qa_q{
  gap: calc(46vw / 750 * 100);
}
.qa_q-text{
  font-size: calc(30vw / 750 * 100);
}
.qa_btn{
  top: calc(65vw / 750 * 100);
  right: calc(20vw / 750 * 100);
  max-width: calc(37vw / 750 * 100);
}
.qa_a-a{
  max-width: calc(72vw / 750 * 100);
  height: calc(72vw / 750 * 100);
}
.qa_a{
  gap: calc(46vw / 750 * 100);
  padding-top: calc(46vw / 750 * 100);
}
.qa_a-text{
  font-size: calc(30vw / 750 * 100);
  max-width: calc(416vw / 750 * 100);
}
.qa_qa.faq-item{
  padding:calc(33vw / 750 * 100) calc(20vw / 750 * 100);
  border-radius: calc(20vw / 750 * 100);
  margin-bottom: calc(34vw / 750 * 100);
}



/* フローティングバナー */
.floating{
  max-width: calc(700vw / 750 * 100);
}

/* f */
.f{
  gap: calc(85vw / 750 * 100);
  padding-bottom: calc(62vw / 750 * 100);
  padding-top: calc(52vw / 750 * 100);
}
.f-text1{
  gap:calc(15vw / 750 * 100);
  font-size: calc(22vw / 750 * 100);
}
.f-text1-img{
  max-width: calc(28vw / 750 * 100);
}


/* footer */
.f-t1{
  font-size: calc(20vw / 750 * 100);
  padding-top: calc(22vw / 750 * 100);
  padding-bottom: calc(26vw / 750 * 100);
}
.f-logo{
  max-width: calc(258vw / 750 * 100);
}
.f-t{
  padding-top: calc(68vw / 750 * 100);
  padding-left: calc(38vw / 750 * 100);
  padding-bottom: calc(68vw / 750 * 100);
}
.f-t2{
  font-size: calc(24vw / 750 * 100);
  padding-top: calc(10vw / 750 * 100);
}



/* form */
.w-contact {
  padding-bottom: calc(80vw / 750 * 100);
}
.form_content{
  padding-bottom: calc(70vw / 750 * 100)!important;
}
.w-f {
    max-width: calc(682vw / 750 * 100);
    margin-top: calc(8vw / 750 * 100);
}
.ww-in-text{
  gap: calc(14vw / 750 * 100);
}
.in-text2{
  font-size: calc(20vw / 750 * 100);
}
.contac-in .wpcf7-radio.text-radio,
.contac-in .wpcf7-radio {
    gap: calc(12vw / 750 * 100);
    padding-bottom: calc(20vw / 750 * 100);
}
.contac-in .wpcf7-list-item-label{
  font-size: calc(18vw / 750 * 100);
}
.contac-in input[type="radio" i]{
  margin-bottom: calc(8vw / 750 * 100);
}
.in-text3{
  height: calc(70vw / 750 * 100);
  padding-top: calc(20vw / 750 * 100);
}

/* プライバシーポリシーテキスト (SP) */
.privacy-text {
  font-size: calc(20vw / 750 * 100);
  padding: calc(10vw / 750 * 100) 0 calc(40vw / 750 * 100);
}

/* 送信ボタン btn02.png (SP) */
.w-contact .wpcf7-submit,
.form-btn input[type="submit"] {
  max-width: calc(720vw / 750 * 100);
  padding-top: calc(140vw / 750 * 100); /* 画像のアスペクト比に合わせて調整 */
}


/* ridatu-popup */
.popup-content {
  border-radius: calc(8vw / 750 * 100);
}



/* floatingBanner */
.w-floatingBanner {
  max-width: calc(600vw / 750 * 100);
  bottom: calc(20vw / 750 * 100);
}

}