@charset "UTF-8";

/* --------------------------
  common
-------------------------- */
.wrapper {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 0 10px 2px #d6d6d6;
}

/* 全体的な余白削除 */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  scroll-behavior: auto; /* スムーススクロールを無効化 */
}

main {
  margin: 0;
  padding: 0;
}

section {
  margin: 0;
  padding: 0;
}

/* SP表示時の100%レスポンシブ対応 */
@media (max-width: 1023px) {
  .wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0;
    box-shadow: none;
  }
}

/* PC表示時の中央配置 */
@media (min-width: 1024px) {
  body {
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
  }
 
  .wrapper {
    max-width: 750px;
    width: 750px;
    margin: 0;
  }
}

/* --------------------------
  header
-------------------------- */
header {
  margin: 0;
  padding: 0;
  position: relative;
}

.header-content {
  position: relative;
  width: 100%;
}

header h1 {
  margin: 0;
  padding: 0;
}

.header-contact {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: clamp(4px, 1vw, 12px) clamp(8px, 2vw, 16px);
  z-index: 10;
}

.phone-number {
  color: #1A3C7A;
  text-shadow: 0px 0px 1px #1A3C7A;
  font-size: clamp(20px, 3.2vw, 32px);
  font-weight: bold;
  text-decoration: none;
  line-height: 1.2;
  margin-bottom: 2px;
}

.phone-number:hover {
  color: #516994;
  text-decoration: none;
}

.reception-time {
  color: #1A3C7A;
  font-size: clamp(10px, 2vw, 16px);
  font-weight: bold;
  line-height: 1.2;
  text-align: right;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* h2の余白削除 */
h2 {
  margin: 0;
  padding: 0;
}

/* h2.ttlの余白削除 */
h2.ttl {
  margin: 0;
  padding: 0;
  line-height: 0; /* 行の高さを0にして余白を削除 */
}

h2.ttl img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

header img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

/* --------------------------
  cv
-------------------------- */
a.cv_btn {
  display: block;
  width: calc(100% - 48px); /* 左右24pxずつの余白を引く */
  margin: 24px; /* 左右に24pxの余白 */
  text-decoration: none; /* リンクの下線を削除 */
  outline: none; /* フォーカス時のアウトラインを削除 */
}

/* FVセクションのボタン専用の目立つアニメーション */
.fv-btn {
  animation: float-fv 2s ease-in-out infinite; /* FV専用の目立つアニメーション */
}

a.cv_btn:focus {
  outline: none; /* フォーカス時のアウトラインを削除 */
}


/* --------------------------
  image sections
-------------------------- */
.result,
.benefits,
.cost-simulation,
.faq,
.final-cta {
  width: 100%;
  margin: 0;
  padding: 0;
}

.result img,
.benefits img,
.cost-simulation img,
.faq img,
.final-cta img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

.final-cta {
  text-align: center;
  padding: 0;
  position: relative; /* 相対位置指定 */
  margin-bottom: clamp(-230px, -35vw, -140px); /* レスポンシブ対応：CTAボタンを上げた分だけ下部余白を削除 */
}

.final-cta-container {
  position: relative; /* 相対位置指定 */
  width: 100%;
  display: block; /* ブロック要素として表示 */
}

.final-cta-bg {
  width: 100%;
}

.final-cta-bg img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

.final-cta-btn {
  position: relative; /* 相対位置指定 */
  z-index: 10;
  display: block;
  width: calc(100% - 48px); /* 左右24pxずつの余白 */
  max-width: 100%; /* 最大幅を制限 */
  margin: 0 auto; /* 左右自動（中央配置） */
  transform: translateY(clamp(-270px, -35vw, -160px)); /* レスポンシブ対応：上に移動 */
  animation: float 2s ease-in-out infinite; /* アニメーション */
}

/* FVセクション専用のアニメーションのキーフレーム */
@keyframes float-fv {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* 最終CTAセクション専用のアニメーションのキーフレーム */
@keyframes float {
  0%, 100% {
    transform: translateY(clamp(-270px, -35vw, -160px)) translateY(0px);
  }
  50% {
    transform: translateY(clamp(-270px, -35vw, -160px)) translateY(-8px);
  }
}



/* ------------------------------
  carousel
------------------------------ */
.service-voice {
  position: relative;
  width: 100%;
}

.voice-container {
  position: relative;
  width: 100%;
}

.voice-header {
  width: 100%;
  position: relative;
}

.voice-header img {
  display: block;
  width: 100%;
  height: auto;
}

.carousel {
  padding: 1rem 0 4rem;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.carousel input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  scroll-margin-top: 0; /* フォーカス時のスクロールを防ぐ */
}

.carousel .slides { 
  display: flex; 
  width: 300%; 
  height: 100%; /* カルーセルの高さいっぱいに広がるように修正 */
  transition: transform .4s ease; 
  margin: 0;
  padding: 0;
}

.carousel .slide { 
  width: 100%; 
  flex: 0 0 33.333%; 
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* translate per radio */
#slide-1:checked ~ .slides { transform: translateX(0%); }
#slide-2:checked ~ .slides { transform: translateX(-33.333%); }
#slide-3:checked ~ .slides { transform: translateX(-66.666%); }

/* show only relevant arrows per slide */
#slide-1:checked ~ .arrows .prev1,
#slide-1:checked ~ .arrows .next1 { display: block; }
#slide-2:checked ~ .arrows .prev2,
#slide-2:checked ~ .arrows .next2 { display: block; }
#slide-3:checked ~ .arrows .prev3,
#slide-3:checked ~ .arrows .next3 { display: block; }

.carousel .arrows label { display: none; }

/* dots */
.carousel .dots { 
  position: absolute; /* 絶対位置で配置 */
  bottom: 0; /* レスポンシブ対応：最小80px、最大150px */
  left: 50%; /* 中央配置のため左端を50%に */
  transform: translateX(-50%); /* 中央配置のため左に50%移動 */
  display: flex; 
  justify-content: center; 
  gap: clamp(8px, 1.6vw, 10px); /* レスポンシブ対応：最小8px、最大10px */
  margin: 0; /* マージンを削除 */
  padding: 0;
  z-index: 10; /* 矢印より前面に表示 */
}

.carousel .dots label { 
  width: clamp(12px, 2.4vw, 16px); /* レスポンシブ対応：最小12px、最大16px */
  height: clamp(12px, 2.4vw, 16px); /* レスポンシブ対応：最小12px、最大16px */
  border-radius: 50%; 
  background: #FFF0D5; 
  cursor: pointer; 
  transition: background-color 0.3s ease;
  display: block; /* ブロック要素として表示 */
  scroll-margin-top: 0; /* フォーカス時のスクロールを防ぐ */
}

.carousel .dots label:focus {
  outline: none; /* フォーカス時のアウトラインを削除 */
}

#slide-1:checked ~ .dots label:nth-child(1),
#slide-2:checked ~ .dots label:nth-child(2),
#slide-3:checked ~ .dots label:nth-child(3) { 
  background: #ff6b35; 
}

/* --------------------------
  footer
-------------------------- */
footer {
  padding: 40px 16px;
  background-color: #1f377c;
  color: white;
  text-align: center;
  line-height: 1.5;
  z-index: 20;
  position: relative;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

footer ul li {
  margin: 0;
}

footer ul li a,
footer ul li a:link,
footer ul li a:visited {
  color: white;
  text-decoration: none;
  font-size: clamp(14px, 2.8vw, 20px); /* レスポンシブ対応：最小14px、最大18px */
}

footer ul li a:hover {
  text-decoration: underline;
}

footer .copyright {
  font-size: clamp(12px, 2.8vw, 16px); /* レスポンシブ対応：最小14px、最大18px */
  color: white;
}

/* Custom 250924 */
html {
  font-size: 62.5%;
}
.slide-inner {
  background-color: #fff;
  padding: 3rem 2.4rem;
  box-shadow: 0px .2rem .8rem rgba(79, 54, 39, 0.3);
  border-radius: 1.2rem;
  max-width: 61rem;
}
.slide-title {
  font-size: 4rem;
  color: #fff;
  padding: 1.8rem 0 2.7rem;
  background: linear-gradient(180deg, #FF7700 0%, #FF4830 100%);
  border-radius: 1.2rem;
  text-align: center;
  margin: 0;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1.2rem;
}
.slide-title .number {
  font-size: 6.4rem;
  line-height: 1;
  font-family: "Inter", sans-serif;
  position: relative;
  top: .2rem;
}
.flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.slide-img {
  width: 12.5rem;
}
.slide-subtitle {
  font-size: 3.4rem;
  color: #FF5500;
  margin: 0;
  line-height: 1.3;
  font-weight: 500;
}
.slide-txt {
  font-size: 2.4rem;
  color: #4E4D4A;
  background-color: #FFF8F0;
  padding: 1.6rem 2.4rem;
  margin-top: .8rem;
  text-align: justify;
}
.slide-figcaption {
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 1.3;
}
figure,
p {
  margin: 0;
}
.slide-figure {
  margin-right: 1.6rem;
}
.relative {
  position: relative;
}
.slide-note {
  font-size: 1.6rem;
  color: #807D8A;
  text-align: right;
  position: absolute;
  bottom: 1rem;
  right: 2.4rem;
}
.carousel .arrows label {
  position: absolute;
  top: 50%;
  width: 4.2rem;
  height: 4.2rem;
  transform: translateY(-50%);
  cursor: pointer;
  background-size: 100% 100%;
}
.carousel .arrows .prev {
  left: 1.6rem;
  background-image: url(../img/btn_prev.png);
}
.carousel .arrows .next {
  right: 1.9rem;
  background-image: url(../img/btn_next.png);
}
.voice-title {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}
.voice-title .en {
  font-size: 2.4rem;
  background-color: #FF5500;
  color: #fff;
  width: 10rem;
  height: 3.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding-bottom: .2rem;
  border-radius: .6rem;
}
.voice-title .ja {
  font-size: 4.9rem;
  color: #4E4D4A;
  line-height: 1.4;
}
.service-voice {
  background-image: url(../img/bg_voice.png);
  background-size: 100% 100%;
  padding: 4.5rem 0 1rem;
  background-position: bottom -12.6rem center;
  background-repeat: no-repeat;
}
.voice-figure {
  margin: -2.4rem 2rem 0 4.4rem;
}
.voice-img {
  width: 100%;
}
.voice-icon {
  position: absolute;
  bottom: 0;
  left: 16.5rem;
  width: 8.5rem;
}
.result-txt1 {
  font-size: 4.2rem;
  font-weight: bold;
  color: #1A3C7A;
  text-align: center;
  position: absolute;
  top: 33.7rem;
  left: 50%;
  transform: translateX(-48%);
  width: 100%;
  line-height: 1.4;
}
.result-txt2 {
  font-size: 2.8rem;
  font-weight: 500;
  color: #000;
  text-align: justify;
  position: absolute;
  top: 49.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 87%;
  line-height: 1.8;
}
.result-txt3 {
  font-size: 2.8rem;
  font-weight: 500;
  color: #000;
  text-align: justify;
  position: absolute;
  bottom: 37.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 87%;
  line-height: 1.8;
}
.result-txt4 {
  font-size: 2.8rem;
  font-weight: 500;
  color: #000;
  text-align: justify;
  position: absolute;
  bottom: 14rem;
  left: 50%;
  transform: translateX(-50%);
  width: 87%;
  line-height: 1.8;
}
.c-pink {
  color: #FF2E58;
}
.c-white {
  color: #fff;
}
.bg-pink {
  background-color: #FF2E58;
}
.result-txt4 .bg-pink {
  display: inline-block;
  line-height: 1.4;
  padding-bottom: .1rem;
  border-radius: .3rem;
  margin: 0 .5rem;
} 
.explanation {
  background-color: #E4F2FF;
}
.explanation-inner {
  padding: 2rem 3.2rem 4.4rem;
}
.explanation-title {
  font-size: 3.6rem;
  font-weight: 500;
  max-width: 61rem;
  width: 100%;
  margin: 0 auto 2.8rem;
  padding: 1.3rem 0 1.8rem;
  text-align: center;
  background-color: #019AE6;
  color: #FFEF01;
  border-radius: 7rem;
}
.explanation-title-small {
  font-size: 3rem;
}
.explanation-list {
  display: flex;
  gap: .8rem;
  list-style: none;
  padding-left: 0;
}
.explanation-item {
  border-radius: 1.2rem;
  background-color: #fff;
  padding: 3.2rem 0;
  text-align: center;
  width: 100%
}
.explanation-list-img {
  width: 16rem;
  border-radius: 50%;
}
.explanation-subtitle {
  font-size: 2.4rem;
  color: #019AE6;
  margin: .8rem 0 0;
  line-height: 1.3;
}
.explanation-subtitle .orange {
  color: #FF8000;
}
.explanation-txt {
  font-size: 3.1rem;
  color: #282726;
  font-weight: bold;
  letter-spacing: .1rem;
}
.explanation-box {
  background-color: #FF4830;
  border-radius: .6rem;
  display: flex;
  padding: 1.2rem 3.8rem;
  margin: 2rem 0;
  align-items: center;
}
.explanation-box-img {
  width: 13.5rem;
}
.explanation-box-title {
  font-size: 3.2rem;
  color: #fff;
  margin: -.5rem 0 .25rem;;
}
.explanation-box-txt {
  font-size: 2.4rem;
  color: #fff;
  font-weight: 500;
}
.explanation-box-content {
  margin-left: 2rem;
}
.cost-simulation {
  background-color: #FEF2CB;
}
.cost-simulation-title {
  background-color: #FF2B2B;
    padding: .7rem 0 .9rem;
    font-size: 2.1rem;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    font-weight: normal;
}
.cost-simulation-title img {
  width: 2.5rem;
  margin-right: 1.2rem;
  position: relative;
  top: .1rem;
}
.cost-simulation-inner {
  padding: 4rem 5.7rem 5rem;
}
.cost-simulation-box {
    max-width: 77%;
    margin: 0 auto 4rem;
    position: relative;
}
.cost-simulation-box:nth-child(2) {
    margin-bottom: 6.2rem;
}
.cost-simulation-box:nth-child(2)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4.8rem;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 3.2rem solid transparent;
    border-right: 3.2rem solid transparent;
    border-top: 2.4rem solid #FF8000;
}
.cost-simulation-box .cost-simulation-txt {
  position: relative;
  line-height: 1;
  padding-bottom: 2.2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 5.2rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}
.cost-simulation-box .cost-simulation-txt .number {
  line-height: 1;
  position: relative;
  top: 1.2rem;
  margin: 0 .8rem;
  font-size: 9.2rem;
  font-weight: bold;
}
.cost-simulation-box.white {
  background-color: #fff;
  padding: 2.4rem 3.6rem 3.2rem;
  border-radius: .8rem;
  max-width: 100%;
}
.cost-simulation-box.white .cost-simulation-txt {
  color: #FF7700;
  font-size: 4.6rem;
  text-align: center;
  padding-bottom: 2rem;
}
.cost-simulation-box.white .cost-simulation-txt .number {
  font-size: 7.5rem;
  top: .8rem;
}
.cost-simulation-box .cost-simulation-txt::after {
  content: '';
  width: 100%;
  height: .5rem;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
.cost-simulation-box.white .cost-simulation-txt::after {
  height: .4rem;
  background-color: #FF7700;
}
.cost-simulation-label {
  font-size: 2.4rem;
  color: #fff;
  background-color: #FF8000;
  line-height: 1;
  display: inline-block;
  padding: .3rem 1rem .6rem;
  border-radius: .4rem;
  margin-bottom: -1rem;
}
.cost-simulation .cost-simulation-img-02 {
  max-width: unset;
  width: 66rem;
}
.benefits {
  padding: 4.4rem 3.2rem;
  background-color: #DDEEFF;
  background-image: url(../img/bg_benefits_01.png), url(../img/bg_benefits_02.png);
  background-size: 100% auto, 100% auto;
  background-position: top left, bottom left;
  background-repeat: no-repeat, no-repeat;
}
.benefits-list {
  margin: 6rem 0 3.2rem;
}
.benefits-item {
  background-image: url(../img/bg_benefits_03.png), url(../img/bg_benefits_03.png);
  background-size: 100% auto, 100% auto;
  background-position: top left, bottom left;
  background-repeat: no-repeat, no-repeat;
  margin-bottom: 3.2rem;
  padding: 3.2rem 4.8rem 4.8rem;
  background-color: #eef7ff;
  box-shadow: 0px 5px 12px rgba(26, 60, 122, 0.5);
  text-align: center;
}
.benefits-item:last-child {
  margin-bottom: 0;
}
.benefits-label {
  width: 17rem;
  background-color: #1A3C7A;
  color: #fff;
  font-size: 2.8rem;
  display: block;
  margin: auto;
  border-radius: 4rem;
  font-family: "Inter", sans-serif;
  font-weight: bold;
  padding: .25rem 0;
}
.benefits-list-title {
  font-size: 4.6rem;
  color: #1A3C7A;
  display: inline-block;
  margin: .8rem auto 1.6rem;
}
.benefits-list-title  span {
    background: rgba(0, 0, 0, 0) linear-gradient(transparent 92%, #1A3C7A 0%) repeat scroll 0 0;
    padding-bottom: .8rem;
    line-height: 1.9;
}

.benefits-list-subtitle {
  background-color: #1A3C7A;
  color: #FFEF01;
  font-size: 4.2rem;
  padding: 0.2rem 0 .6rem;
  border-radius: .6rem;
  position: relative;
  margin: 0 0 3.2rem;
}
.benefits-list-subtitle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  width: 0;
  height: 0;
  border-right: 2.8rem solid transparent;
  border-top: 2.2rem solid #1A3C7A;
}
.benefits-list-subtitle span {
  position: relative;
  left: 1rem;
}
.benefits-des {
  font-size: 2.4rem;
  color: #000;
  text-align: justify;
  font-weight: bold;
  line-height: 1.55;
}
.benefits-note {
  font-size: 1.6rem;
  color: #4E4D4A;
  text-align: left;
  margin-top: 1.6rem;
}
.bg-blue {
  background-color: #1752af;
  padding-bottom: .2rem;
  font-weight: 500;
}
.c-yellow {
  color: #FFEF01;
}
.faq {
  padding: 4.8rem 2.5rem;
  background-color: #FFF5E7;
}
.faq-list {
  margin-top: 2rem;
}
.faq-title {
  font-size: 4.6rem;
  color: #000;
  text-align: center;
}
.faq-title span {
  position: relative;
  left: 1.4rem;
}
.faq .faq-icon {
  width: 4.4rem;
  margin-right: 1.5rem;
}
.faq-item {
  margin-bottom: .8rem;
  border-radius: 2.4rem;
  background-color: #FEF2CB;
  padding: 2.4rem 2.8rem 2.4rem 2.4rem;
}
.faq-question {
  display: flex;
  align-items: flex-start;
  margin: 0 0 1.5rem;
}
.faq-question-txt {
  color: #FF8000;
  font-size: 2.8rem;
}
.faq-answer {
  display: flex;
  align-items: flex-start;
}
.faq-answer-txt {
  font-size: 2.1rem;
  color: #4E4D4A;
  text-align: justify;
  font-weight: bold;
}
@media (max-width: 1023px) {
  html {
    font-size: 1.32vw;
  }
}