@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--14 {
  --w: 1400px;
}
.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: #222;
  --white: #fff;
  --main: #22ad73;
  --l-main: #a3cc42;
  --base: #f4f4f4;
  --gray: #a8a8a8;
  --accent: #f06b00;
  --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;
  --fs-ttl: 4.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: 991.98px) {
  :root {
    --header-h: 8rem;
    --fs-ttl: 3.6rem;
    --fs-36: 3.2rem;
    --fs-32: 2.6rem;
    --fs-28: 2.6rem;
    --fs-26: 2.4rem;
  }
}
@media (max-width: 767.98px) {
  :root {
    --header-h: 7rem;
    --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;
    --fs-36: 2.6rem;
    --fs-32: 2.4rem;
    --fs-28: 2.2rem;
    --fs-26: 2.4rem;
    --fs-24: 2.1rem;
    --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-ttl: 2.8rem;
    --fs-32: 2.2rem;
    --fs-26: 2.2rem;
    --fs-16: 1.4rem;
  }
}
/* common
------------------------------ */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: var(--fs-16);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  word-wrap: break-word;
  color: var(--black);
  width: 100%;
}

main {
  overflow: clip;
}

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);
}
.sec-ttl__en {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  display: block;
  font-size: var(--fs-28);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 0.3em;
  color: var(--main);
}
.sec-ttl__jp {
  display: block;
  font-weight: 500;
  font-size: var(--fs-ttl);
  line-height: 1.5;
}

.sub-ttl {
  position: relative;
  padding-bottom: 2rem;
  margin-bottom: var(--mg-40);
  text-align: center;
}
@media (max-width: 767.98px) {
  .sub-ttl {
    padding-bottom: 1.5rem;
  }
}
.sub-ttl__en {
  display: inline-block;
  height: 9.2rem;
  display: block;
}
.sub-ttl__en img {
  width: auto;
  height: 100%;
}
@media (max-width: 767.98px) {
  .sub-ttl__en {
    height: 7rem;
  }
}
@media (max-width: 575.98px) {
  .sub-ttl__en {
    height: 6rem;
  }
}
.sub-ttl__jp {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--fs-28);
  color: var(--accent);
  padding: 0 0.2em 0.1em;
  border-bottom: 2px solid currentColor;
}

.btn {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: var(--fs-18);
  font-weight: 500;
  line-height: 1.2;
  padding: 1.2em 1em;
  width: 100%;
  border: 2px solid var(--main);
  border-radius: var(--br-max);
  background-color: var(--main);
  color: var(--white);
}
.btn::before {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1.5em;
  width: 1em;
  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: translateY(-50%) rotate(0);
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    opacity: 1;
    color: var(--main);
    background-color: var(--white);
  }
  .btn:hover::before {
    right: 1em;
    background: var(--main);
  }
}
.btn--accent {
  background-color: var(--accent);
  border-color: var(--accent);
}
@media (hover: hover) and (pointer: fine) {
  .btn--accent:hover {
    color: var(--accent);
  }
}
.btn--link::before {
  display: none;
}
.btn--link i {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  display: block;
  position: absolute;
  top: 50%;
  right: 1.5em;
  width: 1em;
  transform: translateY(-50%);
}
.btn__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--mg-60);
}

/* header
================================================================== */
.header {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  position: relative;
  z-index: 1000;
  display: flex;
  align-items: center;
  width: 100%;
  height: var(--header-h);
  background: var(--base-02);
  padding: 0 3rem;
}
@media (min-width: 992px) {
  .header {
    background: unset;
  }
}
@media (max-width: 991.98px) {
  .header {
    padding: 0 2rem;
  }
}
@media (max-width: 767.98px) {
  .header {
    padding: 0 1.5rem;
  }
}
.header__logo {
  display: inline-block;
  height: 5.6rem;
}
.header__logo img {
  width: auto;
  height: 100%;
}
@media (max-width: 991.98px) {
  .header__logo {
    height: 4rem;
  }
}
@media (max-width: 767.98px) {
  .header__logo {
    height: auto;
    width: min(30rem, 80%);
  }
}
.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.change-color {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: 0.3s ease-in;
}
@media (max-width: 991.98px) {
  .header.change-color {
    -webkit-backdrop-filter: unset;
            backdrop-filter: unset;
  }
}

/* hamburger
---------------------------------------------------------------- */
.burger {
  /* burger inner
  ---------------------------------------------------------------- */
}
.burger__btn {
  position: fixed;
  top: 1rem;
  right: 3rem;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  z-index: 1001;
  width: calc(var(--header-h) * 0.54);
  height: calc(var(--header-h) * 0.8);
  cursor: pointer;
  color: var(--black);
}
@media (max-width: 767.98px) {
  .burger__btn {
    position: fixed;
    top: 0.4em;
    right: 1.5rem;
    width: calc(var(--header-h) * 0.6);
    height: calc(var(--header-h) * 0.8);
  }
}
@media (hover: hover) and (pointer: fine) {
  .burger__btn:hover {
    color: var(--main);
  }
}
.burger__btn::after {
  position: absolute;
  content: "MENU";
  color: currentColor;
  left: 52%;
  transform: translateX(-50%);
  bottom: 12%;
  width: 120%;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 991.98px) {
  .burger__btn::after {
    bottom: 10%;
    font-size: 1.3rem;
  }
}
.burger__btn-bar {
  position: absolute;
  width: 100%;
  height: 3px;
  left: 50%;
  transform: translateX(-50%);
  background: currentColor;
  transition-property: 0.4;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
@media (max-width: 767.98px) {
  .burger__btn-bar {
    height: 2px;
  }
}
.burger__btn-bar--top {
  top: 22%;
}
.burger__btn-bar--bottom {
  top: 40%;
}
.burger__btn.js-close::after {
  content: "CLOSE";
}
.burger__btn.js-close .burger__btn-bar--top {
  top: 32%;
  transform: translateX(-50%) rotate(30deg);
}
.burger__btn.js-close .burger__btn-bar--bottom {
  top: 32%;
  transform: translateX(-50%) rotate(-30deg);
}
.burger__nav {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: -45rem;
  width: 40rem;
  height: 100%;
  background-color: var(--base);
  padding: 7rem 2rem 6rem;
  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: 5.5rem 2rem;
  }
}
.burger__nav-list {
  margin-bottom: 3rem;
  display: block;
}
.burger__nav-item a {
  position: relative;
  display: block;
  font-weight: 500;
  line-height: 1.5;
  padding: 1.5em 2.5em 1.5em 1em;
  border-bottom: 1px solid var(--gray);
  font-size: var(--fs-16);
}
.burger__nav-item a span {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  display: block;
  color: var(--main);
  letter-spacing: 0.1em;
  margin-bottom: 0.2em;
}
.burger__nav-item a::before {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1em;
  width: 1em;
  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(--main);
  transform: translateY(-50%) rotate(0);
}
@media (hover: hover) and (pointer: fine) {
  .burger__nav-item a:hover {
    opacity: 1;
    color: var(--main);
  }
  .burger__nav-item a:hover::before {
    right: 0.5em;
  }
}
.burger__nav-btn .btn {
  display: block;
  width: 100%;
  height: auto;
  padding: 1em;
}
.burger__nav-btn .btn span {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.1em;
  letter-spacing: 0.1em;
  padding-right: 0.5em;
}
.burger__nav-btn .btn + .btn {
  margin-top: 1.5rem;
}
.burger__mask {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  position: fixed;
  inset: 0;
  background-color: rgba(34, 34, 34, 0.8);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.burger__mask.js-active {
  opacity: 1;
  visibility: visible;
}

/* main
================================================================== */
/* mv
------------------------------ */
.mv {
  width: 100%;
  pointer-events: none;
}
.mv__main {
  width: 100%;
}
.mv__text {
  width: 100%;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 3rem;
  font-size: 2.6vw;
  font-weight: bold;
}
@media (max-width: 991.98px) {
  .mv__text {
    gap: 1rem;
    padding: 2rem;
  }
}
@media (max-width: 767.98px) {
  .mv__text {
    align-items: center;
    font-size: 4.2vw;
    padding: 1.5rem 4%;
  }
}
.mv__text-main {
  padding-top: 0.1em;
  line-height: 1.5;
  text-align: center;
}
.mv__text-main span {
  color: var(--main);
}
.mv__text-img {
  width: min(2em, 100%);
}

/* message
------------------------------ */
.mes {
  position: relative;
}
.mes__bg {
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 52%;
  width: auto;
  height: 100%;
}
.mes__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
@media (max-width: 991.98px) {
  .mes__bg {
    top: unset;
    bottom: 0;
    left: unset;
    right: 0;
    height: auto;
    width: 100%;
    aspect-ratio: 1030/930;
  }
}
.mes__deco {
  display: block;
  position: absolute;
  bottom: -10rem;
  left: calc(50% + 38rem);
  width: min(24rem, 25%);
}
@media (max-width: 1399.98px) {
  .mes__deco {
    left: unset;
    right: 6%;
    bottom: -2rem;
  }
}
@media (max-width: 1199.98px) {
  .mes__deco {
    bottom: 3rem;
  }
}
@media (max-width: 767.98px) {
  .mes__deco {
    width: min(20rem, 35%);
    bottom: -5rem;
  }
}
.mes .inner {
  padding-bottom: 20rem;
}
@media (max-width: 991.98px) {
  .mes .inner {
    padding-bottom: calc(var(--pd) + var(--br-sec));
  }
}
@media (max-width: 767.98px) {
  .mes .inner {
    padding-bottom: calc(var(--pd) + var(--br-sec) + 4rem);
  }
}
@media (max-width: 991.98px) {
  .mes .sec-ttl {
    margin-bottom: 3rem;
  }
}
@media (max-width: 1199.98px) {
  .mes .sec-ttl__jp br {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .mes .sec-ttl__jp br {
    display: block;
  }
}
@media (max-width: 575.98px) {
  .mes .sec-ttl__jp br {
    display: none;
  }
}
.mes__wrap {
  align-items: start;
}
@media (max-width: 1399.98px) {
  .mes__wrap {
    align-items: center;
    gap: 2rem;
  }
}
@media (max-width: 991.98px) {
  .mes__wrap {
    flex-direction: column;
    gap: 6rem;
  }
}
@media (max-width: 767.98px) {
  .mes__wrap {
    gap: 4rem;
  }
}
.mes__left {
  flex-basis: 72rem;
}
@media (max-width: 1399.98px) {
  .mes__left {
    flex-basis: 55%;
  }
}
@media (max-width: 1199.98px) {
  .mes__left {
    flex-basis: 50%;
  }
}
@media (max-width: 991.98px) {
  .mes__left {
    flex-basis: unset;
    width: 100%;
  }
}
.mes__right {
  flex: 1;
  width: calc(100% + 2rem);
  padding-top: 6rem;
  margin-top: -2rem;
}
@media (max-width: 1399.98px) {
  .mes__right {
    padding-top: 0;
    margin-top: 0;
    width: 100%;
  }
}
.mes__text {
  line-height: 2.2;
}
.mes__text p + p {
  margin-top: 1em;
}
@media (max-width: 575.98px) {
  .mes__text br {
    display: none;
  }
}
.mes__img {
  border-radius: var(--br-s);
  box-shadow: var(--b-shadow);
  overflow: hidden;
  width: min(50rem, 80%);
}
.mes__img:first-of-type {
  margin-left: auto;
}
.mes__img:last-of-type {
  margin-top: 5rem;
}
@media (max-width: 767.98px) {
  .mes__img:last-of-type {
    margin-top: 2rem;
  }
}

/* environment
------------------------------ */
.env {
  background: var(--base);
  border-radius: var(--br-sec) var(--br-sec) 0 0;
}
@media (max-width: 991.98px) {
  .env {
    margin-top: calc(-1 * var(--br-sec));
  }
}
.env .sec-ttl__en {
  color: var(--accent);
}
.env__wrap {
  gap: 6rem;
  align-items: flex-start;
}
@media (max-width: 991.98px) {
  .env__wrap {
    gap: 3rem 4rem;
  }
}
@media (max-width: 767.98px) {
  .env__wrap {
    flex-direction: column-reverse;
  }
}
.env__wrap + .env__wrap {
  margin-top: var(--mg-60);
}
.env__wrap > div {
  flex: 1;
}
.env__wrap:nth-of-type(2) .env__ttl-en {
  color: var(--accent);
}
.env__wrap:nth-of-type(3) .env__ttl-en {
  color: #00307c;
}
.env__img {
  border-radius: var(--br-m);
  overflow: hidden;
}
.env__ttl {
  margin-top: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 991.98px) {
  .env__ttl {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .env__ttl {
    margin-top: 0;
  }
}
.env__ttl-en {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--main);
  padding: 0 0.1em 0.3em;
  border-bottom: 2px solid currentColor;
  margin-bottom: 1rem;
}
@media (max-width: 991.98px) {
  .env__ttl-en {
    font-size: 1.8rem;
  }
}
@media (max-width: 767.98px) {
  .env__ttl-en {
    font-size: 1.6rem;
    padding: 0 0.1em 0.4em;
    border-bottom: 1.5px solid currentColor;
    margin-bottom: 0.8rem;
  }
}
.env__ttl-jp {
  font-size: var(--fs-32);
  font-weight: 500;
  line-height: 1.5;
}
.env__text {
  line-height: 2;
}
@media (max-width: 991.98px) {
  .env__text {
    line-height: 1.8;
  }
}

/* gallery
------------------------------ */
.gallery {
  position: relative;
  background: var(--base);
}
.gallery::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150%;
  background: #d3efe3;
  background: linear-gradient(180deg, rgba(211, 239, 227, 0) 0%, rgb(211, 239, 227) 100%);
}
.gallery.inner {
  padding: calc(var(--pd) - 2rem) 0 var(--pd);
  max-width: unset;
}
.gallery__swiper {
  position: relative;
  z-index: 0;
}
.gallery__wrap {
  transition-timing-function: linear;
  padding-bottom: 9rem;
}
@media (max-width: 767.98px) {
  .gallery__wrap {
    padding-bottom: 6rem;
  }
}
.gallery__wrap img {
  border-radius: var(--br-l);
}
.gallery__md {
  margin-top: 7em;
}
@media (max-width: 1199.98px) {
  .gallery__md {
    margin-top: 5rem;
  }
}
@media (max-width: 767.98px) {
  .gallery__md {
    margin-top: 3rem;
  }
}
.gallery__deco {
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 7rem;
  max-width: 40%;
}
.gallery__deco:nth-of-type(1) {
  width: 42rem;
  right: calc(50% + 28rem);
}
@media (max-width: 1399.98px) {
  .gallery__deco:nth-of-type(1) {
    right: unset;
    left: 3%;
  }
}
@media (max-width: 575.98px) {
  .gallery__deco:nth-of-type(1) {
    display: none;
  }
}
.gallery__deco:nth-of-type(2) {
  width: 38rem;
  left: calc(50% + 22rem);
}
@media (max-width: 1399.98px) {
  .gallery__deco:nth-of-type(2) {
    left: unset;
    right: 3%;
  }
}
@media (max-width: 575.98px) {
  .gallery__deco:nth-of-type(2) {
    display: none;
  }
}
.gallery__deco:nth-of-type(3) {
  display: none;
}
@media (max-width: 575.98px) {
  .gallery__deco:nth-of-type(3) {
    display: block;
    width: 100%;
    max-width: unset;
    padding: 0 6%;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

/* feature
------------------------------ */
.feature {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
}
.feature::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: -12rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 90rem;
  aspect-ratio: 5/3;
  -webkit-clip-path: ellipse(50% 50% at 50% 50%);
          clip-path: ellipse(50% 50% at 50% 50%);
  background: var(--white);
}
@media (max-width: 1199.98px) {
  .feature::before {
    width: 60rem;
    top: -8rem;
  }
}
@media (max-width: 767.98px) {
  .feature::before {
    width: 80%;
    top: -2%;
  }
}
.feature .inner {
  padding-top: 0;
}
.feature .sec-ttl {
  margin-bottom: 9rem;
}
@media (max-width: 767.98px) {
  .feature .sec-ttl {
    margin-bottom: 6rem;
  }
}
.feature__item {
  position: relative;
  border: 3px solid #e6e6e6;
  background: var(--white);
  border-radius: var(--br-l);
  padding: 4rem;
  padding-top: 10rem;
}
@media (max-width: 1199.98px) {
  .feature__item {
    padding: 10rem 2.5rem 3rem;
  }
}
@media (max-width: 575.98px) {
  .feature__item {
    border-width: 2px;
    padding: 9.5rem 1.5rem 2.5rem !important;
  }
}
.feature__top {
  text-align: center;
}
.feature__top-text {
  font-size: 1.8rem;
  line-height: 2;
}
@media (max-width: 991.98px) {
  .feature__top-text {
    font-size: var(--fs-16);
  }
}
@media (max-width: 767.98px) {
  .feature__top-text {
    line-height: 1.8;
  }
}
.feature__ttl {
  position: absolute;
  top: -1em;
  right: 0;
  left: 0;
  font-size: var(--fs-32);
  line-height: 1.5;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: var(--white);
  background: var(--main);
  border-radius: var(--br-max);
  padding: 0.5em 2em 0.6em;
}
@media (max-width: 767.98px) {
  .feature__ttl {
    font-size: 2rem !important;
    width: calc(100% - 3rem) !important;
    padding: 0.5em 0.5em 0.6em !important;
  }
}
.feature__ttl::after {
  content: "";
  display: block;
  position: absolute;
  width: 60px;
  aspect-ratio: 2/1;
  background: var(--main);
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
}
@media (max-width: 991.98px) {
  .feature__ttl::after {
    width: 50px;
    bottom: -20px;
  }
}
@media (max-width: 767.98px) {
  .feature__ttl::after {
    width: 40px;
    bottom: -16px;
  }
}
.feature .sub-ttl {
  margin-top: 3rem;
}
@media (max-width: 767.98px) {
  .feature .sub-ttl {
    margin-top: 2rem;
    padding-bottom: 4rem;
  }
}
.feature .sub-ttl__jp {
  color: var(--main);
}
@media (max-width: 767.98px) {
  .feature .sub-ttl__jp {
    font-size: 2rem;
    line-height: 1.3;
    padding-bottom: 0.4em;
  }
}
.feature__project {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
}
@media (max-width: 991.98px) {
  .feature__project {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .feature__project {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .feature__project {
    gap: 1.5rem 1.2rem;
  }
}
.feature__project-img {
  border-radius: var(--br-s);
  overflow: hidden;
}
.feature__project-ttl {
  font-size: var(--fs-20);
  line-height: 1.5;
  margin-top: 1em;
}
@media (max-width: 767.98px) {
  .feature__project-ttl {
    font-size: 1.4rem;
    margin-top: 0.5em;
  }
}
.feature__btm {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-top: 8rem;
}
@media (max-width: 991.98px) {
  .feature__btm {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .feature__btm {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 991.98px) {
  .feature__btm {
    gap: 4rem 2rem;
    margin-top: 4rem;
  }
}
.feature__btm .feature__ttl {
  font-size: min(2.4vw, 2.8rem);
  width: calc(100% - 4rem);
}
.feature__btm .feature__item {
  padding-top: 13rem;
}
@media (max-width: 991.98px) {
  .feature__btm .feature__item {
    padding-top: 10rem;
  }
}
.feature__img {
  border-radius: var(--br-s);
  overflow: hidden;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .feature__img {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .feature__text, .feature__top-text {
    font-size: 1.3rem;
  }
}
.feature .btn {
  font-size: var(--fs-20);
  width: min(40rem, 100%);
}
@media (max-width: 767.98px) {
  .feature .btn {
    font-size: 1.6rem;
    width: 100%;
  }
}
.feature__deco-01 {
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: min(57.5rem, 50%);
}
.feature__deco-02 {
  display: block;
  position: absolute;
  bottom: -8rem;
  left: calc(50% + 36rem);
  width: min(34rem, 25%);
}
@media (max-width: 1399.98px) {
  .feature__deco-02 {
    left: unset;
    right: 3%;
  }
}
@media (max-width: 767.98px) {
  .feature__deco-02 {
    width: min(20rem, 40%);
  }
}

/* job
------------------------------ */
.job {
  border-radius: var(--br-sec);
  background: #f7f4d9;
  background: linear-gradient(120deg, rgba(196, 245, 225, 0.5) 0%, rgba(247, 244, 217, 0.5) 50%, rgba(255, 215, 184, 0.5) 100%);
}
.job .sec-ttl {
  margin-bottom: var(--mg-40);
}
.job__wrap {
  gap: 6rem;
}
@media (max-width: 991.98px) {
  .job__wrap {
    gap: 4rem;
  }
}
@media (max-width: 991.98px) {
  .job__wrap {
    flex-direction: column;
  }
}
.job__left {
  flex-basis: min(45rem, 40%);
  position: -webkit-sticky;
  position: sticky;
  top: 6rem;
}
@media (max-width: 991.98px) {
  .job__left {
    position: static;
  }
}
.job__right {
  flex: 1;
  padding-top: 5rem;
}
@media (max-width: 991.98px) {
  .job__right {
    flex: unset;
    padding-top: 0;
  }
}
.job__nav {
  width: min(36rem, 100%);
}
@media (max-height: 799px) {
  .job__nav {
    margin-top: -1rem;
  }
}
@media (min-width: 992px) and (max-height: 799px), screen and (max-width: 992px) {
  .job__nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 1rem;
  }
}
.job__nav-btn {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  position: relative;
  gap: 1.5rem;
  height: auto;
  padding: 1em 0.5em;
  font-size: var(--fs-16);
  font-weight: 600;
  line-height: 1.5;
  color: var(--gray);
  border-bottom: 1.5px solid currentColor;
}
@media (min-width: 992px) and (max-height: 799px), screen and (max-width: 992px) {
  .job__nav-btn {
    height: 100%;
    font-size: 1.4rem;
    padding: 0.8em 0.5em;
  }
}
.job__nav-num {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.2em;
  line-height: 1.6;
}
@media (max-width: 575.98px) {
  .job__nav-num {
    display: none;
  }
}
.job__nav-main {
  flex: 1;
}
.job__nav-sub {
  position: relative;
  padding-left: 1.3em;
  line-height: 1.5;
  margin-top: 4px;
}
.job__nav-sub::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 0.8em;
  height: 2px;
  background: currentColor;
}
.job__item:not(:first-of-type) {
  margin-top: var(--mg-60);
}
.job__item-top {
  position: relative;
}
.job__item-img {
  border-radius: var(--br-m);
  overflow: hidden;
}
.job__item-num {
  display: block;
  position: absolute;
  bottom: -4rem;
  right: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 10rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  color: transparent;
  -webkit-text-stroke: 2px var(--main);
}
@media (max-width: 767.98px) {
  .job__item-num {
    right: 1rem;
    bottom: -2rem;
    font-size: 7.2rem;
  }
}
.job__item-ttl {
  font-size: var(--fs-32);
  line-height: 1.5;
  margin: 2rem 0 1rem;
}
.job .btn {
  margin-top: var(--mg-30);
}
.job .js-active a,
.job .job__nav-btn:hover {
  color: var(--main);
  opacity: 1;
}
.job .js-active a a,
.job .job__nav-btn:hover a {
  opacity: 1;
}

/* search
------------------------------ */
.search__wrap:not(:first-of-type) {
  margin-top: var(--mg-60);
}
.search__btn--type {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
}
.search__btn--type .btn:last-of-type {
  grid-area: 2/2/3/4;
}
@media (max-width: 991.98px) {
  .search__btn--type .btn:last-of-type {
    grid-area: 3/1/4/3;
  }
}
@media (max-width: 991.98px) {
  .search__btn--type {
    grid-template-columns: repeat(2, 1fr);
  }
}
.search__btn--em {
  gap: 4rem;
}
@media (max-width: 991.98px) {
  .search__btn--em {
    gap: 2rem;
  }
}
.search__btn--em .btn {
  width: min(32rem, 100%);
}
@media (max-width: 575.98px) {
  .search__btn--em .btn {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .search__btn {
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
  }
}

/* footer
================================================================== */
/* slide btn
------------------------------ */
.slidebtn {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: calc(3% + 65px + 1rem);
}
@media (max-width: 767.98px) {
  .slidebtn {
    right: 0;
    bottom: -0.5rem;
    transition: 0.4s ease;
    display: flex;
    width: 100%;
    gap: 0.5rem;
    padding: 0 2%;
  }
}
.slidebtn__item {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
  color: var(--white);
  padding: 12px 16px 12px 12px;
  border-radius: 8px 0 0 8px;
  border: 2px solid var(--main);
  border-right: none;
  background: var(--main);
  margin-bottom: 10px;
}
.slidebtn__item:hover {
  opacity: 1;
  background: var(--white);
  color: var(--main);
}
.slidebtn__item:last-of-type {
  border: 2px solid var(--accent);
  border-right: none;
  background: var(--accent);
  letter-spacing: 0;
}
.slidebtn__item:last-of-type:hover {
  background: var(--white);
  color: var(--accent);
}
.slidebtn__item span {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.1em;
  display: block;
  margin-top: -2px;
  text-orientation: upright;
  letter-spacing: -0.3em;
}
@media (max-width: 767.98px) {
  .slidebtn__item span {
    letter-spacing: 0.1em;
    display: inline;
    padding-right: 0.3em;
  }
}
@media (max-width: 767.98px) {
  .slidebtn__item {
    width: 100%;
    height: auto;
    padding: 0.8em 0.5em 1em;
    flex: 1;
    background: var(--main);
    border: 1.5px solid var(--white) !important;
    border-radius: 20px 20px 0 0;
    border-bottom: unset;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0.1em;
    writing-mode: unset;
    margin: 0;
    color: var(--white);
    text-align: center;
  }
}

/* pagetop
------------------------------ */
.page-top {
  display: flex !important;
  position: fixed;
  bottom: 3%;
  right: 2%;
  z-index: 1;
  cursor: pointer;
  width: 65px;
  height: 65px;
  background-color: var(--accent);
  color: var(--white);
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.page-top p {
  font-family: "Poppins", 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 var(--white);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(50%) rotate(-45deg);
}
@media (hover: hover) and (pointer: fine) {
  .page-top:hover {
    background: var(--main);
  }
}
.page-top.js-position {
  position: absolute;
  top: -30px;
}
@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(--main);
  color: var(--white);
}
@media (max-width: 767.98px) {
  .footer {
    padding-bottom: 4rem;
  }
}
.footer__bg {
  display: block;
  width: 100%;
  height: 24rem;
  margin-bottom: -2px;
  background-image: url(../img/footer.jpg);
  background-position: center bottom;
  background-repeat: repeat-x;
  background-size: 1160px;
}
@media (max-width: 767.98px) {
  .footer__bg {
    height: 16rem;
    background-size: cover;
  }
}
.footer .inner {
  padding: 6rem 3% 5rem;
}
.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;
}
/*# sourceMappingURL=style.css.map */