@charset "UTF-8";
/* ============common
=============================================== */
html {
  font-size: 100%;
}

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
}

ul,
ol {
  list-style-type: none;
}

.wrapper {
  margin: 0 auto;
}
.flex {
  display: flex;
}

body {
  margin: 0 auto;
}

.sp-br {
  display: none;
}
@media (max-width: 430px) {
  .sp-br {
    display: block;
  }
}

/* フォント */
.noto-sans-jp-100 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.noto-sans-jp-400 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.noto-sans-jp-700 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.hurricane-regular {
  font-family: "Hurricane", cursive;
  font-weight: 400;
  font-style: normal;
}

.oooh-baby-regular {
  font-family: "Oooh Baby", cursive;
  font-weight: 400;
  font-style: normal;
}

/* =============  header  ================ */
body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

.line-button {
  position: fixed;
  z-index: 100;
  width: 100px;
  height: 100px;
  background-color: #7ae50f;
  color: #fff;
  border-radius: 50%;
  border: double 2px #7ddc6a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  text-decoration: none;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.2);
  /* 配置の切り替え用 (ここを書き換えて調整してください) */
  top: 20px;
  right: 20px;
}
@media (max-width: 430px) {
  .line-button {
    bottom: 20px;
    top: auto;
  }
}
@media (max-width: 768px) {
  .line-button {
    width: 80px;
    height: 80px;
    font-size: 12px;
  }
}

.header {
  padding: 20px 40px;
  background-color: #f0faff;
  background: linear-gradient(to bottom, #fff, #fff 45%, #f4f9fc 100%);
}
@media (max-width: 430px) {
  .header {
    padding: 10px 20px;
  }
}
.header .logo img {
  height: 60px;
}

.main-visual {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
  background-color: #f0faff;
}
@media (max-width: 430px) {
  .main-visual {
    height: 500px;
  }
}
.main-visual .slider-container {
  display: flex;
  align-items: center;
  height: 100%;
}
.main-visual .slider-track {
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-animation: loop-scroll 33s linear infinite;
          animation: loop-scroll 33s linear infinite;
  will-change: transform;
}
@media (max-width: 430px) {
  .main-visual .slider-track {
    -webkit-animation: loop-scroll 25s linear infinite;
            animation: loop-scroll 25s linear infinite;
    will-change: transform;
  }
}
.main-visual .slider-track li {
  flex-shrink: 0;
  width: 20vw;
  height: 520px;
  padding: 0 5px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .main-visual .slider-track li {
    width: 25vw;
    height: 400px;
  }
}
@media (max-width: 430px) {
  .main-visual .slider-track li {
    width: 55vw;
    height: 420px;
  }
}
.main-visual .slider-track li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes loop-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes loop-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.catchphrase {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 10;
}
@media (max-width: 430px) {
  .catchphrase {
    top: 65%;
  }
}
.catchphrase h1 {
  font-size: 66px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  background: linear-gradient(85deg, #1c6e9e 5%, #93cdef 50%, #5aacd5 95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(1px 1px 0 #fff) drop-shadow(-1px 1px 0 #fff) drop-shadow(1px -1px 0 #fff) drop-shadow(-1px -1px 0 #fff) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 768px) {
  .catchphrase h1 {
    font-size: 44px;
  }
}
.catchphrase p {
  font-size: 26px;
  font-weight: bold;
  color: #4c4c4c;
  letter-spacing: 0.15em;
  text-shadow: 0px 0px 4px #fff;
}
@media (max-width: 768px) {
  .catchphrase p {
    font-size: 28px;
  }
}

/* =============  section1-about  ================ */
.about-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
@media (max-width: 430px) {
  .about-section {
    padding: 80px 0;
  }
}
.about-section .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.about-section .bg-text {
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  font-size: 160px;
  color: rgba(230, 240, 250, 0.5);
  white-space: nowrap;
  transform: rotate(-15deg);
  font-family: "Hurricane", cursive;
  font-weight: 400;
  text-align: center;
  z-index: 0;
}
@media (max-width: 768px) {
  .about-section .bg-text {
    font-size: 120px;
    top: -70px;
  }
}
.about-section .section-title {
  position: relative;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 60px;
  z-index: 10;
}
@media (max-width: 768px) {
  .about-section .section-title {
    font-size: 30px;
  }
}
@media (max-width: 430px) {
  .about-section .section-title {
    font-size: 28px;
  }
}
.about-section .content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .about-section .content-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }
}
.about-section .text-content {
  flex: 1;
}
.about-section .text-content .about-catchphrase {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  position: static;
  transform: none;
  text-align: center;
}
.about-section .text-content .description {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
@media (max-width: 430px) {
  .about-section .text-content .description {
    font-size: 14px;
    text-align: start;
  }
}
.about-section .image-content {
  flex: 1;
}
.about-section .image-content img {
  display: block;
  width: 90%;
  margin: 0 auto;
  border-radius: 4px;
}
@media (max-width: 430px) {
  .about-section .image-content img {
    width: 80%;
  }
}
.about-section .feature-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .about-section .feature-cards {
    flex-direction: column;
    align-items: center;
  }
}
.about-section .feature-cards .card {
  background: #fff;
  border: 2px solid #5fb3e5;
  border-radius: 20px;
  padding: 30px 20px;
  width: 31%;
  text-align: center;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 8px 8px 0px rgba(95, 179, 229, 0.3);
  z-index: 2;
}
@media (max-width: 768px) {
  .about-section .feature-cards .card {
    width: 100%;
    max-width: 400px;
  }
}
.about-section .feature-cards .card .card-text {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  color: #1a1a1a;
}
.about-section .feature-cards .card .card-text .sub-text {
  font-size: 12px;
  font-weight: normal;
  display: block;
  margin-top: 5px;
}

/* =============  section2-future  ================ */
.future-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-color: #409fdb;
  background-image: url(../img/sec2-bgi.png);
  background-size: 100%;
  background-repeat: repeat-y;
}
@media (max-width: 430px) {
  .future-section {
    padding: 80px 0;
  }
}
.future-section .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.future-section .bg-text-future {
  position: absolute;
  top: -90px;
  left: 0;
  right: 0;
  font-size: 140px;
  color: rgba(230, 240, 250, 0.5);
  z-index: 0;
  white-space: nowrap;
  transform: rotate(-15deg);
  font-family: "Hurricane", cursive;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 768px) {
  .future-section .bg-text-future {
    font-size: 120px;
    top: -60px;
  }
}
.future-section .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #000;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .future-section .section-title {
    font-size: 30px;
  }
}
@media (max-width: 430px) {
  .future-section .section-title {
    font-size: 28px;
  }
}
.future-section .future-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  z-index: 2;
}
@media (max-width: 768px) {
  .future-section .future-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.future-section .future-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
@media (max-width: 430px) {
  .future-section .future-card {
    padding: 30px 20px;
  }
}
.future-section .future-card .card-image {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
}
.future-section .future-card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.future-section .future-card .card-content {
  text-align: center;
}
.future-section .future-card .card-content .card-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000;
}
.future-section .future-card .card-content .card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  text-align: left;
}

/* =============  section3-futures  ================ */
.features-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
@media (max-width: 430px) {
  .features-section {
    padding: 80px 0;
  }
}
.features-section .inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.features-section .bg-text-features {
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  font-size: 140px;
  color: rgba(230, 240, 250, 0.5);
  white-space: nowrap;
  transform: rotate(-15deg);
  font-family: "Hurricane", cursive;
  font-weight: 400;
  text-align: center;
  z-index: 0;
}
@media (max-width: 768px) {
  .features-section .bg-text-features {
    font-size: 110px;
    top: -80px;
  }
}
.features-section .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .features-section .section-title {
    font-size: 30px;
  }
}
@media (max-width: 430px) {
  .features-section .section-title {
    font-size: 28px;
  }
}
.features-section .features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 20;
}
.features-section .feature-item {
  background-color: rgba(245, 226, 175, 0.15);
  border-left: 10px solid #f5e2af;
  border-radius: 0 15px 15px 0;
  padding: 25px 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.features-section .feature-item:hover {
  transform: translateX(10px);
}
@media (max-width: 768px) {
  .features-section .feature-item {
    padding: 20px;
  }
}
@media (max-width: 430px) {
  .features-section .feature-item {
    padding: 15px 10px;
  }
}
.features-section .feature-item .feature-number {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #f5e2af;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
@media (max-width: 430px) {
  .features-section .feature-item .feature-number {
    margin-bottom: 4px;
  }
}
.features-section .feature-item .feature-item-title {
  font-size: 22px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .features-section .feature-item .feature-item-title {
    font-size: 18px;
  }
}
.features-section .feature-item .feature-item-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}
@media (max-width: 768px) {
  .features-section .feature-item .feature-item-desc {
    font-size: 14px;
  }
}

/* =============  section4-cta  ================ */
.cta-section {
  padding: 100px 0;
  background-color: #79c9f2;
}
@media (max-width: 430px) {
  .cta-section {
    padding: 50px 0;
  }
}
.cta-section .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 430px) {
  .cta-section .inner {
    padding: 0 15px;
  }
}
.cta-section .cta-card {
  background-color: #fff;
  border-radius: 70px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0px 50px;
  position: relative;
  box-shadow: 12px 12px 0px #4ea5d9;
}
@media (max-width: 768px) {
  .cta-section .cta-card {
    padding: 0px 40px;
    border-radius: 45px;
    box-shadow: 10px 10px 0px #4ea5d9;
  }
}
@media (max-width: 430px) {
  .cta-section .cta-card {
    flex-direction: column;
    padding: 10px 20px 30px;
    border-radius: 30px;
    text-align: center;
  }
}
.cta-section .cta-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta-section .cta-image img {
  max-width: 280px;
  height: auto;
  /* 画像を少し下にはみ出させたい場合は、
     position: relative; top: 20px; などを調整してください */
}
@media (max-width: 768px) {
  .cta-section .cta-image img {
    max-width: 200px;
    margin-bottom: 0px;
  }
}
@media (max-width: 430px) {
  .cta-section .cta-image img {
    margin-bottom: 18px;
  }
}
.cta-section .cta-content {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 240px;
}
.cta-section .cta-content .cta-text {
  color: #2b9fd8;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: center;
}
@media (max-width: 768px) {
  .cta-section .cta-content .cta-text {
    font-size: 18px;
    margin-top: 15px;
  }
}
@media (max-width: 430px) {
  .cta-section .cta-content .cta-text {
    margin-top: 0;
  }
}
.cta-section .cta-content .cta-btn {
  display: inline-block;
  background-color: #2b9fd8;
  color: #fff;
  padding: 15px 70px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  /* ボタン内の白い縁取りデザインを再現 */
  border: 2px solid #fff;
  outline: 2px solid #2b9fd8;
  transition: transform 0.2s ease;
}
.cta-section .cta-content .cta-btn:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .cta-section .cta-content .cta-btn {
    padding: 12px 40px;
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media (max-width: 430px) {
  .cta-section .cta-content .cta-btn {
    font-size: 16px;
  }
}

/* =============  section5-livers  ================ */
.livers-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
@media (max-width: 430px) {
  .livers-section {
    padding: 80px 0;
  }
}
.livers-section .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.livers-section .bg-text-liver {
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  font-size: 160px;
  color: rgba(230, 240, 250, 0.5);
  z-index: 0;
  white-space: nowrap;
  transform: rotate(-15deg);
  font-family: "Hurricane", cursive;
  font-weight: 400;
  text-align: center;
  z-index: 1;
}
@media (max-width: 768px) {
  .livers-section .bg-text-liver {
    font-size: 140px;
    top: -80px;
  }
}
.livers-section .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .livers-section .section-title {
    font-size: 30px;
  }
}
@media (max-width: 430px) {
  .livers-section .section-title {
    font-size: 28px;
  }
}
.livers-section .liver-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 10px;
}
@media (max-width: 768px) {
  .livers-section .liver-grid {
    grid-template-columns: 2fr;
    gap: 60px;
  }
}
.livers-section .liver-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 70%;
  margin: 0 auto;
}
@media (max-width: 430px) {
  .livers-section .liver-item {
    width: 95%;
  }
}
.livers-section .liver-item .liver-photo {
  width: 100%;
  /* aspect-ratio: 1 / 1; // 正方形を維持
  overflow: hidden; */
  margin-bottom: 15px;
}
.livers-section .liver-item .liver-photo img {
  width: 100%;
  height: 95%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .livers-section .liver-item .liver-photo {
    width: 75%;
    margin: 0 auto;
  }
}
.livers-section .liver-item .liver-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #1a1a1a;
}
@media (max-width: 430px) {
  .livers-section .liver-item .liver-name {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
.livers-section .liver-item .tiktok-btn {
  display: block;
  width: 80%;
  background-color: #4ea5d9;
  color: #fff;
  padding: 12px 0;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1px;
  border: 2px solid #fff;
  /* 外側のずれた影を再現 */
  box-shadow: 4px 4px 0px #4ea5d9;
  transition: all 0.2s ease;
}
.livers-section .liver-item .tiktok-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #4ea5d9;
}

/* =============  section6-flow  ================ */
.flow-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-color: #409fdb;
  background-image: url(../img/sec6-bgi.png);
  background-size: cover;
}
@media (max-width: 430px) {
  .flow-section {
    padding: 80px 0;
  }
}
.flow-section .inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.flow-section .bg-text-flow {
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  font-size: 160px;
  color: rgba(230, 240, 250, 0.5);
  white-space: nowrap;
  transform: rotate(-15deg);
  font-family: "Hurricane", cursive;
  font-weight: 400;
  text-align: center;
  z-index: 1;
}
@media (max-width: 768px) {
  .flow-section .bg-text-flow {
    font-size: 140px;
    top: -90px;
  }
}
.flow-section .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #000;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .flow-section .section-title {
    font-size: 30px;
  }
}
@media (max-width: 430px) {
  .flow-section .section-title {
    font-size: 28px;
  }
}
.flow-section .flow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow-section .flow-item {
  background: #fff;
  width: 100%;
  border-radius: 25px;
  display: flex;
  align-items: center;
  padding: 25px 60px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .flow-section .flow-item {
    flex-direction: column;
    padding: 40px 20px 30px;
    border-radius: 25px;
    text-align: center;
  }
}
@media (max-width: 430px) {
  .flow-section .flow-item {
    padding: 15px 20px 20px;
  }
}
.flow-section .flow-item .flow-step {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .flow-section .flow-item .flow-step {
    flex: auto;
    margin-bottom: 10px;
  }
}
.flow-section .flow-item .flow-step .step-num {
  position: absolute;
  top: 1px;
  left: 5px;
  transform: rotate(-15deg);
  font-size: 28px;
  color: #333;
  z-index: 2;
  font-family: "Oooh Baby", cursive;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 768px) {
  .flow-section .flow-item .flow-step .step-num {
    left: 30%;
    transform: translateX(-50%) rotate(-15deg);
    top: 10px;
  }
}
@media (max-width: 430px) {
  .flow-section .flow-item .flow-step .step-num {
    left: 22px;
    top: -8px;
    font-size: 32px;
  }
}
.flow-section .flow-item .flow-step .step-title {
  font-size: 22px;
  font-weight: bold;
  color: #1a1a1a;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}
.flow-section .flow-item .flow-desc {
  flex: 1;
  padding-left: 30px;
  border-left: 1px solid #eee;
}
@media (max-width: 768px) {
  .flow-section .flow-item .flow-desc {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #eee;
    padding-top: 15px;
    width: 100%;
  }
}
.flow-section .flow-item .flow-desc p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}
.flow-section .flow-arrow {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid #f9d5a7;
  margin: 15px 0;
}

/* =============  section7-faq ================ */
.faq-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
@media (max-width: 430px) {
  .faq-section {
    padding: 80px 0;
  }
}
.faq-section .inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.faq-section .bg-text-faq {
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  font-size: 160px;
  color: rgba(230, 240, 250, 0.5);
  white-space: nowrap;
  transform: rotate(-15deg);
  font-family: "Hurricane", cursive;
  font-weight: 400;
  text-align: center;
  z-index: 1;
}
@media (max-width: 768px) {
  .faq-section .bg-text-faq {
    font-size: 130px;
    top: -90px;
  }
}
.faq-section .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .faq-section .section-title {
    font-size: 30px;
  }
}
@media (max-width: 430px) {
  .faq-section .section-title {
    font-size: 28px;
  }
}
.faq-section .faq-list {
  border-top: 1px solid #f9d5a7;
}
.faq-section .faq-item {
  border-bottom: 1px solid #f9d5a7;
}
.faq-section .faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 10px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  color: #1a1a1a;
  transition: background-color 0.3s ease;
}
.faq-section .faq-question:hover {
  background-color: rgba(249, 213, 167, 0.1);
}
@media (max-width: 768px) {
  .faq-section .faq-question {
    font-size: 16px;
    padding: 20px 5px;
  }
}
.faq-section .faq-question .faq-icon {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #f9d5a7;
  transition: transform 0.3s ease;
  margin-left: 20px;
  flex-shrink: 0;
}
.faq-section .faq-question.is-active .faq-icon {
  transform: rotate(180deg);
}
.faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  /* background-color: #fafafa; */
}
.faq-section .faq-answer .faq-answer-inner {
  padding: 0 10px 25px;
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

/* =============  section8-final-cta ================ */
.final-cta-section {
  padding: 100px 0;
  background-color: #e6f4fd;
}
@media (max-width: 430px) {
  .final-cta-section {
    padding: 80px 0;
  }
}
.final-cta-section .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.final-cta-section .final-cta-card {
  background-color: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 40px;
  position: relative;
  box-shadow: 12px 12px 0px #4ea5d9;
  overflow: hidden;
}
@media (max-width: 768px) {
  .final-cta-section .final-cta-card {
    flex-direction: column-reverse;
    padding: 25px 20px;
    border-radius: 35px;
    text-align: center;
    gap: 10px;
  }
}
.final-cta-section .final-cta-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 460px;
}
@media (max-width: 768px) {
  .final-cta-section .final-cta-content {
    align-items: center;
    order: 1;
  }
}
.final-cta-section .final-cta-content .final-cta-text {
  color: #1a1a1a;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 460px;
}
@media (max-width: 768px) {
  .final-cta-section .final-cta-content .final-cta-text {
    font-size: 20px;
    text-align: center;
  }
}
@media (max-width: 430px) {
  .final-cta-section .final-cta-content .final-cta-text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .final-cta-section .final-cta-content .final-cta-text br {
    display: none;
  }
}
.final-cta-section .final-cta-content .final-cta-btn {
  display: inline-block;
  background-color: #4ea5d9;
  color: #fff;
  padding: 15px 70px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #fff;
  outline: 2px solid #4ea5d9;
  transition: transform 0.2s ease;
}
.final-cta-section .final-cta-content .final-cta-btn:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .final-cta-section .final-cta-content .final-cta-btn {
    padding: 12px 50px;
    font-size: 16px;
  }
}
.final-cta-section .final-cta-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 380px;
}
@media (max-width: 768px) {
  .final-cta-section .final-cta-image {
    justify-content: center;
    order: 2;
    margin-top: -20px;
  }
}
.final-cta-section .final-cta-image img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media (max-width: 768px) {
  .final-cta-section .final-cta-image img {
    max-width: 80%;
  }
}

/* =============  footer ================ */
.site-footer {
  padding: 100px 0 40px;
  /* かすかなグラデーション（非常に薄い水色から白へ） */
  /* background: linear-gradient(to bottom, #f4f9fc 0%, #ffffff 100%); */
  background: #fff;
  text-align: center;
}
@media (max-width: 430px) {
  .site-footer {
    padding: 80px 0 40px;
  }
}
.site-footer .inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-footer .footer-logo {
  margin-bottom: 50px;
}
.site-footer .footer-logo img {
  width: 120px;
  height: auto;
  /* 画像ではなく正方形の青背景にする場合は background-color: #5fb3e5; */
}
.site-footer .footer-info {
  display: inline-block;
  text-align: left;
  margin-bottom: 80px;
}
.site-footer .footer-info .info-list .info-item {
  display: flex;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.5;
}
.site-footer .footer-info .info-list .info-item dt {
  width: 120px;
  font-weight: normal;
  color: #1a1a1a;
  text-align: right;
  padding-right: 40px;
  flex-shrink: 0;
}
.site-footer .footer-info .info-list .info-item dd {
  font-weight: normal;
  color: #1a1a1a;
  margin: 0;
}
@media (max-width: 768px) {
  .site-footer .footer-info {
    margin-bottom: 50px;
  }
  .site-footer .footer-info .info-list .info-item {
    font-size: 15px;
  }
  .site-footer .footer-info .info-list .info-item dt {
    width: 100px;
    padding-right: 20px;
  }
}
.site-footer .copyright {
  font-size: 16px;
  font-weight: bold;
  color: #1a1a1a;
  margin: 0;
}

.fade-up-zoom, .fade-down, .flip-card, .slide-in-right {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.fade-up-zoom {
  transform: translateY(40px) scale(0.9);
}
.fade-up-zoom.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.fade-down {
  transform: translateY(-60px);
}
.fade-down.is-active {
  opacity: 1;
  transform: translateY(0);
}

.flip-card {
  transform: perspective(1000px) rotateX(-90deg);
  transform-origin: center;
}
.flip-card.is-active {
  opacity: 1;
  transform: perspective(1000px) rotateX(0deg);
}

.slide-in-right {
  transform: translateX(80px);
}
.slide-in-right.is-active {
  opacity: 1;
  transform: translateX(0);
}
/*# sourceMappingURL=style.css.map */