@charset "UTF-8";

@import "settings.css";

/*============================================================================================
      Header
=============================================================================================*/
.header {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 4;
}
.header_ttlWrap {
  display: flex;
  width: fit-content;
  justify-content: center;
}
.header_ttlWrap a {
  position: fixed;
  display: flex;
  height: 57px;
  padding: 0 calc((100vw / var(--vw-value-lg)) * 50);
  top: 2rem;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  flex-flow: row-reverse;
  background-color: var(--color-white);
  border-radius: var(--bdrs-infinite);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
  transition: height var(--transition), padding var(--transition) linear,max-height var(--transition) linear,background-color var(--transition) linear;
  z-index: 1;
}
.header_ttlWrap.js_header_small {
  height:calc(57px * 0.9);
  top: 1rem;
}
.header_ttl {
  font-size: calc((100vw / var(--vw-value-lg)) * 14);
}

/* メニュー群 */
.header_hamb_wrap {
  position: fixed;
  display: flex;
  right: 3.2rem;
  bottom: 8rem;
  align-items: center;
  gap: 1.8rem;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.header_hamb_wrap.is_footer_fixed {
  opacity: 0;
  pointer-events: none;
}
.header_entry_inr {
  border: 0.2rem solid var(--color-main);
  border-radius: calc(300 / 16 * 1.6rem);
  background: var(--color-white);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}
.header_entry_inr a {
  position: relative;
  display: flex;
  width: 14.3rem;
  height: 5.5rem;
  padding: 0 1rem;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: var(--color-main);
  transition: height 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header_entry_inr a::before {
  content: "";
  position: absolute;
  width: 24.5rem;
  height: 8rem;
  top: -7.6rem;
  left: -6rem;
  background-image: url(../img/bnr_entry.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(6rem, 7.6rem) rotate(-5deg) scale(0.8);
  pointer-events: none;
  opacity: 0;
  animation: bannerDisappear 0.4s ease-out forwards;
}

@media (any-hover: hover) {
  .header_entry_inr:hover {
    background: var(--Linear, linear-gradient(94deg, #ff6829 0.43%, #ffc383 97.89%));
  }
  .header_entry_inr:hover a {
    height: 6.5rem;
    color: var(--color-white);
  }
  .header_entry_inr:hover a::before {
    opacity: 1;
    animation: bannerAppear 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
}

/* バーガーメニューopen状態の時、エントリーボタン押さない */
.header_entry_inr:has(+ .js_open) {
  pointer-events: none;
}

/* キーフレームアニメーションの定義 */
@keyframes bannerAppear {
  0% {
    opacity: 0;
    transform: translate(6rem, 7.6rem) rotate(0deg) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(-5deg) scale(1);
  }
}

@keyframes bannerDisappear {
  0% {
    opacity: 1;
    transform: translate(0, 0) rotate(-5deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(6rem, 7.6rem) rotate(-5deg) scale(0.8);
  }
}

@media screen and (max-height:701px){
  .header_hamb_wrap {
    bottom: 2rem;
  }
}

/* バーガーメニュー内 */
.header_nav {
  display: none;
  position: absolute;
  width: 33rem;
  right: 0;
  bottom: 9rem;
  padding: 3rem;
  border-radius: calc(8 / 16 * 1.6rem);
  background-color: var(--color-main);
}
.header_nav_itm {
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}
.header_nav_itm + .header_nav_itm {
  margin-top: 2rem;
}
.header_nav_itm a {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: calc(1.6 / 16 * 1.6rem);
  color: var(--color-white);
  transition: var(--transition);
}
.header_nav_itm a::after {
  content: "";
  position: absolute;
  width: calc(16 / 16 * 1.6rem);
  height: calc(16 / 16 * 1.6rem);
  right: 0;
  top: 0;
  bottom: 0;
  margin-block: auto;
  mask-image: url(../img/icon_arrow.svg);
  background-color: var(--color-white);
}
.header_nav_closeBtn_sp,
.header_nav_btm {
  display: none;
}

@media (any-hover: hover) {
  .header_nav_itm:hover a {
    padding-left: 1rem;
  }
  .header_nav_itm:hover {
    border-bottom: 0.1rem solid rgba(255, 255, 255, 1);
  }
}

@media screen and (max-width: 896px) {
  /* 上部　固定ヘッダー */
  .header_ttlWrap a {
    display: grid;
    height: 60px;
    width: calc(100% - 1.2rem * 2);
    margin: auto;
    padding: 0 calc((100vw / var(--vw-value-lg)) * 50);
    top: 0.8rem;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 35px;
    grid-row-gap: 0;
    border-radius: calc(10 / 16 * 1.6rem);
  }
  .header_ttl {
    text-align: center;
    grid-area: 2 / 1 / 3 / 3;
    font-size: 1.2rem;
    line-height: 1;
  }
  .header_logo_01 {
    width: 17.5rem;
    grid-area: 1 / 1 / 2 / 2;
  }
  .header_logo_02 {
    width: 8.5rem;
    grid-area: 1 / 2 / 2 / 3;
  }

  /* 下部　追従ヘッダー */
  .header_hamb_wrap {
    width: 100%;
    right: 0;
    bottom: 0;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 0;
  }
  .header_entry {
    width: 100%;
    background: rgba(158, 158, 158, 0.45);
  }
  .header_entry::before {
    width: 1.2rem;
    height: 1.2rem;
    top: 0.65rem;
    right: 1.45rem;
    mask-image: url(../img/icon_close_02.svg);
    background-color: var(--color-white);
  }
  .header_entry_inr {
    width: calc(100% - 2rem * 2);
    max-width: 500px;
    margin: 2rem auto 1rem;
    border: unset;
    box-shadow: unset;
  }
  .header_entry_inr a {
    width: 100%;
    height: 4rem;
    padding: 0 1rem;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: var(--color-main);
    transition: height 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  /* 追従ヘッダー内、ハンバーガーメニュー */
  .header_nav {
    width: 100%;
    height: 100svh;
    padding: 14rem 0 6rem;
    bottom: 0;
    border-radius: 0;
    overflow-y: scroll;
  }
  .header_nav_lst {
    max-width: var(--cont-width);
    width: calc(100% - 2rem * 2);
    margin: auto;
  }
  .header_nav_closeBtn_sp {
    position: fixed;
    display: block;
    width: 2.4rem;
    top: 2rem;
    right: 2rem;
  }

  /* Entry 以下 */
  .header_nav_btm {
    display: block;
    max-width: var(--cont-width);
    width: calc(100% - 2rem * 2);
    margin: 3rem auto 0;
  }
  .header_nav_btm_entry_ttl {
    color: var(--color-white);
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: calc(1.4/16 * 1.6rem);
  }
  .header_nav_btm_entry_ttl::before {
    content: attr(data-en);
    display: block;
    color: var(--color-white);
    text-align: center;
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: calc(0.56/16 * 1.6rem);
  }
  .header_nav_btm_entry_lst {
    margin-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.30);
  }
  .header_nav_btm_entry_itm a {
    display: flex;
    height: 8rem;
    margin-bottom: 1.5rem;
    padding: 0 3rem 0 2rem;
    gap: 1rem;
    background-color: var(--color-white);
    border-radius: var(--bdrs-infinite);
    border: 0.2rem solid var(--color-orange);
    align-items: center;
  }
  .header_nav_btm_entry_itm__front .header_nav_btm_entry_itm a {
    border: 0.2rem solid var(--color-orange);
  }
  .header_nav_btm_entry_itm__cook .header_nav_btm_entry_itm a {
    border: 0.2rem solid var(--color-aqua);
  }
  .header_nav_btm_entry_itm__facility .header_nav_btm_entry_itm a {
    border: 0.2rem solid var(--color-green);
  }
  .header_nav_btm_entry_itm a::before {
    width: 2rem;
    height: 2rem;
    mask-image: url(../img/icon_arrow_slider.svg);
    right: 3rem;
  }
  .header_nav_btm_entry_itm.header_nav_btm_entry_itm__front a::before {
    background-color: var(--color-orange);
  }
  .header_nav_btm_entry_itm.header_nav_btm_entry_itm__cook a::before {
    background-color: var(--color-aqua);
  }
  .header_nav_btm_entry_itm.header_nav_btm_entry_itm__facility a::before {
    background-color: var(--color-green);
  }
  .header_nav_btm_entry_itm_img {
    max-width: 50px;
  }
  .header_nav_btm_entry_itm_ttl_en {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: calc(0.28/16 * 1.6rem);
  }
  .header_nav_btm_entry_itm__front .header_nav_btm_entry_itm_ttl_en {
    color: var(--color-orange);
  }
  .header_nav_btm_entry_itm__cook .header_nav_btm_entry_itm_ttl_en {
    color: var(--color-aqua);
  }
  .header_nav_btm_entry_itm__facility .header_nav_btm_entry_itm_ttl_en {
    color: var(--color-green);
  }
  .header_nav_btm_entry_itm_ttl {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.25;
    color: var(--color-text);
  }
  .header_nav_btm_lst {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .header_nav_btm_itm {
    color: var(--color-white);
    font-size: 1.4rem;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
  }
  .header_nav_btm_itm a::after {
    width: 1.2rem;
    height: 1.2rem;
    right: -1.5rem;
    top: 0;
    bottom: 0;
    mask-image: url(../img/icon_arrow_up.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    background-color: var(--color-white);
  }
}

/*============================================================================================
      Footer
=============================================================================================*/
.footer {
  position: relative;
  margin-top: calc((100vw / var(--vw-value-lg)) * -20);
  padding: 15.5rem 0 4rem;
  color: var(--color-white);
  background-image: url(../img/footer_bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 3;
}
.footer_upper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_upper_img {
  position: absolute;
}
.footer_upper_img.footer_upper_img__01 {
  top: -24rem;
  left: 6rem;
}
.footer_upper_img.footer_upper_img__02 {
  top: -30rem;
  right: 6rem;
}
.footer_upper_ttl_wrap {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.footer_upper_logoWrap {
  padding-right: 3rem;
  border-right: 0.1rem solid var(--color-white);
}
.footer_upper_logo {
  transition: opacity var(--transition);
}
.footer_upper_logo:nth-child(1){
  max-width: 300px;
}
.footer_upper_logo:nth-child(2){
  max-width: 250px;
}
.footer_upper_ttl {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
.footer_upper_btn {
  position: relative;
  display: block;
  width: 100%;
  max-width: 324px;
  background-color: var(--color-white);
  border: 0.2rem solid var(--color-main);
  border-radius: var(--bdrs-infinite);
  color: var(--color-main);
}
.footer_upper_btn > * {
  display: flex;
  width: 100%;
  height: 5.6rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}

.footer_upper_btn a::after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  margin-bottom: 0.4rem;
  mask-image: url(../img/icon_arrow_up.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: var(--color-main);
}

@media (any-hover: hover) {
  .footer_upper_btn:hover {
    color: var(--color-white);
    background-color: var(--color-main);
  }

  .footer_upper_btn.u_ic:hover::after {
    background-color: var(--color-white);
  }
  .footer_upper_btn:hover a::after {
    background-color: var(--color-white);
  }

  .footer_upper_logo:hover {
    opacity: 0.8;
  }
}

.footer_btm {
  margin-top: 8rem;
  padding-top: 4rem;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.3);
}
.footer_btm_inr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_btm_lst {
  display: flex;
  gap: 3.5rem;
}
.footer_btm_itm {
  color: var(--color-white);
  font-size: 1.4rem;
  line-height: normal;
  text-decoration-line: underline;
  transition: var(--transition);
}
.footer_btm_itm a::after {
  width: 1.2rem;
  height: 1.2rem;
  right: -1.8rem;
  top: calc(-1 / 16 * 1.6rem);
  bottom: 0;
  mask-image: url(../img/icon_arrow_up.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: var(--color-white);
  transition: var(--transition);
}
.footer_btm_pageTop a {
  display: block;
  padding-right: 5rem;
  line-height: 1.2;
}
.footer_btm_pageTop a::before {
  width: 1.6rem;
  height: 1.6rem;
  right: 1.2rem;
  top: 0;
  bottom: 0;
  mask-image: url(../img/icon_arrow.svg);
  mask-repeat: no-repeat;
  background-color: var(--color-white);
  transform: rotate(180deg);
}
.footer_btm_pageTop a::after {
  width: 4rem;
  height: 2rem;
  right: 0;
  top: 0;
  bottom: 0;
  border: 0.1rem solid var(--color-white);
  border-radius: var(--bdrs-infinite);
  transition: var(--transition);
}
.footer_copy {
  display: block;
  margin-top: 6rem;
  font-family: "Roboto";
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.6px;
}

@media (any-hover: hover) {
  .footer_btm_itm:hover {
    text-decoration-line: unset;
  }
  .footer_btm_itm:hover a::after {
    right: -2.2rem;
  }
  .footer_btm_pageTop:hover a::after {
    transform: scaleY(1.2);
  }
}

@media screen and (max-width: 896px) {
  .footer {
    padding: 10rem 0 2rem;
    background-image: url(../img/footer_bg_sp.svg);
  }
  .footer::before {
    max-height: 100%;
    top: -4rem;
    height: 4rem;
    background-image: url(../img/footer_bg_upper_sp.svg);
    aspect-ratio: 420 / 42;
  }
  .footer_upper {
    gap: 4rem;
    flex-direction: column;
  }
  .footer_upper_img.footer_upper_img__01 {
    width: 17.4rem;
    top: -11rem;
    left: 0;
  }
  .footer_upper_img.footer_upper_img__02 {
    width: 11rem;
    top: -14rem;
    right: 0;
  }
  .footer_upper_ttl_wrap {
    gap: 2rem;
    flex-direction: column;
  }
  .footer_upper_ttl {
    text-align: center;
  }
  .footer_upper_logo {
    padding-right: 3rem;
    border-right: unset;
  }
  .footer_upper_btn {
    max-width: 302px;
  }
  .footer_upper_btn > * {
    height: 5rem;
    font-size: 1.8rem;
  }
  .footer_upper_btn a::after {
    width: 1.8rem;
    height: 1.8rem;
    margin-bottom: 0;
  }
  .footer_btm {
    margin-top: 4rem;
    padding-top: 3rem;
  }
  .footer_btm_lst {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer_btm_inr {
    gap: 4rem;
    flex-direction: column;
  }
  .footer_copy {
    text-align: center;
  }
}

/*============================================================================================
      Contents
=============================================================================================*/
.main {
  position: relative;
}
.main_bg_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  transition: background-image 0.2s ease-out;
}
.mv {
  position: relative;
  width: 100%;
  height: 100svh;
  aspect-ratio: 1400 / 960;
  overflow: hidden;
}
.mv_frame {
  position: absolute;
}
.mv_frame__01 {
  width: 100%;
  top: 0;
  z-index: 2;
}
.mv_frame__02,
.mv_frame__03 {
  height: 100%;
  bottom: 0;
  z-index: 1;
}
.mv_frame__02 {
  left: 0;
}
.mv_frame__03 {
  right: 0;
}

.mv_frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mv_txtWrap {
  position: absolute;
  width: 100%;
  top: 32%;
  z-index: 3;
}
.mv_ttl {
  color: var(--color-text);
  text-align: center;
  font-size: calc((100vw / var(--vw-value-lg)) * 40);
  font-weight: 500;
  line-height: 2;
  letter-spacing: calc(3.4 / 16 * 1.6rem);
}
.mv_lead {
  width: calc((100vw / var(--vw-value-lg)) * 220);
  max-width: none;
  margin-top: calc((100vw / var(--vw-value-lg)) * 20);
  margin-inline: auto;
  text-align: center;
}
.mv_label {
  position: fixed;
  max-width: 352px;
  width: calc((100vw / var(--vw-value-lg)) * 352);
  top: calc((545 / 956) * 100%);
  left: calc((20 / 1200) * 100%);
  z-index: 1;
}

/* 追加 */
.mv_inner {
  width: 100vw;
  height: 100svh;
}
.mv_front_top {
  position: absolute;
  width: 100%;
  top: calc((100vw / var(--vw-value-lg)) * -75);
}
.mv_front_left {
  position: fixed;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100svh;
}
.mv_front_left01 {
  position: absolute;
  top: calc((100vw / var(--vw-value-lg)) * 75);
  left: 0;
  width: calc((100vw / var(--vw-value-lg)) * 420);
}
.mv_front_left02 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc((100vw / var(--vw-value-lg)) * 480);
}
.mv_front_right {
  position: fixed;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100svh;
}
.mv_front_right01 {
  position: absolute;
  top: calc((100vw / var(--vw-value-lg)) * 50);
  right: 0;
  width: calc((100vw / var(--vw-value-lg)) * 480);
}
.mv_front_right02 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc((100vw / var(--vw-value-lg)) * 400);
}
.mv_back {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100svh;
  z-index: -999;
}
.mv_back__ground {
  position: absolute;
  bottom: 0;
  z-index: 999;
  width: 100%;
}
.mv_back__sky {
  height: 100svh;
  background: url(../img/mv_back__sky.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.mv_back__sky img {
  object-fit: cover;
}
.mv_front_left02__md,
.mv_front_left03__md,
.mv_front_right01__md,
.mv_front_right02__md {
  display: none;
}

@media (max-aspect-ratio: 4/3) {
  .mv_front_left01 {
    top: calc((100vw / var(--vw-value-lg)) * 60);
    width: calc((100vw / var(--vw-value-lg)) * 550);
  }
  .mv_front_left02 {
    width: calc((100vw / var(--vw-value-lg)) * 600);
  }
  .mv_front_right01 {
    top: calc((100vw / var(--vw-value-lg)) * 50);
    width: calc((100vw / var(--vw-value-lg)) * 550);
  }
  .mv_front_right02 {
    width: calc((100vw / var(--vw-value-lg)) * 600);
  }
}

@media (max-aspect-ratio: 1/1) {
  .mv_txtWrap {
    top: 28%;
  }
  .mv_ttl {
    font-size: calc((100vw / var(--vw-value-)) * 50);
  }
  .mv_lead {
    width: calc((100vw / var(--vw-value-lg)) * 350);
    max-width: none;
  }
  .mv_label {
    left: 50%;
    transform: translate(-55%, -50%);
    max-width: none;
    width: calc((100vw / var(--vw-value-lg)) * 450);
  }
  .mv_front_left02 {
    display: none;
  }
  .mv_front_left02__md {
    display: block;
    position: absolute;
    top: 36%;
    width: calc((100vw / var(--vw-value-lg)) * 360);
  }
  .mv_front_left03__md {
    display: block;
    position: absolute;
    bottom: 0;
    width: calc((100vw / var(--vw-value-lg)) * 600);
  }
  .mv_front_right01 {
    display: none;
  }
  .mv_front_right01__md {
    display: block;
    position: absolute;
    right: 0;
    top: calc((100vw / var(--vw-value-lg)) * 50);
    width: calc((100vw / var(--vw-value-lg)) * 550);
  }
  .mv_front_right02__md {
    display: block;
    position: absolute;
    right: 0;
    width: calc((100vw / var(--vw-value-lg)) * 280);
    top: 30%;
  }
}

@media (max-width: 896px) {
  .mv_txtWrap {
    top: 24%;
  }
  .mv_label {
    width: calc((100vw / var(--vw-value-sm)) * 220);
    top: 55%;
  }
}

@media (max-width: 576px) {
  .mv_txtWrap {
    top: 15%;
  }
  .mv_ttl {
    font-size: calc((100vw / var(--vw-value-sm)) * 30);
    line-height: 1.5;
  }
  .mv_lead {
    width: calc((100vw / var(--vw-value-sm)) * 190);
    margin-top: calc((100vw / var(--vw-value-sm)) * 30);
  }
  .mv_front_left02__md {
    top: 55%;
    width: calc((100vw / var(--vw-value-lg)) * 400);
  }
  .mv_front_right02__md {
    width: calc((100vw / var(--vw-value-lg)) * 400);
    top: 50%;
  }

  @media screen and (max-height:600px){
    .mv_lead {
      margin-top: calc((100vw / var(--vw-value-sm)) * 15);
    }
    .mv_label {
      width: calc((100vw / var(--vw-value-sm)) * 200);
    }
  }
}

/*============================================================================================
      Contents
=============================================================================================*/
/* ===============================
          Common
  =============================== */
.sec_ttl {
  position: relative;
  color: var(--color-text);
  text-align: center;
  font-family: var(--font-jp);
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: calc(1.8 / 16 * 1.6rem);
}
.sec_ttl.sec_ttl__start {
  text-align: start;
}
.sec_ttl::before {
  display: block;
  content: attr(data-en);
  margin-bottom: 2.4rem;
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 6.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: calc(1.32 / 16 * 1.6rem);
}

@media screen and (max-width: 896px) {
  .sec_ttl {
    font-size: 1.6rem;
    letter-spacing: calc(1.6 / 16 * 1.6rem);
  }
  .sec_ttl::before {
    margin-bottom: 1.2rem;
    font-size: 4.2rem;
    letter-spacing: calc(0.84 / 16 * 1.6rem);
  }
  .sec_ttl.sec_ttl__start {
    text-align: center;
  }
}

/* ===============================
          Play Movie
  =============================== */
.sec_movie {
  padding-top: 17rem;
}
.movie_slider {
  position: relative;
  margin: 6rem auto 0;
  height: 45rem;
  width: 70rem;
}
.movie_slider_lst {
  position: relative;
  width: 100%;
  height: 100%;
}
.movie_slider_itm {
  position: absolute;
  width: 70rem;
  max-width: 700px;
  height: 40rem;
  margin-inline: auto;
  border-radius: calc(24 / 16 * 1.6rem);
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}
.movie_slider_itm_img {
  max-width: 700px;
  border-radius: calc(24 / 16 * 1.6rem);
  aspect-ratio: 700 / 400;
}
.movie_slider_itm.js_movie_slide_front .movie_slider_itm_img {
  display: flex;
  justify-content: center;
  border: 1rem solid var(--color-main);
}
.movie_slider_itm_img::before {
  width: 9rem;
  height: 9rem;
  mask-image: url(../img/icon_play.svg);
  mask-repeat: no-repeat;
  background-color: var(--color-white);
  inset: 0;
  z-index: 1;
}
.movie_slider_itm_img::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 0;
}
.movie_slider_itm.js_movie_slide_front {
  top: 0;
  left: 0;
  z-index: 2;
}
.movie_slider_itm.js_movie_slide_back {
  top: 4.6rem;
  left: 7.6rem;
  transform: rotate(3deg);
  opacity: 0.8;
  z-index: 1;
}
.movie_slider_itm.switching .js_movie_slide_front {
  transform: rotate(-2deg) translateX(-100px) scale(0.9);
  opacity: 0.7;
  z-index: 1;
}
.movie_slider_itm.switching .js_movie_slide_back {
  transform: rotate(0deg) translateX(-50px) scale(1.1);
  opacity: 1;
  z-index: 2;
}
.movie_slider_btn {
  position: absolute;
  width: 5rem;
  height: 5rem;
  display: flex;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
  border: 0.1rem solid var(--color-main);
  background-color: var(--color-white);
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
  cursor: pointer;
}
.movie_slider_btn::before {
  width: 2rem;
  height: 2rem;
  inset: 0;
  mask-image: url(../img/icon_arrow_slider.svg);
  mask-repeat: no-repeat;
  background-color: var(--color-main);
}
.movie_slider_itm_ttl {
  position: absolute;
  display: flex;
  height: 4.2rem;
  padding: 0 1.6rem;
  bottom: 1.5rem;
  align-items: center;
  left: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-white);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  backdrop-filter: blur(10px);
  border-radius: calc(50 / 16 * 1.6rem);
  border: 0.1rem solid rgba(255, 255, 255, 0.3);
  transform: translateY(20px);
  transition: all 0.3s ease;
  opacity: 0;
}
.movie_slider_itm.js_movie_slide_front .movie_slider_itm_ttl {
  opacity: 1;
  transform: translateY(0);
}

.movie_modal_itm {
  position: absolute;
  margin: auto;
  inset: 0;
  aspect-ratio: 560 / 315;
}
.movie_modal_itm iframe {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 897px) {
  @media (any-hover: hover) {
    .movie_slider_btn:hover {
      transform: translateY(-50%) scale(1.1);
      background-color: var(--color-main);
    }
    .movie_slider_btn:hover::before {
      background-color: var(--color-white);
    }
    .movie_slider_btn:active {
      transform: translateY(-50%) scale(0.95);
    }
  }
}

@media screen and (max-width: 896px) {
  .movie_slider {
    margin-top: 4rem;
    width: 100%;
    height: 100%;
  }
  .movie_slider_itm {
    position: static;
    width: 100%;
    max-width: 100%;
    height: 100%;
    border-radius: calc(12 / 16 * 1.6rem);
  }
  .movie_slider_itm_img {
    max-width: 100%;
    border: unset;
    border-radius: calc(12 / 16 * 1.6rem);
  }
  .movie_slider_itm.js_movie_slide_front {
    margin-top: 2rem;
    transform: rotate(0);
  }
  .movie_slider_itm.js_movie_slide_back {
    margin-top: 2rem;
    transform: rotate(0);
    opacity: 1;
  }
  .movie_slider_itm.switching .js_movie_slide_front {
    transform: unset;
  }
  .movie_slider_itm.switching .js_movie_slide_back {
    transform: unset;
  }
  .movie_slider_itm.js_movie_slide_back .movie_slider_itm_ttl {
    bottom: 3.4rem;
  }

  .movie_slider_itm.js_movie_slide_front .movie_slider_itm_img {
    border: unset;
  }
  .movie_slider_itm_ttl {
    display: flex;
    height: 23px;
    padding: 0 1rem;
    bottom: 1rem;
    left: 1rem;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    border-radius: calc(25 / 16 * 1.6rem);
    opacity: 1;
  }
  .movie_slider_itm.js_movie_slide_front .movie_slider_itm_ttl {
    opacity: 1;
    transform: translateY(0);
  }
  .movie_slider_itm_img::before {
    width: 4.5rem;
    height: 4.5rem;
  }
}

/* ===============================
          Hotel Concept
  =============================== */
.sec_concept {
  position: relative;
  padding-top: 13rem;
  margin-top: 27rem;
  overflow: hidden;
}
.sec_concept::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 10rem;
  background-image: url(../img/concept_bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  z-index: -1;
}
.sec_concept_inr {
  position: relative;
}
.concept_img {
  position: absolute;
  z-index: -1;
}
.concept_img__01 {
  width: 29rem;
  top: 5rem;
  left: 0;
}
.concept_img__02 {
  width: 11rem;
  top: 5rem;
  right: 26rem;

}
.concept_img__03 {
  width: 11rem;
  top: 38rem;
  left: 5rem;
}
.concept_lead {
  margin-top: 6rem;
  color: var(--color-text);
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: calc(0.9 / 16 * 1.6rem);
}
.concept_letter {
  position: relative;
  width: 100%;
  max-width: 62rem;
  margin-inline: auto;
  margin: 8rem auto 0;
  padding: 3rem;
  color: var(--color-white);
  background-image: url(../img/concept_letter_bg.svg);
  background-size: cover;
  background-repeat: repeat-y;
}
.concept_letter_inr {
  display: flex;
  max-width: 56rem;
  margin-inline: auto;
  padding: 6rem 4rem 19.8rem;
  flex-direction: column;
  gap: 4rem;
  background-image: url(../img/concept_letter_bg_inr.svg);
  background-size: cover;
}
.concept_letter_ttl {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: calc(1.6 / 16 * 1.6rem);
}
.concept_letter_lead {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: calc(3.2 / 16 * 1.6rem);
}
.concept_letter_txt {
  color: var(--color-white);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: calc(0.8 / 16 * 1.6rem);
}
.concept_letter_name {
  width: 100%;
  max-width: 144px;
  margin-left: auto;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 2;
  letter-spacing: calc(0.9 / 16 * 1.6rem);
  border-bottom: 0.1rem solid var(--color-white);
}
.concept_letter_photo {
  position: absolute;
  width: 100%;
  max-width: calc(500px - 2.8rem);
  border: 1.4rem solid var(--color-white);
  aspect-ratio: 500/333;
}
.concept_letter_photo.concept_letter_photo__01 {
  bottom: -8rem;
  left: -28rem;
  transform: rotate(-5deg);
  z-index: 2;
}
.concept_letter_photo.concept_letter_photo__02 {
  bottom: -1rem;
  left: -28rem;
  transform: rotate(5deg);
  z-index: 1;
}
.concept_letter_stampImg {
  position: absolute;
  max-width: 186px;
  left: 27rem;
  bottom: -3rem;
  z-index: 3;
}
.concept_letter_letterImg {
  position: absolute;
  max-width: 716px;
  top: 10rem;
  right: -30rem;
  z-index: -1;
}
.concept_letter_btn {
  display: flex;
  height: 4rem;
  max-width: 150px;
  margin-left: auto;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.concept_letter_btn::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  mask-image: url(../img/icon_arrow_slider.svg);
  background-color: var(--color-white);
}

@media (any-hover: hover) {
  .concept_letter_btn:hover span {
    color: var(--color-main);
  }
  .concept_letter_btn:hover::after {
    background-color: var(--color-main);
  }
}

@media screen and (max-width: 896px) {
  .sec_concept {
    margin-top: 8rem;
    padding-top: 0;
  }
  .sec_concept::before {
    background-image: url(../img/concept_bg_sp.svg);
    background-position: center 47rem;
  }
  .sec_concept_inr {
    padding-bottom: 19.6rem;
  }
  .concept_img__01 {
    position: static;
    width: 14.5rem;
    margin: 4rem auto 0;
  }
  .concept_img__02 {
    width: 6rem;
    top: 15rem;
    right: 0;
  }
  .concept_img__03 {
    width: 5rem;
    top: 42rem;
    left: 1rem;
    z-index: 1;
  }
  .concept_lead {
    margin-top: 1.4rem;
    font-size: 1.6rem;
    letter-spacing: calc(0.8 / 16 * 1.6rem);
  }
  .concept_letter {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    margin: 6rem auto 0;
    padding: 0;
    background-image: unset;
  }
  .concept_letter_inr {
    max-width: 100%;
    padding: 4rem 1.5rem 6.5rem;
    gap: 3rem;
    border-radius: calc(24 / 16 * 1.6rem);
  }
  .concept_letter_ttl {
    font-size: 1.4rem;
    letter-spacing: calc(1.4 / 16 * 1.6rem);
  }
  .concept_letter_ttl_jp {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1;
  }
  .concept_letter_ttl .g_en {
    display: inline-block;
    padding-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 1;
  }
  .concept_letter_lead {
    font-size: 2.4rem;
    letter-spacing: calc(2.4 / 16 * 1.6rem);
  }
  .concept_letter_txt {
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.75;
    letter-spacing: calc(0.7 / 16 * 1.6rem);
  }
  .concept_letter_name {
    max-width: 74px;
    margin-left: 0;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: calc(0.8 / 16 * 1.6rem);
  }
  .concept_letter_photo {
    width: 100%;
    max-width: 300px;
    border: 0.7rem solid var(--color-white);
  }
  .concept_letter_photo.concept_letter_photo__01 {
    margin-inline: auto;
    bottom: -23rem;
    left: 0;
    right: 0;
  }
  .concept_letter_photo.concept_letter_photo__02 {
    margin-inline: auto;
    bottom: -19rem;
    left: 0;
    right: 0;
  }
  .concept_letter_btn {
    max-width: 136px;
    height: 3.6rem;
    font-size: 1.4rem;
  }
}

/* Modal */
.message_txtWrap {
  display: flex;
  margin-top: 6rem;
  gap: 8rem;
}
.message_ttl {
  flex-shrink: 0;
  max-width: 280px;
  color: var(--Style, #089583);
  font-family: "Zen Maru Gothic";
  font-size: 3rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 45px */
}
.message_txt {
  color: var(--Style, #3c4252);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
}
.message_name {
  margin-top: 4rem;
  color: var(--Style, #3c4252);
  text-align: right;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2; /* 40px */
  letter-spacing: 1px;
}
.message_name span {
  color: var(--Style, #3c4252);
  text-align: right;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 32px */
  letter-spacing: 0.8px;
}
.message_img_over {
  width: 100vw;
  max-width: 1000px;
  margin-left: 50%;
  margin-top: 6rem;
  transform: translateX(-50%);
}
.message_img_over img {
  width: 100%;
  height: auto;
}

@media screen and (max-width:896px){
  /* Modal */
  .message_txtWrap {
    margin-top: 6rem;
    flex-direction: column;
    gap: 2rem;
  }
  .message_ttl {
    font-size: 2rem;
  }
  .message_txt {
    font-size: 1.4rem;
  }
  .message_name {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    font-size: 1.8rem;
  }
  .message_name span {
    font-size: 1.4rem;
  }
  .message_img_over {
    margin-top: 4rem;
  }
}

/* Benefit */
.sec_concept_benefit {
  position: relative;
  margin-top: 4rem;
  padding-bottom: 22rem;
}
.concept_benefit_inr {
  position: relative;
  padding-top: 30rem;
  /* overflow: hidden; */
}
.sec_benefit_inr {
  position: relative;
}
.benefit_img {
  position: absolute;
  width: 40rem;
  top: -6rem;
  right: -6rem;
  z-index: 1;
}
.sec_ttl_benefit {
  margin-bottom: 6rem;
  text-align: center;
  color: var(--color-white);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: calc(2.4 / 16 * 1.6rem);
}
.sec_ttl_benefit::before {
  content: attr(data-en);
  display: block;
  margin-bottom: 0.8rem;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: calc(0.7 / 16 * 1.6rem);
}
.benefit_slider_wrap {
  width: 100%;
  margin: 20px 0;
}

/* Benefit スライダー */
.benefit_cont {
  position: relative;
  display: flex;
  width: 100%;
  height: 36.6rem;
  margin: 0 auto;
  gap: 6rem;
  /* overflow: hidden; */
}
.benefit_cont::after {
  position: absolute;
  content: "";
  width: 14rem;
  height: 33rem;
  background-image: url(../img/benefit_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: -2rem;
  bottom: -2rem;
}
.benefit_lst {
  position: relative;
  display: flex;
  width: calc((600 / 1200) * 100%);
  align-items: center;
  justify-content: center;
}
.benefit_itm {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: left;
  max-width: 500px;
  pointer-events: none;
}
.benefit_itm.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.benefit_itm_num {
  display: flex;
  width: 13rem;
  height: 5rem;
  margin: 0 auto 1rem;
  padding: 0 2rem;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  gap: 0.4rem;
  color: var(--color-white);
  font-weight: 400;
  letter-spacing: calc(0.6 / 16 * 1.6rem);
  border: 0.1rem solid var(--color-white);
  border-radius: var(--bdrs-infinite);
}
.benefit_itm_ttl {
  margin-top: 3rem;
  color: var(--color-white);
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: calc(3.2 / 16 * 1.6rem);
}
.benefit_itm_txt {
  margin-top: 6rem;
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: calc(0.8 / 16 * 1.6rem);
}
.benefit_img_lstWrap {
  position: relative;
  width: calc((550 / 1200) * 100%);
  overflow: hidden;
}
.benefit_img_lst {
  position: absolute;
  display: flex;
  width: 100%;
  gap: 2rem;
  top: 0;
  left: 0;
  flex-direction: column;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.benefit_img_itm {
  position: relative;
  width: 100%;
  height: 36.6rem;
  border: 0.4rem solid var(--color-white);
  border-radius: calc(24 / 16 * 1.6rem);
  overflow: hidden;
  flex-shrink: 0;
}
.benefit_img_itm .u_img {
  height: 100%;
}
.benefit_img_itm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Nav */
.benefit_nav {
  margin-top: 10rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  gap: 2rem;
}
.benefit_nav_itm {
  position: relative;
  padding-bottom: 1.4rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
  transition: color 0.3s ease;
  cursor: pointer;
}
.benefit_nav_itm::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-color: rgba(255, 255, 255, 1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.benefit_nav_itm.active {
  color: rgba(255, 255, 255, 1);
}
.benefit_nav_itm.active::after {
  transform: scaleX(1);
}

@media (any-hover: hover) {
  .benefit_nav_itm:hover {
    color: rgba(255, 255, 255, 1);
  }
  .benefit_nav_itm:hover::after {
    transform: scaleX(1);
  }
}

@media (max-width: 867px) {
  .sec_concept_benefit {
    padding-bottom: 10rem;
  }
  .concept_benefit_inr {
    padding-top: 10rem;
    overflow: visible;
  }
  .benefit_cont {
    flex-direction: column-reverse;
    height: auto;
    gap: 3rem;
  }
  .benefit_cont::after {
    display: none;
  }
  .benefit_img {
    width: 20rem;
    right: 1rem;
    top: -8rem;
    z-index: 2;
  }
  .sec_ttl_benefit {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    letter-spacing: calc(1.8 / 16 * 1.6rem);
  }
  .sec_ttl_benefit::before {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    letter-spacing: calc(0.6 / 16 * 1.6rem);
  }
  .benefit_lst,
  .benefit_img_lstWrap {
    width: 100%;
  }
  .benefit_lst {
    height: 30rem; /* 数値確認 */
    padding: 0 30px;
  }
  .benefit_img_lstWrap {
    height: 100%;
    aspect-ratio: 360 / 240;
  }
  .benefit_img_itm {
    height: 100%;
  }
  .benefit_itm_num {
    width: 7.7rem;
    height: 2.3rem;
    margin: 0 auto;
    padding: 0;
  }
  .benefit_itm_num span {
    line-height: 1;
  }
  .benefit_itm_ttl {
    margin-top: 3rem;
    font-size: 2rem;
    letter-spacing: calc(2 / 16 * 1.6rem);
  }
  .benefit_itm_txt {
    margin-top: 3rem;
    font-size: 1.4rem;
    line-height: 1.75;
    letter-spacing: calc(0.7 / 16 * 1.6rem);
  }
  .benefit_nav {
    margin-top: 4.8rem;
    gap: 1rem;
  }
}

/* ===============================
          Introduction
  =============================== */
.sec_intro {
  position: relative;
  margin-top: calc((100vw / var(--vw-value-lg)) * -100);
  padding-top: 16rem;
  background-image: url(../img/introduction_bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.sec_intro::before,
.sec_intro::after {
  content: "";
  position: absolute;
  width: 47rem;
  height: 100%;
  top: -7rem;
  background-repeat: no-repeat;
  z-index: -1;
}
.sec_intro::before {
  background-image: url(../img/introduction_01.svg);
}
.sec_intro::after {
  background-image: url(../img/introduction_02.svg);
  right: 0;
}
.sec_intro_bgWrap {
  position: relative;
  padding-bottom: 20rem;
}
.sec_intro_bgWrap::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../img/introduction_05.svg);
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
  z-index: -2;
}
.intro_sliderWrap {
  position: relative;
  max-width: 1000px;
  margin-inline: auto;
}
.intro_slider_cont {
  position: relative;
  margin: 6rem auto 0;
}
.intro_slider_cont::before,
.intro_slider_cont::after {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}
.intro_slider_cont::before {
  width: 14.3rem;
  height: 24.8rem;
  top: 18rem;
  bottom: 0;
  left: -12rem;
  z-index: 2;
  background-image: url(../img/introduction_03.svg);
}
.intro_slider_cont::after {
  width: 16rem;
  height: 26.4rem;
  top: 18rem;
  left: auto;
  right: -12rem;
  z-index: 2;
  background-image: url(../img/introduction_04.svg);

  display: none;
}
.intro_slider {
  width: 100%;
  margin-bottom: 0;
}
.intro_slider_itm {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  border-radius: calc(24 / 16 * 1.6rem);
}
.intro_slider_itm .intro_slider_itm_img {
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro_slider_itm .intro_slider_itm_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(24 / 16 * 1.6rem);
}

/* 外部コントロールエリア */
.intro_slider_controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding: 0 2rem 0 4rem;
}
/* 右側の矢印エリア */
.slider-arrows {
  position: relative;
  display: flex;
  left: 2rem;
  gap: 0.8rem;
  align-items: center;
  z-index: 1;
}

/* ナビゲーションボタンのスタイル */
.js_slider_arrow__prev,
.js_slider_arrow__next {
  position: relative;
  display: flex;
  width: 5rem;
  height: 5rem;
  margin: 0;
  background: var(--color-white);
  border: 0.1rem solid var(--color-main);
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: none;
}
.js_slider_arrow__prev::before,
.js_slider_arrow__next::before {
  content: "";
  position: absolute;
  width: 2rem;
  height: 1.2rem;
  inset: 0;
  margin: auto;
  mask-image: url(../img/icon_arrow_lg.svg);
  mask-repeat: no-repeat;
  background-color: var(--color-main);
}
.js_slider_arrow__prev::before {
  transform: rotate(-180deg);
}


/* ページネーションのスタイル */
.intro_slider_dots {
  display: flex;
  max-width: 805px;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  position: static;
  margin: 0;
}
.intro_slider_dots .swiper-pagination-bullet {
  width: 4rem;
  height: 0.2rem;
  margin: 0;
  border-radius: calc(20 / 16 * 1.6rem);
  background: var(--cccccc, #ccc);
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 1;
}
.intro_slider_dots .swiper-pagination-bullet-active {
  background: var(--color-main);
}

/* Swiperのデフォルトナビゲーション・ページネーションを非表示 */
.intro_slider_btn {
  position: relative;
  margin-top: 2rem;
  z-index: 1;
}

@media (any-hover: hover) {
  .intro_slider_btn:hover a {
    color: var(--color-main);
  }
  .intro_slider_btn:hover::after {
    background-color: var(--color-main);
  }
}

@media screen and (max-width:1182px){
  .intro_slider_dots {
    max-width: 675px;
  }
}

@media (max-width: 867px) {
  .sec_intro {
    padding-top: 8rem;
    background-image: url(../img/introduction_bg_sp.svg);
    overflow: hidden;
  }
  .sec_intro::before,
  .sec_intro::after {
    top: -2rem;
    background-size: contain;
  }
  .sec_intro::before {
    width: calc((100vw / var(--vw-value-sm)) * 120);
    height: calc((100vw / var(--vw-value-sm)) * 200);
    left: -2rem;
  }
  .sec_intro::after {
    width: calc((100vw / var(--vw-value-sm)) * 120);
    height: calc((100vw / var(--vw-value-sm)) * 225);
    right: -2rem;
  }
  .sec_intro_bgWrap {
    padding-bottom: 16rem;
  }
  .sec_intro_bgWrap::before {
    background-image: url(../img/introduction_05_sp.svg);
  }
  .intro_slider_controls {
    padding: 0;
  }
  .intro_slider_cont::before {
    width: 5rem;
    height: 8.8rem;
    top: 12rem;
    bottom: 0;
    left: -3rem;
    z-index: 2;
    background-image: url(../img/introduction_03.svg);
  }
  .intro_slider_cont::after {
    width: 5.6rem;
    height: 9.3rem;
    top: 14rem;
    right: -3rem;
  }
  .intro_slider_cont {
    margin-top: 4rem;
  }
  .intro_slider_itm .intro_slider_itm_img img {
    border-radius: calc(8.64 / 16 * 1.6rem);
  }
  .js_slider_arrow__prev,
  .js_slider_arrow__next {
    width: 2.5rem;
    height: 2.5rem;
  }
  .js_slider_arrow__prev::before,
  .js_slider_arrow__next::before {
    width: 1rem;
    height: 0.6rem;
    inset: 0;
    mask-size: contain;
  }
  .intro_slider_dots {
    max-width: 270px;
    gap: 0.4rem;
  }
  .slider-arrows {
    left:0;
  }
  .intro_slider_btn > * {
    height: 3.6rem;
    font-size: 1.4rem;
  }
}

@media screen and (max-width:576px){
  .intro_slider_dots {
    max-width: 210px;
  }
}

/* === Jobs === */
.intro_jobs {
  position: relative;
  width: fit-content;
  height: 100%;
  padding: 4rem;
  margin-inline: auto;
  background-image: url(../img/bg_jobs.svg);
  background-size: cover;
  border-radius: 2.4rem;
}
.jobs_cont {
  display: flex;
  margin: 0 auto;
  padding: 8rem;
  gap: 6rem;
  border-radius: calc(20 / 16 * 1.6rem);
  background-color: var(--color-cream-02);
  border: 0.6rem solid var(--color-main);
}
.jobs_ttl_wrap {
  width: 24rem;
  flex-shrink: 0;
}
.jobs_ttl {
  color: var(--color-text);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: calc(2.4 / 16 * 1.6rem);
}
.jobs_ttl span {
  display: block;
  padding-bottom: 2rem;
  color: var(--Style, #3c4252);
  font-family: var(--font-en);
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.7px;
}
.jobs_btn {
  position: relative;
  max-width: 182px;
  height: 4rem;
  margin-top: 6rem;
  padding: 0 2rem;
  font-size: 1.6rem;
  color: var(--color-white);
  border-radius: var(--bdrs-infinite);
  border: 0.1rem solid var(--color-main);
  background-color: var(--color-main);
}
.jobs_btn > * {
  display: flex;
  align-items: center;
}
.jobs_btn.g_btn a::after {
  content: "";
  width: 1.6rem;
  height: 2rem;
  mask-image: url(../img/icon_arrow.svg);
  mask-repeat: no-repeat;
  background-color: var(--color-white);
}
.jobs_itm {
  position: relative;
  margin-bottom: 7.5rem;
}
.jobs_itm:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -3.5rem;
  left: 0;
  right: 0;
  height: 0.1rem;
  background: repeating-linear-gradient(to right, var(--color-main) 0, var(--color-main) 5px, transparent 5px, transparent 10px);
}
.jobs_itm_ttl_wrap {
  display: flex;
  align-items: center;
  line-height: 1;
}
.jobs_itm_ttl_num {
  display: flex;
  width: 6rem;
  height: 3rem;
  margin-right: 1rem;
  align-items: center;
  justify-content: center;
  color: var(--color-main);
  font-size: 1.8rem;
  font-weight: 400;
  border: 0.1rem solid var(--color-main);
  border-radius: calc(40 / 16 * 1.6rem);
}
.jobs_itm_ttl {
  color: var(--color-main);
  font-size: 2.8rem;
  font-weight: 500;
}
.jobs_itm_cont {
  display: flex;
  margin-top: 2rem;
  gap: 30px;
  align-items: flex-start;
}
.jobs_itm_txt {
  color: var(--color-text);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
.jobs_itm_img {
  width: 100%;
  max-width: 150px;
  object-fit: cover;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
}
.jobs_itm_img img {
  border-radius: calc(15 / 16 * 1.6rem);
}
.intro_jobs_img {
  position: absolute;
  left: 5rem;
  bottom: -5rem;
}

@media (any-hover: hover) {
  .jobs_btn:hover > * {
    color: var(--color-main);
  }
  .jobs_btn.g_btn:hover a::after {
    background-color: var(--color-main);
  }
}

@media (max-width: 976px) {
  .intro_jobs {
    padding: 1.5rem;
    background-image: url(../img/bg_jobs.svg);
    background-size: cover;
    border-radius: calc(12 / 16 * 1.6rem);
  }
  .intro_jobs_img {
    width: 16rem;
    margin-inline: auto;
    top: -8rem;
    bottom: auto;
    right: 0;
    left: 0;
    z-index: 1;
  }
  .jobs_cont {
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 3rem;
    border-radius: calc(6 / 16 * 1.6rem);
    border: 0.4rem solid var(--color-main);
  }
  .jobs_itm {
    margin-bottom: 5rem;
  }
  .jobs_itm:last-child {
    margin-bottom: 0;
  }
  .jobs_itm:not(:last-child)::after {
    bottom: -3rem;
  }
  .jobs_itm_cont {
    flex-direction: column;
    gap: 15px;
  }
  .jobs_itm_ttl {
    font-size: 2rem;
  }
  .jobs_itm_ttl_num {
    font-size: 1.6rem;
  }
  .jobs_itm_img {
    max-width: 140px;
    margin: 0 auto;
  }
  .jobs_itm_img img {
    border-radius: calc(24 / 16 * 1.6rem);
  }
  .jobs_itm_txt {
    font-size: 1.4rem;
  }
  .jobs_btn {
    margin: 0 auto;
  }
}

/* ===============================
          Interview
  =============================== */
.sec_interview {
  position: relative;
  margin-top: calc((100vw / var(--vw-value-lg)) * -40);
  padding: 11rem 0 30rem;
  background-image: url(../img/interview_bg.svg);
  background-repeat: repeat-x;
  background-size: cover;
  z-index: 2;
}
.sec_interview:has(.js_clicked) {
  z-index: 3;
}
.interview_inr {
  position: relative;
  overflow: hidden;
}
.interview_bg_img {
  position: absolute;
  z-index: -2;
}
.interview_bg_img.interview_bg_img__01 {
  bottom: -1rem;
  left: 0;
}
.interview_bg_img.interview_bg_img__02 {
  /* top: -14rem; */
  bottom: -1rem;
  right: 0;
}
.interview-section {
  margin: 0 auto;
  position: relative;
}
.interview_upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* ページネーションのスタイル */
.interview_upper .swiper-pagination {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  position: static;
  margin: 0;
}
.interview_upper .swiper-pagination-bullet {
  width: 4rem;
  height: 0.2rem;
  margin: 0;
  border-radius: calc(20 / 16 * 1.6rem);
  background: var(--cccccc, #ccc);
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 1;
}
.interview_upper .swiper-pagination-bullet-active {
  background: var(--color-main);
}
.interview_sliderWrap {
  margin-left: auto;
  padding: 6rem 0 16rem 0;
  overflow: hidden;
}
.interview_slider {
  width: 100%;
  width: min(100%, 1200px);
  height: auto;
  margin: 0 auto;
  padding: 0 2rem;
  /* overflow: visible; */
}
.interview_slider .swiper-wrapper {
  position: relative;
  width: calc(100% + (100vw - 100%) / 2);
  overflow: visible;
}
.interview_slider_itm {
  position: relative;
  display: flex;
  width: 36rem;
  height: 100%;
  flex-direction: column;
  transition: transform 0.3s ease;
  box-sizing: border-box;
  overflow: hidden;
}
.swiper-slide .interview_slider_itm_inr {
  margin-left: 0;
  padding-left: 0;
}
.interview_slider_itm:nth-child(even) {
  margin-top: 3rem;
}
.interview_slider_itm_img {
  object-fit: cover;
}
.interview_slider_itm_ttl {
  padding: 1rem 1.5rem;
  color: var(--color-main);
  font-size: 2rem;
  font-weight: 500;
  line-height: normal;
  background-color: var(--color-white);
  border-radius: calc(6 / 16 * 1.6rem);
}
.interview_slider_itm_txtWrap {
  position: relative;
  margin: -3.6rem auto 2rem;
}
.interview_slider_itm_txt_name {
  margin-top: 2rem;
  color: var(--color-text);
  font-size: 16px;
  font-family: var(--font-jp);
  font-weight: 500;
  line-height: 1;
}
.interview_slider_itm_txt_info {
  margin-top: 1.5rem;
  color: var(--color-text);
  font-size: 1.6rem;
  font-family: var(--font-jp);
  font-weight: 500;
  line-height: 1;
}
.interview_slider_itm_txt_year {
  margin-top: 2rem;
  color: var(--color-main);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
.interview_slider_itm_moreBtn {
  display: flex;
  max-width: 156px;
  height: 4rem;
  padding: 0 24px;
  align-items: center;
  gap: 1rem;
  align-self: flex-start;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-white);
  border-radius: var(--bdrs-infinite);
  border: 0.1rem solid var(--color-main);
  background-color: var(--color-main);
  transition: all 0.3s ease;
  cursor: pointer;
}
.interview_slider_itm_moreBtn::after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  mask-image: url(../img/icon_modalOpen.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--color-white);
}
.controls-benefit_cont {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}
.swiper-pagination {
  position: static !important;
  width: auto !important;
  display: flex !important;
  gap: 8px;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(44, 159, 179, 0.3);
  opacity: 1;
  margin: 0 !important;
}
.swiper-pagination-bullet-active {
  background-color: var(--color-main);
}
.benefit_nav-arrows {
  display: flex;
  gap: 1rem;
}
.interview_btn_next,
.interview_btn_prev {
  position: static !important;
  width: 5rem;
  height: 5rem;
  background-color: var(--color-white);
  border: 0.1rem solid var(--color-main);
  border-radius: 50%;
  color: var(--color-main) !important;
  margin: 0 !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
}
.interview_btn_next::after,
.interview_btn_prev::after {
  display: block;
  width: 2rem;
  height: 2rem;
  mask-image: url(../img/icon_arrow_slider.svg);
  mask-repeat: no-repeat;
  mask-size: cover;
  background-color: var(--color-main);
}
.interview_btn_prev::after {
  transform: rotate(-180deg);
}
.swiper-button-lock {
  display: block;
}
.swiper-button-disabled {
  opacity: 0.35;
}

/* 矢印 */
.interview_slider_controls__pc {
  display: flex;
  gap: 2rem;
}
.interview_slider_controls__sp {
  display: none;
}
.interview_slider_navArrows {
  display: flex;
  gap: 2rem;
}

@media (any-hover: hover) {
  .interview_slider_itm_moreBtn:hover {
    background-color: var(--color-white);
    color: var(--color-main);
  }
  .interview_slider_itm_moreBtn:hover::after {
    background-color: var(--color-main);
  }
}

@media (max-width: 897px) {
  .sec_interview {
    padding-top: 7.6rem;
    padding-bottom: 16rem;
    background-image: url(../img/interview_bg_sp.svg);
  }
  .interview_upper {
    justify-content: center;
  }
  .interview_bg_img.interview_bg_img__01 {
    width: calc((100vw / var(--vw-value-sm)) * 150);
    bottom: 0;
  }
  .interview_bg_img.interview_bg_img__02 {
    width: calc((100vw / var(--vw-value-sm)) * 160);
    bottom: 0;
  }
  .interview_slider .swiper-wrapper {
    width: 100%;
  }
  .interview_sliderWrap {
    padding: 4rem 0 0 0;
  }
  .interview_slider_itm {
    width: 100%;
    max-width: 100%;
  }
  .interview_slider_itm:nth-child(even) {
    margin-top: 0;
  }
  .interview_slider_itm_ttl {
    font-size: 1.8rem;
  }
  .interview_slider_itm_txt_name {
    font-size: 1.4rem;
  }
  .interview_slider_itm_txt_year {
    font-size: 1.2rem;
  }
  .interview_slider_itm_moreBtn {
    font-size: 1.4rem;
  }
  .controls-benefit_cont {
    top: 10px;
    right: 10px;
    gap: 15px;
  }
  .interview_slider_controls__pc {
    display: none;
  }
  .interview_slider_controls__sp {
    display: flex;
    margin-top: 4.2rem;
    align-items: center;
    justify-content: space-around;
  }
  .interview_slider_controls__sp .swiper-pagination {
    gap: 0.5rem;
  }
  .interview_slider_controls__sp .swiper-pagination-bullet {
    width: 4rem;
    height: 0.2rem;
    margin: 0;
    border-radius: calc(20 / 16 * 1.6rem);
    background: var(--cccccc, #ccc);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 1;
  }
  .interview_slider_navArrows {
    gap: 1rem;
  }
  .interview_btn_next,
  .interview_btn_prev {
    width: 4rem;
    height: 4rem;
  }
  .interview_btn_next::after,
  .interview_btn_prev::after {
    width: 1.4rem;
    height: 1.4rem;
  }
}

/* ===================
    Interview Modal
   =================== */
.interview_modal_head {
  display: flex;
  gap: 8rem;
}
.interview_modal_headTtl {
  display: inline-block;
  position: relative;
  padding: 2rem 1.5rem;
  top: -3rem;
  color: var(--Style, #089583);
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  background-color: var(--color-white);
  border-radius: 0 calc(10 / 16 * 1.6rem);
}
.interview_modal_profileWrap {
  margin-top: 2rem;
}
.interview_modal_profile_name {
  color: var(--Style, #3c4252);
  font-family: "Zen Maru Gothic";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.interview_modal_profile_details {
  margin-top: 2rem;
  color: var(--Style, #3c4252);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.interview_modal_profile_year {
  margin-top: 2rem;
  color: var(--Style, #089583);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.interview_modal_img {
  max-width: 42rem;
  width: 100%;
  flex-shrink: 0;
  transform: translateX(-20%);
}
.interview_modal_ttl {
  color: var(--Style, #089583);
  font-family: "Zen Maru Gothic";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 36px */
}
.interview_modal_txt {
  margin-top: 4rem;
  color: var(--Style, #3c4252);
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
}
.interview_modal_comment {
  position: relative;
  margin-top: 13rem;
  padding: 6rem;
  border-radius: 24px;
  background: #e7f5cd;
}
.interview_modal_comment_question {
  color: var(--Style, #3c4252);
  font-family: "Zen Maru Gothic";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.interview_modal_comment_question::before {
  content: "Q";
  padding-right: 1rem;
  color: var(--Style, #089583);
  font-family: Pridi;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.interview_modal_comment_ttl {
  position: absolute;
  top: -3rem;
  max-width: 240px;
  height: 60px;
  display: flex;
  padding: 0 4rem;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
  letter-spacing: 1.8px;
  border-radius: 140px;
  background: var(--007396, var(--color-dark-blue));
}
.interview_modal_comment_answer {
  padding: 1.5rem 2rem;
  color: #e7f5cd;
  text-align: justify;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 32px */
  max-width: 545px;
  border-radius: 10px;
  background: var(--Style, #089583);
}
.interview_modal_comment_answer::before {
  width: 2rem;
  height: 2rem;
  right: -1.4rem;
  bottom: 3rem;
  mask-image: url(../img/icon_answer.svg);
  background-color: var(--color-main);
}
.interview_modal_comment_answer_img {
  width: 100%;
  max-width: 6rem;
  flex-shrink: 0;
}

@media screen and (max-width:896px){
  .interview_modal_head {
    flex-direction: column;
    gap: 3rem;
  }
  .interview_modal_headTtl {
    padding: 0;
    top: 3rem;
    font-size: 2rem;
  }
  .interview_modal_profileWrap {
    margin-top: 2rem;
  }
  .interview_modal_profile_name {
    font-size: 1.8rem;
  }
  .interview_modal_profile_details {
    font-size: 1.4rem;
  }
  .interview_modal_profile_year {
    font-size: 1.2rem;
  }
  .interview_modal_img {
    max-width: 42rem;
    width: 100%;
    flex-shrink: 0;
    transform: translateX(-20%);
  }
  .interview_modal_ttl {
    font-size: 2rem;
  }
  .interview_modal_txt {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
  .interview_modal_comment {
    margin-top: 5.6rem;
    padding: 4rem 2rem 2rem;
    border-radius: calc(12/16 * 1.6rem);
  }
  .interview_modal_comment_question {
    font-size: 1.6rem;
  }
  .interview_modal_comment_question::before {
    content: "Q";
    padding-right: 1rem;
    color: var(--Style, #089583);
    font-family: Pridi;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .interview_modal_comment_ttl {
    height: 36px;
    padding: 0 4rem;
    top: -2rem;
    gap: 0.5rem;
    font-size: 1.6rem;
    letter-spacing: calc(1.6/16 * 1.6rem);
  }
  .interview_modal_comment_answer {
    padding: 1rem;
    font-size: 1.4rem;
  }
  .interview_modal_comment_answer::before {
    width: 2rem;
    height: 2rem;
    right: 3.8rem;
    bottom: -1.8rem;
    mask-image: url(../img/icon_answer.svg);
    background-color: var(--color-main);
    transform: rotate(90deg);
  }
  .interview_modal_comment_answer_img {
    width: 100%;
    max-width: 6rem;
    flex-shrink: 0;
  }
}

/* ===============================
          Environment
  =============================== */
.sec_environment {
  position: relative;
  margin-top: calc((100vw / var(--vw-value-lg)) * -120);
  padding: 24rem 0 16rem;
  background-image: url(../img/environment_bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 0;
  z-index: 2;
}
.sec_environment::before,
.sec_environment::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
}
.sec_environment::before {
  width: 20rem;
  height: 31.5rem;
  top: -17rem;
  left: 0;
  background-image: url(../img/environment_03.svg);
}
.sec_environment::after {
  width: 20rem;
  height: 31.5rem;
  top: -17rem;
  right: 0;
  background-image: url(../img/environment_04.svg);
}
.environment_img {
  position: absolute;
  top: -15rem;
  right: 25rem;
}
.environment_lst {
  display: grid;
  margin-top: 4.5rem;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 2rem;
}
.environment_itm {
  /* aspect-ratio: 387 / 365; */
  position: relative;
}
.environment_itm::before {
  width: 7rem;
  height: 4.5rem;
  top: -1rem;
  right: 0;
  left: 0;
  margin-inline: auto;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
.environment_itm:nth-child(1)::before {
  background-image: url(../img/environment_lst_num_01.svg);
}
.environment_itm:nth-child(2)::before {
  background-image: url(../img/environment_lst_num_02.svg);
}
.environment_itm:nth-child(3)::before {
  background-image: url(../img/environment_lst_num_03.svg);
}
.environment_itm_txt_sub {
  position: absolute;
  right: 0;
  line-height: 1.75;
}
.environment_itm_inr {
  width: 100%;
  height: 100%;
  padding: 5rem 4rem 4rem;
  background-image: url(../img/environment_lst_bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: calc(24 / 16 * 1.6rem);
}
.environment_itm_inr::after {
  width: 100%;
  height: 100%;
  background-image: url(../img/environment_lst_bgBtm.svg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: calc(24 / 16 * 1.6rem);
  top: 0;
  left: 0;
  z-index: 0;
}
.environment_itm_img {
  position: relative;
  max-width: 307px;
  width: calc((100vw / var(--vw-value-lg)) * 307);
  margin-inline: auto;
  z-index: 1;
}
.environment_itm_txt {
  position: relative;
  margin-top: 3rem;
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.5;
  text-align: center;
  z-index: 1;
}

@media screen and (max-width: 896px) {
  .sec_environment {
    padding: 12rem 0 20rem 0;
    background-image: url(../img/environment_bg_sp.svg);
  }
  .sec_environment::before,
  .sec_environment::after {
    height: fit-content;
    background-size: contain;
  }
  .sec_environment::before {
    width: 8rem;
    top: -7.2rem;
    aspect-ratio: 40 / 63;
  }
  .sec_environment::after {
    width: 10rem;
    top: -7.2rem;
    right: 0;
    aspect-ratio: 1 / 1;
  }
  .environment_lst {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3.5rem;
    gap: 4rem 2rem;
  }
  .environment_img {
    width: 100%;
    max-width: 163px;
    margin-inline: auto;
    top: -7rem;
    right: 0;
    left: 0;
  }
  .environment_itm_txt {
    margin-top: 2rem;
  }
  .environment_itm {
    aspect-ratio: unset;
  }
  .environment_itm_inr {
    padding: 5rem 0 4rem;
  }
  .environment_itm_img {
    max-width: 240px;
    width: calc((100vw / var(--vw-value-sm)) * 240);
  }
}

@media screen and (max-width: 576px) {
  .environment_lst {
    display: block;
  }
  .environment_itm + .environment_itm {
    margin-top: 2.5rem;
  }
}

/* ===============================
          Steps
  =============================== */
.sec_steps {
  position: relative;
  margin-top: calc((100vw / var(--vw-value-lg)) * -100);
  padding: 24rem 0 22rem;
  background-image: url(../img/steps_bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.steps_img_01 {
  position: absolute;
  right: 20rem;
  top: 5rem;
}
.sec_steps .sec_ttl {
  color: var(--color-white);
}
.sec_steps .sec_ttl::before {
  color: var(--color-white);
}
.sec_steps_lead {
  margin-top: 6rem;
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: calc(0.9 / 16 * 1.6rem);
}
.sec_steps_lead_sub {
  margin-top: 2rem;
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: calc(0.7 / 16 * 1.6rem);
}
.steps_cont {
  margin-top: 6rem;
}
.steps_tab_itm {
  display: flex;
  width: calc(50% - 0.2rem);
  height: 8.4rem;
  padding: 0 4rem;
  background: var(--cccccc, #ccc);
  border-radius: 10px 10px 0px 0px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: var(--color-white);
  text-align: center;
  font-size: clamp(1.6rem, calc((100vw / var(--vw-value-lg)) * 20), 2rem);
  font-weight: 500;
  line-height: 1.5;
  transition: var(--transition);
}
.steps_tab_itm.js_crnt {
  height: 9.4rem;
  background-color: var(--color-dark-blue);
}
.steps_box {
  padding: 8rem;
  border-top: 0.1rem solid var(--color-dark-blue);
  background-color: var(--color-white);
  border-radius: 0 0 24px 24px;
}
.steps_box_itm_wrap {
  position: relative;
  margin-top: 6rem;
}
.steps_img_02 {
  position: absolute;
  left: -6rem;
  bottom: -14rem;
  z-index: 1;
}
.steps_box_itm {
  display: flex;
  padding: 6rem 0;
  align-items: center;
  gap: 4rem;
  border-bottom: 0.2rem dashed var(--cccccc, #ccc);
}
.steps_box_itm:first-child {
  padding-top: 0;
}
.steps_box_itm_txtWrap {
  width: 100%;
  line-height: 1.75;
}
.steps_box_itm:first-child .steps_box_itm_txtWrap {
  padding-top: 0;
}
.steps_box_itm_num {
  width: 100%;
  max-width: 9rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-size: 1.2rem;
  color: var(--color-main);
  border-radius: calc(40 / 16 * 1.6rem);
  border: 0.1rem solid var(--color-main);
  line-height: 1;
}
.steps_box_itm_num span {
  font-size: 1.8rem;
  line-height: 1;
}

@media (any-hover: hover) {
  .steps_tab_itm:hover {
    background-color: var(--color-dark-blue);
  }
}

@media screen and (max-width: 896px) {
  .sec_steps {
    padding-top: 10.4rem;
    margin-top: calc((100vw / var(--vw-value-sm)) * -100);
    background-image: url(../img/steps_bg_sp.svg);
  }
  .sec_steps::before {
    top: -7rem;
    background-image: url(../img/steps_bg_01_sp.svg);
  }
  .sec_steps::after {
    height: 4rem;
    bottom: -0.1rem;
    background-image: url(../img/faq_bg_01_sp.svg);
    background-size: cover;
    aspect-ratio: 71 / 4;
  }
  .steps_tab_lst {
    border-radius: calc(10 / 16 * 1.6rem);
    overflow: hidden;
    border: 0.1rem solid var(--color-blue);
  }
  .steps_tab_lst + .steps_tab_lst {
    margin-top: 1rem;
  }
  .steps_tab_itm {
    position: relative;
    width: 100%;
    height: auto;
    padding: 2rem 6rem 2rem 1.5rem;
    font-size: 1.6rem;
    color: var(--color-blue);
    background-color: var(--color-white);
    border-radius: unset;
  }
  .steps_tab_itm.js_open {
    border-radius: 10px 10px 0 0;
    color: var(--color-white);
    background-color: var(--color-blue);
  }
  .steps_box_itm_wrap {
    margin-top: 4rem;
  }

  /* pulldown */
  .steps_pulldown_btn {
    position: absolute;
    display: inline-block;
    width: 3.6rem;
    height: 2.2rem;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 1.5rem;
    background-color: var(--color-blue);
    border: 0.1rem solid var(--color-blue);
    border-radius: var(--bdrs-infinite);
  }
  .steps_pulldown_btn::before,
  .steps_pulldown_btn::after {
    display: block;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    transition: all 0.3s linear;
  }
  .steps_pulldown_btn::before {
    width: 10px;
    height: 2px;
  }
  .steps_pulldown_btn::after {
    width: 2px;
    height: 10px;
  }
  .js_open .steps_pulldown_btn {
    background-color: var(--color-white);
  }
  .js_open .steps_pulldown_btn::before {
    display: none;
  }
  .js_open .steps_pulldown_btn::after {
    background-color: var(--color-blue);
    transition: all 0.3s linear;
    -webkit-transform: rotate(90deg) translateY(0px);
    transform: rotate(90deg) translateY(0px);
  }
  .steps_box {
    padding: 3rem 2rem;
    border-top: unset;
    border-radius: 0 0 12px 12px;
  }
  .steps_box_itm {
    padding: 3rem 0 2rem;
    gap: 1rem;
  }
  .steps_box_itm_num {
    max-width: 6.2rem;
    height: 2rem;
    padding: 0;
    font-size: 1rem;
  }
  .steps_box_itm_num span {
    font-size: 1.6rem;
  }
  .steps_img_01 {
    width: 20rem;
    top: -2rem;
    right: 2rem;
  }
  .steps_img_02 {
    width: 13rem;
    left: 0;
  }
  .sec_steps_lead {
    margin-top: 4rem;
    font-size: 1.6rem;
    letter-spacing: calc(0.8 / 16 * 1.6rem);
  }
  .sec_steps_lead_sub {
    line-height: 1.75;
  }
  .steps__btn {
    font-size: 1.4rem;
    line-height: 1;
    margin-top: 2rem;
  }
}
/* ===============================
          FAQ
  =============================== */
.sec_faq {
  position: relative;
  padding: 24rem 0 11.5rem;
  margin-top: calc((100vw / var(--vw-value-lg)) * -90);
  background-image: url(../img/faq_bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.sec_faq .l_wrap_inr {
  display: flex;
  gap: 6rem;
}
.sec_faq .sec_ttl {
  max-width: 200px;
  width: 100%;
  text-align: start;
  flex-shrink: 0;
}
.faq_itm_cont {
  display: none;
}
.faq_right {
  width: 100%;
  max-width: 940px;
}
.faq_anker_lst {
  gap: 1rem;
}
.faq_anker_itm {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-white);
  border: 0.1rem solid var(--color-main);
  border-radius: calc(5 / 16 * 1.6rem);
  background-color: var(--color-main);
  transition: var(--transition);
}
.faq_anker_itm a {
  position: relative;
  display: flex;
  padding: 0 3.3rem 0 1.5rem;
  align-items: center;
  width: 100%;
  height: 5.2rem;
}
.faq_anker_itm a::before {
  content: "";
  position: absolute;
  width: 1.6rem;
  height: 2rem;
  margin: auto;
  right: 1.5rem;
  top: 0;
  bottom: 0;
  background-color: var(--color-white);
  mask-image: url(../img/icon_arrow.svg);
  mask-repeat: no-repeat;
}
.faq_box + .faq_box {
  margin-top: 8rem;
}
.faq_box_ttl {
  color: var(--color-text);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: calc(2.4 / 16 * 1.6rem);
}
.faq_lst {
  padding-top: 3rem;
}
.faq_itm {
  padding: 2.4rem 3rem 2.4rem 6.4rem;
  border-radius: calc(10 / 16 * 1.6rem);
  border: 0.2rem solid var(--fffbe-2, #fffbe2);
  background: var(--fffbe-2, #fffbe2);
  transition: var(--transition);
}
.faq_itm + .faq_itm {
  margin-top: 2rem;
}
.faq_itm_ttl {
  padding-right: 7rem;
  color: var(--color-text);
  font-size: 1.8rem;

  font-weight: 500;
  line-height: 1.5;
  letter-spacing: calc(0.9 / 16 * 1.6rem);
}
.faq_itm_ttl::before,
.faq_itm_cont::before {
  top: 0;
  left: -3rem;
  color: var(--color-main);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.2;
}
.faq_itm_ttl::before {
  content: "Q";
  top: 0;
}
.faq_itm_cont {
  padding-top: 3rem;
  color: var(--007396, var(--color-dark-blue));
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: calc(0.8 / 16 * 1.6rem);
}
.faq_itm_cont::before {
  content: "A";
  top: 3rem;
}

@media (any-hover: hover) {
  .faq_itm:hover {
    border: 0.2rem solid var(--color-main);
  }
  .faq_anker_itm:hover {
    color: var(--color-main);
    background-color: var(--color-white);
  }
  .faq_anker_itm:hover a::before{
    background-color: var(--color-main);
  }
}


/* pulldown */
.faq_pulldown_btn {
  position: absolute;
  display: inline-block;
  width: 5rem;
  height: 3rem;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: var(--color-main);
  border: 0.1rem solid var(--color-main);
  border-radius: var(--bdrs-infinite);
}
.faq_pulldown_btn::before,
.faq_pulldown_btn::after {
  display: block;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: all 0.3s linear;
}
.faq_pulldown_btn::before {
  width: 1.4rem;
  height: 0.2rem;
  -webkit-mask-image: url(../img/icon_toggle_02.svg);
          mask-image: url(../img/icon_toggle_02.svg);
}
.faq_pulldown_btn::after {
  -webkit-mask-image: url(../img/icon_toggle_01.svg);
          mask-image: url(../img/icon_toggle_01.svg);
  width: 0.2rem;
  height: 1.4rem;
}
.js_open .faq_pulldown_btn {
  background-color: var(--color-white);
}
.js_open .faq_pulldown_btn::before {
  display: none;
}
.js_open .faq_pulldown_btn::after {
  background-color: var(--color-main);
  transition: all 0.3s linear;
  -webkit-transform: rotate(90deg) translateY(0px);
  transform: rotate(90deg) translateY(0px);
}

@media (any-hover: hover) {
.faq_itm:hover .faq_pulldown_btn {
  background-color: var(--color-white);
}
.faq_itm:hover .faq_pulldown_btn::before {
  display: none;
}
.faq_itm:hover .faq_pulldown_btn::after {
  background-color: var(--color-main);
  transition: all 0.3s linear;
  -webkit-transform: rotate(90deg) translateY(0px);
  transform: rotate(90deg) translateY(0px);
}
}

@media screen and (max-width: 896px) {
  .sec_faq {
    margin-top: calc((100vw / var(--vw-value-sm)) * -40);
    padding-top: 6rem;
    background-image: url(../img/faq_bg_sp.svg);
  }
  .sec_faq .l_wrap_inr {
    flex-direction: column;
    gap: 4rem;
  }
  .faq_box_ttl {
    font-size: 1.8rem;
    letter-spacing: calc(1.8 / 16 * 1.6rem);
  }
  .faq_itm_ttl {
    font-size: 1.6rem;
    padding-right: 4.6rem;
  }
  .faq_itm_ttl::before,
  .faq_itm_cont::before {
    left: -2rem;
    font-size: 1.6rem;
  }
  .faq_itm {
    padding: 2rem 2rem 2rem 3.5rem;
  }
  .faq_box + .faq_box {
    margin-top: 3rem;
  }
  .faq_itm + .faq_itm {
    margin-top: 1rem;
  }
  .faq_pulldown_btn {
    width: 3.6rem;
    height: 2.2rem;
  }
  .faq_itm_cont_inr {
    font-size: 1.4rem;
  }
}

/* ===============================
          Info
  =============================== */
.sec_info {
  position: relative;
  padding: 12rem 0 22rem;
  background-image: url(../img/recruit_info_bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 3;
}
.info_tab_cont {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.info_tab_lst {
  display: flex;
  margin-top: 6rem;
  justify-content: flex-start;
  align-items: flex-end;
  color: var(--color-text);
}
.info_tab_itm {
  display: flex;
  width: calc((100% / 3) - 0.3rem);
  height: 12rem;
  padding: 0 2rem;
  align-items: center;
  font-size: 2rem;
  font-weight: 500;
  flex-shrink: 0;
  line-height: 1.5;
  border-radius: 20px 20px 0px 0px;
  background-color: var(--color-white);
  transition: var(--transition);
}
.info_tab_itm:nth-child(1) {
  border: 0.1rem solid var(--color-orange);
  border-bottom: none;
}
.info_tab_itm:nth-child(2) {
  border: 0.1rem solid var(--color-aqua);
  border-bottom: none;
}
.info_tab_itm:nth-child(3) {
  border: 0.1rem solid var(--color-green);
  border-bottom: none;
}
.info_tab_itm.js_crnt {
  height: 13.6rem;
  color: var(--color-white);
}
.info_tab_itm.js_crnt:nth-child(1) {
  background-color: var(--color-orange);
}
.info_tab_itm.js_crnt:nth-child(2) {
  background-color: var(--color-aqua);
}
.info_tab_itm.js_crnt:nth-child(3) {
  background-color: var(--color-green);
}
.info_tab_img {
  max-width: 60px;
}
.info_tab_ttl_en {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: calc(0.28 / 16 * 1.6rem);
}
.info_tab_ttl {
  margin-top: 1rem;
  font-size: clamp(1rem, calc((100vw / var(--vw-value-lg)) * 24), 2.4rem);
  font-weight: 500;
  line-height: 1.25;
}

@media (any-hover: hover) {
  .info_tab_itm:hover {
    color: var(--color-white);
  }
  .info_tab_itm:nth-child(1):hover {
    background-color: var(--color-orange);
  }
  .info_tab_itm:nth-child(2):hover {
    background-color: var(--color-aqua);
  }
  .info_tab_itm:nth-child(3):hover {
    background-color: var(--color-green);
  }
}

/* Main Content Box */
.info_box {
  display: none;
  height: 100%;
  max-height: 1000px;
  background-color: var(--color-white);
  border-radius: 0px 0px 24px 24px;
  overflow-y: scroll;
}
.info_box.js_crnt {
  display: block;
}
.info_box.info_box__01 {
  border-top: 0.4rem solid var(--color-orange);
}
.info_box.info_box__02 {
  border-top: 0.4rem solid var(--color-aqua);
}
.info_box.info_box__03 {
  border-top: 0.4rem solid var(--color-green);
}
.info_box_itm {
  padding: 8rem;
}
.info_box_itm_ttl {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-text);
  padding-bottom: 6rem;
  border-bottom: 0.2rem dashed var(--cccccc, #ccc);
}
.info_box_itm_details_row {
  display: flex;
  gap: 1rem;
}
.info_box_itm_details_row + .info_box_itm_details_row {
  margin-top: 3rem;
}
.info_box_itm_details_ttl {
  width: 16rem;
  padding-bottom: 3rem;
  color: var(--color-text);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.8px;
  border-bottom: 1px solid var(--color-main);
}
.info_box_itm_details_txt {
  width: 100%;
  padding-bottom: 3rem;
  color: var(--color-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 2;
  letter-spacing: calc(0.8 / 16 * 1.6rem);
  border-bottom: 1px solid var(--cccccc, #ccc);
}
.info_btn {
  position: relative;
  padding-right: 5rem;
  text-align: end;
  color: var(--color-text);
  text-decoration: underline;
}
.info_btn::before {
  content: "";
  position: absolute;
  width: 4rem;
  height: 2.6rem;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: var(--bdrs-infinite);
  background-color: var(--color-main);
}
.info_btn::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  right: 0.5rem;
  top: 0.7rem;
  bottom: 0;
  margin: auto;
  mask-image: url(../img/icon_arrow_up.svg);
  mask-repeat: no-repeat;
  background-color: var(--color-white);
}

.info_entry {
  width: fit-content;
  margin: 6rem auto 0;
  border: 0.2rem solid var(--color-main);
  border-radius: calc(300 / 16 * 1.6rem);
  background: var(--color-white);
  transition: var(--transition);
}
.info_entry a {
  position: relative;
  display: flex;
  width: 14.3rem;
  height: 5.5rem;
  padding: 0 1rem;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: var(--color-main);
  transition: height 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/*  */
.info_entry a::before {
  content: "";
  position: absolute;
  width: 24.5rem;
  height: 8rem;
  top: -7.6rem;
  left: -6rem;
  background-image: url(../img/bnr_entry.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(6rem, 7.6rem) rotate(-5deg) scale(0.8);
  pointer-events: none;
  opacity: 0;
  animation: bannerDisappear 0.4s ease-out forwards;
}

@media (any-hover: hover) {
  .info_entry:hover {
    background: var(--Linear, linear-gradient(94deg, #ff6829 0.43%, #ffc383 97.89%));
  }
  .info_entry:hover a {
    height: 6.5rem;
    color: var(--color-white);
  }
  .info_entry:hover a::before {
    opacity: 1;
    animation: bannerAppear 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
  .info_btn:hover {
    text-decoration: none;
  }
  .info_btn:hover::before {
    background-color: var(--color-white);
  }
  .info_btn:hover::after {
    background-color: var(--color-white);
  }
}

@media screen and (max-width: 896px) {
  .sec_info {
    padding-bottom: 8rem;
    background-image: url(../img/recruit_info_bg_sp.svg);
  }
  .info_entry {
    margin-top: 4rem;
  }
  .info_entry a {
    font-size: 1.5rem;
    height: 4.2rem;
  }

  /* SP Toggle */
  .info_tab_lst {
    display: block;
    margin-top: 4rem;
    border-radius: calc(10 / 16 * 1.6rem);
    overflow: hidden;
  }
  .info_tab_lst + .info_tab_lst {
    margin-top: 1rem;
  }
  .info_tab_itm {
    width: 100%;
    height: 100%;
    padding: 2rem 5rem 2rem 1.5rem;
    border-radius: unset;
  }
  .info_tab_lst:nth-child(1) {
    border: 0.1rem solid var(--color-orange);
  }
  .info_tab_lst:nth-child(2) {
    border: 0.1rem solid var(--color-aqua);
  }
  .info_tab_lst:nth-child(3) {
    border: 0.1rem solid var(--color-green);
  }
  .info_tab_lst:nth-child(1) .info_tab_itm {
    border: unset;
  }
  .info_tab_lst:nth-child(2) .info_tab_itm {
    border: unset;
  }
  .info_tab_lst:nth-child(3) .info_tab_itm {
    border: unset;
  }
  .info_box.info_box__01 {
    border-top: unset;
  }
  .info_box.info_box__02 {
    border-top: unset;
  }
  .info_box.info_box__03 {
    border-top: unset;
  }
  .info_tab_lst:nth-child(1) .info_tab_itm.js_open {
    background-color: var(--color-orange);
  }
  .info_tab_lst:nth-child(2) .info_tab_itm.js_open {
    background-color: var(--color-aqua);
  }
  .info_tab_lst:nth-child(3) .info_tab_itm.js_open {
    background-color: var(--color-green);
  }
  /* pulldown */
  .info_pulldown_btn {
    position: absolute;
    display: inline-block;
    width: 3.6rem;
    height: 2.2rem;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 1.5rem;
    border-radius: var(--bdrs-infinite);
  }
  .info_pulldown_btn::before,
  .info_pulldown_btn::after {
    display: block;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    transition: all 0.3s linear;
  }
  .info_pulldown_btn::before {
    width: 10px;
    height: 2px;
  }
  .info_pulldown_btn::after {
    width: 2px;
    height: 10px;
  }
  .js_open .info_pulldown_btn {
    background-color: var(--color-white);
  }
  .js_open .info_pulldown_btn::before {
    display: none;
  }
  .js_open .info_pulldown_btn::after {
    transition: all 0.3s linear;
    -webkit-transform: rotate(90deg) translateY(0px);
    transform: rotate(90deg) translateY(0px);
  }
  .info_tab_ttl {
    font-size: 2rem;
  }
  .js_open .info_tab_ttl {
    color: var(--color-white);
  }
  .info_tab_lst:nth-child(1) .js_open .info_tab_ttl_en {
    color: var(--color-white);
  }
  .info_tab_lst:nth-child(1) .info_tab_ttl_en {
    color: var(--color-orange);
  }
  .info_tab_lst:nth-child(1) .info_pulldown_btn {
    background-color: var(--color-orange);
    border: 0.1rem solid var(--color-orange);
  }
  .info_tab_lst:nth-child(1) .js_open .info_pulldown_btn {
    background-color: var(--color-white);
  }
  .info_tab_lst:nth-child(1) .js_open .info_pulldown_btn::after {
    background-color: var(--color-orange);
  }
  .info_tab_lst:nth-child(2) .js_open .info_tab_ttl_en {
    color: var(--color-white);
  }
  .info_tab_lst:nth-child(2) .info_tab_ttl_en {
    color: var(--color-aqua);
  }
  .info_tab_lst:nth-child(2) .info_pulldown_btn {
    background-color: var(--color-aqua);
    border: 0.1rem solid var(--color-aqua);
  }
  .info_tab_lst:nth-child(2) .js_open .info_pulldown_btn {
    background-color: var(--color-white);
  }
  .info_tab_lst:nth-child(2) .js_open .info_pulldown_btn::after {
    background-color: var(--color-aqua);
  }
  .info_tab_lst:nth-child(3) .js_open .info_tab_ttl_en {
    color: var(--color-white);
  }
  .info_tab_lst:nth-child(3) .info_tab_ttl_en {
    color: var(--color-green);
  }
  .info_tab_lst:nth-child(3) .info_pulldown_btn {
    background-color: var(--color-green);
    border: 0.1rem solid var(--color-green);
  }
  .info_tab_lst:nth-child(3) .js_open .info_pulldown_btn {
    background-color: var(--color-white);
  }
  .info_tab_lst:nth-child(3) .js_open .info_pulldown_btn::after {
    background-color: var(--color-green);
  }


  .info_tab_lst:nth-child(1).js_open .info_tab_ttl_en,
  .info_tab_lst:nth-child(2).js_open .info_tab_ttl_en,
  .info_tab_lst:nth-child(3).js_open .info_tab_ttl_en {
    color: var(--color-white);
  }
  .info_tab_lst:nth-child(1).js_open .info_tab_itm {
    background-color: var(--color-orange);
  }
  .info_tab_lst:nth-child(2).js_open .info_tab_itm {
    background-color: var(--color-aqua);
  }
  .info_tab_lst:nth-child(3).js_open .info_tab_itm {
    background-color: var(--color-green);
  }
  .info_tab_lst:nth-child(1).js_open .info_pulldown_btn,
  .info_tab_lst:nth-child(2).js_open .info_pulldown_btn,
  .info_tab_lst:nth-child(3).js_open .info_pulldown_btn {
    background-color: var(--color-white);
  }
  .info_tab_lst:nth-child(1).js_open .info_pulldown_btn::after {
    background-color: var(--color-orange);
  }
  .info_tab_lst:nth-child(2).js_open .info_pulldown_btn::after {
    background-color: var(--color-aqua);
  }
  .info_tab_lst:nth-child(3).js_open .info_pulldown_btn::after {
    background-color: var(--color-green);
  }

  /* SP Toggle Contents */
  .info_box_itm {
    padding: 4rem 2rem;
  }
  .info_box_itm_ttl {
    font-size: 1.6rem;
    padding-bottom: 3rem;
  }
  .info_box_itm_details_row {
    flex-direction: column;
    gap: 1rem;
  }
  .info_box_itm_details_ttl {
    width: 100%;
    font-size: 1.4rem;
    padding-bottom: 1.5rem;
  }
  .info_box_itm_details_txt {
    padding-bottom: 0;
    font-size: 1.4rem;
    border-bottom: unset;
  }
}
/* ===============================
          Entry
  =============================== */
.sec_entry {
  position: relative;
  margin-top: calc((100vw / var(--vw-value-lg)) * -120);
  padding: 32rem 0 21.6rem;
  background-image: url(../img/entry_bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 3;
}
.sec_entry::after {
  position: absolute;
  content: "";
  width: 100%;
  height: auto;
  bottom: 0;
  background-image: url(../img/entry_bg_btm.svg);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1400 / 450;
}
.entry_lead {
  position: relative;
}
.entry_lead::before,
.entry_lead::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
}
.entry_lead::before {
  width: 8.7rem;
  height: 17.5rem;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-image: url(../img/entry_img_01.svg);
}
.entry_lead::after {
  width: 10.1rem;
  height: 18.8rem;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background-image: url(../img/entry_img_02.svg);
}
.entry_lst {
  position: relative;
  display: flex;
  max-width: 1110px;
  margin: 6rem auto 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6rem;
  z-index: 1;
}
.entry_itm {
  width: 100%;
  max-width: 520px;
  background-image: url(../img/entry_bg_01.svg);
  border-radius: calc(80 / 16 * 1.6rem);
}
.entry_itm::before {
  width: 8rem;
  height: 24rem;
  left: -5rem;
  bottom: -5rem;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
.entry_itm.entry_itm__front::before {
  width: 8rem;
  height: 24rem;
  left: -5rem;
  bottom: -5rem;
  background-image: url(../img/entry_icon_01.svg);
}
.entry_itm.entry_itm__cook::before {
  width: 8rem;
  height: 24rem;
  right: -5rem;
  left: auto;
  bottom: -5rem;
  background-image: url(../img/entry_icon_02.svg);
}
.entry_itm.entry_itm__facility::before {
  width: 8rem;
  height: 24rem;
  left: -5rem;
  bottom: -5rem;
  background-image: url(../img/entry_icon_03.svg);
}
.entry_itm a {
  position: relative;
  display: flex;
  padding: 1.4rem 5rem 5rem;
  flex-direction: column;
  align-items: center;
}
.entry_itm:nth-child(2) {
  background-image: url(../img/entry_bg_02.svg);
}
.entry_itm:nth-child(3) {
  background-image: url(../img/entry_bg_03.svg);
}
.entry_itm_ttl_en {
  color: var(--color-white);
  line-height: 1;
}
.entry_itm_ttl_en .u_ic::before,
.entry_itm_ttl_en .u_ic::after {
  content: "";
  width: 1rem;
  height: 1rem;
  top: 0;
  bottom: 0;
  background-color: var(--color-white);
  border-radius: 50%;
}
.entry_itm_ttl_en .u_ic::before {
  left: -2.5rem;
}
.entry_itm_ttl_en .u_ic::after {
  left: auto;
  right: -2.5rem;
}
.entry_itm_img {
  max-width: 420px;
  margin-top: 2rem;
  border-radius: calc(40 / 16 * 1.6rem);
}
.entry_itm_txt {
  position: absolute;
  display: inline-block;
  padding: 0 1rem;
  bottom: 4rem;
  left: 4rem;
  color: var(--color-text);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.5;
  background-color: var(--color-white);
  border-radius: calc(6 / 16 * 1.6rem);
}
.entry_itm__front .entry_itm_txt__01 {
  bottom: 8rem;
  border-radius: calc(6 / 16 * 1.6rem) calc(6 / 16 * 1.6rem) 0px calc(6 / 16 * 1.6rem);
}
.entry_itm__front .entry_itm_txt__02 {
  left: 5.5rem;
  border-radius: 0 calc(6 / 16 * 1.6rem) calc(6 / 16 * 1.6rem) calc(6 / 16 * 1.6rem);
}
.entry_itm_circle {
  position: absolute;
  width: 11rem;
  height: 11rem;
  background-color: var(--color-white);
  border-radius: 50%;
  right: 2rem;
  bottom: 2rem;
}
.entry_itm_circle::before {
  content: "";
  display: block;
  width: 11rem;
  height: 11rem;
  mask-image: url(../img/entry_btn.svg);
  mask-size: cover;
  background-color: var(--color-text);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  animation: rotate 5s linear infinite;
  transition: var(--transition);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (any-hover: hover) {
  .entry_itm__front a:hover .entry_itm_circle::before {
    background-color: var(--color-orange);
  }
  .entry_itm__cook a:hover .entry_itm_circle::before {
    background-color: var(--color-aqua);
  }
  .entry_itm__facility a:hover .entry_itm_circle::before {
    background-color: var(--color-green);
  }
}

@media screen and (max-width: 1140px) {
  .entry_lst {
    gap: 4rem;
  }
}

@media screen and (max-width: 896px) {
  .sec_entry {
    padding: 12rem 0 8rem;
    overflow: hidden;
    background-image: url(../img/entry_bg_sp.svg);
  }
  .sec_entry::before {
    width: 100%;
    height: 100%;
    top: -3.8rem;
    background-size: contain;
  }
  .entry_lead::before {
    width: 4.4rem;
    height: fit-content;
    top: -12rem;
    bottom: auto;
    background-size: contain;
    aspect-ratio: 87 / 135;
  }
  .entry_lead::after {
    width: 5rem;
    height: fit-content;
    top: -12rem;
    bottom: auto;
    background-size: contain;
    aspect-ratio: 102 / 188;
  }
  .entry_itm {
    max-width: 310px;
    border-radius: calc(40 / 16 * 1.6rem);
  }
  .entry_itm.entry_itm__front::before {
    width: 8rem;
    height: 12rem;
    left: -2rem;
    bottom: -2rem;
  }
  .entry_itm.entry_itm__cook::before {
    width: 8rem;
    height: 12rem;
    right: -6rem;
    bottom: 6rem;
  }
  .entry_itm.entry_itm__facility::before {
    width: 8rem;
    height: 12rem;
    left: -2rem;
    bottom: -2rem;
  }
  .entry_itm_img {
    max-width: 100%;
    border-radius: calc(20 / 16 * 1.6rem);
  }
  .entry_itm a {
    padding: 1rem 3rem 3rem;
  }
  .entry_itm_img {
    margin-top: 1.2rem;
  }
  .entry_itm_ttl_en {
    font-size: 1.2rem;
  }
  .entry_itm_txt {
    font-size: 1.8rem;
    border-radius: calc(4 / 16 * 1.6rem);
    left: 2rem;
    bottom: 2rem;
  }
  .entry_itm__front .entry_itm_txt__01 {
    bottom: 4.6rem;
  }
  .entry_itm__front .entry_itm_txt__02 {
    left: 3rem;
  }
  .entry_itm_circle {
    width: 9rem;
    height: 9rem;
    right: -1rem;
    bottom: -1rem;
  }
  .entry_itm_circle::before {
    width: 9rem;
    height: 9rem;
  }
}
