@charset "UTF-8";
html {
  font-size: 62.5%; /* 16px × 62.5% = 10px */
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  min-width: 1080px;
  width: 100%;
  min-height: 100vh;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #191919;
  background-color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    min-width: initial;
  }
}
body.is-fixed {
  overflow: hidden;
}

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

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

li {
  list-style: none;
}

:focus-visible {
  outline: 2px solid #0f7bff;
  outline-offset: 2px;
}

address {
  font-style: normal;
}

/* font weight */
.fw-700 {
  font-weight: 700;
}

.fw-600 {
  font-weight: 600;
}

.fw-500 {
  font-weight: 500;
}

.fw-400 {
  font-weight: 400;
}

/* color */
.fc-white {
  color: #fff;
}

.fc-navy {
  color: #182848;
}

.fc-pink {
  color: #e9546b;
}

.fc-yellow {
  color: #d9e367;
}

/* background */
.bg-white {
  background-color: #fff;
}

.bg-black {
  background-color: #000000;
}

.bg-navy {
  background-color: #182848;
}

.bg-pink {
  background-color: #e9546b;
}

.bg-middlePink {
  background-color: #fef4f4;
}

/* margin */
.mb-20 {
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .scroll-margin-heading {
    scroll-margin-top: 6.9rem;
  }
}
.inner {
  max-width: 1016px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .inner {
    padding: 0 2rem;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

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

.fade,
.fade-sequence {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  position: relative;
}

.fade:has(.is-visible),
.fade-sequence:has(.is-visible) {
  opacity: 1;
  transform: none;
}

/* PC：servicesの3つだけ左から順番に出す */
.services__list .fade-sequence {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.services__list .fade-sequence:has(.is-visible) {
  opacity: 1;
  transform: translateX(0);
}

.services__list .fade-sequence:nth-child(1) {
  transition-delay: 0s;
}

.services__list .fade-sequence:nth-child(2) {
  transition-delay: 0.5s;
}

.services__list .fade-sequence:nth-child(3) {
  transition-delay: 1s;
}

/* FV・ロゴ用：ぼかしなし */
.header__logo,
.fv__content,
.fv__label-sp {
  opacity: 1;
  transform: none;
  animation: none;
}

.fv__content,
.fv__label-sp {
  animation: fvFadeIn 1.2s ease-out forwards;
}

@keyframes fvFadeIn {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* sentinelは目印 */
.sentinel {
  width: 1px;
  height: 1px;
  visibility: hidden;
}

.sentinel-sp {
  position: absolute;
  top: 20%;
  left: 0;
}

/* =========================
   main
========================= */
/* =========================
   Header
========================= */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: transparent;
}

.header__inner {
  width: 100%;
  padding: 3.5rem 5rem 0;
}

.header__logo {
  width: 82px;
}

.header__logo-link {
  width: 100%;
  display: block;
}
.header__logo-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =========================
   FV
========================= */
.fv {
  width: 100%;
  aspect-ratio: 1920/910;
  position: relative;
}
@media (max-width: 768px) {
  .fv {
    aspect-ratio: 750/1334;
    min-height: 100svh;
  }
}

.fv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.fv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  animation: animationZoom 5s ease-in-out forwards;
}

@keyframes animationZoom {
  100% {
    transform: scale(1.1);
  }
}
.fv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  text-align: center;
}

.fv__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  z-index: 1;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .fv__wrapper {
    transform: translate(-50%, -45%);
  }
}
@media (max-width: 768px) {
  .fv__wrapper {
    max-width: 100%;
    top: 66%;
  }
}

@keyframes fvFadeUp {
  from {
    opacity: 0;
    transform: translateY(140px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.fv__label-pc {
  width: 35%;
  margin: 0 auto clamp(2rem, 1.98vw, 3.8rem);
}
.fv__label-pc img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__label-sp {
  width: 35%;
  margin: 4.3rem auto 0;
}
.fv__label-sp img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__title {
  font-size: clamp(3.5rem, 2.14vw, 4.1rem);
  line-height: 1.5365853659;
  letter-spacing: 0.06em;
  margin-bottom: clamp(2rem, 1.83vw, 3.5rem);
}
@media (max-width: 768px) {
  .fv__title {
    font-size: clamp(3.1rem, 8vw, 6rem);
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 1.6rem;
  }
}

.fv__desc {
  font-size: clamp(1.6rem, 1.05vw, 1.9rem);
  letter-spacing: 0.04em;
  line-height: 1.8947368421;
  margin-bottom: clamp(3rem, 3.49vw, 6.7rem);
}
@media (max-width: 768px) {
  .fv__desc {
    font-size: clamp(1.3rem, 3.4vw, 2.5rem);
    line-height: 2;
    font-weight: 600;
    margin-bottom: 5rem;
  }
}

/* =========================
   services
========================= */
.services {
  position: relative;
  z-index: 1;
}
.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 52%;
  background-image: url("../img/concept_bg_pc.jpg");
  background-position: center;
  background-size: cover;
  z-index: -1;
}
@media (max-width: 768px) {
  .services::before {
    background-image: url("../img/concept_bg_sp.jpg");
  }
}
.services::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48%;
  background-color: #fdf4f8;
  z-index: -1;
}

.services__inner {
  max-width: 1265px;
  width: 65.8%;
  margin: 0 auto;
  padding: 34rem 0 9rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .services__inner {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .services__inner {
    width: 100%;
    padding: 28.5rem 0 6.7rem;
  }
}

.services__title {
  font-size: clamp(3.2rem, 1.88vw, 3.6rem);
  line-height: 1.6666666667;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .services__title {
    font-size: clamp(2.3rem, 5.86vw, 4.4rem);
    line-height: 1.5909090909;
    margin-bottom: 4rem;
  }
}

.services__list {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .services__list {
    display: none;
  }
}

.services__item {
  width: 27%;
}
@media (max-width: 1024px) {
  .services__item {
    width: 33%;
  }
}

.services__item-image {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 2rem;
  border-radius: 50%;
}
.services__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .services__item-image {
    width: 87%;
    margin: 0 auto 3rem;
  }
}

.services__item-title {
  font-size: clamp(2rem, 1.4vw, 2.7rem);
  line-height: 2.037037037;
  margin-bottom: 1rem;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .services__item-title {
    font-size: clamp(2.1rem, 5.4vw, 4rem);
    line-height: 1.85;
    margin-bottom: 0.5rem;
  }
}

.services__item-text {
  font-size: clamp(1.6rem, 0.89vw, 1.7rem);
  line-height: 1.8235294118;
}
@media (max-width: 768px) {
  .services__item-text {
    font-size: clamp(1.4rem, 3.74vw, 2.8rem);
    line-height: 1.6428571429;
    text-align: center;
  }
}

/* ========================
   スライダー(slick)
======================== */
.slider-wrapper {
  margin: 0 auto 6rem;
  overflow: hidden;
}

.slider .slick-list {
  overflow: visible;
}

.services__message {
  width: 64%;
  margin: 0 auto;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .services__message {
    width: 91%;
  }
}

.services__message-text {
  text-align: center;
  align-self: center;
  font-size: clamp(1.6rem, 1.05vw, 2rem);
  padding: 2.5rem 0;
  line-height: 2;
  letter-spacing: -0.05em;
}
.services__message-text::after {
  content: "";
  display: block;
  margin: 2.5rem auto 0;
  width: 95px;
  height: 4px;
  background-color: #d9e367;
}
@media (max-width: 768px) {
  .services__message-text {
    font-size: clamp(1.4rem, 3.2vw, 2.4rem);
    line-height: 1.8333333333;
    padding: 3.5rem 0 2.5rem;
  }
}

/* =========================
   wanted
========================= */
.wanted__inner {
  max-width: 1310px;
  width: 68.25%;
  margin: 0 auto;
  padding: 10rem 0 11rem;
  display: flex;
  align-items: start;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .wanted__inner {
    width: 100%;
    flex-direction: column;
    padding: 10rem 2.5rem 19rem;
  }
}

.wanted__head {
  width: 16%;
  aspect-ratio: 1/1;
  border: 5px solid #e9546b;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .wanted__head {
    width: 59.8%;
    margin: 0 auto 6.8rem;
  }
}

.wanted__en {
  width: 49%;
  margin-bottom: 1.5rem;
}
.wanted__en img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .wanted__en {
    width: 48%;
  }
}

.wanted__ja {
  font-size: clamp(2.6rem, 1.98vw, 3.8rem);
  line-height: 1.2;
  text-wrap: balance;
  text-align: center;
}
@media (max-width: 768px) {
  .wanted__ja {
    font-size: clamp(3rem, 11vw, 7.6rem);
  }
}

.wanted__body {
  width: 77.9%;
}
@media (max-width: 768px) {
  .wanted__body {
    width: 100%;
  }
}

.wanted__li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #ecebe9;
  padding: 1.2rem 0;
}
@media (max-width: 768px) {
  .wanted__li {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
    border-bottom: initial;
    padding: 0;
    margin-bottom: 6.3rem;
  }
  .wanted__li.mb {
    margin-bottom: 5.2rem;
  }
  .wanted__li:last-child {
    margin-bottom: 0;
  }
}

.wanted__badge {
  width: 11.9%;
  text-align: center;
  border-radius: 5px;
  padding: 0.7rem 0;
  font-size: clamp(1.4rem, 0.94vw, 1.8rem);
}
@media (max-width: 768px) {
  .wanted__badge {
    width: 100%;
    font-size: clamp(2rem, 5.4vw, 4rem);
    padding: 0.6rem 0;
  }
}

.wanted__li-title {
  width: 85%;
  font-size: clamp(1.6rem, 0.94vw, 1.8rem);
  letter-spacing: -0.015em;
  line-height: 2.3;
}
@media (max-width: 768px) {
  .wanted__li-title {
    width: 100%;
    font-size: clamp(1.6rem, 3.8vw, 2.8rem);
    font-weight: 400;
    line-height: 1.6428571429;
  }
}

/* =========================
   flow
========================= */
.flow {
  overflow: hidden;
}

.flow__inner {
  max-width: 1690px;
  width: 90%;
  margin: 0 auto;
  padding-top: 9rem;
}
@media (max-width: 768px) {
  .flow__inner {
    width: 100%;
    padding-top: 0;
  }
}

.sec__header {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
.sec__header.sec__header-faq {
  margin-bottom: 6rem;
}

.sec__subTitle {
  display: block;
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .sec__subTitle {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.6666666667;
    font-weight: 400;
  }
}

.sec__title {
  font-size: 4rem;
}
@media (max-width: 768px) {
  .sec__title {
    font-size: clamp(3rem, 6.7vw, 5rem);
    line-height: 1.3;
  }
}
.sec__title::after {
  content: "";
  display: block;
  width: 95px;
  height: 4px;
  background-color: #d9e367;
  margin: 3.5rem auto 0;
}

/* カード */
.card-wrapper {
  display: flex;
  padding-top: 7rem;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .card-wrapper {
    display: none;
  }
}

.card__inner-sp {
  display: none;
  width: 100%;
}
@media (max-width: 768px) {
  .card__inner-sp {
    display: block;
  }
}

.card__wrapper-sp {
  display: none;
}
@media (max-width: 768px) {
  .card__wrapper-sp {
    display: flex;
    padding: 7.5rem 2.5rem 0;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .card__wrapper-sp::-webkit-scrollbar {
    display: none;
  }
}

/* ==========================================
   カスタムスクロールバー
========================================== */
/* 1. PC時は非表示 */
.custom-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .custom-scrollbar {
    display: block;
    position: relative;
    width: 240px;
    height: 8px;
    background-color: #efefef;
    border-radius: 10px;
    margin: 7rem auto 0;
  }
}

@media (max-width: 768px) {
  .custom-scrollbar__bar {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 55%;
    height: 100%;
    background-color: #e9546b;
    border-radius: 10px;
    will-change: transform;
    transition: transform 0.1s ease-out;
  }
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - clamp(3rem, 4.7vw, 9rem)) / 4);
  min-height: 540px;
  padding: 10rem clamp(2rem, 2.61vw, 5rem) 0;
  border-radius: 19px;
  position: relative;
}
@media (max-width: 768px) {
  .card {
    flex-shrink: 0;
    width: min(80vw, 400px);
    min-width: auto;
    margin: 0 1.8rem;
    padding: 10rem clamp(2rem, 6.67vw, 5rem) 0;
    white-space: normal;
  }
}

.card__num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7.7rem;
  aspect-ratio: 1/1;
}
@media (max-width: 768px) {
  .card__num {
    transform: translate(-55%, -50%);
  }
}
.card__num img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.card__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .card__head {
    margin-bottom: 3.5rem;
  }
}

.card__image {
  width: 110px;
  height: 9rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card__title {
  font-size: clamp(1.8rem, 1.35vw, 2.6rem);
}
@media (max-width: 768px) {
  .card__title {
    font-size: clamp(2.4rem, 3.47vw, 2.6rem);
  }
}

.card__text {
  font-size: clamp(1.6rem, 1.05vw, 2rem);
  margin-bottom: 2.3rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .card__text {
    font-size: clamp(1.4rem, 2.67vw, 2rem);
  }
}

/* ボタン */
.btn {
  display: inline-block;
  text-align: center;
  transition: 0.3s;
}
.btn.card__btn {
  width: 100%;
  padding: 1.6rem 0;
  border: 1px solid #e9546b;
  font-size: clamp(1.2rem, 1vw, 1.8rem);
  border-radius: 5px;
}
@media (max-width: 768px) {
  .btn.card__btn {
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
    padding: 1.5rem 0;
  }
}
.btn.contact__btn {
  width: 56%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 1.7rem 0;
  border-radius: 50px;
  border: 2px solid #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}
@media (max-width: 768px) {
  .btn.contact__btn {
    width: 94%;
    padding: clamp(1.8rem, 3.34vw, 2.5rem) 0 clamp(2.6rem, 5.34vw, 4rem);
    border-radius: 72px;
  }
}
.btn.contact__btn .contact__btn-small {
  font-size: 1.6rem;
  line-height: 1.625;
}
@media (max-width: 768px) {
  .btn.contact__btn .contact__btn-small {
    font-size: clamp(1.6rem, 3.07vw, 2.3rem);
    line-height: 1.6086956522;
    margin-bottom: 0.5rem;
  }
}
.btn.contact__btn .contact__btn-big {
  font-size: 2.4rem;
  line-height: 1.625;
}
@media (max-width: 768px) {
  .btn.contact__btn .contact__btn-big {
    font-size: clamp(2.2rem, 4.54vw, 3.4rem);
    line-height: 1.0882352941;
  }
}
.btn.fv__btn {
  width: 40%;
  border-radius: 35px;
  padding: 2.5rem 0;
  font-size: clamp(1.6rem, 0.94vw, 1.8rem);
  line-height: 1;
  background: linear-gradient(90deg, #ef856d 0%, #e85298 100%);
}
@media (max-width: 768px) {
  .btn.fv__btn {
    width: 64%;
    font-size: clamp(1.4rem, 3.74vw, 2.8rem);
    font-weight: 500;
    padding: clamp(2.2rem, 5.4vw, 4rem) 0;
    border-radius: 59px;
  }
}
.btn:hover {
  opacity: 0.5;
}

/* =========================
   FAQ
========================= */
.faq__inner {
  max-width: 1070px;
  width: 55.73%;
  margin: 17.5rem auto 22rem;
}
@media (max-width: 768px) {
  .faq__inner {
    width: 100%;
    padding: 0 2.5rem;
    margin: 15rem auto;
  }
}

/* ========================
  Accordion
======================== */
.accordion-item {
  border-top: 1px solid #b5b5b6;
}
.accordion-item:last-child {
  border-bottom: 1px solid #b5b5b6;
}

.accordion-header {
  width: 100%;
  padding: 3rem 1rem;
  transition: background 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #191919 !important;
  -webkit-text-fill-color: #191919 !important;
  -webkit-tap-highlight-color: transparent;
  background: transparent;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.accordion-header .accordion-arrow {
  width: 5rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .accordion-header .accordion-arrow {
    width: 3rem;
  }
}
.accordion-header .accordion-arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.accordion-header .accordion-q {
  padding-left: 7rem;
  font-size: clamp(1.4rem, 0.94vw, 1.8rem);
  position: relative;
  text-align: left;
  flex: 1;
  min-width: 0;
  color: #191919 !important;
  -webkit-text-fill-color: #191919 !important;
}
@media (max-width: 768px) {
  .accordion-header .accordion-q {
    padding-left: 5.4rem;
    font-size: 1.8rem;
  }
}
.accordion-header .accordion-q::before {
  position: absolute;
  content: "";
  width: 7rem;
  aspect-ratio: 1/1;
  background-image: url("../img/Q.svg");
  background-size: cover;
  background-position: center;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .accordion-header .accordion-q::before {
    width: 5.4rem;
  }
}

.accordion-header[aria-expanded=true] .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-content {
  background-color: #fef4f4;
  padding: 5rem 7rem 7rem;
  border-top: 1px solid #e9546b;
}
@media (max-width: 768px) {
  .accordion-content {
    padding: 5rem clamp(2rem, 9.4vw, 7rem) 7rem;
  }
}
.accordion-content .accordion-a {
  font-size: 1.8rem;
  text-align: left;
}

.contact {
  background-image: url("../img/we_love_bg_pc.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .contact {
    background-image: url("../img/we_love_bg_sp.jpg");
  }
}

.contact__inner {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  padding: 18rem 0 15rem;
  text-align: center;
}
@media (max-width: 768px) {
  .contact__inner {
    padding: 18rem 0 13.5rem;
  }
}

.contact__header {
  margin-bottom: 6rem;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .contact__header {
    margin-bottom: 5.5rem;
  }
}

.contact__title {
  font-size: clamp(2.4rem, 4.8vw, 3.6rem);
  line-height: 1.6666666667;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .contact__title {
    font-size: clamp(2rem, 5.34vw, 4rem);
    line-height: 1.5;
    margin-bottom: 4rem;
    letter-spacing: 0.06em;
  }
}

.contact__subtitle {
  font-size: 1.6rem;
  line-height: 1.9;
}
@media (max-width: 768px) {
  .contact__subtitle {
    font-size: clamp(1.6rem, 3.74vw, 2.8rem);
    line-height: 1.7857142857;
  }
}

.contact__body {
  width: 100%;
}

.contact__link {
  position: relative;
  padding-left: 0.8rem;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .contact__link {
    font-size: clamp(1.8rem, 3.74vw, 2.8rem);
    padding-left: clamp(1rem, 2.4vw, 1.8rem);
  }
}
.contact__link::before {
  content: ">";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .contact__link::before {
    font-size: clamp(1.4rem, 3.74vw, 1.8rem);
  }
}
.contact__link:hover {
  opacity: 0.5;
}

.contact__links {
  display: flex;
  justify-content: center;
  gap: 6.5rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .contact__links {
    gap: clamp(3rem, 1.6vw, 12rem);
    margin-top: 6rem;
  }
}

/* hidden が未定義なら追加 */
.hidden {
  display: none;
}

.contact__terms-wrapper {
  display: inline-block;
}

/* =========================
   モーダル
========================= */
#mask {
  position: fixed;
  inset: 0;
  background-color: #000000;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 100;
}
#mask.is-active {
  opacity: 0.3;
  pointer-events: auto;
}

#modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 101;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
#modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.modal__box {
  width: min(1460px, 90vw);
  max-height: 70vh;
  position: relative;
}

.modal__content {
  width: 100%;
  height: 70vh;
  background-color: #fff;
  padding: 8rem 7rem 0;
}
@media (max-width: 768px) {
  .modal__content {
    padding: clamp(4rem, 8vw, 6rem) clamp(2rem, 2.67vw, 2.5rem) 0;
  }
}

.modal__content-inner {
  height: 100%;
  overflow-y: scroll;
}

.modal__title {
  font-size: clamp(1.4rem, 1.05vw, 1.8rem);
}
@media (max-width: 768px) {
  .modal__title {
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  }
}

.modal__body {
  margin-bottom: 4rem;
}

.modal__text {
  line-height: 2.25;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .modal__text {
    font-size: clamp(1.4rem, 2.13vw, 1.6rem);
  }
}

.modal__close {
  margin: 0 auto;
  display: block;
}

.modal__batsu {
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-140%);
  cursor: pointer;
  z-index: 102;
}
.modal__batsu span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  background-color: #fff;
  transform-origin: center;
}
.modal__batsu span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__batsu span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000000;
  font-size: 1.4rem;
}

.info-table th,
.info-table td {
  border: 1px solid #000000;
  padding: 2.5rem 3rem;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .info-table th,
  .info-table td {
    padding: clamp(1rem, 3.34vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
  }
}

.info-table th {
  width: 23%;
  background-color: #efefef;
  text-align: center;
  font-weight: 400;
}
@media (max-width: 768px) {
  .info-table th {
    width: 29%;
  }
}

.info-table td {
  width: 77%;
  text-align: left;
}
@media (max-width: 768px) {
  .info-table td {
    width: 71%;
  }
}

/* =========================
   footer
========================= */
.footer {
  text-align: center;
}

.footer__inner {
  padding: 10rem 0 1rem;
}
@media (max-width: 768px) {
  .footer__inner {
    padding: 12rem 2.5rem 4rem;
  }
}

.footer__logo {
  margin: 0 auto 10rem;
  width: 140px;
}
@media (max-width: 768px) {
  .footer__logo {
    margin-bottom: 9rem;
  }
}
.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__tel {
  margin-bottom: 2.5rem;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .footer__tel {
    font-size: clamp(2.3rem, 3.74vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 4rem;
  }
}

.footer__sns {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4.5rem;
}
@media (max-width: 768px) {
  .footer__sns {
    gap: 4rem;
    margin-bottom: 6rem;
  }
}

.sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .sns-link {
    width: 40px;
    height: 40px;
  }
}
.sns-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sns-link:hover {
  opacity: 0.5;
}

.footer__copy {
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .footer__copy {
    font-size: clamp(1.4rem, 3.47vw, 2.6rem);
    line-height: 1.0769230769;
  }
}/*# sourceMappingURL=lp.css.map */