@charset "UTF-8";
/**
 * レスポンシブフォントサイズをclamp()で生成する（PC版）
 * @param {Number} $max-px - PCなど最大画面幅でのフォントサイズ (px)
 * @param {Number | null} $min-px - SPなど最小画面幅でのフォントサイズ (px)。省略した場合は$max-pxの0.8倍になる。
 * @return {String} clamp(min, preferred, max)
 */
/**
 * レスポンシブフォントサイズをclamp()で生成する（SP版 375px-768px）
 * @param {Number} $max-px - 768px時点でのフォントサイズ (px)
 * @param {Number | null} $min-px - 375px時点でのフォントサイズ (px)。省略した場合は$max-pxの0.8倍になる。
 * @return {String} clamp(min, preferred, max)
 */
/**
 * デザインカンプのpx値をvwに変換する
 * @param {Number} $px - デザインカンプ上のpx値
 * @return {String} vw値
 * @example vw(200) => 53.33333vw (375pxカンプで200pxの場合)
 */
:root {
  --spW: 94%;
  --f-en: "YakuHanJP", "din-2014", sans-serif;
  --f-ja: "YakuHanJP", "Noto Sans JP", sans-serif;
  --f-serif: "Zen Old Mincho", serif;
}

.container {
  font-family: var(--f-ja);
  padding-top: 80px;
  overflow: clip;
}

.dib {
  display: inline-block;
}

/*******イントロ*******/
html {
  scrollbar-gutter: stable;
}

body {
  overflow: hidden;
  scrollbar-gutter: stable;
}

#sp-action {
  width: 94.6666666667vw;
  right: 0;
  margin: auto;
  transform: translateY(0);
}
#sp-action .sp-actionList__item--entry {
  display: none;
}
#sp-action .sp-actionList__item--reserve {
  letter-spacing: 0.1em;
}
#sp-action .sp-actionList__item--reserve::before {
  content: none;
}

#page-top {
  bottom: 65px;
}

.loading {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  cursor: default;
  z-index: 10000;
  background: #1a1361;
  transition: all 0.6s ease-out;
}

.loading .loading_text {
  width: 28%;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease-out;
  opacity: 0;
}

.loading_on .loading .loading_text {
  opacity: 1;
}

.loading_off .loading {
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  .loading .loading_text {
    width: 88%;
  }
}
/****MV*****/
.mv_wrapp {
  position: relative;
  margin-bottom: 0px;
  background: linear-gradient(105deg, rgb(27, 20, 99) 0%, rgb(25, 18, 92) 25%, rgb(11, 8, 41) 100%);
}
.mv_wrapp .mv_badge {
  position: absolute;
  z-index: 10;
  right: 8px;
  bottom: 20px;
  max-width: 230px;
  width: 15%;
  aspect-ratio: 461/454;
  opacity: 0;
  transition-timing-function: ease-out;
  transition-duration: 1s;
  transition-property: opacity, filter;
  transition-delay: 1.2s;
  filter: blur(10px) brightness(3);
}
.mv_wrapp .mv_badge.on {
  opacity: 1;
  filter: blur(0) brightness(1);
}
@media screen and (max-width: 768px) {
  .mv_wrapp .mv_badge {
    width: 32vw;
  }
}
.mv_wrapp .mv_badge_left {
  right: auto;
  left: 12px;
}

.mv .mv_fade {
  opacity: 0;
  transition: all 0.6s ease-out;
}
.mv .mv_fade.on {
  opacity: 1;
}
.mv .swiper-slide {
  width: 100%;
  position: relative;
}
.mv .mv_text {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  z-index: 2;
  opacity: 0;
  transform: scale(1.15);
  transition-timing-function: ease-out;
  transition-duration: 1s;
  transition-property: opacity, transform, filter;
  transition-delay: 0.5s;
}
.mv .mv1_text {
  max-width: 500px;
  width: 50%;
  top: 10%;
  left: 0;
  right: 0;
  filter: blur(20px) drop-shadow(0 0 30px rgb(255, 255, 255)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 90px rgba(255, 255, 255, 0.7));
}
.mv .mv2_text {
  max-width: 360px;
  width: 36%;
  top: 0;
  bottom: 12%;
  left: 55%;
  right: 0;
}
.mv .mv3_text {
  max-width: 450px;
  width: 40%;
  top: 26%;
  left: 0;
  right: 0;
  filter: blur(20px) drop-shadow(0 0 30px rgb(255, 255, 255)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 90px rgba(255, 255, 255, 0.7));
}
.mv .mv3_text picture {
  width: 100%;
}
.mv .swiper-slide .cap {
  position: absolute;
  left: 2em;
  bottom: 1em;
  font-size: 11px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5), -1px 1px 2px rgba(0, 0, 0, 0.5), 1px -1px 2px rgba(0, 0, 0, 0.5), -1px -1px 2px rgba(0, 0, 0, 0.5);
}
.mv .swiper-slide .cap.cap_right {
  left: auto;
  right: 2em;
}
.mv .swiper-slide img {
  height: auto;
  width: 100%;
  max-width: inherit;
  vertical-align: bottom;
}
.mv .swiper-slide-active .mv_text {
  opacity: 1;
  filter: blur(0px) drop-shadow(0 0 30px rgb(255, 255, 255)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 90px rgba(255, 255, 255, 0.7));
  transform: scale(1);
  transition-delay: 1.5s;
}
.mv.first .slide1 .mv1_text {
  transition-delay: 3s;
}
.mv.first .slide1 .mv_badge {
  transition-delay: 3s;
}
.mv.first .slide3 .mv3_text {
  transition-delay: 3s;
}
.mv.first .slide3 .mv_badge {
  transition-delay: 3s;
}
@media screen and (max-width: 768px) {
  .mv .mv1_text {
    max-width: inherit;
    width: 77.3333333333vw;
    top: 17.3333333333vw;
  }
  .mv .mv1_text img {
    width: 77.3333333333vw;
  }
  .mv .mv2_text {
    max-width: inherit;
    width: 66.6666666667vw;
    top: 16vw;
    bottom: auto;
    left: 0;
    right: 0;
  }
  .mv .mv2_text img {
    width: 66.6666666667vw;
  }
  .mv .mv3_text {
    max-width: inherit;
    width: 77.3333333333vw;
    top: 34.6666666667vw;
    left: 0;
    right: 0;
    text-align: center;
  }
  .mv .swiper-slide .cap {
    left: 1em;
    bottom: 0.5em;
    font-size: 10px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .mv .swiper-slide .cap.cap_right {
    left: auto;
    right: 1em;
  }
}

.intro {
  padding: 60px 0;
  background-color: #1a1460;
}
@media screen and (max-width: 768px) {
  .intro {
    padding: 10px 0 40px;
  }
}
.intro .intro_in {
  max-width: 1200px;
  margin: 0 auto;
  width: var(--spW);
}
@media screen and (max-width: 768px) {
  .intro .intro_in {
    width: 100%;
  }
}
.intro .intro_head {
  margin-bottom: 60px;
}
.intro .intro_head .intro_txts {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.intro .intro_head .intro_txt {
  padding: 0 3.225%;
}
.intro .intro_head .intro_txt:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
.intro .intro_head .intro_txt01 {
  flex: 344;
}
.intro .intro_head .intro_txt02 {
  flex: 322;
}
.intro .intro_head .intro_txt03 {
  flex: 300;
}
@media screen and (max-width: 768px) {
  .intro .intro_head {
    max-width: 550px;
    width: var(--spW);
    margin: 0 auto 0;
  }
  .intro .intro_head .intro_txts {
    display: block;
    margin-bottom: 15px;
  }
  .intro .intro_head .intro_txt {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .intro .intro_head .intro_txt:not(:first-child) {
    border-left: none;
  }
  .intro .intro_head .intro_txt03 {
    display: none;
  }
}
.intro .intro_bottom {
  padding: 60px 0;
  background-color: #171256;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.intro .intro_bottom .intro_bottom_in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 45px;
  max-width: 1000px;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .intro .intro_bottom {
    padding: 0;
    background-color: transparent;
    border: none;
    text-align: center;
  }
  .intro .intro_bottom .intro_bottom_in {
    display: block;
    max-width: 500px;
  }
}
.intro .intro_badge_wrapp {
  min-width: 300px;
}
.intro .intro_badge_wrapp p {
  color: #fff;
  font-family: var(--f-serif);
  font-size: clamp(17px, 11.6666666667px + 0.6944444444vw, 20px);
  line-height: 1.55;
  margin-bottom: 20px;
  padding-left: 3%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 768px) {
  .intro .intro_badge_wrapp {
    min-width: inherit;
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
  }
  .intro .intro_badge_wrapp p {
    margin-bottom: 15px;
    font-size: clamp(15px, -3px + 4.8vw, 21px);
    display: none;
  }
}
.intro .intro_bnr_wrapp .intro_bnr {
  position: relative;
  z-index: 2;
  margin-bottom: 0px;
}
.intro .intro_bnr_wrapp .intro_bnr.seminar {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .intro .intro_bnr_wrapp .intro_bnr.seminar {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .intro .intro_bnr_wrapp .intro_bnr {
    margin-bottom: 0px;
  }
}
.intro .intro_bnr_wrapp .intro_bnr::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.intro .intro_bnr_wrapp .intro_bnr img {
  transition: 0.3s;
}
.intro .intro_bnr_wrapp .intro_bnr:hover img {
  opacity: 0.8;
}
.intro .intro_bnr_wrapp .intro_cv {
  position: relative;
  z-index: 2;
}
.intro .intro_bnr_wrapp .intro_cv::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.intro .intro_bnr_wrapp .intro_cv .button {
  background: linear-gradient(90deg, #ac9262 0%, #aa9060 0%, #886b34 100%);
  font-size: clamp(16px, 5.3333333333px + 1.3888888889vw, 22px);
  gap: 0.5em;
}
.intro .intro_bnr_wrapp .intro_cv .button:hover {
  opacity: 0.8;
}
.intro .intro_bnr_wrapp .intro_cv .button .button__icon {
  position: static;
  transform: translateY(2px);
}
@media screen and (max-width: 768px) {
  .intro .intro_bnr_wrapp .intro_cv {
    display: none;
  }
}

.ttl {
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.ttl .en {
  font-family: var(--f-serif);
  color: #886b34;
  font-size: clamp(16.8px, 9.3333333333px + 0.9722222222vw, 21px);
}
.ttl .ja {
  color: #0b1336;
  font-size: clamp(23px, 17.6666666667px + 0.6944444444vw, 26px);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .ttl {
    margin-bottom: 20px;
  }
  .ttl .en {
    font-size: clamp(15px, -3px + 4.8vw, 21px);
  }
  .ttl .ja {
    font-size: clamp(18px, 3px + 4vw, 23px);
  }
}

.top_button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 80px;
  margin-inline: auto;
  background-color: #0b1336;
  border: 2px solid #0b1336;
  color: #fff;
  font-size: clamp(16px, 8.8888888889px + 0.9259259259vw, 20px);
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1em;
  transition: 0.3s;
}
.top_button:hover {
  background-color: #fff;
  color: #0b1336;
}
@media screen and (max-width: 768px) {
  .top_button {
    max-width: 500px;
    width: 100%;
    height: 60px;
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .section_in {
    max-width: 500px;
    width: 90%;
    margin: auto;
  }
}

/* プランセクションのスタイル */
.plan {
  margin: 100px 0;
}
@media screen and (max-width: 768px) {
  .plan {
    margin: 40px 0;
  }
}
.plan .plan_slider-wrapper {
  position: relative;
}
@media screen and (max-width: 768px) {
  .plan .plan_slider-wrapper {
    margin-bottom: 15px;
  }
}
.plan .plan_slider {
  position: relative;
  max-width: 980px;
  margin: 0 auto 10px;
  width: var(--spW);
  color: #000;
}
@media screen and (max-width: 768px) {
  .plan .plan_slider {
    width: 100%;
    overflow: hidden;
    margin: 0 auto 5px;
  }
}
.plan .plan_card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
.plan .plan_card:hover {
  opacity: 0.7;
}
.plan .plan_note {
  max-width: 1200px;
  width: var(--spW);
  margin: 0 auto 50px;
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .plan .swiper-wrapper {
    display: flex;
  }
  .plan .plan-pagination,
  .plan .plan-button-prev,
  .plan .plan-button-next {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .plan .swiper-button-prev,
  .plan .swiper-button-next {
    top: 50%;
    transform: translateY(-60%);
    width: clamp(15px, 4.8vw, 22px);
    aspect-ratio: 13/26;
    height: auto;
    border-radius: 99em;
    transition: opacity 0.3s;
    filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.2)) drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.2));
  }
  .plan .swiper-button-prev::after,
  .plan .swiper-button-next::after {
    content: "";
  }
  .plan .swiper-button-prev:hover,
  .plan .swiper-button-next:hover {
    opacity: 0.8;
  }
  .plan .swiper-button-prev {
    left: -3.5%;
    background: url(../images/top_rere/plan_icon_arrowL.svg) no-repeat center center;
    background-size: contain;
  }
  .plan .swiper-button-next {
    right: -3.5%;
    background: url(../images/top_rere/plan_icon_arrowR.svg) no-repeat center center;
    background-size: contain;
  }
  .plan .swiper-pagination {
    position: static;
  }
  .plan .swiper-pagination-bullet {
    margin: 0 6px;
  }
  .plan .swiper-pagination-bullet-active {
    background: #1a1460;
  }
  .plan .plan_note {
    font-size: 11px;
    margin-bottom: 0;
  }
}

/* モデルルームセクションのスタイル */
.modelroom {
  position: relative;
  margin: 100px auto 80px;
  text-align: center;
}
.modelroom .modelroom_slider-wrapper {
  position: relative;
  max-width: 1000px;
  width: calc(100% - 40px);
  margin: 0 auto 30px;
  padding: 0 80px;
}
.modelroom .modelroom_slider-wrapper .modelroom_slider {
  position: relative;
  margin: 0 auto 10px;
  overflow: hidden;
}
.modelroom .modelroom_slider-wrapper .swiper-button-prev,
.modelroom .modelroom_slider-wrapper .swiper-button-next {
  top: calc(50% - 30px);
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 99em;
  transition: opacity 0.3s, transform 0.3s;
}
.modelroom .modelroom_slider-wrapper .swiper-button-prev::after,
.modelroom .modelroom_slider-wrapper .swiper-button-next::after {
  content: "";
}
.modelroom .modelroom_slider-wrapper .swiper-button-prev:hover,
.modelroom .modelroom_slider-wrapper .swiper-button-next:hover {
  opacity: 0.8;
}
.modelroom .modelroom_slider-wrapper .swiper-button-prev {
  left: 0;
  background: url(../images/top_rere/modelroom_icon_arrowL.svg) no-repeat center center;
  background-size: contain;
}
.modelroom .modelroom_slider-wrapper .swiper-button-prev:hover {
  transform: translateX(-5px);
}
.modelroom .modelroom_slider-wrapper .swiper-button-next {
  right: 0;
  background: url(../images/top_rere/modelroom_icon_arrowR.svg) no-repeat center center;
  background-size: contain;
}
.modelroom .modelroom_slider-wrapper .swiper-button-next:hover {
  transform: translateX(5px);
}
.modelroom .modelroom_slider-wrapper .swiper-pagination {
  position: static;
}
.modelroom .modelroom_slider-wrapper .swiper-pagination-bullet {
  margin: 0 6px;
}
.modelroom .modelroom_slider-wrapper .swiper-pagination-bullet-active {
  background: #1a1460;
}
.modelroom .note_link {
  display: inline-block;
  margin-top: 0.5em;
  text-decoration: underline;
  text-align: center;
  font-size: clamp(16px, 8.8888888889px + 0.9259259259vw, 20px);
}
.modelroom .note_link:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .modelroom {
    margin: 40px 0 40px;
  }
  .modelroom .ttl {
    text-align: left;
  }
  .modelroom .modelroom_slider-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    padding: 0;
  }
  .modelroom .modelroom_slider-wrapper .modelroom_slider {
    margin-bottom: 0;
  }
  .modelroom .modelroom_slider-wrapper .swiper-button-prev,
  .modelroom .modelroom_slider-wrapper .swiper-button-next {
    top: 50%;
    transform: translateY(-35%);
    width: clamp(30px, 11.7333333333vw, 50px);
    height: auto;
  }
  .modelroom .modelroom_slider-wrapper .swiper-button-prev {
    left: -5%;
  }
  .modelroom .modelroom_slider-wrapper .swiper-button-prev:hover {
    transform: translateX(0) translateY(-35%);
  }
  .modelroom .modelroom_slider-wrapper .swiper-button-next {
    right: -5%;
  }
  .modelroom .modelroom_slider-wrapper .swiper-button-next:hover {
    transform: translateX(0) translateY(-35%);
  }
  .modelroom .note_link {
    margin-top: 0.75em;
    font-size: clamp(12.8px, 3.2px + 2.56vw, 16px);
  }
}

/* 動画セクションのスタイル */
.movie_section {
  background-color: #ededed;
  padding: 70px 0 90px;
}
.movie_section .movie_wrapp {
  max-width: 900px;
  width: var(--spW);
  margin: 0 auto 40px;
}
.movie_section .youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.movie_section .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .movie_section {
    padding: 35px 0 40px;
  }
  .movie_section .ttl {
    text-align: left;
  }
  .movie_section .movie_wrapp {
    width: 100%;
    margin: 0 auto 25px;
  }
}

/* アクセスセクションのスタイル */
.access {
  margin: 100px 0;
}
.access .access_lead {
  text-align: center;
  margin-bottom: 30px;
  font-size: clamp(17px, 11.6666666667px + 0.6944444444vw, 20px);
  line-height: 1.5;
}
.access .access_img {
  max-width: 1000px;
  width: var(--spW);
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  .access {
    margin: 40px 0;
  }
  .access .ttl {
    text-align: left;
    margin-bottom: 10px;
  }
  .access .access_lead {
    text-align: left;
    margin-bottom: 20px;
    font-size: clamp(14px, 5px + 2.4vw, 17px);
    line-height: 1.5;
  }
  .access .access_img {
    width: 100%;
    margin: 0 auto 25px;
  }
}

.concept {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 7%;
  padding-bottom: 46.5%;
}
.concept::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
.concept .concept_bg {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 1.8s ease-out;
  opacity: 0;
  filter: blur(6px) brightness(300%);
}
.concept .concept_bg.is-active {
  opacity: 1;
  filter: blur(0px) brightness(100%);
}
.concept .cap {
  position: absolute;
  right: 1em;
  bottom: 1em;
  color: #fff;
  font-size: 11px;
}
.concept .concept_in {
  position: relative;
  width: 100%;
  text-align: center;
  font-family: var(--f-serif);
}
@media screen and (max-width: 768px) {
  .concept {
    padding-top: 50px;
    padding-bottom: 104vw;
  }
  .concept::before {
    content: none;
  }
  .concept .cap {
    position: absolute;
    right: 1em;
    bottom: 0.5em;
    font-size: 10px;
  }
}

.concept .concept_ttl {
  position: relative;
  z-index: 2;
  margin-bottom: 45px;
  font-size: clamp(20px, 11.1111111111px + 1.1574074074vw, 25px);
  color: #0b1336;
  letter-spacing: 0.1em;
}
.concept .concept_ttl span {
  display: block;
  font-size: clamp(30px, 24.6666666667px + 0.6944444444vw, 33px);
}
.concept .concept_ttl span small {
  position: relative;
  top: -2px;
  padding: 0 0.35em;
}
@media screen and (max-width: 768px) {
  .concept .concept_ttl {
    margin-bottom: 20px;
    font-size: clamp(16px, 4px + 3.2vw, 20px);
    line-height: 1.6;
  }
  .concept .concept_ttl span {
    font-size: clamp(21px, 0px + 5.6vw, 28px);
  }
}

.concept .deve_logo {
  width: 90%;
  max-width: 820px;
  margin: 0 auto 35px;
}
.concept .deve_logo img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .concept .deve_logo {
    max-width: 500px;
    margin-bottom: 20px;
  }
  .concept .deve_logo img {
    width: 89.3333333333vw;
  }
}

.concept .concept_texts {
  color: #0b1336;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
}
.concept .concept_texts .concept_catch {
  margin-bottom: 20px;
  font-size: clamp(22.4px, 12.4444444444px + 1.2962962963vw, 28px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.concept .concept_texts .concept_text p + p {
  display: block;
  margin-top: 1.25em;
}
@media screen and (max-width: 768px) {
  .concept .concept_texts {
    font-size: clamp(13px, 4px + 2.4vw, 16px);
    line-height: 2;
    letter-spacing: 0.04em;
  }
  .concept .concept_texts .concept_catch {
    margin-bottom: 12px;
    font-size: clamp(18px, 3px + 4vw, 23px);
  }
  .concept .concept_texts .concept_text p + p {
    margin-top: 0.85em;
  }
}

/* エントリーセクションのスタイル */
.entry_section {
  background-color: #ededed;
  padding: 90px 0 100px;
}
.entry_section .entry_section_in {
  max-width: 900px;
  width: var(--spW);
  margin: 0 auto;
  text-align: center;
}
.entry_section .entry_ttl {
  margin-bottom: 10px;
  color: #0b1336;
  font-family: var(--f-serif);
  font-size: clamp(24px, 13.3333333333px + 1.3888888889vw, 30px);
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.entry_section .entry_text {
  margin-bottom: 40px;
  color: #0b1336;
  font-size: clamp(14.4px, 8px + 0.8333333333vw, 18px);
  font-family: var(--f-serif);
  line-height: 1.7;
}
.entry_section .button_wrapp .button {
  background: linear-gradient(to right, #015f9f, #133365);
  font-size: clamp(16px, 5.3333333333px + 1.3888888889vw, 22px);
  gap: 0.5em;
  width: 400px;
  height: 90px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.entry_section .button_wrapp .button:hover {
  opacity: 0.8;
}
.entry_section .button_wrapp .button .button__icon {
  position: static;
  transform: translateY(1px);
}
.entry_section .button_wrapp .button .button__icon img {
  filter: brightness(0) invert(1);
  width: 24px;
}
.entry_section.sp_only {
  display: none;
}
@media screen and (max-width: 768px) {
  .entry_section {
    padding: 35px 0 40px;
  }
  .entry_section .entry_section_in {
    max-width: 500px;
    width: 90%;
    margin: auto;
  }
  .entry_section .entry_ttl {
    margin-bottom: 15px;
    font-size: clamp(20px, 8px + 3.2vw, 24px);
  }
  .entry_section .entry_text {
    margin-bottom: 20px;
    font-size: clamp(13px, 7px + 1.6vw, 15px);
  }
  .entry_section .button_wrapp .button {
    width: 100%;
    height: 60px;
  }
  .entry_section.sp_only {
    display: block;
    padding-bottom: 45px;
    color: #fff;
    background: linear-gradient(45deg, #1a1460 0%, #120d44 100%);
  }
  .entry_section.sp_only .entry_ttl {
    margin-bottom: 20px;
    color: #fff;
  }
  .entry_section.sp_only .button_wrapp {
    position: relative;
  }
  .entry_section.sp_only .button_wrapp::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
  }
  .entry_section.sp_only .button_wrapp .button {
    background: linear-gradient(90deg, #ac9262 0%, #aa9060 0%, #886b34 100%);
    gap: 0.5em;
  }
  .entry_section.sp_only .button_wrapp .button:hover {
    opacity: 0.8;
  }
}

/* OTHER CONTENTS */
.other_contents {
  margin: 100px 0;
}
.other_contents .other_contents_in {
  max-width: 1200px;
  width: var(--spW);
  margin: 0 auto;
}
.other_contents .contents_ttl {
  font-family: var(--f-serif);
  color: #886b34;
  font-size: clamp(19px, 13.6666666667px + 0.6944444444vw, 22px);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.08em;
}
.other_contents .contents_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.other_contents .contents_list a {
  display: block;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.other_contents .contents_list a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 31px;
  aspect-ratio: 31/24;
  background: url(../images/top_rere/contents_icon_arrow.svg) no-repeat center center;
  background-size: contain;
  transition: right 0.3s ease;
}
.other_contents .contents_list a:hover .contents_item_img img {
  transform: scale(1.1);
  filter: brightness(1.4);
}
.other_contents .contents_list .contents_item_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.other_contents .contents_list .contents_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
  transition: 0.5s ease;
}
.other_contents .contents_list .contents_item_text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 2;
  font-family: var(--f-serif);
  line-height: 1.4;
}
.other_contents .contents_list .contents_item_text .en {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(15px, 13.2222222222px + 0.2314814815vw, 16px);
  letter-spacing: 0.05em;
  font-weight: 300;
}
.other_contents .contents_list .contents_item_text .ja {
  font-size: clamp(16px, 8.8888888889px + 0.9259259259vw, 20px);
  font-family: var(--f-ja);
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .other_contents {
    margin: 40px 0 50px;
  }
  .other_contents .other_contents_in {
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
  }
  .other_contents .contents_ttl {
    font-size: clamp(16px, 7px + 2.4vw, 19px);
    margin-bottom: 20px;
  }
  .other_contents .contents_list {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .other_contents .contents_list a::after {
    top: 50%;
    right: 20px;
    width: 5.3333333333vw;
  }
  .other_contents .contents_list .contents_item_text {
    left: 20px;
  }
  .other_contents .contents_list .contents_item_text .en {
    margin-bottom: 4px;
    font-size: clamp(13px, 7px + 1.6vw, 15px);
  }
  .other_contents .contents_list .contents_item_text .ja {
    font-size: clamp(15px, 9px + 1.6vw, 17px);
  }
}

.fadein_up {
  transform: translateY(30px);
  opacity: 0;
  transition: all 1s ease-out;
  transition-delay: 0.2s;
}

.fadein_up.started {
  transform: none;
  opacity: 1;
}/*# sourceMappingURL=top_rere.css.map */