@charset "UTF-8";
/* breakpoints (Bootstrap準拠)
================================================================== */
/* mixin
================================================================== */
/* display
------------------------------ */
.d-i {
  display: inline;
}

.d-ib {
  display: inline-block;
}

.d-b {
  display: block;
}

.w-100 {
  width: 100%;
}

.text-left {
  text-align: left !important;
}

.text-just {
  text-align: justify;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

/* PC, SP表示切り替え */
@media (max-width: 991.98px) {
  .d-pc {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .d-tb {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .d-tb-sp {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .d-pc-tb {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .d-sp {
    display: none !important;
  }
}
@media (min-width: 576px) {
  .d-minsp {
    display: none !important;
  }
}
/* layout
================================================================== */
/* inner
------------------------------ */
.inner {
  --w: 1000px;
  --pd: 10rem;
  --side: 6%;
  margin-inline: auto;
  width: 100%;
  max-width: calc(var(--w) + var(--side) * 2);
  padding: var(--pd) var(--side);
}
.inner--11 {
  --w: 1100px;
}
.inner--12 {
  --w: 1200px;
}
.inner--13 {
  --w: 1300px;
}
.inner--np {
  --pd: 0;
}
.inner--pt0 {
  padding-top: 0;
}
.inner--pb0 {
  padding-bottom: 0;
}
@media (max-width: 767.98px) {
  .inner {
    --pd: 8rem;
  }
}

/* flex
------------------------------ */
.flex {
  display: flex;
  align-items: flex-start;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-x-center {
  display: flex;
  justify-content: center;
}

.flex-y-center {
  display: flex;
  align-items: center;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

/* base settings
================================================================== */
:root {
  --black: #4d220c;
  --white: #fff;
  --main: #d65f4d;
  --l-main: #a3cc42;
  --accent: #ffde27;
  --base: #f0ebe4;
  --d-base: #e6dccf;
  --header-h: 10rem;
  --br-max: 10rem;
  --br-sec: 8rem;
  --br-l: 3rem;
  --br-m: 2rem;
  --br-s: 1.2rem;
  --mg-80: 8rem;
  --mg-60: 6rem;
  --mg-50: 5rem;
  --mg-40: 4rem;
  --mg-30: 3rem;
  --mg-20: 2rem;
  --fs-36: 3.6rem;
  --fs-32: 3.2rem;
  --fs-28: 2.8rem;
  --fs-26: 2.6rem;
  --fs-24: 2.4rem;
  --fs-22: 2.2rem;
  --fs-20: 2rem;
  --fs-18: 1.8rem;
  --fs-16: 1.6rem;
  --fs-15: 1.5rem;
  --fs-14: 1.4rem;
  --b-shadow: 0 3px 6px rgb(0 0 0 / 0.1);
}

@media (max-width: 1199.98px) {
  :root {
    --header-h: 8rem;
  }
}
@media (max-width: 991.98px) {
  :root {
    --fs-36: 3.2rem;
    --fs-32: 2.8rem;
    --fs-28: 2.6rem;
    --fs-26: 2.4rem;
  }
}
@media (max-width: 767.98px) {
  :root {
    --header-h: 6rem;
    --br-sec: 3rem;
    --br-l: 2rem;
    --br-m: 1.6rem;
    --br-s: 0.8rem;
    --mg-80: 6rem;
    --mg-60: 5rem;
    --mg-50: 4rem;
    --mg-40: 3rem;
    --mg-30: 2rem;
    --mg-20: 1.5rem;
    --fs-36: 2.6rem;
    --fs-32: 2.4rem;
    --fs-28: 2.2rem;
    --fs-26: 2.2rem;
    --fs-24: 2rem;
    --fs-22: 1.8rem;
    --fs-20: 1.8rem;
    --fs-18: 1.5rem;
    --fs-16: 1.5rem;
    --fs-15: 1.4rem;
  }
}
@media (max-width: 575.98px) {
  :root {
    --fs-32: 2.2rem;
    --fs-20: 1.6rem;
  }
}
/* common
------------------------------ */
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
  word-wrap: break-word;
  color: var(--black);
  background: var(--base);
  width: 100%;
}
@media (max-width: 767.98px) {
  body {
    line-height: 1.6;
  }
}

main {
  overflow: hidden;
}

a {
  transition-property: opacity, color, background;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.5;
  }
}

/* parts
================================================================== */
.sec-ttl {
  margin-bottom: var(--mg-60);
  text-align: center;
}
.sec-ttl__en {
  font-family: "Lexend", sans-serif;
  font-weight: 500;
  font-style: normal;
  display: block;
  font-size: 13.2rem;
  font-weight: 700;
  line-height: 0.9;
  color: var(--white);
}
@media (max-width: 1199.98px) {
  .sec-ttl__en {
    font-size: 12rem;
  }
}
@media (max-width: 991.98px) {
  .sec-ttl__en {
    font-size: 11rem;
  }
}
@media (max-width: 575.98px) {
  .sec-ttl__en {
    font-size: 7.2rem;
    letter-spacing: 0.04em;
  }
}
.sec-ttl__jp {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: -1em;
  padding: 0 0.2em 0.4em;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.3;
  background-image: linear-gradient(to right, #d65f4d, #d65f4d 16px, transparent 16px);
  background-size: 26px 4px;
  background-position: center bottom;
  background-repeat: repeat-x;
}
@media (max-width: 1199.98px) {
  .sec-ttl__jp {
    font-size: 4.2rem;
  }
}
@media (max-width: 991.98px) {
  .sec-ttl__jp {
    font-size: 3.8rem;
  }
}
@media (max-width: 767.98px) {
  .sec-ttl__jp {
    font-size: 2.8rem;
    background-image: linear-gradient(to right, #d65f4d, #d65f4d 16px, transparent 16px);
    background-size: 24px 3px;
    background-position: center bottom;
    background-repeat: repeat-x;
  }
}

.btn {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: var(--fs-18);
  font-weight: bold;
  line-height: 1.2;
  padding: 1.2em 1em;
  width: 100%;
  border-radius: var(--br-max);
  background-color: var(--white);
}
.btn__arrow {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  display: block;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  width: 1.6em;
  aspect-ratio: 1;
  border-radius: var(--br-max);
  background: var(--main);
}
.btn__arrow::before {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 50%;
  width: 0.8em;
  aspect-ratio: 17/14;
  margin: auto;
  -webkit-mask-image: url("../img/arrow.svg");
          mask-image: url("../img/arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: var(--white);
  transform: translate(50%, -50%) rotate(0);
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    opacity: 1;
    color: var(--white);
    background-color: var(--main);
  }
  .btn:hover .btn__arrow {
    background: var(--white);
  }
  .btn:hover .btn__arrow::before {
    background: var(--main);
  }
}
.btn--XX {
  background-color: var(--l-main);
}
.btn--XX::before {
  border-color: var(--accent);
}
@media (hover: hover) and (pointer: fine) {
  .btn--XX:hover {
    background-color: var(--accent);
  }
  .btn--XX:hover::before {
    border-color: var(--white);
  }
}

/* header
================================================================== */
.header {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  position: fixed;
  z-index: 99;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--header-h);
  background: unset;
  padding: 0 3rem;
}
@media (max-width: 991.98px) {
  .header {
    position: absolute;
    padding: 0 2rem;
  }
}
@media (max-width: 767.98px) {
  .header {
    align-items: flex-end;
    padding: 0 1.5rem 0.8rem;
  }
}
.header__logo {
  display: inline-block;
}
.header__logo img {
  width: auto;
  height: 100%;
}
.header__logo {
  height: 5.4rem;
}
@media (max-width: 1399.98px) {
  .header__logo {
    height: 4.2rem;
  }
}
@media (max-width: 767.98px) {
  .header__logo {
    height: unset;
    width: min(30rem, 75%);
  }
  .header__logo img {
    height: auto;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}
@media (max-width: 1399.98px) {
  .header__nav {
    font-size: 1.5rem;
  }
}
.header__nav-list {
  display: flex;
  justify-content: flex-end;
  gap: 0 1.5em;
  font-weight: bold;
}
@media (max-width: 1199.98px) {
  .header__nav-list {
    display: none;
  }
}
.header__nav-item a {
  position: relative;
  padding: 0.8em 0;
}
@media (hover: hover) and (pointer: fine) {
  .header__nav-item a:hover {
    opacity: 1;
    color: var(--main);
  }
}
.header__nav-btn {
  gap: 1.5rem;
}
@media (max-width: 767.98px) {
  .header__nav-btn {
    display: none;
  }
}
.header__nav-btn .btn {
  width: 15rem;
  height: calc(var(--header-h) * 0.54);
  display: grid;
  align-items: center;
  padding: 0;
}
.header__nav-btn .btn::before {
  display: none;
}
@media (max-width: 767.98px) {
  .header__nav-btn .btn {
    width: 13rem;
  }
}
.header.js-header {
  background: var(--base);
  transition: 0.3s ease-in;
}
@media (max-width: 1199.98px) {
  .header.js-header {
    background: unset;
  }
}

/* hamburger
---------------------------------------------------------------- */
.burger__btn {
  display: none;
  position: relative;
  z-index: 999;
  width: calc(var(--header-h) * 0.7);
  height: calc(var(--header-h) * 0.7);
  cursor: pointer;
  background-color: var(--black);
  border-radius: var(--br-max);
}
@media (max-width: 1199.98px) {
  .burger__btn {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .burger__btn {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .burger__btn {
    top: 1.2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .burger__btn:hover {
    opacity: 0.5;
  }
}
.burger__btn-bar {
  position: absolute;
  width: 50%;
  height: 3px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  transition: 0.4s ease;
}
@media (max-width: 767.98px) {
  .burger__btn-bar {
    height: 2px;
  }
}
.burger__btn-bar--top {
  top: 34%;
}
.burger__btn-bar--middle {
  top: 50%;
}
.burger__btn-bar--bottom {
  top: 66%;
}
.burger__btn.js-close .burger__btn-bar--top {
  top: 48%;
  transform: translateX(-50%) rotate(45deg);
}
.burger__btn.js-close .burger__btn-bar--middle {
  opacity: 0;
  transition: 0.1s;
}
.burger__btn.js-close .burger__btn-bar--bottom {
  top: 48%;
  transform: translateX(-50%) rotate(-45deg);
}
.burger {
  /* burger inner
  ---------------------------------------------------------------- */
}
.burger__nav {
  position: fixed;
  z-index: 99;
  top: 0;
  right: -40rem;
  width: 38rem;
  height: 100%;
  background-color: var(--d-base);
  padding: 10rem 2rem 2rem;
  overflow-x: hidden;
  overflow-y: auto;
  transition: 0.5s;
}
.burger__nav.js-active {
  right: 0;
}
@media (max-width: 767.98px) {
  .burger__nav {
    width: 100vw;
    right: -100vw;
    padding: 8rem 2rem;
  }
}
.burger__nav-list {
  margin-bottom: 3rem;
  display: block;
}
.burger__nav-item a {
  position: relative;
  display: block;
  line-height: 1;
  padding: 1.5em 1em;
  background-image: linear-gradient(to right, #d65f4d, #d65f4d 16px, transparent 16px);
  background-size: 22px 2px;
  background-position: center bottom;
  background-repeat: repeat-x;
  font-size: var(--fs-16);
  font-weight: 600;
}
@media (hover: hover) and (pointer: fine) {
  .burger__nav-item a:hover {
    opacity: 1;
    color: var(--main);
  }
}
.burger__nav-btn .btn {
  display: block;
  width: 100%;
  height: auto;
}
.burger__mask {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  position: fixed;
  inset: 0;
  background-color: rgba(51, 51, 51, 0.7);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.burger__mask.js-active {
  opacity: 1;
  visibility: visible;
}

/* main
================================================================== */
/* mv
------------------------------ */
.mv {
  position: relative;
  margin-top: var(--header-h);
  padding: 1rem min(5rem, 6%) 3rem;
}
@media (max-width: 1199.98px) {
  .mv {
    padding: 1rem 3% 3rem;
  }
}
@media (max-width: 767.98px) {
  .mv {
    padding: 1rem 4% 0;
  }
}
.mv__main {
  width: 100%;
  height: clamp(50rem, 100dvh - var(--header-h) - 6rem, 80rem);
  border-radius: 6rem;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .mv__main {
    border-radius: 4rem;
  }
}
@media (max-width: 767.98px) {
  .mv__main {
    height: auto;
    border-radius: 2rem;
  }
}
.mv__main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.mv__text {
  display: block;
  position: absolute;
  top: 11.4285714286%;
  left: 9.375%;
  width: max(32.125%, 380px);
}
@media (max-width: 991.98px) {
  .mv__text {
    top: 7.8125%;
    left: 9.1145833333%;
    width: min(65%, 380px);
  }
}
.mv__deco--01 {
  display: block;
  position: absolute;
  top: -2rem;
  right: 0;
  width: min(544px, 30%);
}
@media (max-width: 1199.98px) {
  .mv__deco--01 {
    top: -1rem;
  }
}
@media (max-width: 991.98px) {
  .mv__deco--01 {
    top: 0;
    width: 45%;
  }
}
.mv__deco--02 {
  display: block;
  position: absolute;
  top: 66%;
  left: 0;
  width: min(590px, 33%);
}
@media (max-width: 991.98px) {
  .mv__deco--02 {
    top: unset;
    bottom: -2%;
    width: 52%;
  }
}
.mv img {
  pointer-events: none;
}

/* search
------------------------------ */
.search {
  position: relative;
  padding-top: 5rem;
}
@media (max-width: 991.98px) {
  .search {
    padding-top: 0;
  }
}
.search__deco--01 {
  display: block;
  position: absolute;
  top: 6rem;
  left: calc(50% + 55rem);
  width: min(14rem, 12%);
}
@media (max-width: 1399.98px) {
  .search__deco--01 {
    top: 0;
    left: unset;
    right: 2%;
  }
}
@media (max-width: 991.98px) {
  .search__deco--01 {
    top: 6rem;
    right: 4%;
    width: min(14rem, 14%);
  }
}
@media (max-width: 767.98px) {
  .search__deco--01 {
    width: min(10rem, 18%);
    top: 4rem;
  }
}
.search__deco--02 {
  display: block;
  position: absolute;
  right: 0;
  top: 28%;
  width: 33rem;
}
@media (max-width: 1199.98px) {
  .search__deco--02 {
    width: 20%;
  }
}
@media (max-width: 991.98px) {
  .search__deco--02 {
    right: -3%;
    width: 25%;
  }
}
@media (max-width: 767.98px) {
  .search__deco--02 {
    top: 40%;
    width: 35%;
  }
}
.search__deco--03 {
  display: block;
  position: absolute;
  left: 0;
  bottom: -2%;
  width: 36rem;
}
@media (max-width: 1199.98px) {
  .search__deco--03 {
    bottom: 0;
    width: 22%;
  }
}
@media (max-width: 991.98px) {
  .search__deco--03 {
    left: 0;
    width: 25%;
  }
}
@media (max-width: 767.98px) {
  .search__deco--03 {
    width: 35%;
  }
}
.search__wrap {
  position: relative;
  background: var(--d-base);
  border-radius: var(--br-l);
  padding: 3rem 5rem 5rem;
  margin-top: 5rem;
  text-align: center;
}
@media (max-width: 1199.98px) {
  .search__wrap {
    margin: 5rem 6% 0;
  }
}
@media (max-width: 991.98px) {
  .search__wrap {
    padding: 3rem 3rem 5rem;
  }
}
@media (max-width: 767.98px) {
  .search__wrap {
    padding: 3rem 2rem 4rem;
    margin: 3rem 4vw 0;
  }
}
.search__circle img {
  display: block;
  position: absolute;
  width: 1em;
}
@media (max-width: 767.98px) {
  .search__circle img {
    font-size: 1.2rem;
  }
}
.search__circle img:nth-of-type(1) {
  top: 1em;
  left: 1em;
}
.search__circle img:nth-of-type(2) {
  top: 1em;
  right: 1em;
}
.search__circle img:nth-of-type(3) {
  bottom: 1em;
  left: 1em;
}
.search__circle img:nth-of-type(4) {
  bottom: 1em;
  right: 1em;
}
.search__ttl {
  font-size: var(--fs-32);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: var(--mg-30);
}
.search__ttl i {
  color: var(--main);
  padding-right: 0.4em;
}
.search--genre {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 991.98px) {
  .search--genre {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .search--genre {
    grid-template-columns: repeat(1, 1fr);
  }
}
.search--genre {
  gap: 4rem 3rem;
}
@media (max-width: 991.98px) {
  .search--genre {
    gap: 3rem 2rem;
  }
}
@media (max-width: 767.98px) {
  .search--genre {
    gap: 2.5rem;
  }
}
.search--genre__item {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
}
.search--genre__item img {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  height: auto;
}
.search--genre__item:hover img {
  transform: scale(1.07);
}
@media (hover: hover) and (pointer: fine) {
  .search--genre__item:hover {
    opacity: 1;
  }
  .search--genre__item:hover .search--genre__btn {
    color: var(--main);
  }
  .search--genre__item:hover .btn__arrow {
    background: var(--white);
  }
  .search--genre__item:hover .btn__arrow::before {
    background: var(--main);
  }
}
.search--genre__img {
  border-radius: var(--br-m);
  overflow: hidden;
}
.search--genre__btn {
  transition-property: color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  display: block;
  position: relative;
  font-size: var(--fs-20);
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  padding: 1.5rem;
  border-bottom: 2px solid var(--main);
}
@media (max-width: 575.98px) {
  .search--genre__btn {
    padding: 1rem;
  }
}
.search--genre__btn .btn__arrow {
  right: 1.5rem;
}
@media (max-width: 575.98px) {
  .search--genre__btn .btn__arrow {
    right: 1rem;
  }
}
.search--employ {
  gap: var(--mg-20);
}
@media (max-width: 1199.98px) {
  .search--employ {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1199.98px) and (max-width: 991.98px) {
  .search--employ {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1199.98px) and (max-width: 767.98px) {
  .search--employ {
    grid-template-columns: repeat(1, 1fr);
  }
}
.search--employ .btn {
  flex: 1;
  font-size: var(--fs-20);
}
.search--terms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991.98px) {
  .search--terms {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767.98px) {
  .search--terms {
    grid-template-columns: repeat(2, 1fr);
  }
}
.search--terms {
  gap: 1.5rem;
  align-items: stretch;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .search--terms {
    gap: 1.2rem;
  }
}
.search--terms__item {
  width: 100%;
  background: var(--white);
  border-radius: var(--br-m);
  padding: var(--mg-20);
}
.search--terms__item:nth-of-type(3) {
  padding: 2rem 0;
}
.search--terms__item:nth-of-type(3) .search--terms__img__outer {
  padding: 0 2rem;
}
@media (max-width: 767.98px) {
  .search--terms__item:nth-of-type(3) {
    padding: 1.5rem;
  }
  .search--terms__item:nth-of-type(3) .search--terms__img__outer {
    padding: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .search--terms__item:hover {
    opacity: 1;
    background: var(--main);
  }
  .search--terms__item:hover .search--terms__ttl {
    color: var(--white);
  }
}
.search--terms__img {
  width: min(14rem, 90%);
  margin-inline: auto;
}
.search--terms__ttl {
  transition-property: color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  font-size: var(--fs-20);
  font-weight: 700;
  line-height: 1.3;
  margin-top: 1rem;
}
@media (max-width: 767.98px) {
  .search--terms__ttl {
    font-size: 1.6rem;
  }
}
@media (max-width: 575.98px) {
  .search--terms__ttl {
    font-size: 1.4rem;
  }
}

.lawn {
  position: relative;
  z-index: -1;
  padding-top: 10%;
}
.lawn__bg {
  width: 100%;
}
.lawn__deco {
  display: block;
  position: absolute;
  left: calc(50% + 35rem);
  top: 0;
  width: min(33rem, 22%);
}
@media (max-width: 1399.98px) {
  .lawn__deco {
    left: unset;
    right: 4%;
  }
}
@media (max-width: 767.98px) {
  .lawn__deco {
    width: min(18rem, 35%);
    top: -10%;
  }
}
.lawn #point {
  position: absolute;
  bottom: 30%;
}

/* point
------------------------------ */
.point {
  background: #cce07a;
  background: linear-gradient(0deg, rgb(204, 224, 122) 50%, rgb(178, 202, 79) 100%);
  margin-top: -2%;
}
.point .inner {
  padding-top: 0;
  padding-bottom: var(--mg-60);
}
@media (max-width: 767.98px) {
  .point .inner {
    padding-top: 2rem;
  }
}
.point .sec-ttl__en {
  color: #cce07a;
}
.point__img {
  border-radius: var(--br-m);
  overflow: hidden;
}
.point__ttl-num {
  display: block;
  font-family: "Lexend", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.9em;
  font-weight: 700;
  line-height: 1.3;
  color: var(--main);
}
.point__ttl {
  font-size: var(--fs-26);
  font-weight: 700;
  line-height: 1.4;
  padding: 2rem 0 1rem;
}
.point__text {
  text-align: justify;
}
.point__deco {
  display: block;
  position: absolute;
  right: -10rem;
  bottom: 0;
  width: min(48rem, 48%);
}
@media (max-width: 1399.98px) {
  .point__deco {
    right: -2rem;
  }
}
@media (max-width: 767.98px) {
  .point__deco {
    position: static;
    width: min(40rem, 80%);
    margin-top: 2rem;
    margin-left: auto;
    align-content: end;
  }
}

/* tab slider
------------------------------ */
.tabsl {
  position: relative;
  width: 100%;
}
.tabsl .swiper-slide {
  width: 100%;
}
@media (max-width: 767.98px) {
  .tabsl__tab {
    height: 140px;
  }
}
.tabsl__tab-list {
  position: relative;
  z-index: 1;
}
.tabsl__tab-list::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--main);
}
@media (max-width: 767.98px) {
  .tabsl__tab-list::before {
    display: none;
  }
}
.tabsl__tab {
  /* タブのデザイン */
}
.tabsl__tab-item {
  display: grid;
  place-content: center;
  place-items: center;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  width: 100%;
  height: auto;
  letter-spacing: 0.03em;
  line-height: 1.3;
  text-align: center;
  border-radius: var(--br-max);
  background: var(--white);
}
.tabsl__tab {
  /* active・ホバーの時 */
}
.tabsl__tab .tabsl__tab-item:hover,
.tabsl__tab .tabsl__tab-item.swiper-slide-thumb-active {
  opacity: 1;
  background-color: var(--main);
  color: var(--white);
}
.tabsl__main {
  width: 100%;
  height: auto;
}
@media (max-width: 767.98px) {
  .tabsl__main {
    margin-top: 2.5rem;
  }
}
.tabsl__main {
  /* スライダーを無効化した時のスタイル */
}
.tabsl__main.-non-slider .swiper-wrapper {
  transform: inherit !important;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media (max-width: 991.98px) {
  .tabsl__main.-non-slider .swiper-wrapper {
    gap: 3rem;
  }
}
.tabsl__main.-non-slider .swiper-slide {
  width: inherit !important;
}
.tabsl__main.-non-slider .swiper-slide:nth-of-type(1) {
  order: 2;
}
.tabsl__main.-non-slider .swiper-slide-duplicate {
  display: none;
}

/* data
------------------------------ */
#data {
  position: absolute;
  top: -4rem;
}

.data {
  position: relative;
  background: #cce07a;
  padding-bottom: 3rem;
}
.data .inner {
  padding-top: 6rem;
}
@media (max-width: 767.98px) {
  .data .inner {
    padding-top: 0;
  }
}
.data__deco {
  position: absolute;
  top: 8rem;
  left: 0;
  right: 0;
  width: min(140rem, 100%);
  padding: 0 2vw;
  margin-inline: auto;
}
@media (max-width: 1199.98px) {
  .data__deco {
    top: 3rem;
  }
}
@media (max-width: 767.98px) {
  .data__deco {
    position: static;
  }
}
.data__deco-img {
  width: min(36rem, 25%);
}
@media (max-width: 1199.98px) {
  .data__deco-img {
    width: 30%;
  }
}
@media (max-width: 767.98px) {
  .data__deco-img {
    width: 42%;
  }
}
.data__deco-img:last-of-type {
  transform: scale(-1, 1);
}
.data__ttl {
  display: block;
  width: min(622px, 100%);
  margin-inline: auto;
  margin-bottom: 3rem;
}
@media (max-width: 767.98px) {
  .data__ttl {
    margin-top: -8%;
  }
}
.data__ttl span {
  display: none;
}
.data__wrap {
  align-items: stretch;
  gap: 3rem;
}
@media (max-width: 991.98px) {
  .data__wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .data__wrap {
    flex-direction: column;
    margin-inline: auto;
    width: min(50rem, 90%);
  }
}
.data__item {
  width: 100%;
  background: var(--white);
  border-radius: var(--br-m);
  padding: 2.5rem;
  text-align: center;
}
@media (max-width: 991.98px) {
  .data__item {
    width: calc(50% - 1.5rem);
  }
}
@media (max-width: 767.98px) {
  .data__item {
    width: 100%;
    padding: 2rem;
  }
}
.data__item-ttl {
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: 1.5;
  color: var(--main);
}
.data__item-img {
  width: min(20rem, 100%);
  margin: 2rem auto 1.5rem;
}
@media (max-width: 991.98px) {
  .data__item-img {
    width: min(16rem, 100%);
  }
}
@media (max-width: 767.98px) {
  .data__item-img {
    margin: 1.5rem auto;
  }
}

.ellipse {
  position: relative;
  width: 100%;
  height: 18rem;
  background: #cce07a;
}
@media (max-width: 1199.98px) {
  .ellipse {
    height: 10rem;
  }
}
@media (max-width: 767.98px) {
  .ellipse {
    height: auto;
    height: 6rem;
  }
}
.ellipse::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 95%;
  bottom: 0;
  left: 0;
  background: var(--base);
  clip-path: ellipse(60% 200% at 50% 200%);
}
.ellipse__deco--01 {
  display: block;
  position: absolute;
  top: 10%;
  right: calc(50% + 38rem);
  width: min(20rem, 18%);
}
@media (max-width: 1399.98px) {
  .ellipse__deco--01 {
    right: unset;
    left: 4%;
  }
}
@media (max-width: 1199.98px) {
  .ellipse__deco--01 {
    top: unset;
    bottom: 10%;
  }
}
@media (max-width: 991.98px) {
  .ellipse__deco--01 {
    width: 25%;
  }
}
.ellipse__deco--02 {
  display: block;
  position: absolute;
  bottom: 0;
  left: calc(50% + 46rem);
  width: min(22rem, 20%);
}
@media (max-width: 1399.98px) {
  .ellipse__deco--02 {
    left: unset;
    right: 4%;
  }
}
@media (max-width: 991.98px) {
  .ellipse__deco--02 {
    width: 32%;
  }
}

/* int
------------------------------ */
#interview {
  position: absolute;
  top: -4rem;
}

.int {
  position: relative;
  z-index: 0;
  padding-bottom: 15rem;
}
@media (max-width: 991.98px) {
  .int {
    padding-bottom: 0;
  }
}
.int__deco--01 {
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: min(23rem, 15%);
}
@media (max-width: 1199.98px) {
  .int__deco--01 {
    top: 18%;
  }
}
@media (max-width: 991.98px) {
  .int__deco--01 {
    top: 5%;
    width: 20%;
  }
}
@media (max-width: 767.98px) {
  .int__deco--01 {
    top: 16%;
  }
}
.int__deco--02 {
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: min(23rem, 15%);
}
@media (max-width: 1199.98px) {
  .int__deco--02 {
    top: 18%;
  }
}
@media (max-width: 991.98px) {
  .int__deco--02 {
    top: 5%;
    width: 20%;
  }
}
@media (max-width: 767.98px) {
  .int__deco--02 {
    top: 16%;
  }
}
.int__deco--03 {
  display: block;
  position: absolute;
  z-index: -1;
  top: 55%;
  right: calc(50% + 23rem);
  width: min(43rem, 30%);
}
@media (max-width: 1199.98px) {
  .int__deco--03 {
    top: 60%;
    right: unset;
    left: -3%;
  }
}
@media (max-width: 991.98px) {
  .int__deco--03 {
    top: 55%;
    width: 40%;
  }
}
@media (max-width: 767.98px) {
  .int__deco--03 {
    top: 45%;
  }
}
.int__deco--04 {
  display: block;
  position: absolute;
  z-index: -1;
  top: 55%;
  left: calc(50% + 23rem);
  width: min(43rem, 30%);
}
@media (max-width: 1199.98px) {
  .int__deco--04 {
    top: 60%;
    left: unset;
    right: -3%;
  }
}
@media (max-width: 991.98px) {
  .int__deco--04 {
    top: 55%;
    width: 40%;
  }
}
@media (max-width: 767.98px) {
  .int__deco--04 {
    top: 65%;
  }
}
.int .inner {
  padding-top: 4rem;
}
.int .sec-ttl {
  margin-bottom: var(--mg-80);
}
.int-card__wrap {
  gap: 3rem;
}
@media (max-width: 991.98px) {
  .int-card__wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.int-card__item {
  position: relative;
  display: block;
  flex: 1;
  width: 100%;
  background: #72563d;
  padding: 0 3rem 4rem;
  text-align: center;
}
@media (max-width: 991.98px) {
  .int-card__item {
    flex: unset;
    flex-basis: calc(50% - 2rem);
  }
}
.int-card__item:nth-of-type(2) {
  background: #38637e;
}
.int-card__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  border: 2px solid var(--white);
}
.int-card__item .btn {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  padding: 1em;
}
@media (hover: hover) and (pointer: fine) {
  .int-card__item:hover {
    opacity: 1;
  }
  .int-card__item:hover .btn {
    opacity: 1;
    color: var(--white);
    background-color: var(--main);
  }
  .int-card__item:hover .btn .btn__arrow {
    background: var(--white);
  }
  .int-card__item:hover .btn .btn__arrow::before {
    background: var(--main);
  }
}
.int-card__num {
  background: var(--main);
  width: 20rem;
  aspect-ratio: 200/80;
  margin-inline: auto;
  align-content: center;
  clip-path: ellipse(50% 100% at 50% 0%);
}
.int-card__num span {
  display: block;
  font-family: "Lexend", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--white);
  padding-bottom: 0.2em;
}
.int-card__ttl {
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
  margin: 2rem 0;
}

/* modal
------------------------------ */
.modal__content {
  position: relative;
  border-radius: var(--br-m);
  background: var(--base);
  overflow: hidden;
  width: min(800px, 100%);
  text-align: left;
  padding: 0 min(4rem, 4%) var(--mg-50);
}
.modal__close--top {
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  position: absolute;
  z-index: 1;
  top: 2rem;
  right: 2rem;
  width: 4rem;
}
@media (max-width: 767.98px) {
  .modal__close--top {
    top: 0.8rem;
    right: 0.8rem;
    width: 3rem;
  }
}
.modal__close--top svg {
  width: 100%;
  height: auto;
}
.modal__close--top:hover {
  opacity: 0.6;
}
.modal__close--btm {
  width: 100%;
}
.modal__close--btm .btn {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  width: 28rem;
  margin-top: var(--mg-40);
}
.modal__top {
  position: relative;
  text-align: center;
}
.modal__top .int-card__ttl {
  font-size: var(--fs-28);
  color: var(--black);
  margin-bottom: var(--mg-40);
}
.modal__qa-item {
  display: flex;
  align-items: flex-end;
  gap: 3rem;
}
.modal__qa-item:not(:first-of-type) {
  margin-top: var(--mg-30);
}
.modal__qa-icon {
  flex-basis: 12rem;
}
.modal__qa-bubble {
  position: relative;
  width: 100%;
  border-radius: var(--br-m);
  background: var(--white);
  padding: 2rem 3rem;
}
.modal__qa-bubble::before {
  content: "";
  display: block;
  position: absolute;
  width: 2rem;
  aspect-ratio: 20/30;
  background: var(--white);
  left: -1.8rem;
  bottom: 2rem;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.modal__qa-label {
  font-size: var(--fs-15);
  text-align: right;
  color: var(--main);
  padding-top: 1rem;
}
.modal__qa-text {
  text-align: justify;
}

/* faq
------------------------------ */
.faq {
  position: relative;
  z-index: 1;
}
.faq__deco--01 {
  display: block;
  position: absolute;
  top: -10rem;
  right: calc(50% + 35rem);
  width: min(29rem, 20%);
}
@media (max-width: 1399.98px) {
  .faq__deco--01 {
    right: unset;
    left: 6%;
  }
}
@media (max-width: 1199.98px) {
  .faq__deco--01 {
    top: -5rem;
  }
}
@media (max-width: 767.98px) {
  .faq__deco--01 {
    width: min(15rem, 30%);
  }
}
.faq__deco--02 {
  display: block;
  position: absolute;
  bottom: -10rem;
  left: calc(50% + 45rem);
  width: min(21rem, 15%);
}
@media (max-width: 1399.98px) {
  .faq__deco--02 {
    left: unset;
    right: 6%;
  }
}
@media (max-width: 767.98px) {
  .faq__deco--02 {
    width: min(15rem, 30%);
  }
}
.faq__bg {
  display: block;
  position: absolute;
  z-index: -1;
  inset: 0;
  margin: 0 min(3rem, 3%);
  border-radius: var(--br-sec);
  overflow: hidden;
}
.faq__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover center;
     object-fit: cover center;
}
.faq .sec-ttl__en {
  opacity: 0.3;
}
.faq .sec-ttl__jp {
  color: var(--white);
  background-image: linear-gradient(to right, #fff, #fff 16px, transparent 16px);
  background-size: 26px 4px;
  background-position: center bottom;
  background-repeat: repeat-x;
}
.faq__box {
  background-color: var(--white);
  border-radius: var(--br-m);
}
.faq__box:not(:last-of-type) {
  margin-bottom: var(--mg-30);
}
.faq__q {
  position: relative;
  padding: var(--mg-30) var(--mg-30) 0;
}
.faq__q p {
  position: relative;
  padding: 0 3rem 25px 50px;
  background-image: linear-gradient(to right, rgba(214, 95, 77, 0.4), rgba(214, 95, 77, 0.4) 16px, transparent 16px);
  background-size: 24px 3px;
  background-position: center bottom;
  background-repeat: repeat-x;
  background-position: left bottom;
  font-size: var(--fs-20);
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  .faq__q p {
    padding-left: 35px;
    padding-right: 0;
    padding-bottom: 20px;
  }
}
.faq__q p::before {
  content: "";
  display: block;
  position: absolute;
  font-family: "Lexend", sans-serif;
  font-weight: 500;
  font-style: normal;
  content: "Q";
  top: -0.1em;
  left: 0;
  color: var(--main);
  font-size: 1.8em;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .faq__q p::before {
    font-size: 1.6em;
    top: 0;
  }
}
.faq__a {
  display: block;
  font-size: 1.8rem;
  padding: 22px var(--mg-30) var(--mg-30);
}
@media (max-width: 767.98px) {
  .faq__a {
    padding: 16px 20px 20px;
    font-size: 1.5rem;
  }
}
.faq__a p {
  padding-left: 50px;
  text-align: justify;
}
@media (max-width: 767.98px) {
  .faq__a p {
    padding-left: 0px;
  }
}

/* entry
------------------------------ */
.entry {
  position: relative;
  z-index: 0;
  background: var(--main);
  padding: 4rem 0 0;
}
.entry::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: -70%;
  left: 0;
  width: 100%;
  height: 70%;
  background: var(--main);
}
.entry__deco--01 {
  display: block;
  position: absolute;
  z-index: -1;
  top: -2rem;
  left: -3%;
  width: min(54rem, 40%);
}
.entry__deco--02 {
  display: block;
  position: absolute;
  z-index: -1;
  top: -2rem;
  right: -3%;
  width: min(54rem, 40%);
}
.entry .sec-ttl__en {
  opacity: 0.3;
}
.entry .sec-ttl__jp {
  color: var(--white);
  background-image: linear-gradient(to right, #fff, #fff 16px, transparent 16px);
  background-size: 26px 4px;
  background-position: center bottom;
  background-repeat: repeat-x;
}
.entry .btn {
  display: block;
  font-size: var(--fs-32);
  width: min(50rem, 100%);
  padding: 1em;
  margin-inline: auto;
}
@media (hover: hover) and (pointer: fine) {
  .entry .btn:hover {
    background: var(--black);
    color: var(--white);
  }
}

/* footer
================================================================== */
/* slide btn
------------------------------ */
.slidebtn {
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  position: fixed;
  z-index: 50;
  right: 0;
  bottom: calc(6rem + 10%);
  flex-direction: column;
  gap: 1em;
}
@media (max-width: 767.98px) {
  .slidebtn {
    bottom: -0.5rem;
    flex-direction: row;
    width: 100%;
    gap: 1rem;
    padding: 0 3%;
  }
}
.slidebtn__item {
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  display: block;
  padding: 1em;
  padding-right: 2em;
  transform: translateX(1em);
  background: var(--main);
  border-radius: 1.2rem 0 0 1.2rem;
  border-bottom: unset;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: var(--white);
  writing-mode: vertical-rl;
}
.slidebtn__item i {
  font-size: 1.2em;
  padding-bottom: 0.4em;
}
@media (max-width: 767.98px) {
  .slidebtn__item i {
    padding-bottom: unset;
    padding-right: 0.4em;
  }
}
.slidebtn__item:first-child {
  background: var(--black);
}
@media (hover: hover) and (pointer: fine) {
  .slidebtn__item:hover {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 1199.98px) {
  .slidebtn__item {
    font-size: 1.6rem;
  }
}
@media (max-width: 767.98px) {
  .slidebtn__item {
    width: 100%;
    border: 2px solid var(--white);
    border-bottom: unset;
    border-radius: 1.6rem 1.6rem 0 0;
    padding: 1em 0.5em 1.2em;
    transform: unset;
    text-align: center;
    writing-mode: unset;
  }
}
@media (max-width: 575.98px) {
  .slidebtn__item {
    padding: 0.8em 0.5em 1em;
    font-size: 1.5rem;
  }
}

/* pagetop
------------------------------ */
.page-top {
  opacity: 0;
  pointer-events: none;
  display: flex !important;
  position: fixed;
  bottom: 3%;
  right: 2%;
  z-index: 10;
  cursor: pointer;
  width: 65px;
  height: 65px;
  background-color: #5aaa30;
  color: var(--white);
  clip-path: circle(50% at 50% 50%);
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.page-top p {
  font-family: "Lexend", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  transform: translateY(35%);
}
.page-top::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.6em;
  height: 0.6em;
  top: 25%;
  right: 50%;
  margin: auto;
  vertical-align: middle;
  line-height: 1;
  border: 2.5px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(50%) rotate(-45deg);
}
@media (hover: hover) and (pointer: fine) {
  .page-top:hover {
    transform: scale(1.1);
    background: var(--white);
    color: #5aaa30;
  }
}
.page-top.is-show {
  opacity: 1;
  pointer-events: unset;
}
.page-top.js-position {
  position: absolute;
  top: -3rem;
}
@media (max-width: 767.98px) {
  .page-top {
    bottom: 6rem;
    transform: scale(0.9);
  }
}

/* footer
------------------------------ */
.footer {
  position: relative;
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 1;
  background: var(--black);
  color: var(--white);
}
@media (max-width: 767.98px) {
  .footer {
    padding-bottom: 4rem;
  }
}
.footer .inner {
  padding: 5rem 3%;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .footer__nav {
    margin-bottom: 8px;
  }
}
.footer__nav a {
  padding: 0.5em 1em;
}
@media (max-width: 767.98px) {
  .footer__nav a {
    padding: 0.5em 0.6em;
  }
}
.footer__nav span {
  background-color: var(--white);
  width: 1px;
  height: 1em;
}
@media screen and (max-width: 550px) {
  .footer__nav span:last-of-type {
    display: none;
  }
}
.footer__copyright {
  text-align: center;
  line-height: 1.5;
  padding: 0.5em 1em 0;
}
.footer__copyright span {
  display: inline-block;
}