@charset "UTF-8";
.fv {
  background: url("../images/bg.webp") center/cover no-repeat;
}
.fv .fv__inner {
  display: flex;
  justify-content: center;
  gap: clamp(0.5rem, 0.231rem + 1.23vw, 1rem);
}
.fv .fv__inner .fv__inner__box {
  background-color: var(--color-primary);
  color: #fff;
  padding: 0.5rem;
  width: 27%;
  height: 150px;
  margin-top: -75px;
  margin-bottom: 1rem;
}
.fv .fv__inner .fv__inner__box .fv__inner__line {
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
}
.fv .fv__inner .fv__inner__box .fv__inner__line p {
  text-align: center;
  font-size: clamp(0.68rem, 0.292rem + 1.77vw, 1.4rem);
  font-weight: 700;
}
.fv .fv__inner .fv__inner__box .fv__inner__line p span {
  font-size: clamp(0.875rem, 0.323rem + 2.52vw, 1.9rem);
}
.fv .fv__inner + p {
  font-size: clamp(0.56rem, 0.458rem + 0.47vw, 0.75rem);
  font-weight: 600;
  margin-bottom: 2rem;
}
.fv #fv__slider {
  width: 100%;
  margin: 2rem 0 0;
  overflow: hidden;
  position: relative;
}
.fv #fv__slider .slider-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: img-scroll 140s linear infinite;
  will-change: transform;
  gap: 10px;
}
.fv #fv__slider .slide {
  flex: 0 0 auto;
  width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.fv #fv__slider .slide img {
  width: 240px;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@keyframes img-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .fv #fv__slider .slide,
  .fv #fv__slider .slide img {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .fv .fv__inner .fv__inner__box {
    width: 31%;
    height: 69px;
    padding: 0.23rem;
    margin-top: -35px;
  }
  .fv .fv__inner .fv__inner__box .fv__inner__line {
    padding: 0.1rem;
  }
  .fv .fv__slider > img {
    width: 225px;
  }
}

.message .message__inner {
  background: var(--bg-highlight);
  padding: 2.5rem;
}
.message .message__inner .message__inner__title {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-sub04);
}
.message .message__inner .message__inner__title h2 {
  font-size: clamp(1.25rem, 1.169rem + 0.37vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
.message .message__inner .message__inner__text p {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .message .message__inner {
    padding: 1rem;
  }
}

.problem .problem__title {
  text-align: center;
}
.problem .problem__title h2 {
  display: inline-block;
  background-color: var(--color-primary);
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: clamp(1.125rem, 0.869rem + 1.17vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.problem .problem__inner {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2.5rem;
  background-color: var(--bg-highlight);
  padding: 4.2rem 2.54rem 2.5rem;
  margin-top: -2.1rem;
  margin-bottom: 2.5rem;
}
.problem .problem__inner .problem__inner__img {
  flex: 1;
}
.problem .problem__inner .problem__inner__img img {
  width: 100%;
}
.problem .problem__inner .problem__inner__list {
  width: 50%;
}
.problem .problem__inner .problem__inner__list ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.problem .problem__inner .problem__inner__list ul li {
  font-size: clamp(0.93rem, 0.838rem + 0.42vw, 1.1rem);
  font-weight: 700;
  position: relative;
  padding-left: 2rem;
}
.problem .problem__inner .problem__inner__list ul li::before {
  content: "";
  width: 22px;
  height: 19px;
  background: url("../images/icon_check.svg") center/contain no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.problem .problem__catch {
  background: linear-gradient(150deg, #D1C4BB 0%, #B6A08F 34%, #AB907D 61%);
  padding: 2rem;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.problem .problem__catch p {
  font-size: clamp(1.125rem, 0.869rem + 1.17vw, 1.6rem);
  font-weight: 700;
  font-style: italic;
  text-shadow: 0 2.3px 3.5px rgba(0, 0, 0, 0.4);
}
.problem .problem__catch p span {
  font-size: clamp(1.5rem, 1.123rem + 1.72vw, 2.2rem);
}
@media screen and (max-width: 767px) {
  .problem .problem__inner {
    flex-direction: column;
    gap: 1.2rem;
    margin-top: -2.7rem;
    padding: 4.2rem 1rem 1.5rem;
  }
  .problem .problem__inner .problem__inner__list {
    width: 100%;
  }
  .problem .problem__inner .problem__inner__list ul li::before {
    top: 11px;
  }
  .problem .problem__catch {
    padding: 2rem 1rem;
    width: calc(100% + 20px);
    margin-left: -10px;
  }
}

.section__title {
  position: relative;
  padding-top: 2.1rem;
  margin-bottom: 2.4rem;
  letter-spacing: 0.05em;
}
.section__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 30px;
  background-color: var(--color-sub04);
}
.section__title .section__title-sub {
  font-size: clamp(1rem, 0.946rem + 0.25vw, 1.1rem);
  font-weight: 900;
  text-align: center;
  color: var(--color-sub04);
}
.section__title h2 {
  font-weight: 900;
  color: var(--color-primary);
  font-size: clamp(1.5rem, 1.231rem + 1.23vw, 2rem);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section__title {
    margin-bottom: 1.8rem;
  }
}

.feature {
  background-image: url("../images/bg02.webp");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center top 300px;
}
.feature .feature__doctor {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2.5rem;
  background: var(--bg-highlight);
  padding: 2.5rem 8%;
  margin-bottom: 2.5rem;
}
.feature .feature__doctor .feature__doctor__img {
  width: 220px;
}
.feature .feature__doctor .feature__doctor__inner {
  flex: 1;
}
.feature .feature__doctor .feature__doctor__inner h3 {
  font-size: clamp(1.375rem, 1.254rem + 0.55vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}
.feature .feature__doctor .feature__doctor__inner .feature__doctor__name {
  font-size: clamp(1.25rem, 1.169rem + 0.37vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.feature .feature__doctor .feature__doctor__inner .feature__doctor__name span {
  font-size: clamp(1rem, 0.946rem + 0.25vw, 1.1rem);
}
.feature .feature__doctor .feature__doctor__inner .feature__doctor__division {
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.feature .feature__doctor .feature__doctor__inner .feature__doctor__text {
  padding-top: 1.2rem;
  font-weight: 500;
  border-top: 1px solid var(--color-sub04);
}
.feature .feature-list {
  display: flex;
  justify-content: space-between;
}
.feature .feature-list .feature-list__box {
  width: calc((100% - 2.8rem) / 3);
  display: grid;
  grid-template-rows: auto auto 1fr;
}
.feature .feature-list .feature-list__box .feature-list__box__img {
  margin-bottom: 1.25rem;
}
.feature .feature-list .feature-list__box .feature-list__box__img img {
  width: 100%;
}
.feature .feature-list .feature-list__box h3 {
  font-size: clamp(1.125rem, 0.977rem + 0.68vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
  padding-left: 1rem;
  border-left: 4px solid var(--color-sub04);
}
.feature .feature-list .feature-list__box p {
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .feature {
    background-image: url("../images/bg_sp.webp");
    background-position: center bottom;
  }
  .feature .section__title {
    margin-bottom: 4.375rem;
  }
  .feature .feature__doctor {
    flex-direction: column;
    gap: 0.625rem;
    padding: 0 0.9rem 1.9rem;
  }
  .feature .feature__doctor .feature__doctor__img {
    margin-top: -40px;
  }
  .feature .feature__doctor .feature__doctor__inner h3 {
    text-align: center;
  }
  .feature .feature-list {
    flex-direction: column;
    gap: 1.25rem;
  }
  .feature .feature-list .feature-list__box {
    width: 100%;
    grid-template-columns: 43% 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: "headline headline" "img text";
    gap: 0.5rem;
  }
  .feature .feature-list .feature-list__box .feature-list__box__img {
    grid-area: img;
  }
  .feature .feature-list .feature-list__box h3 {
    grid-area: headline;
  }
  .feature .feature-list .feature-list__box p {
    grid-area: text;
  }
}

.result {
  background-color: var(--color-primary);
  color: #fff;
}
.result .section__title::before {
  background-color: #fff;
}
.result .section__title .section__title-sub {
  color: #fff;
}
.result .section__title h2 {
  color: #fff;
}
.result .result-swiper .swiper-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.65rem;
}
.result .result-swiper .swiper-wrapper .result__inner__box {
  width: calc((100% - 2.8rem) / 3);
  display: flex;
  flex-direction: column;
  height: auto;
}
.result .result-swiper .swiper-wrapper .result__inner__box .result__inner__box__text {
  background: #fff;
  padding: 1rem;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.result .result-swiper .swiper-wrapper .result__inner__box .result__inner__box__text p {
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
}
.result .note {
  text-align: right;
  color: #fff;
  font-size: clamp(0.68rem, 0.642rem + 0.17vw, 0.75rem);
  font-family: var(--font-family-gothic);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .result {
    padding-bottom: calc(40px + 2rem);
  }
}

.treatment .treatment__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.8rem 1.4rem;
}
.treatment .treatment__inner .treatment__inner__box {
  position: relative;
  width: calc((100% - 2.8rem) / 3);
}
.treatment .treatment__inner .treatment__inner__box .treatment__inner__box__img {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 1.85rem);
}
.treatment .treatment__inner .treatment__inner__box .treatment__inner__box__inner {
  padding-top: 1.85rem;
  padding-left: 1.85rem;
  height: 100%;
}
.treatment .treatment__inner .treatment__inner__box .treatment__inner__box__inner .treatment__inner__box__inner__text {
  background: var(--bg-highlight);
  padding: 170px 1.25rem 2.7rem;
  height: 100%;
}
.treatment .treatment__inner .treatment__inner__box .treatment__inner__box__inner .treatment__inner__box__inner__text h3 {
  font-size: clamp(1rem, 0.865rem + 0.62vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}
.treatment .treatment__inner .treatment__inner__box .treatment__inner__box__inner .treatment__inner__box__inner__text p {
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: clamp(0.75rem, 0.696rem + 0.25vw, 0.85rem);
}
.treatment .treatment__inner .treatment__inner__box .treatment__inner__box__inner .more-btn {
  display: none !important;
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .treatment .treatment__inner {
    flex-direction: column;
    gap: 0.85rem;
  }
  .treatment .treatment__inner .treatment__inner__box {
    width: 100%;
  }
  .treatment .treatment__inner .treatment__inner__box .treatment__inner__box__img {
    width: 40%;
  }
  .treatment .treatment__inner .treatment__inner__box .treatment__inner__box__inner {
    padding-top: 0.625rem;
    padding-left: 0.625rem;
  }
  .treatment .treatment__inner .treatment__inner__box .treatment__inner__box__inner .treatment__inner__box__inner__text {
    padding: 0.625rem 0.625rem 0.625rem 42%;
  }
}

.accordion .accordionTrigger {
  cursor: pointer;
  position: relative;
  font-weight: 700;
  background-color: #fff;
  font-size: clamp(1rem, 0.865rem + 0.62vw, 1.25rem);
  border: 1px solid var(--color-primary);
  padding: 0.5rem 1rem;
  margin-bottom: 10px;
}
.accordion .accordionTrigger .icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  width: 16px;
  height: 16px;
  margin: auto;
}
.accordion .accordionTrigger .icon::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 2px;
  height: 16px;
  background-color: var(--color-primary);
  margin: auto;
  transition: all 0.2s;
}
.accordion .accordionTrigger .icon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 16px;
  height: 2px;
  background-color: var(--color-primary);
  margin: auto;
  transition: all 0.2s;
}
.accordion .accordionContent {
  display: none;
  padding: 12px 24px;
}
.accordion.open .accordionContent {
  display: block;
}
.accordion.open .accordionTrigger::after {
  top: 0.5em;
  transform: rotate(-180deg);
}
.accordion.open .accordionTrigger .icon::before {
  opacity: 0;
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .accordion .accordionTrigger .icon {
    right: 10px;
  }
  .accordion .accordionContent {
    padding: 0 5px 10px;
  }
}

.shop-list .shop__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem 2.5rem;
  margin-bottom: 1.8rem;
}
.shop-list .shop__inner .shop__inner__box {
  width: calc((100% - 2.5rem) / 2);
  padding-bottom: 2.8rem;
  border-bottom: 1px solid var(--color-sub04);
  position: relative;
}
.shop-list .shop__inner .shop__inner__box .shop__inner__box__name {
  font-size: clamp(1rem, 0.892rem + 0.49vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-left: 1rem;
  position: relative;
  /*
  &::before{
    content: '▶';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 0.7rem;
  }
  */
}
.shop-list .shop__inner .shop__inner__box .shop__inner__box__address {
  font-weight: 500;
  font-family: var(--font-family-gothic);
  padding-left: 1rem;
}
.shop-list .shop__inner .shop__inner__box .shop__inner__box__link {
  font-weight: 700;
  font-size: clamp(0.875rem, 0.723rem + 0.52vw, 1rem);
  position: absolute;
  bottom: 1rem;
  right: 0;
  padding-right: 1.5rem;
  display: flex;
  gap: 10px;
  line-height: 24px;
}
.shop-list .shop__inner .shop__inner__box .shop__inner__box__link::after {
  content: "";
  width: 6px;
  height: 24px;
  background: url("../images/btn_arrow_b.svg") center/contain no-repeat;
}
.shop-list .banner {
  text-align: center;
}
.shop-list .banner img {
  width: 100%;
  max-width: 580px;
  margin: 0 auto 1rem;
}
.shop-list .banner .note {
  font-size: 0.75rem;
  font-family: var(--font-family-gothic);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .shop-list .shop__inner {
    flex-direction: column;
    gap: 0.625rem;
  }
  .shop-list .shop__inner .shop__inner__box {
    width: 100%;
  }
}

.voice .voice__inner {
  padding-bottom: 6rem;
  position: relative;
}
.voice .voice__inner .swiper-container .swiper-wrapper .swiper-slide .voice__inner__box {
  padding: 1.85rem;
  background-color: var(--bg-highlight);
  display: grid;
  grid-template-columns: 1fr 195px;
  grid-template-rows: auto 1fr;
  grid-template-areas: "title img" "message img";
  gap: 1rem;
}
.voice .voice__inner .swiper-container .swiper-wrapper .swiper-slide .voice__inner__box .voice__inner__box__title {
  grid-area: title;
  font-size: clamp(1.125rem, 1.058rem + 0.31vw, 1.25rem);
  font-weight: 700;
}
.voice .voice__inner .swiper-container .swiper-wrapper .swiper-slide .voice__inner__box .voice__inner__box__message {
  grid-area: message;
  font-weight: 500;
  font-family: var(--font-family-gothic);
}
.voice .voice__inner .swiper-container .swiper-wrapper .swiper-slide .voice__inner__box .voice__inner__box__img {
  grid-area: img;
  width: 195px;
}
.voice .voice__inner .swiper-container .swiper-wrapper .swiper-slide .voice__inner__box .voice__inner__box__img img {
  width: 100%;
  aspect-ratio: 195/230;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 787px) {
  .voice .voice__inner .swiper-container .swiper-wrapper .swiper-slide {
    width: 550px !important;
  }
}
.voice .voice__inner .swiper-container .swiper-button-prev, .voice .voice__inner .swiper-container .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #fff;
  right: auto;
  left: auto;
  top: auto;
  bottom: 2rem;
}
.voice .voice__inner .swiper-container .swiper-button-prev::after, .voice .voice__inner .swiper-container .swiper-button-next::after {
  font-size: 15px;
}
.voice .voice__inner .swiper-container .swiper-button-prev {
  right: 4rem;
}
.voice .voice__inner .swiper-container .swiper-button-next {
  right: 0;
}
.voice .voice__inner .swiper-container .swiper-pagination {
  bottom: 3rem;
}
.voice .note {
  text-align: right;
  font-size: clamp(0.68rem, 0.642rem + 0.17vw, 0.75rem);
  font-family: var(--font-family-gothic);
  font-weight: 600;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .voice .voice__inner {
    padding-bottom: 0.4rem;
  }
  .voice .voice__inner .swiper-container .swiper-wrapper .swiper-slide .voice__inner__box {
    padding: 1rem;
    grid-template-columns: 126px 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: "img title" "message message";
    gap: 0.65rem;
    align-items: center;
  }
  .voice .voice__inner .swiper-container .swiper-wrapper .swiper-slide .voice__inner__box .voice__inner__box__img {
    width: 126px;
  }
  .voice .voice__inner .swiper-container .swiper-button-next,
  .voice .voice__inner .swiper-container .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 55px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 0;
    cursor: pointer;
  }
  .voice .voice__inner .swiper-container .swiper-button-next::after,
  .voice .voice__inner .swiper-container .swiper-button-prev::after {
    color: #fff;
    font-size: 1.2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .voice .voice__inner .swiper-container .swiper-wrapper {
    margin-bottom: 1.3rem;
  }
  .voice .voice__inner .swiper-container .swiper-button-next {
    right: -10px;
  }
  .voice .voice__inner .swiper-container .swiper-button-prev {
    left: -10px;
  }
  .voice .voice__inner .swiper-container .swiper-pagination {
    bottom: -2rem;
  }
  .voice .voice__inner .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-sub04);
  }
}

@media screen and (max-width: 767px) {
  .swiper-container {
    position: relative;
  }
  .swiper-container .swiper-button-next,
  .swiper-container .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 55px;
    background-color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
  }
  .swiper-container .swiper-button-next::after,
  .swiper-container .swiper-button-prev::after {
    color: #fff;
    font-size: 1.2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .swiper-container .swiper-wrapper {
    margin-bottom: 1.3rem;
  }
  .swiper-container .swiper-button-next {
    right: -10px;
  }
  .swiper-container .swiper-button-prev {
    left: -10px;
  }
  .swiper-container .swiper-pagination {
    bottom: -4rem;
  }
  .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-sub04);
  }
}
.symptoms {
  background: url("../images/bg.webp") center/cover no-repeat;
}
.symptoms .symptoms__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem 1.8rem;
}
.symptoms .symptoms__inner .symptoms__inner__box {
  width: calc((100% - 3.6rem) / 3);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  background: #fff;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
}
.symptoms .symptoms__inner .symptoms__inner__box .symptoms__inner__box__img img {
  margin-bottom: 3px;
}
.symptoms .symptoms__inner .symptoms__inner__box .symptoms__inner__box__img .symptoms__inner__box__text__title {
  font-weight: 700;
  letter-spacing: 0.05em;
}
.symptoms .symptoms__inner .symptoms__inner__box .symptoms__inner__box__button {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.symptoms .symptoms__inner .symptoms__inner__box .symptoms__inner__box__button .btn01 {
  width: 200px;
  max-width: 100%;
  height: 45px;
  pointer-events: none;
  cursor: default;
}
.symptoms .symptoms__inner .symptoms__inner__box .symptoms__inner__box__button .btn01.small {
  font-size: 0.85rem;
}
@media screen and (max-width: 767px) {
  .symptoms .symptoms__inner {
    gap: 1.25rem;
  }
  .symptoms .symptoms__inner .symptoms__inner__box {
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
    align-items: start;
  }
  .symptoms .symptoms__inner .symptoms__inner__box .symptoms__inner__box__img {
    width: 20%;
  }
}

.flow .section__title + p {
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 2rem;
}
.flow .flow__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.85rem 3rem;
  margin-bottom: 0.7rem;
}
.flow .flow__inner .flow__inner__box {
  width: calc((100% - 6rem) / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.flow .flow__inner .flow__inner__box .flow__inner__box__text {
  background-color: var(--bg-highlight);
  padding: 0.7rem 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  width: 100%;
}
.flow .flow__inner .flow__inner__box:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid var(--color-sub04);
}
.flow .note {
  text-align: right;
  font-size: 0.75rem;
  font-family: var(--font-family-gothic);
  font-weight: 600;
  margin-right: 18%;
}
@media screen and (max-width: 767px) {
  .flow .section__title + p {
    text-align: left;
    margin-bottom: 1rem;
  }
  .flow .flow__inner {
    gap: 2.6rem;
  }
  .flow .flow__inner .flow__inner__box {
    width: 100%;
    flex-direction: row;
    align-items: stretch;
  }
  .flow .flow__inner .flow__inner__box .flow__inner__box__img {
    width: 45%;
  }
  .flow .flow__inner .flow__inner__box .flow__inner__box__img img {
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .flow .flow__inner .flow__inner__box .flow__inner__box__text {
    flex: 1;
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 1.125rem;
    text-align: left;
  }
  .flow .flow__inner .flow__inner__box:not(:first-child)::before {
    left: 50%;
    top: -27px;
    transform: translateX(-50%);
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 15px solid var(--color-sub04);
  }
  .flow .note {
    margin-right: 0;
    text-align: left;
  }
}

.about .about__inner {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 1.8rem 3.75rem;
  gap: 2.5rem;
}
.about .about__inner .about__inner__img {
  flex: 1;
}
.about .about__inner .about__inner__img img {
  width: 100%;
  aspect-ratio: 321/381;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .about__inner .about__inner__textbox {
  width: 59%;
}
.about .about__inner .about__inner__textbox .about__inner__textbox__name {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-primary);
}
.about .about__inner .about__inner__textbox .about__inner__textbox__name .name {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1.37rem;
}
.about .about__inner .about__inner__textbox .about__inner__textbox__name .name-en {
  font-weight: 700;
  color: var(--color-sub04);
  margin-left: 10px;
  font-size: 1rem;
}
.about .about__inner .about__inner__textbox .about__inner__textbox__title {
  font-weight: 700;
  background: var(--bg-highlight);
  padding: 0.4rem 0.8rem;
}
.about .about__inner .about__inner__textbox .about__inner__textbox__text {
  padding: 0.4rem 0.8rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-primary);
}
.about .about__inner .about__inner__textbox .about__inner__message__title {
  background: var(--color-sub04);
  padding: 0.4rem 0.8rem;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 1rem;
}
.about .about__inner .about__inner__textbox .about__inner__message__text {
  padding: 0.4rem 0;
  font-weight: 500;
  font-size: 0.85rem;
}
@media screen and (max-width: 767px) {
  .about .about__inner {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .about .about__inner .about__inner__img {
    width: 80%;
    margin: 0 auto;
  }
  .about .about__inner .about__inner__textbox {
    width: 100%;
  }
}

.faq {
  background: var(--color-primary);
}
.faq .section__title::before {
  background-color: #fff;
}
.faq .section__title .section__title-sub {
  color: #fff;
}
.faq .section__title h2 {
  color: #fff;
}
.faq .accordion .accordionTrigger {
  background: #fff;
}
.faq .accordion .accordionTrigger span {
  margin-right: 10px;
}
.faq .accordion .accordionContent {
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .faq .accordion .accordionContent {
    padding: 0 24px 10px;
  }
}

.access .access__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem 2rem;
}
.access .access__inner .access__inner__list {
  flex: 1;
}
.access .access__inner .access__inner__list .access__inner__name {
  font-size: clamp(1.3rem, 1.2rem + 0.5vw, 1.6rem);
  color: var(--color-sub04);
  font-weight: 700;
  margin-bottom: 1rem;
}
.access .access__inner .access__inner__list table th {
  vertical-align: top;
  padding: 0.5rem 0;
  text-align: left;
  font-weight: 500;
}
.access .access__inner .access__inner__list table td {
  vertical-align: top;
  padding: 0.5rem 0 0.5rem 1.5rem;
  text-align: left;
  font-weight: 500;
}
.access .access__inner .access__inner__map {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .access .access__inner {
    flex-direction: column;
  }
  .access .access__inner .access__inner__list {
    width: 100%;
  }
  .access .access__inner .access__inner__map {
    width: 100%;
  }
}/*# sourceMappingURL=home.css.map */