@charset "UTF-8";
/* mixin
================================================================== */
/* Design parts
---------------------------------------------------------------- */
/* base
================================================================== */
:root {
  --black: #332105;
  --white: #fff;
  --main: #ff7a30;
  --base: #f7f4ed;
  --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-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 only screen and (max-width: 1024px) {
  :root {
    --header-h: 8rem;
    --fs-36: 3.2rem;
    --fs-32: 2.8rem;
    --fs-28: 2.6rem;
    --fs-26: 2.4rem;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --header-h: 6rem;
    --br-sec: 3rem;
    --br-l: 2rem;
    --br-m: 1.6rem;
    --br-s: 0.8rem;
    --mg-80: 6rem;
    --mg-60: 4rem;
    --mg-50: 4rem;
    --mg-40: 3rem;
    --mg-30: 2rem;
    --fs-36: 2.6rem;
    --fs-32: 2.6rem;
    --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;
  }
}
/* 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.06em;
  word-wrap: break-word;
  color: var(--black);
  width: 100%;
}

main {
  overflow: hidden;
}

a {
  transition: 0.3s ease;
}

a:hover {
  opacity: 0.5;
}

@media (max-width: 767px) {
  body {
    line-height: 1.6;
  }
}
.d-i {
  display: inline;
}

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

.d-b {
  display: block;
}

.w-100 {
  width: 100%;
}

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

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

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

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

.text-tate {
  writing-mode: vertical-rl;
}

/* PC,SP表示
---------------------------------------------------------------- */
@media only screen and (max-width: 1024px) {
  .d-pc {
    display: none !important;
  }
}
@media only screen and (min-width: 1025px) {
  .d-tb {
    display: none !important;
  }
}
@media only screen and (max-width: 768px), (min-width: 1025px) {
  .d-tb-only {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-tb-sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .d-pc-tb {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-sp {
    display: none !important;
  }
}
@media only screen and (min-width: 429px) {
  .d-minsp {
    display: none !important;
  }
}
/* layout
--------------------------------------------------------------- */
.inner {
  margin-inline: auto;
  max-width: calc(1000px + 12%);
  padding: 12rem 6%;
  width: 100%;
}
.inner-11 {
  max-width: calc(1100px + 12%);
}
.inner-12 {
  max-width: calc(1200px + 12%);
}
.inner-13 {
  max-width: calc(1300px + 12%);
}
.inner-14 {
  max-width: calc(1400px + 12%);
}
.inner-np {
  padding: 0 6%;
}
@media (max-width: 767px) {
  .inner {
    padding: 8rem 6%;
  }
}

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

.flex-center {
  justify-content: center;
  align-items: 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 {
  justify-content: space-between;
}

/* animation
--------------------------------------------------------------- */
/* base end
================================================================== */
/* parts
================================================================== */
.sec-ttl {
  margin-bottom: var(--mg-60);
  text-align: center;
}
.sec-ttl-en {
  display: block;
  margin-inline: auto;
  width: 20rem;
  transform: rotate(-10deg);
  transform-origin: center bottom;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .sec-ttl-en {
    width: 16rem;
  }
}
.sec-ttl-jp {
  display: block;
  font-size: 5.2rem;
  font-weight: bold;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .sec-ttl-jp {
    font-size: 2.8rem;
  }
}

.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);
  border: 2px solid var(--main);
  color: var(--black);
}
.btn::before {
  transition: 0.3s 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(--main);
  transform: translateY(-50%) rotate(0);
}
.btn:hover {
  opacity: 1;
  color: var(--white);
  background-color: var(--main);
}
.btn:hover::before {
  right: 1em;
  background: var(--white);
}

/* header
================================================================== */
.header {
  transition: 0.3s ease;
  position: fixed;
  z-index: 99;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: var(--header-h);
  padding: 0 3rem;
}
@media (max-width: 1024px) {
  .header {
    padding: 0 2rem;
  }
}
@media (max-width: 767px) {
  .header {
    align-items: flex-end;
    padding: 0 1.5rem 0.5rem;
  }
}
.header-logo {
  display: inline-block;
  height: 4.5rem;
}
.header-logo img {
  width: auto;
  height: 100%;
}
@media (max-width: 767px) {
  .header-logo {
    height: 3.5rem;
  }
}
.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}
@media only screen and (max-width: 1399px) {
  .header-nav {
    font-size: 1.5rem;
    gap: 2rem;
  }
}
.header-nav-btn {
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .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;
  background: var(--main);
  color: var(--white);
}
.header-nav-btn .btn::before {
  display: none;
}
.header-nav-btn .btn:hover {
  color: var(--black);
  background: var(--white);
}

/* hamburger
---------------------------------------------------------------- */
.hamburger-btn {
  display: block;
  position: relative;
  z-index: 999;
  width: calc(var(--header-h) * 0.54);
  height: calc(var(--header-h) * 0.54);
  cursor: pointer;
  background-color: #ebe5dd;
  border-radius: var(--br-max);
}
@media (max-width: 767px) {
  .hamburger-btn {
    width: calc(var(--header-h) * 0.7);
    height: calc(var(--header-h) * 0.7);
  }
}

.bar {
  position: absolute;
  width: 50%;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  transition: 0.4s ease;
}
.bar--top {
  top: 34%;
}
.bar--middle {
  top: 50%;
}
.bar--bottom {
  top: 66%;
}

.js-close .bar--top {
  top: 48%;
  transform: translateX(-50%) rotate(45deg);
}
.js-close .bar--middle {
  opacity: 0;
  transition: 0.1s;
}
.js-close .bar--bottom {
  top: 48%;
  transform: translateX(-50%) rotate(-45deg);
}

/* burger inner
---------------------------------------------------------------- */
.burger-nav {
  position: fixed;
  z-index: 99;
  top: 0;
  right: -40rem;
  width: 38rem;
  height: 100%;
  background-color: var(--base);
  padding: 10rem 2rem 2rem;
  overflow-x: hidden;
  overflow-y: auto;
  transition: 0.5s;
}
@media (max-width: 428px) {
  .burger-nav {
    width: 100vw;
    right: -100vw;
    padding: 5.5rem 2rem;
  }
}
.burger-nav-list {
  margin-bottom: 3rem;
  display: block;
}
.burger-nav-list li a {
  position: relative;
  display: block;
  line-height: 1;
  padding: 1.5em 1em;
  border-bottom: 1.5px solid var(--main);
  font-size: var(--fs-16);
  font-weight: 600;
}
.burger-nav-list li a::before {
  transition: 0.3s 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(--main);
  transform: translateY(-50%) rotate(0);
}
.burger-nav-list li a:hover {
  opacity: 1;
  color: var(--main);
}
.burger-nav-list li a:hover::before {
  right: 1em;
}
.burger-nav .header-nav-btn {
  display: block !important;
}
.burger-nav .btn {
  display: block;
  width: 100%;
  height: auto;
  padding: 1.2em;
}
.burger-nav .btn span {
  font-size: 1.7rem;
  letter-spacing: 0.1em;
}
.burger-nav.js-active {
  right: 0;
}

.burger-mask {
  transition: 0.3s ease;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background-color: rgba(51, 51, 51, 0.7);
  display: none;
}
.burger-mask.js-active {
  display: block;
}

/* main
================================================================== */
/* mv
---------------------------------------------------------------- */
.mv {
  width: 100%;
}
.mv-top {
  flex-direction: row-reverse;
  justify-content: flex-start;
  width: min(1600px + 8%, 100%);
  padding: 0 4%;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .mv-top {
    display: block;
    padding: 0 6%;
  }
}
.mv-img-01 {
  flex-basis: min(75rem, 50%);
}
@media (max-width: 767px) {
  .mv-img-01 {
    width: 85%;
    margin-left: auto;
  }
}
.mv-text {
  flex: 1;
  padding-top: calc(var(--header-h) + 5rem);
}
@media (max-width: 767px) {
  .mv-text {
    padding-top: 0;
  }
}
.mv-text p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: min(5.2rem, 4.2vw);
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding-bottom: 6rem;
}
@media (max-width: 1024px) {
  .mv-text p {
    margin-left: 2rem;
  }
}
@media (max-width: 767px) {
  .mv-text p {
    margin-left: 0;
    margin-top: -8%;
    font-size: 6.2vw;
    padding-bottom: 4rem;
  }
}
.mv-img-02 {
  position: relative;
}
@media (max-width: 767px) {
  .mv-img-02 {
    margin-left: 4%;
    width: 80%;
  }
}
.mv-img-02 img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: min(53rem, 75%);
}
@media (max-width: 767px) {
  .mv-img-02 img {
    position: static;
    width: 100%;
  }
}

/* message
---------------------------------------------------------------- */
.mes {
  position: relative;
}
.mes-img {
  display: block;
  position: absolute;
  z-index: -1;
  left: calc(50% + 20rem);
  bottom: 6rem;
  width: 60rem;
}
@media (max-width: 1280px) {
  .mes-img {
    left: unset;
    right: -10%;
  }
}
@media (max-width: 1024px) {
  .mes-img {
    width: min(60rem, 60vw);
    right: -4%;
  }
}
@media (max-width: 767px) {
  .mes-img {
    position: static;
    width: min(40rem, 100%);
    margin-left: auto;
    padding: 0 6% 4rem;
  }
}
.mes .inner {
  padding-top: 6rem;
  padding-bottom: 30rem;
}
@media (max-width: 767px) {
  .mes .inner {
    padding-bottom: 3rem;
  }
}
.mes-inn {
  width: 58%;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .mes-inn {
    width: 55%;
  }
}
@media (max-width: 767px) {
  .mes-inn {
    width: 100%;
  }
}
.mes-ttl {
  width: 20rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .mes-ttl {
    width: 16rem;
    margin-left: auto;
    margin-bottom: 1rem;
  }
}
.mes-text {
  font-size: 1.8rem;
  line-height: 2;
}
@media (max-width: 1024px) {
  .mes-text {
    font-size: var(--fs-16);
  }
}
@media (max-width: 767px) {
  .mes-text br {
    display: none;
  }
}
.mes-text p + p {
  margin-top: 1em;
}

/* place
---------------------------------------------------------------- */
.place {
  background: var(--base);
  border-radius: var(--br-sec) var(--br-sec) 0 0;
}
.place-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 1024px) {
  .place-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .place-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.place-item {
  position: relative;
  z-index: 0;
  color: var(--white);
  padding: 7rem 4rem 5rem;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 2rem;
}
@media (max-width: 767px) {
  .place-item {
    padding: 6rem 2rem 4rem;
  }
}
.place-item::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  border: 2px solid var(--main);
  border-radius: var(--br-l);
}
@media (max-width: 767px) {
  .place-item::before {
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
  }
}
.place-bg {
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
}
@media (max-width: 767px) {
  .place-bg {
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
  }
}
.place-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--br-l);
}
.place-ttl {
  font-size: var(--fs-36);
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .place-ttl {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  .place-text {
    font-size: 1.4rem;
    padding: 0 1rem;
  }
}
.place-text p + p {
  margin-top: 1em;
}
.place-btn {
  width: min(29rem, 90%);
  margin: 1rem auto 0;
  border: unset;
}

/* data
---------------------------------------------------------------- */
.data {
  background: #ebe5dd;
}
.data-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 1024px) {
  .data-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .data-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .data-wrap {
    gap: 1.2rem;
  }
}
.data-item {
  position: relative;
  padding: 2rem 2rem 4rem;
  text-align: center;
  background: var(--white);
  border-radius: var(--br-l);
}
@media (max-width: 767px) {
  .data-item {
    padding: 2rem 1rem 1rem;
  }
}
.data-ttl {
  font-size: var(--fs-24);
  font-weight: bold;
  line-height: 1.5;
  color: var(--main);
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .data-ttl {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.data-img {
  display: inline-block;
  height: 20rem;
}
.data-img img {
  width: auto;
  height: 100%;
}
@media (max-width: 767px) {
  .data-img {
    height: 15rem;
  }
}
.data-note {
  display: block;
  position: absolute;
  right: 2rem;
  bottom: 1rem;
  font-size: 1.3rem;
}
@media (max-width: 767px) {
  .data-note {
    position: static;
    text-align: right;
    font-size: 1.2rem;
    padding-top: 1em;
  }
}
.data-text {
  text-align: right;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .data-text {
    font-size: 1.3rem;
  }
}

/* bene
---------------------------------------------------------------- */
.bene-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media (max-width: 1024px) {
  .bene-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .bene-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .bene-wrap {
    gap: 3rem;
  }
}
.bene-item {
  position: relative;
  z-index: 0;
  padding-top: 3.5rem;
}
@media (max-width: 767px) {
  .bene-item {
    padding-top: 2.5rem;
  }
}
.bene-num {
  display: block;
  position: absolute;
  top: 0;
  left: -1.5rem;
  width: 7rem;
}
@media (max-width: 767px) {
  .bene-num {
    left: -1rem;
    width: 6rem;
  }
}
.bene-img {
  border-radius: var(--br-m);
  overflow: hidden;
}
.bene-ttl {
  font-size: var(--fs-24);
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  margin: 2rem 0 1.5rem;
}
.bene-text {
  text-align: justify;
}
.bene-text a {
  display: block;
  color: var(--main);
  text-decoration: underline;
  margin-top: 4px;
}
.bene-text a i {
  padding-right: 0.5em;
}

/* gallery
---------------------------------------------------------------- */
.gallery {
  width: 100%;
  background: linear-gradient(180deg, var(--base) 0%, var(--base) 50%, transparent 50%, transparent 100%);
}

.slider-infinite {
  align-items: flex-start;
  gap: 4rem;
}
@media (max-width: 767px) {
  .slider-infinite {
    gap: 2rem;
  }
}
.slider-infinite li {
  width: 40rem;
  border-radius: var(--br-l);
  overflow: hidden;
}
@media (max-width: 1024px) {
  .slider-infinite li {
    width: 33.3333333333%;
  }
}
@media (max-width: 767px) {
  .slider-infinite li {
    width: 50%;
  }
}
.slider-infinite li:nth-of-type(even) {
  margin-top: 6rem;
}

/* flow
---------------------------------------------------------------- */
.faq {
  background: var(--base);
  border-radius: var(--br-sec) var(--br-sec) 0 0;
}
@media (max-width: 767px) {
  .faq .inner {
    padding-bottom: 4rem;
  }
}
.faq-wrap {
  position: relative;
  z-index: 0;
  gap: 8rem;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .faq-wrap {
    display: block;
  }
}
.faq-left {
  flex-basis: 40rem;
}
.faq-left .sec-ttl {
  text-align: left;
}
.faq-left .sec-ttl-en {
  margin-right: auto;
  margin-left: -3rem;
}
.faq-right {
  flex: 1;
  padding-top: 6rem;
}
@media (max-width: 1024px) {
  .faq-right {
    padding-top: 0;
  }
}
.faq-img {
  display: block;
  position: absolute;
  z-index: -1;
  top: 19rem;
  left: -8%;
  width: min(60rem, 52%);
  mix-blend-mode: multiply;
}
@media (max-width: 1024px) {
  .faq-img {
    position: static;
    padding-top: 6rem;
    width: 70%;
  }
}
@media (max-width: 767px) {
  .faq-img {
    padding-top: 3rem;
    width: 100%;
  }
}

.accordion-box {
  background-color: var(--white);
  border-radius: var(--br-m);
}
.accordion-box:not(:last-of-type) {
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .accordion-box:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .accordion-box:not(:last-of-type) {
    margin-bottom: 15px;
  }
}
.accordion-q {
  position: relative;
  padding: 20px 30px 0;
  font-size: 2rem;
  transition: background 0.3s ease;
  cursor: pointer;
}
@media (max-width: 767px) {
  .accordion-q {
    padding: 20px 20px 0;
    font-size: 1.7rem;
  }
}
.accordion-q::before, .accordion-q::after {
  content: "";
  display: block;
  position: absolute;
  top: 36px;
  right: 30px;
  bottom: 0;
  width: 1.2em;
  height: 4px;
  background: #ff7a30;
}
@media (max-width: 767px) {
  .accordion-q::before, .accordion-q::after {
    width: 1em;
    top: 1px;
    right: 20px;
    margin: auto;
  }
}
.accordion-q::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.accordion-q.open::after {
  transform: rotate(0deg);
}
.accordion-q p {
  position: relative;
  padding: 0 30px 20px 50px;
}
@media (max-width: 767px) {
  .accordion-q p {
    padding-left: 35px;
    padding-bottom: 20px;
  }
}
.accordion-q p::before {
  content: "";
  display: block;
  position: absolute;
  color: #ff7a30;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  content: "Q";
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .accordion-q p::before {
    font-size: 2.6rem;
  }
}
.accordion-a {
  display: none;
  padding: 22px 30px 30px;
}
@media (max-width: 767px) {
  .accordion-a {
    padding: 16px 20px 20px;
    font-size: 1.5rem;
  }
}
.accordion-a p {
  padding-left: 50px;
  text-align: justify;
}
@media (max-width: 767px) {
  .accordion-a p {
    padding-left: 0px;
  }
}

.accordion-q.open p {
  border-bottom: 1.5px solid #d9d4cc;
}

/* flow
---------------------------------------------------------------- */
.flow-wrap {
  justify-content: center;
  gap: 3rem 4rem;
}
@media (max-width: 1024px) {
  .flow-wrap {
    flex-wrap: wrap;
    max-width: 100%;
    margin-inline: auto;
    width: 65rem;
  }
}
@media (max-width: 767px) {
  .flow-wrap {
    gap: 1.5rem;
  }
}
.flow-item:last-of-type .flow-icon::before {
  display: none;
}
@media (max-width: 1024px) {
  .flow-item {
    flex-basis: calc(33% - 3rem);
  }
  .flow-item:nth-of-type(3) .flow-icon::before {
    display: none;
  }
}
@media (max-width: 1024px) and (max-width: 767px) {
  .flow-item {
    flex-basis: calc(33% - 1rem);
  }
}
.flow-icon {
  position: relative;
}
.flow-icon::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  right: -40%;
  margin: auto 0;
  width: 50%;
  height: 2px;
  background: var(--main);
}
@media (max-width: 767px) {
  .flow-icon::before {
    height: 1.5px;
  }
}
.flow-text {
  font-size: var(--fs-24);
  font-weight: bold;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .flow-text {
    font-size: 1.6rem;
    margin-top: 0.5rem;
  }
}

/* recruit
---------------------------------------------------------------- */
.recruit .inner,
.job .inner {
  padding-top: 0;
  padding-bottom: 3rem;
}
@media (max-width: 1024px) {
  .recruit .inner,
.job .inner {
    padding-bottom: 6rem;
  }
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 5rem;
}
@media (max-width: 1024px) {
  .tab-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .tab-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1024px) {
  .tab-list {
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .tab-list {
    margin-bottom: 3rem;
    gap: 1.5rem;
  }
}
.tab-item {
  transition: 0.3s ease;
  cursor: pointer;
  position: relative;
  text-align: center;
  width: 100%;
  color: var(--black);
  background: var(--base);
  border-radius: var(--br-l);
  padding: 3rem;
  /* タブをクリックした時 ホバーした時 */
}
@media (max-width: 1024px) {
  .tab-item {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .tab-item {
    padding: 1.5rem;
  }
}
.tab-item::after {
  transition: 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  width: 5rem;
  aspect-ratio: 2/1;
  background: var(--base);
  left: 50%;
  bottom: -2rem;
  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: 767px) {
  .tab-item::after {
    display: none;
  }
}
.tab-item:hover, .tab-item.is-active {
  color: var(--white);
  background: var(--main);
}
.tab-item:hover::after, .tab-item.is-active::after {
  background: var(--main);
}
.tab-ttl {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .tab-ttl {
    font-size: var(--fs-20);
  }
}
.tab-add {
  font-size: 1.8rem;
  line-height: 1.3;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 1024px) {
  .tab-add {
    font-size: var(--fs-16);
  }
}

.panel-item {
  display: none;
  width: 100%;
}
.panel-item.is-active {
  display: block;
  -webkit-animation: panel-show 0.4s ease-in forwards;
          animation: panel-show 0.4s ease-in forwards;
}
.panel-item-inn {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .panel-item-inn {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .panel-item-inn {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .panel-item-inn {
    gap: 1.5rem;
  }
}

/* パネル切り替えのアニメーション */
@-webkit-keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* footer
================================================================== */
/* slide btn
---------------------------------------------------------------- */
.slidebtn-wrap {
  display: none;
}
@media (max-width: 767px) {
  .slidebtn-wrap {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: -0.5rem;
    transform: translate(0%, 120%);
    transition: 0.4s ease;
    display: flex;
    width: 100%;
    gap: 0.5rem;
    padding: 0 3%;
  }
}
.slidebtn-wrap.is-show {
  transform: translate(0%, 0%);
}

.slide-btn {
  display: block;
  width: 100%;
  height: auto;
  padding: 0.8em 0.5em 1em;
  flex: 1;
  background: var(--main);
  border-radius: var(--br-l) var(--br-l) 0 0;
  border-bottom: unset;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: var(--white);
  text-align: center;
  transform: translateX(0);
}

/* pagetop
---------------------------------------------------------------- */
.page-top {
  position: fixed;
  bottom: 3%;
  right: 2%;
  z-index: 10;
  cursor: pointer;
  width: 65px;
  height: 65px;
  background-color: var(--black);
  color: var(--white);
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  transition: 0.3s ease;
}
.page-top p {
  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);
}
.page-top:hover {
  background: var(--main);
}
.page-top.js-position {
  position: absolute;
  top: -30px; /* 止まって欲しい場所を記入 */
}
@media (max-width: 767px) {
  .page-top {
    bottom: 5rem;
    transform: scale(0.9);
  }
}

/* footer
---------------------------------------------------------------- */
.fot-img {
  width: min(80rem, 65%);
  margin-right: 6%;
  margin-left: auto;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .fot-img {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .fot-img {
    width: 94%;
    margin-inline: auto;
  }
}

.footer {
  position: relative;
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 1;
  background: var(--base);
  color: var(--black);
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 5rem;
  }
}
@media (max-width: 428px) {
  .footer {
    font-size: 1.4rem;
  }
}
.footer .inner {
  padding: 5rem 3%;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer-nav {
    margin-bottom: 8px;
  }
}
.footer-nav a {
  padding: 0.5em 1em;
}
@media (max-width: 767px) {
  .footer-nav a {
    padding: 0.5em 0.6em;
  }
}
.footer-nav span {
  background-color: var(--black);
  width: 1px;
  height: 1em;
}
@media screen and (max-width: 550px) {
  .footer-nav span:not(:first-of-type) {
    display: none;
  }
}
.footer .copyright {
  text-align: center;
  line-height: 1.5;
  padding: 0.5em 1em 0;
}
.footer .copyright span {
  display: inline-block;
}

/* 下層
================================================================== */
/* subhero
---------------------------------------------------------------- */
.subhero {
  padding-top: calc(var(--header-h) + 4rem);
}
.subhero-inn {
  gap: 4rem 6rem;
}
@media (max-width: 1024px) {
  .subhero-inn {
    flex-direction: column;
    padding-left: 5vw;
  }
}
.subhero-content {
  flex: 1;
  padding-top: 6rem;
  padding-left: 5vw;
}
@media (max-width: 1024px) {
  .subhero-content {
    padding: 0;
    width: 100%;
  }
}
.subhero .sec-ttl {
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .subhero .sec-ttl {
    margin-left: 0;
  }
}
.subhero .sec-ttl-en {
  width: 37rem;
  margin-left: 0;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .subhero .sec-ttl-en {
    width: 28rem;
  }
}
.subhero .sec-ttl-jp {
  padding-left: 0.5em;
}
@media (max-width: 1280px) {
  .subhero .sec-ttl-jp {
    font-size: 4.2rem;
  }
}
@media (max-width: 767px) {
  .subhero .sec-ttl-jp {
    font-size: 3.6rem;
  }
}
.subhero-img {
  position: relative;
  flex-basis: 55%;
  height: 45rem;
  padding-top: 2rem;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .subhero-img {
    padding-top: 1rem;
    padding-left: 1rem;
  }
}
.subhero-img::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: calc(100% + 4rem);
  height: calc(100% - 2rem);
  border: 2px solid var(--main);
  border-radius: var(--br-sec) 0 0 var(--br-sec);
}
@media (max-width: 767px) {
  .subhero-img::before {
    height: calc(100% - 1rem);
  }
}
.subhero-img-inn {
  width: 100%;
  height: 100%;
  border-radius: var(--br-sec) 0 0 var(--br-sec);
  overflow: hidden;
}
.subhero-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* feature
---------------------------------------------------------------- */
.feature-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  gap: 8rem;
}
@media (max-width: 1024px) {
  .feature-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .feature-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1024px) {
  .feature-wrap {
    gap: 3rem 4rem;
  }
}
.feature-img {
  position: relative;
  z-index: 0;
  padding-top: 2rem;
  padding-left: 2rem;
}
@media (max-width: 1024px) {
  .feature-img {
    padding-top: 1rem;
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .feature-img {
    order: 2;
  }
}
.feature-img img {
  border-radius: var(--br-l);
}
.feature-img::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  border: 2px solid var(--main);
  border-radius: var(--br-l);
}
@media (max-width: 1024px) {
  .feature-img::before {
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
  }
}
@media (max-width: 767px) {
  .feature-content {
    order: 1;
  }
}
.feature-ttl {
  font-size: var(--fs-28);
  font-weight: bold;
  line-height: 1.5;
  color: var(--main);
  margin-bottom: 1.5rem;
}
.feature-text {
  text-align: justify;
}
.feature-box {
  position: relative;
  border: 2px solid #ebe0c7;
  border-radius: var(--br-l);
  padding: 4rem;
  margin-top: 4rem;
}
@media (max-width: 1024px) {
  .feature-box {
    padding: 4rem 2rem;
  }
}
@media (max-width: 767px) {
  .feature-box {
    padding: 3rem 2rem 2rem;
    margin-top: 3rem;
  }
}
.feature-box-sub {
  display: block;
  position: absolute;
  top: -1rem;
  left: -1.5rem;
  width: 25rem;
  transform: rotate(-6deg);
}
@media (max-width: 767px) {
  .feature-box-sub {
    width: 20rem;
    left: -1rem;
  }
}
.feature-box-ttl {
  font-size: var(--fs-22);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* int
---------------------------------------------------------------- */
.int {
  border-radius: var(--br-sec);
  background: var(--base);
}
.int .sec-ttl-en {
  width: 25rem;
}
@media (max-width: 767px) {
  .int .sec-ttl-en {
    width: 20rem;
  }
}
.int-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  gap: 6rem 5rem;
}
@media (max-width: 1024px) {
  .int-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .int-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .int-wrap {
    gap: 4rem;
  }
}
.int-left {
  position: relative;
}
@media (max-width: 1024px) {
  .int-left {
    width: 80%;
    margin-inline: auto;
  }
}
@media (max-width: 767px) {
  .int-left {
    width: 90%;
  }
}
.int-img {
  border-radius: var(--br-m);
  overflow: hidden;
}
.int-label {
  display: block;
  position: absolute;
  display: flex;
  z-index: 0;
  left: -4rem;
  bottom: -4rem;
  width: 18rem;
  aspect-ratio: 1;
  font-size: 2.4rem;
  line-height: 1.3;
  text-align: center;
}
@media (max-width: 767px) {
  .int-label {
    left: -2rem;
    bottom: -2rem;
    width: 10rem;
    font-size: 1.6rem;
  }
}
.int-label p {
  padding-bottom: 1rem;
}
.int-label::before, .int-label::after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  border-radius: var(--br-max);
}
@media (max-width: 767px) {
  .int-label::before, .int-label::after {
    width: calc(100% - 0.5rem);
    height: calc(100% - 0.5rem);
  }
}
.int-label::before {
  z-index: 0;
  top: 0;
  left: 0;
  border: 2px solid var(--main);
  border-radius: var(--br-max);
}
.int-label::after {
  z-index: -1;
  bottom: 0;
  right: 0;
  background: var(--white);
}
.int-right p {
  text-align: justify;
}
.int-right p + p {
  margin-top: 1em;
}

/* access
---------------------------------------------------------------- */
.access-map {
  width: 100%;
  height: 50rem;
}
@media (max-width: 767px) {
  .access-map {
    height: 45rem;
  }
}
.access-detail {
  margin-top: 2rem;
}
.access-detail p {
  position: relative;
  font-size: var(--fs-18);
  padding-left: 1.5em;
}
.access-detail p:last-of-type {
  margin-top: 0.5em;
}
.access-detail i {
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0;
  color: var(--main);
}

/* kokoliss
---------------------------------------------------------------- */
.kokoliss .subhero-deco {
  width: min(33rem, 80%);
  padding-top: 4rem;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .kokoliss .subhero-deco {
    width: min(28rem, 45%);
    padding-top: 1rem;
    margin-right: 6vw;
  }
}
@media (max-width: 767px) {
  .kokoliss .subhero-inn {
    gap: 3rem;
  }
}
.kokoliss .feature-deco {
  display: block;
  position: absolute;
  bottom: -1.5rem;
  right: 2rem;
  width: min(10rem, 20%);
}
@media (max-width: 767px) {
  .kokoliss .feature-deco {
    right: 1rem;
  }
}
.kokoliss .feature-box {
  padding-bottom: 4.5rem;
}
.kokoliss .int {
  position: relative;
}
.kokoliss .int-deco {
  display: block;
  position: absolute;
  top: 10rem;
  left: calc(50% + 42rem);
  width: min(18rem, 16%);
}
@media (max-width: 1280px) {
  .kokoliss .int-deco {
    left: unset;
    right: 6%;
  }
}
@media (max-width: 767px) {
  .kokoliss .int-deco {
    top: 3rem;
    width: 8rem;
  }
}
.kokoliss .access .inner {
  padding-bottom: 4rem;
}
.kokoliss .access-deco {
  width: min(20rem, 16%);
  margin-left: auto;
}
@media (max-width: 1024px) {
  .kokoliss .access-deco {
    padding-top: 3rem;
    width: 12rem;
  }
}

.bnr-wrap {
  display: block;
  margin: var(--mg-60) auto;
  width: min(80rem, 100%);
  box-shadow: var(--b-shadow);
  border-radius: var(--br-m);
  overflow: hidden;
}
.bnr-wrap:hover {
  opacity: 1;
  transform: scale(1.07);
}

.place .bnr-wrap {
  margin-bottom: 0;
}
/*# sourceMappingURL=style.css.map */