:root {
  --text-black: #222;
  --bg-orange: #fff8f4;
  --red01: #e6582b;
  --grad01: linear-gradient(to right, #b776de 0%, #f49754 100%);
  --grad02: linear-gradient(#5ec17c 0%, #b7e23c 100%);
  --yellow01: #fbe8b2;
  --orange01: #f49754;
  --ja: "Zen Maru Gothic", sans-serif;
  --shadow-text: 0 3px 6px rgba(222, 193, 173, 0.25);
}

* {
  margin: 0;
  padding: 0;
}

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

html {
  font-size: 62.5%;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

body {
  font-family: var(--ja);
  font-size: clamp(14px, 1.0980966325vw, 15px);
  line-height: 1.625;
  font-weight: 600;
  color: var(--text-black);
  background: var(--bg-orange);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  color: var(--text-black);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}

ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
}

table thead th,
table thead td {
  background-color: #f2f2f2;
}

table th,
table td {
  border-collapse: collapse;
}

table th {
  text-align: left;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.is-pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}
.is-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}
a[href^=tel] {
  text-decoration: none;
  color: inherit;
}

.en {
  font-family: var(--en);
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 89.6%;
}

.bold {
  font-weight: 700;
}

.flex {
  display: flex;
}

.under {
  text-decoration: underline;
  text-underline-offset: 0;
  text-decoration-thickness: 0.4em;
  -webkit-text-decoration-color: var(--yellow01);
  text-decoration-color: var(--yellow01);
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

@-webkit-keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
.ta-c {
  text-align: center;
}

.fz18 {
  font-size: clamp(15px, 1.317715959vw, 18px);
}

.fz20 {
  font-size: clamp(16px, 1.4641288433vw, 20px);
}

.fz24 {
  font-size: clamp(18px, 1.756954612vw, 24px);
}

.fz28 {
  font-size: clamp(18px, 2.0497803807vw, 28px);
}

.fz32 {
  font-size: clamp(18px, 2.3426061493vw, 32px);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.header .header-inner {
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  width: 100%;
  display: flex;
}
.header .header-nav {
  background-color: var(--bg-orange);
  border-radius: 30px;
  padding: 12px 32px;
}
@media screen and (max-width: 768px) {
  .header .header-nav {
    display: none;
  }
}
.header .header-nav .nav-list {
  display: flex;
  -moz-column-gap: 24px;
  column-gap: 24px;
}
.header .openbtn {
  height: 57px;
  width: 57px;
  top: 12px;
  position: fixed;
  right: 12px;
  z-index: 200;
  border-radius: 50%;
  background: var(--bg-orange);
  display: none;
}
@media screen and (max-width: 768px) {
  .header .openbtn {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.header .openbtn span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: #402c14;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease;
}
.header .openbtn span:nth-of-type(1) {
  top: calc(50% - 7px);
}
.header .openbtn span:nth-of-type(2) {
  top: 50%;
}
.header .openbtn span:nth-of-type(3) {
  top: calc(50% + 7px);
}
.header .openbtn.active span:nth-of-type(1) {
  transform: translate(-50%, 7px) rotate(-45deg);
}
.header .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.header .openbtn.active span:nth-of-type(3) {
  transform: translate(-50%, -7px) rotate(45deg);
}
.header #gnav-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .header #gnav-sp {
    position: fixed;
    z-index: 100;
    display: block;
    top: 0px;
    right: -120%;
    width: 84%;
    padding: 120px 24px 80px 24px;
    background: white;
    transition: all 0.6s ease;
    box-shadow: 0px 3px 6px rgba(87, 69, 66, 0.3);
  }
  .header #gnav-sp.panelactive {
    right: 0;
  }
  .header #gnav-sp #gnav-sp-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .header #gnav-sp #gnav-sp-list ul li {
    margin-bottom: 24px;
  }
  .header #gnav-sp #gnav-sp-list ul li a {
    font-size: 1.8rem;
  }
}

.main {
  position: relative;
  overflow: hidden;
}
.main .mv-image {
  position: absolute;
  z-index: 1;
  height: auto;
}
.main .mv-image.mv-left {
  top: 90px;
  right: calc(50% + 190px);
  width: 48.682284041vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  .main .mv-image.mv-left {
    width: 63.9534883721vw;
    top: 466px;
    right: 56.511627907vw;
  }
}
.main .mv-image.mv-right {
  top: -15.6661786237vw;
  left: calc(50% + 190px);
  width: 55.8565153734vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  .main .mv-image.mv-right {
    width: 81.3953488372vw;
    top: -100px;
    left: 50vw;
  }
}

.fixed-bar {
  position: fixed;
  left: 0;
  z-index: 3;
  bottom: 0;
  padding: 10px 20px;
  width: 100%;
  align-items: center;
  gap: 16px;
  justify-content: center;
  background: linear-gradient(to right, rgba(183, 118, 222, 0.9), rgba(244, 151, 84, 0.9));
}
@media screen and (max-width: 768px) {
  .fixed-bar {
    height: 60px;
    padding: 4px;
    gap: 2px;
  }
}

.mv {
  background: url(../../assets/images/mvbg.png) no-repeat center/cover;
  height: 100dvh;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}
@media screen and (max-width: 768px) {
  .mv {
    padding-top: 100px;
    padding-left: 16.511627907vw;
    justify-content: flex-start;
  }
}
.mv .contents {
  -moz-column-gap: 16px;
  column-gap: 16px;
  position: relative;
  z-index: 2;
  align-items: flex-start;
}
.mv .contents img {
  height: auto;
  display: block;
}
.mv .contents .desc {
  padding-top: 32px;
}
@media screen and (max-width: 768px) {
  .mv .contents {
    flex-direction: row-reverse;
    align-items: flex-start;
  }
  .mv .contents .has-bg {
    width: 100px;
  }
  .mv .contents .desc {
    width: 66px;
    height: auto;
    flex: 0 0 auto;
  }
}
.mv .animate-slide-text {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}
.mv .slide-track {
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  gap: 100px;
  -webkit-animation: slideLoop 60s linear infinite;
  animation: slideLoop 60s linear infinite;
}
.mv .slide-track img {
  width: auto;
  height: 162px;
}
@media screen and (max-width: 768px) {
  .mv .slide-track img {
    height: 110px;
  }
}

@-webkit-keyframes slideLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes slideLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.wave {
  width: 100%;
  display: block;
  height: 9.0775988287vw;
  background: url(../../assets/images/wave1.png) no-repeat center/cover;
  position: absolute;
  z-index: 1;
}

.intro {
  padding-top: 195px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .intro {
    padding-top: 160px;
  }
}
.intro .wave {
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
}
.intro .img-wrapper {
  margin: 0 auto;
  max-width: 518px;
}
@media screen and (max-width: 768px) {
  .intro .img-wrapper {
    width: 260px;
    margin-bottom: 32px;
  }
}

.bg-white {
  background-color: white;
  padding-top: 9.0775988287vw;
  padding-bottom: 9.0775988287vw;
  position: relative;
  z-index: -1;
}
.bg-white::after {
  content: "";
  position: absolute;
  max-width: 436px;
  width: 100%;
  max-height: 385px;
  top: 0;
  right: 8.1259150805vw;
  z-index: 2;
  height: 100%;
  background: url(../../assets/images/about-images.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .bg-white::after {
    content: none;
  }
}
.bg-white .wave {
  top: 0;
}
.bg-white .contents {
  margin: 80px 0;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .bg-white .contents {
    flex-direction: column;
    margin: 48px 0;
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .bg-white .contents .text-image {
    text-align: center;
    position: relative;
  }
}
.bg-white .contents .text-image .deco-box {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.bg-white .contents .text-image .deco-box span {
  display: block;
  position: absolute;
  height: auto;
  aspect-ratio: 1/1;
}
.bg-white .contents .text-image .deco-box .circle01 {
  width: 41.8604651163vw;
  background: url(../../assets/images/circle01.png) no-repeat center/contain;
  top: -10%;
  right: -17%;
}
.bg-white .contents .text-image .deco-box .circle02 {
  width: 37.2093023256vw;
  background: url(../../assets/images/circle02.png) no-repeat center/contain;
  left: -17%;
  top: 10%;
}
.bg-white .contents .text-image .deco-box .circle03 {
  width: 41.8604651163vw;
  background: url(../../assets/images/circle03.png) no-repeat center/contain;
  right: -17%;
  top: 50%;
}
.bg-white .contents .text-image .deco-box .circle04 {
  width: 37.2093023256vw;
  background: url(../../assets/images/circle04.png) no-repeat center/contain;
  left: -17%;
  bottom: -3%;
}
.bg-white .contents .text-image img {
  margin-left: 32px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .bg-white .contents .text-image img {
    width: 80px;
    margin-left: 0;
    margin: 0 auto;
  }
}
.bg-white .contents .text-wrapper .list {
  margin-bottom: 40px;
}
.bg-white .contents .text-wrapper .list .item {
  line-height: 2.2222222222;
}
.bg-white .contents .text-wrapper .text {
  margin-bottom: 32px;
}

.color-red {
  color: var(--red01);
}

.big {
  font-size: 125%;
}

.cta {
  position: relative;
}
.cta .wave2 {
  background: url(../../assets/images/wave2.png) no-repeat center/contain;
  bottom: calc(100% - 3px);
}
.cta .wave-bottom {
  top: calc(100% - 1px);
}
.cta .text {
  font-weight: 700;
  margin-bottom: 24px;
}
.cta .contents {
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .cta .contents {
    padding: 48px 0;
  }
}
.cta .contents .cta-top-text {
  display: block;
  margin: 0 auto 16px;
}
@media screen and (max-width: 768px) {
  .cta .contents .cta-top-text {
    width: 200px;
  }
}
.cta .contents .cta-text {
  display: block;
  margin: 0 auto 24px;
}
.cta .tel-wrapper {
  align-items: center;
  font-weight: 700;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .cta .tel-wrapper {
    flex-direction: column;
  }
}
.cta .tel-wrapper p {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .cta .tel-wrapper p {
    font-size: 1.4rem;
  }
}
.cta .tel-wrapper a {
  font-size: 6rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .cta .tel-wrapper a {
    font-size: 4.4rem;
  }
}
.cta .tel-wrapper a::before {
  content: "";
  background: url(../../assets/images/icon-tel.png) no-repeat center/contain;
  width: 1em;
  height: 0.8em;
  display: inline-block;
  margin: 0 0.1em;
}
.cta .btn-wrapper {
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .cta .btn-wrapper {
    flex-direction: column;
  }
}
.cta .btn-wrapper a img {
  -webkit-animation: pulse 1.5s ease-out infinite;
  animation: pulse 1.5s ease-out infinite;
}

.seigen {
  padding-top: 9.0775988287vw;
  position: relative;
}
.seigen .wave3 {
  top: calc(100% - 1px);
}
.seigen .img01,
.seigen .img02 {
  position: absolute;
  top: 30%;
}
.seigen .img01 {
  width: 30.9663250366vw;
  right: calc(50% + 338px);
  height: auto;
}
.seigen .img02 {
  width: 18.8872620791vw;
  left: calc(50% + 338px);
  height: auto;
}
.seigen .contents {
  padding-top: 94px;
  padding-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .seigen .contents {
    padding-top: 60px;
  }
}
.seigen .contents .lead {
  margin-bottom: 24px;
}
.seigen .contents .desc {
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .seigen .contents .desc {
    margin-bottom: 24px;
  }
}
.seigen .contents .list {
  margin: 0 auto;
  margin-bottom: 48px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .seigen .contents .list {
    width: 100%;
    margin-bottom: 24px;
  }
}
.seigen .contents .list .item {
  padding-left: 1.6em;
  position: relative;
  line-height: 2.7777777778;
}
.seigen .contents .list .item::before {
  content: "";
  width: 1.5em;
  height: 1.5em;
  background: url(../../assets/images/icon-check.png) no-repeat center/contain;
  left: 0;
  position: absolute;
  top: 0.7em;
}

.under-double {
  text-decoration: underline;
  -webkit-text-decoration-style: double;
  text-decoration-style: double;
  -webkit-text-decoration-color: var(--red01);
  text-decoration-color: var(--red01);
  text-underline-offset: 6px;
}

.voice {
  padding: 9.0775988287vw 0;
}
.voice .contents {
  padding-top: 84px;
}
@media screen and (max-width: 768px) {
  .voice .contents {
    padding-top: 60px;
  }
}
.voice .contents .lead {
  margin-bottom: 16px;
}
.voice .contents .desc {
  margin-bottom: 32px;
  font-weight: 400;
}
.voice .contents .voice-list .item:not(:last-child) {
  margin-bottom: 30px;
}
.voice .contents .voice-list .item .left {
  flex-shrink: 0;
}

.voice-swiper {
  overflow: hidden;
  margin-bottom: 66px;
}
.voice-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
  will-change: transform;
}
.voice-swiper .swiper-slide {
  width: 220px;
}
@media screen and (max-width: 768px) {
  .voice-swiper .swiper-slide {
    width: 110px;
  }
}

.fade {
  opacity: 0;
  transform: translateY(25px);
}

.btn-wrapper {
  text-align: center;
  margin: 0 auto;
}

.voice .voice-list {
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .voice .voice-list {
    grid-template-columns: 1fr;
  }
}
.voice .voice-list .item {
  display: flex;
  width: 100%;
  background: white;
  border-radius: 30px;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  box-shadow: var(--shadow-text);
}
@media screen and (max-width: 768px) {
  .voice .voice-list .item {
    flex-direction: column;
    padding: 20px;
  }
}
.voice .voice-list .item h3 {
  color: var(--orange01);
  font-size: 2rem;
  padding-bottom: 12px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 16px;
  font-weight: 700;
}
.voice .voice-list .item .left {
  margin: 0 auto;
}
.voice .voice-list .item .left .meta {
  text-align: center;
}
.voice .voice-list .item .img-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 15px;
  flex-shrink: 0;
  overflow: hidden;
}
.voice .voice-list .item .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.voice .note {
  margin-bottom: 16px;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  opacity: 0;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.color-orange {
  color: var(--orange01);
}

.color-yellow {
  color: var(--yellow01);
  text-shadow: 2px 2px 0 #a5330f;
}

.color-white {
  color: white;
}

section h2 {
  margin-bottom: 24px;
  color: var(--red01);
  text-align: center;
  font-weight: 700;
  font-size: clamp(22px, 2.0497803807vw, 28px);
}

span.line {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.approach {
  padding-top: 9.0775988287vw;
  background-color: #e68965;
  position: relative;
}
.approach .contents {
  padding-top: 80px;
}
.approach .contents .desc {
  margin-bottom: 40px;
}
.approach .list {
  margin-bottom: 40px;
}
.approach .list .item {
  display: flex;
}
@media screen and (max-width: 768px) {
  .approach .list .item {
    flex-direction: column;
  }
}
.approach .list .item:not(:last-child) {
  margin-bottom: 24px;
}
.approach .list .item .num {
  font-size: clamp(40px, 7.3206442167vw, 100px);
  font-weight: 500;
  color: white;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .approach .list .item .num {
    text-align: center;
    border-bottom: 2px solid white;
    padding-bottom: 10px;
    margin-bottom: 16px;
  }
}
.approach .list .item .text-wrapper {
  margin-left: 32px;
  padding-left: 32px;
  border-left: 2px solid white;
}
@media screen and (max-width: 768px) {
  .approach .list .item .text-wrapper {
    border: none;
    padding: 0;
    margin: 0;
  }
}
.approach .list .item .ttl {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.approach .list .item .ttl p {
  font-size: 2.4rem;
  color: white;
  padding: 2px 16px;
  background: rgba(165, 51, 15, 0.3);
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .approach .list .item .ttl p {
    font-size: 1.8rem;
  }
}
.approach .list .item h3 {
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .approach .list .item h3 {
    font-size: 2.2rem;
  }
}
.approach .list .item .text {
  color: white;
}
.approach .text-bottom {
  font-size: 2.2rem;
  text-decoration: underline;
  color: white;
  text-underline-offset: 5px;
}
@media screen and (max-width: 768px) {
  .approach .text-bottom {
    font-size: 1.6rem;
  }
}
.approach .wave5 {
  top: calc(100% - 1px);
  background: url(../../assets/images/wave05.svg) no-repeat center/cover;
}

.doctor {
  padding-top: 9.0775988287vw;
  padding-bottom: 9.0775988287vw;
}
.doctor .contents {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .doctor .contents {
    flex-direction: column;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.doctor .contents .img-wrapper {
  max-width: 346px;
  width: 100%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .doctor .contents .img-wrapper {
    width: 240px;
    margin: 0 auto;
  }
}
.doctor .contents .text-wrapper {
  flex: 1;
}
.doctor .contents .text-wrapper .desc {
  line-height: 2;
  margin-bottom: 32px;
}
.doctor .contents .text-wrapper .desc span {
  color: var(--red01);
}
.doctor .contents .text-wrapper dl {
  margin-bottom: 30px;
}
.doctor .contents .text-wrapper dl dt {
  background: var(--grad01);
  color: white;
  padding: 2px 16px;
  border-radius: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 14px;
}
.doctor .contents .text-wrapper dl dd {
  line-height: 2;
}
.doctor .contents .text-wrapper dl dd .img-wrapper {
  margin-top: 16px;
  gap: 20px;
  width: 100%;
  max-width: none;
}
.doctor .contents .text-wrapper dl dd .img-wrapper img {
  width: calc((100% - 20px) / 2);
}
.doctor .contents .text-wrapper dl:last-child {
  margin-bottom: 0;
}

.daiippo {
  padding-top: 9.0775988287vw;
  padding-bottom: 9.0775988287vw;
  position: relative;
}
.daiippo .deco {
  position: absolute;
  display: block;
  height: auto;
  z-index: 3;
}
.daiippo .deco.img01 {
  top: 50%;
  transform: translateY(-50%);
  right: 74.7437774524%;
  width: 18.8872620791vw;
}
@media screen and (max-width: 768px) {
  .daiippo .deco.img01 {
    top: auto;
    bottom: -8vw;
    width: 25vw;
  }
}
.daiippo .deco.img02 {
  top: 50%;
  transform: translateY(-50%);
  right: -12vw;
  width: 32.5768667643vw;
}
@media screen and (max-width: 768px) {
  .daiippo .deco.img02 {
    top: 0;
    transform: translate(0, 0);
    left: auto;
    right: -6%;
    width: 36vw;
  }
}
.daiippo .contents {
  padding: 80px 0;
}
.daiippo .contents .desc {
  text-align: center;
  line-height: 1.7777777778;
}
.daiippo .contents .desc span {
  color: var(--red01);
}

.fuan {
  padding-top: 9.0775988287vw;
  padding-bottom: 9.0775988287vw;
  background: white;
}
.fuan .contents {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .fuan .contents {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.fuan .contents .lead {
  margin-bottom: 40px;
}
.fuan .contents .img-wrapper {
  margin: 0 auto 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .fuan .contents .img-wrapper {
    width: 240px;
  }
}
.fuan .contents .img-wrapper img {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .fuan .contents .img-wrapper img.illust-heart {
    width: 160px;
  }
}
.fuan .contents .text-wrapper .text {
  margin-bottom: 16px;
}

.future {
  padding-top: 9.0775988287vw;
  position: relative;
}
.future .contents {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .future .contents {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.future .contents .list {
  justify-content: space-between;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .future .contents .list {
    flex-direction: column;
    gap: 24px;
  }
}
.future .contents .list .item {
  background: white;
  border-radius: 30px;
  padding: 20px;
  width: 100%;
}
.future .contents .list .item .text {
  padding: 20px;
  line-height: 1.7777777778;
}
.future .contents .list .item .img-wrapper {
  width: 100%;
}
.future .contents .list .item h3 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .future .contents .list .item h3 {
    font-size: 3rem;
  }
}
.future .contents .list .item h3 .big {
  font-size: 150%;
  margin-left: 8px;
}
.future .contents .list .item.a h3,
.future .contents .list .item.a .sub {
  color: #7b5492;
}
.future .contents .list .item.a .sub {
  background: #f4ecf8;
  margin: 0 auto 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border-radius: 23px;
  padding: 2px 16px;
}
.future .contents .list .item.b h3,
.future .contents .list .item.b .sub {
  color: var(--red01);
}
.future .contents .list .item.b .sub {
  background: #fce5de;
  margin: 0 auto 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border-radius: 23px;
  padding: 2px 16px;
}
.future .contents .list .text-img-wrapper {
  padding: 0 48px;
  flex-shrink: 0;
}
.future .wave6 {
  top: calc(100% - 1px);
  background: url(../../assets/images/wave06.svg) no-repeat center/cover;
}

.faq {
  background-color: #e6987a;
  padding-top: 9.0775988287vw;
  padding-bottom: 9.0775988287vw;
}
.faq h2 {
  color: white;
}
.faq .content {
  margin-bottom: 80px;
  margin-top: 80px;
}
.faq .content li:not(:last-child) section {
  margin-bottom: 20px;
}
.faq .content section {
  border-radius: 10px;
  overflow: hidden;
}
.faq .content section .title,
.faq .content section .box {
  background-color: white;
  padding: 16px 60px 16px 16px;
}
.faq .content section .title span,
.faq .content section .box span {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--en);
  line-height: 1;
}
.faq .content section .title {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5em;
  font-weight: 600;
  font-size: 1.8rem;
  transition: all 0.5s ease;
  position: relative;
}
@media screen and (max-width: 768px) {
  .faq .content section .title {
    font-size: 1.6rem;
  }
}
.faq .content section .title::before, .faq .content section .title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: var(--text-black);
}
.faq .content section .title::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}
.faq .content section .title::after {
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
}
.faq .content section .title.close::before {
  transform: rotate(45deg);
}
.faq .content section .title.close::after {
  transform: rotate(-45deg);
}
.faq .content section .title span {
  color: var(--red01);
}
.faq .content section .box {
  border-top: 1px solid #ccc;
  display: none;
}
.faq .content section .box .box-inner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5em;
}
.faq .content section .box span {
  color: #cbcbcb;
}

.footer {
  margin-top: 5.8565153734vw;
  padding: 32px;
  background: white;
  text-align: center;
  margin-bottom: 60px;
}
.footer .footer-logo {
  margin-bottom: 16px;
  display: block;
}
.footer .nav-list {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 16px;
  justify-content: center;
  gap: 16px 32px;
  flex-wrap: wrap;
}
.footer small {
  display: block;
  font-family: var(--en);
  text-align: center;
  font-size: 1.2rem;
  color: var(--blue01);
}


