@charset "UTF-8";
/*=======================================
	breakpoint
=======================================*/
/*=======================================
	hover
=======================================*/
/*=======================================
	中央配置
=======================================*/
/*=======================================
	可変レスポンシブ
=======================================*/
/* PC */
/* TB */
/* SP */
/*=======================================
	ブラウザ別
=======================================*/
/* Safari */
/* Firefox */
/*-------------------------
- common
- fadein
- loading
- mv_sec
- newsBox
- point_area
- entry_area
- concept_sec
- cmn_section
- plan_sec
- pre-inc
- scroll-infinity
- bnr_area
-------------------------*/
/*=======================================
　common
=======================================*/
.splide_nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .splide_nav {
    padding: 0 16px;
  }
}
.splide_nav .pagination {
  font-family: "Noto Serif", serif;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  color: #C9C9C9;
}
@media screen and (max-width: 768px) {
  .splide_nav .pagination {
    font-size: 11px;
    -webkit-column-gap: 7px;
       -moz-column-gap: 7px;
            column-gap: 7px;
  }
}
.splide_nav .pagination .slide-current,
.splide_nav .pagination .slide-length {
  color: #45609a;
}
.splide_nav .pagination .slide-current.disabled,
.splide_nav .pagination .slide-length.disabled {
  pointer-events: none;
  color: #C9C9C9;
}

/* 矢印 */
.splide__arrows .button {
  background-color: transparent;
  width: 10px;
  height: 19px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .splide__arrows .button {
    width: 10px;
    height: 16px;
    top: 6px;
  }
}
.splide__arrows .button::before {
  content: "";
  background: url("../img/common/splide_arrow.svg") no-repeat;
  background-size: cover;
  width: 10px;
  height: 19px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .splide__arrows .button::before {
    width: 6px;
    height: 11px;
  }
}
.splide__arrows .button.prev {
  left: 0;
}
.splide__arrows .button.prev::before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}
.splide__arrows .button.next {
  right: 0;
}
.splide__arrows .button {
  /* 次のスライドが無い場合の矢印 */
}
.splide__arrows .button:disabled::before {
  -webkit-filter: brightness(0) saturate(100%) invert(67%) sepia(84%) saturate(1%) hue-rotate(357deg) brightness(104%) contrast(89%);
          filter: brightness(0) saturate(100%) invert(67%) sepia(84%) saturate(1%) hue-rotate(357deg) brightness(104%) contrast(89%);
}

/* view moreボタン */
.cmn_re_btn:has(.cmn_viewmore_btn) {
  margin-left: 0 !important;
}
@media screen and (max-width: 1024px) {
  .cmn_re_btn:has(.cmn_viewmore_btn) {
    margin-inline: auto !important;
  }
}
.cmn_re_btn .cmn_viewmore_btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.cmn_re_btn .cmn_viewmore_btn::after {
  width: 9px;
  height: 17px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 36px;
}
.cmn_re_btn .cmn_viewmore_btn a {
  display: block flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 300px;
  height: 80px;
  background: -webkit-gradient(linear, left top, right top, from(#89e2e2), to(#3352ac));
  background: linear-gradient(90deg, #89e2e2 0%, #3352ac 100%);
  padding-left: 46px;
}
@media screen and (max-width: 768px) {
  .cmn_re_btn .cmn_viewmore_btn a {
    width: 250px;
    height: 67px;
  }
}
.cmn_re_btn .cmn_viewmore_btn a img {
  width: 110px;
}
@media screen and (max-width: 768px) {
  .cmn_re_btn .cmn_viewmore_btn a img {
    width: 92px;
  }
}

/*=======================================
　fadein
=======================================*/
/* ぼやっと出てくる */
.filter_blur {
  -webkit-filter: blur(30px);
          filter: blur(30px);
  -webkit-transition: 1.2s cubic-bezier(0.61, 1, 0.88, 1);
  transition: 1.2s cubic-bezier(0.61, 1, 0.88, 1);
  will-change: filter;
}
.filter_blur.is-show {
  -webkit-filter: blur(0);
          filter: blur(0);
}

/*下から*/
.fadeIn_up {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.fadeIn_up.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

/*その場で出現*/
.fadeIn {
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.fadeIn.is-show {
  opacity: 1;
}

/*=======================================
　loading
=======================================*/
html:has(.is-loaded) {
  overflow-x: hidden;
}

body {
  overflow: hidden;
  -webkit-animation: fadeInBody 1.5s ease forwards 0s;
          animation: fadeInBody 1.5s ease forwards 0s;
  opacity: 0;
}
body.is-loaded {
  overflow-x: hidden;
  overflow-y: visible;
}

@-webkit-keyframes fadeInBody {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInBody {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100dvh;
  background: url("../img/top/loading_bg.jpg") no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  -webkit-animation: loadingFadeOut 1s ease forwards 8s;
          animation: loadingFadeOut 1s ease forwards 8s;
}
.loading .copy_main,
.loading .copy_sub {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.loading img {
  opacity: 0;
}
.loading .copy_main {
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  -webkit-animation: fadeOut 1s ease forwards 4.2s;
          animation: fadeOut 1s ease forwards 4.2s;
}
@media screen and (max-width: 768px) {
  .loading .copy_main {
    -webkit-column-gap: 5.8666666667vw;
       -moz-column-gap: 5.8666666667vw;
            column-gap: 5.8666666667vw;
  }
}
.loading .copy_main img {
  scale: 0.9;
}
@media screen and (max-width: 768px) {
  .loading .copy_main img {
    width: 6.9333333333vw;
  }
}
.loading .copy_main img:nth-child(1) {
  -webkit-animation: fadeIn 0.8s ease forwards 0s;
          animation: fadeIn 0.8s ease forwards 0s;
}
.loading .copy_main img:nth-child(2) {
  -webkit-animation: fadeIn 0.8s ease forwards 0.8s;
          animation: fadeIn 0.8s ease forwards 0.8s;
}
.loading .copy_main img:nth-child(3) {
  -webkit-animation: fadeIn 0.8s ease forwards 1.6s;
          animation: fadeIn 0.8s ease forwards 1.6s;
}
.loading .copy_main img:nth-child(4) {
  -webkit-animation: fadeIn 0.8s ease forwards 2.4s;
          animation: fadeIn 0.8s ease forwards 2.4s;
}
.loading .copy_main img:nth-child(5) {
  -webkit-animation: fadeIn 0.8s ease forwards 3.2s;
          animation: fadeIn 0.8s ease forwards 3.2s;
}
.loading .copy_sub {
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  opacity: 0;
  -webkit-animation: fadeInContainer 0.1s linear forwards 5.2s;
          animation: fadeInContainer 0.1s linear forwards 5.2s;
}
@media screen and (max-width: 768px) {
  .loading .copy_sub {
    -webkit-column-gap: 6.6666666667vw;
       -moz-column-gap: 6.6666666667vw;
            column-gap: 6.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .loading .copy_sub img {
    width: 4.8vw;
  }
}
@media screen and (max-width: 768px) {
  .loading .copy_sub img:nth-child(2) {
    width: 5.8666666667vw;
  }
}
.loading .copy_sub img:nth-child(1) {
  -webkit-animation: fadeIn 0.8s ease forwards 5.2s;
          animation: fadeIn 0.8s ease forwards 5.2s;
}
.loading .copy_sub img:nth-child(2) {
  -webkit-animation: fadeIn 0.8s ease forwards 6s;
          animation: fadeIn 0.8s ease forwards 6s;
}
.loading .copy_sub img:nth-child(3) {
  -webkit-animation: fadeIn 0.8s ease forwards 6.8s;
          animation: fadeIn 0.8s ease forwards 6.8s;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeInContainer {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInContainer {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes loadingFadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  99% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
@keyframes loadingFadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  99% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.skip_btn {
  font-family: "Noto Serif", serif;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.1em;
  color: #4b5c81;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  right: 90px;
  bottom: 60px;
  cursor: pointer;
  width: 112px;
  height: 40px;
  border: 1px solid #7b89a7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .skip_btn {
    font-size: 15px;
    width: 90px;
    height: 30px;
    right: 5%;
    bottom: 30px;
  }
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .skip_btn:hover {
    opacity: 0.8;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .skip_btn:hover {
    opacity: 0.8;
  }
}

/*=======================================
　mv_sec
=======================================*/
.mv_sec {
  margin-bottom: 40px;
}
.mv_sec .splide {
  position: relative;
}
.mv_sec .splide .splide__track .splide__list .splide__slide {
  background-size: cover !important;
  position: relative;
  width: 339px;
}
.mv_sec .splide .splide__track .splide__list .splide__slide::after {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  top: 0;
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 1s ease-in-out, visibility 0s ease-in-out;
  transition: opacity 1s ease-in-out, visibility 0s ease-in-out;
  z-index: 1;
}
.mv_sec .splide .splide__track .splide__list .splide__slide:nth-child(1) {
  background: url("../img/top/mv_bg01.jpg") no-repeat;
}
.mv_sec .splide .splide__track .splide__list .splide__slide:nth-child(2) {
  background: url("../img/top/mv_bg02.jpg") no-repeat;
}
.mv_sec .splide .splide__track .splide__list .splide__slide:nth-child(3) {
  background: url("../img/top/mv_bg03.jpg") no-repeat;
}
.mv_sec .splide .splide__track .splide__list .splide__slide .inner {
  width: 86.83%;
  max-width: inherit;
  padding: 156px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-column-gap: 15%;
     -moz-column-gap: 15%;
          column-gap: 15%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 1920px) {
  .mv_sec .splide .splide__track .splide__list .splide__slide .inner {
    padding: 8.125vw 0;
  }
}
@media screen and (max-width: 1024px) {
  .mv_sec .splide .splide__track .splide__list .splide__slide .inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-column-gap: 3%;
       -moz-column-gap: 3%;
            column-gap: 3%;
  }
}
@media screen and (max-width: 768px) {
  .mv_sec .splide .splide__track .splide__list .splide__slide .inner {
    width: 100%;
    padding: 0 0 90px;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    gap: 108px 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.mv_sec .splide .splide__track .splide__list .splide__slide .txt_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 50px;
  width: calc(59% - 9.8958333333vw);
}
@media only screen and (min-width: 1921px) {
  .mv_sec .splide .splide__track .splide__list .splide__slide .txt_area {
    width: calc(59% - 190px);
  }
}
@media screen and (max-width: 1024px) {
  .mv_sec .splide .splide__track .splide__list .splide__slide .txt_area {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .mv_sec .splide .splide__track .splide__list .splide__slide .txt_area {
    display: contents;
  }
}
.mv_sec .splide .splide__track .splide__list .splide__slide .txt_area .mv_ttl {
  width: 3.28125vw;
  max-width: 63px;
}
@media screen and (max-width: 768px) {
  .mv_sec .splide .splide__track .splide__list .splide__slide .txt_area .mv_ttl {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    width: auto;
    max-width: inherit;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .mv_sec .splide .splide__track .splide__list .splide__slide .txt_area .mv_ttl img {
    width: 25px;
    margin-top: 77px;
  }
}
.mv_sec .splide .splide__track .splide__list .splide__slide .txt_area .mv_txt {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  line-height: 2.13;
  color: #3e3e3e;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .mv_sec .splide .splide__track .splide__list .splide__slide .txt_area .mv_txt {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .mv_sec .splide .splide__track .splide__list .splide__slide .txt_area .mv_txt {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: center;
    width: 90%;
  }
}
.mv_sec .splide .splide__track .splide__list .splide__slide .txt_area .mv_txt .txt_lg,
.mv_sec .splide .splide__track .splide__list .splide__slide .txt_area .mv_txt .txt_md {
  font-weight: 600;
}
.mv_sec .splide .splide__track .splide__list .splide__slide .txt_area .mv_txt .txt_lg {
  font-size: 23px;
}
@media screen and (max-width: 1024px) {
  .mv_sec .splide .splide__track .splide__list .splide__slide .txt_area .mv_txt .txt_lg {
    font-size: 18px;
  }
}
.mv_sec .splide .splide__track .splide__list .splide__slide .txt_area .mv_txt .txt_md {
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .mv_sec .splide .splide__track .splide__list .splide__slide .txt_area .mv_txt .txt_md {
    font-size: 15px;
  }
}
.mv_sec .splide .splide__track .splide__list .splide__slide .img_area {
  width: 41%;
  position: relative;
  -webkit-transform: translateX(-9.8958333333vw);
          transform: translateX(-9.8958333333vw);
}
@media only screen and (min-width: 1921px) {
  .mv_sec .splide .splide__track .splide__list .splide__slide .img_area {
    -webkit-transform: translateX(-190px);
            transform: translateX(-190px);
  }
}
@media screen and (max-width: 1024px) {
  .mv_sec .splide .splide__track .splide__list .splide__slide .img_area {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    margin-right: 120px;
  }
}
@media screen and (max-width: 768px) {
  .mv_sec .splide .splide__track .splide__list .splide__slide .img_area {
    width: 75.73%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-right: 0;
  }
}
.mv_sec .splide .splide__track .splide__list .splide__slide .img_area .img {
  overflow: hidden;
}
.mv_sec .splide .splide__track .splide__list .splide__slide .img_area .img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 680/887;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.mv_sec .splide .splide__track .splide__list .splide__slide .img_area .mv_caption {
  position: absolute;
  left: 30px;
  bottom: 24px;
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 1024px) {
  .mv_sec .splide .splide__track .splide__list .splide__slide .img_area .mv_caption {
    left: 15px;
    bottom: 14px;
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  .mv_sec .splide .splide__track .splide__list .splide__slide .img_area .mv_caption {
    left: auto;
    right: 15px;
  }
}
.mv_sec .splide .splide__track .splide__list .splide__slide .img_area .mv_cmn_copy {
  position: absolute;
  width: 46.33%;
  right: -12.36%;
  bottom: -9.95%;
  z-index: 1;
}
@media only screen and (max-width: 1440px) {
  .mv_sec .splide .splide__track .splide__list .splide__slide .img_area .mv_cmn_copy {
    width: 40%;
    right: -7%;
  }
}
@media screen and (max-width: 768px) {
  .mv_sec .splide .splide__track .splide__list .splide__slide .img_area .mv_cmn_copy {
    width: 45.57%;
    right: auto;
    left: -25.7%;
    bottom: -17.13%;
  }
}
.mv_sec .splide .splide__track .splide__list .splide__slide.is-prev {
  opacity: 1;
}
.mv_sec .splide .splide__track .splide__list .splide__slide.is-prev .img img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.mv_sec .splide .splide__track .splide__list .splide__slide.is-next {
  opacity: 1;
}
.mv_sec .splide .splide__track .splide__list .splide__slide.is-active {
  -webkit-animation: mv_slide_fade 1.2s cubic-bezier(0.205, 1.083, 0.898, 0.983) forwards 0s, mv_slide_bg_fade 1.5s ease forwards 0s;
          animation: mv_slide_fade 1.2s cubic-bezier(0.205, 1.083, 0.898, 0.983) forwards 0s, mv_slide_bg_fade 1.5s ease forwards 0s;
}
.mv_sec .splide .splide__track .splide__list .splide__slide.is-active::after {
  visibility: hidden;
  opacity: 0;
}
.mv_sec .splide .splide__track .splide__list .splide__slide.is-active .img_area .img img {
  -webkit-animation: mv_slide_img_fade 2.5s ease forwards 0.5s;
          animation: mv_slide_img_fade 2.5s ease forwards 0.5s;
}
.mv_sec .splide .splide__track .splide__list .splide__slide.is-active .txt_area {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-animation: mv_slide_txt_fade 2s ease forwards 0.3s;
          animation: mv_slide_txt_fade 2s ease forwards 0.3s;
}
.mv_sec .splide {
  /* ページネーション */
}
.mv_sec .splide .mv_splide-pagination {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  height: 100%;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .mv_sec .splide .mv_splide-pagination {
    display: none;
  }
}
.mv_sec .splide .mv_splide-pagination li {
  height: 100%;
}
.mv_sec .splide .mv_splide-pagination li .mv_splide-page {
  background: transparent;
  width: 62px;
  height: 100%;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  border-radius: 0;
  margin: 0;
  opacity: 1;
  position: relative;
  background-size: cover !important;
}
@media screen and (max-width: 1024px) {
  .mv_sec .splide .mv_splide-pagination li .mv_splide-page {
    width: 50px;
  }
}
.mv_sec .splide .mv_splide-pagination li .mv_splide-page::before, .mv_sec .splide .mv_splide-pagination li .mv_splide-page::after {
  display: inline-block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #3c404a;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.mv_sec .splide .mv_splide-pagination li .mv_splide-page::before {
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-size: 25px;
  top: 63px;
}
.mv_sec .splide .mv_splide-pagination li .mv_splide-page::after {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 17px;
  top: 102px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  -webkit-font-feature-settings: "pkna";
          font-feature-settings: "pkna";
  letter-spacing: 0.5em;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .mv_sec .splide .mv_splide-pagination li .mv_splide-page:hover::before, .mv_sec .splide .mv_splide-pagination li .mv_splide-page:hover::after {
    -webkit-transform: translate(-50%, 10px);
            transform: translate(-50%, 10px);
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .mv_sec .splide .mv_splide-pagination li .mv_splide-page:hover::before, .mv_sec .splide .mv_splide-pagination li .mv_splide-page:hover::after {
    -webkit-transform: translate(-50%, 10px);
            transform: translate(-50%, 10px);
  }
}
.mv_sec .splide .mv_splide-pagination li .mv_splide-page.is-active {
  -webkit-transform: scale(1);
          transform: scale(1);
  cursor: auto;
}
.mv_sec .splide .mv_splide-pagination li .mv_splide-page.is-active::before, .mv_sec .splide .mv_splide-pagination li .mv_splide-page.is-active::after {
  -webkit-transform: translate(-50%, 27px) !important;
          transform: translate(-50%, 27px) !important;
  opacity: 0.5;
}
.mv_sec .splide .mv_splide-pagination li:nth-child(1) .mv_splide-page {
  background: url("../img/top/mv_pagination_bg01.jpg") no-repeat;
}
.mv_sec .splide .mv_splide-pagination li:nth-child(1) .mv_splide-page::after {
  content: "やさしい京都";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(2) .mv_splide-page {
  background: url("../img/top/mv_pagination_bg02.jpg") no-repeat;
}
.mv_sec .splide .mv_splide-pagination li:nth-child(2) .mv_splide-page::after {
  content: "おしゃれな京都";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(3) .mv_splide-page {
  background: url("../img/top/mv_pagination_bg03.jpg") no-repeat;
}
.mv_sec .splide .mv_splide-pagination li:nth-child(3) .mv_splide-page::after {
  content: "かっこいい京都";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(1) .mv_splide-page::before {
  content: "01";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(2) .mv_splide-page::before {
  content: "02";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(3) .mv_splide-page::before {
  content: "03";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(4) .mv_splide-page::before {
  content: "04";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(5) .mv_splide-page::before {
  content: "05";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(6) .mv_splide-page::before {
  content: "06";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(7) .mv_splide-page::before {
  content: "07";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(8) .mv_splide-page::before {
  content: "08";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(9) .mv_splide-page::before {
  content: "09";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(10) .mv_splide-page::before {
  content: "10";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(11) .mv_splide-page::before {
  content: "11";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(12) .mv_splide-page::before {
  content: "12";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(13) .mv_splide-page::before {
  content: "13";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(14) .mv_splide-page::before {
  content: "14";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(15) .mv_splide-page::before {
  content: "15";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(16) .mv_splide-page::before {
  content: "16";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(17) .mv_splide-page::before {
  content: "17";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(18) .mv_splide-page::before {
  content: "18";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(19) .mv_splide-page::before {
  content: "19";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(20) .mv_splide-page::before {
  content: "20";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(21) .mv_splide-page::before {
  content: "21";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(22) .mv_splide-page::before {
  content: "22";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(23) .mv_splide-page::before {
  content: "23";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(24) .mv_splide-page::before {
  content: "24";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(25) .mv_splide-page::before {
  content: "25";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(26) .mv_splide-page::before {
  content: "26";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(27) .mv_splide-page::before {
  content: "27";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(28) .mv_splide-page::before {
  content: "28";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(29) .mv_splide-page::before {
  content: "29";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(30) .mv_splide-page::before {
  content: "30";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(31) .mv_splide-page::before {
  content: "31";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(32) .mv_splide-page::before {
  content: "32";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(33) .mv_splide-page::before {
  content: "33";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(34) .mv_splide-page::before {
  content: "34";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(35) .mv_splide-page::before {
  content: "35";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(36) .mv_splide-page::before {
  content: "36";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(37) .mv_splide-page::before {
  content: "37";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(38) .mv_splide-page::before {
  content: "38";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(39) .mv_splide-page::before {
  content: "39";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(40) .mv_splide-page::before {
  content: "40";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(41) .mv_splide-page::before {
  content: "41";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(42) .mv_splide-page::before {
  content: "42";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(43) .mv_splide-page::before {
  content: "43";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(44) .mv_splide-page::before {
  content: "44";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(45) .mv_splide-page::before {
  content: "45";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(46) .mv_splide-page::before {
  content: "46";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(47) .mv_splide-page::before {
  content: "47";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(48) .mv_splide-page::before {
  content: "48";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(49) .mv_splide-page::before {
  content: "49";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(50) .mv_splide-page::before {
  content: "50";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(51) .mv_splide-page::before {
  content: "51";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(52) .mv_splide-page::before {
  content: "52";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(53) .mv_splide-page::before {
  content: "53";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(54) .mv_splide-page::before {
  content: "54";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(55) .mv_splide-page::before {
  content: "55";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(56) .mv_splide-page::before {
  content: "56";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(57) .mv_splide-page::before {
  content: "57";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(58) .mv_splide-page::before {
  content: "58";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(59) .mv_splide-page::before {
  content: "59";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(60) .mv_splide-page::before {
  content: "60";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(61) .mv_splide-page::before {
  content: "61";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(62) .mv_splide-page::before {
  content: "62";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(63) .mv_splide-page::before {
  content: "63";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(64) .mv_splide-page::before {
  content: "64";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(65) .mv_splide-page::before {
  content: "65";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(66) .mv_splide-page::before {
  content: "66";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(67) .mv_splide-page::before {
  content: "67";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(68) .mv_splide-page::before {
  content: "68";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(69) .mv_splide-page::before {
  content: "69";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(70) .mv_splide-page::before {
  content: "70";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(71) .mv_splide-page::before {
  content: "71";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(72) .mv_splide-page::before {
  content: "72";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(73) .mv_splide-page::before {
  content: "73";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(74) .mv_splide-page::before {
  content: "74";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(75) .mv_splide-page::before {
  content: "75";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(76) .mv_splide-page::before {
  content: "76";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(77) .mv_splide-page::before {
  content: "77";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(78) .mv_splide-page::before {
  content: "78";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(79) .mv_splide-page::before {
  content: "79";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(80) .mv_splide-page::before {
  content: "80";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(81) .mv_splide-page::before {
  content: "81";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(82) .mv_splide-page::before {
  content: "82";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(83) .mv_splide-page::before {
  content: "83";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(84) .mv_splide-page::before {
  content: "84";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(85) .mv_splide-page::before {
  content: "85";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(86) .mv_splide-page::before {
  content: "86";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(87) .mv_splide-page::before {
  content: "87";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(88) .mv_splide-page::before {
  content: "88";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(89) .mv_splide-page::before {
  content: "89";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(90) .mv_splide-page::before {
  content: "90";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(91) .mv_splide-page::before {
  content: "91";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(92) .mv_splide-page::before {
  content: "92";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(93) .mv_splide-page::before {
  content: "93";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(94) .mv_splide-page::before {
  content: "94";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(95) .mv_splide-page::before {
  content: "95";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(96) .mv_splide-page::before {
  content: "96";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(97) .mv_splide-page::before {
  content: "97";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(98) .mv_splide-page::before {
  content: "98";
}
.mv_sec .splide .mv_splide-pagination li:nth-child(99) .mv_splide-page::before {
  content: "99";
}
@media screen and (max-width: 768px) {
  .mv_sec .splide_wrap {
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .mv_sec .splide_nav {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 23px;
    z-index: 1;
  }
}
.mv_sec .swiper-slide {
  -webkit-transition: opacity 1.5s ease-in-out !important;
  transition: opacity 1.5s ease-in-out !important;
}

@-webkit-keyframes mv_slide_fade {
  0% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes mv_slide_fade {
  0% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@-webkit-keyframes mv_slide_img_fade {
  from {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes mv_slide_img_fade {
  from {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes mv_slide_txt_fade {
  from {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes mv_slide_txt_fade {
  from {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes mv_slide_bg_fade {
  from {
    background-position-x: -100px;
  }
  to {
    background-position-x: -120px;
  }
}
@keyframes mv_slide_bg_fade {
  from {
    background-position-x: -100px;
  }
  to {
    background-position-x: -120px;
  }
}
/*=======================================
　newsBox
=======================================*/
#newsBox {
  max-width: 768px;
  width: 90%;
  margin: 40px auto;
  border: #b20000 1px solid;
  line-height: 1.5;
}
#newsBox .attention_tit {
  width: 100%;
  font-size: 20px;
  background: #b20000;
  padding: 4px 0;
  color: #fff;
  text-align: center;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 768px) {
  #newsBox .attention_tit {
    font-size: 18px;
  }
}
#newsBox .attention_read {
  font-size: 16px;
  background: #fff;
  padding: 16px 48px;
  color: #B20000;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #newsBox .attention_read {
    font-size: 15px;
  }
}

/*=======================================
　point_area
=======================================*/
.point_area {
  padding: 80px 0 50px;
}
@media screen and (max-width: 768px) {
  .point_area {
    padding: 36px 0;
  }
}
.point_area .inner {
  max-width: 1357px;
}

/*=======================================
　entry_area
=======================================*/
.entry_area {
  background: url("../img/top/entry_bg.jpg") no-repeat;
  background-size: cover;
  margin-bottom: 241px;
}
@media screen and (max-width: 768px) {
  .entry_area {
    margin-bottom: 120px;
  }
}
.entry_area .inner {
  text-align: center;
  position: relative;
  padding: 92px 0 90px;
}
@media screen and (max-width: 768px) {
  .entry_area .inner {
    padding: 39px 0 50px;
  }
}
.entry_area .inner .sub_copy {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  color: #5a5a5a;
  margin-bottom: 23px;
}
.entry_area .inner .sub_copy span {
  font-size: 31px;
  letter-spacing: 0.05em;
  line-height: 1.322;
  display: block;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .entry_area .inner .sub_copy span {
    font-size: 20px;
  }
}
.entry_area .inner .sub_copy small {
  font-size: 24px;
  letter-spacing: 0.02em;
  line-height: 1.458;
}
@media screen and (max-width: 768px) {
  .entry_area .inner .sub_copy small {
    font-size: 15px;
  }
}
.entry_area .inner .entry_copy {
  max-width: 514px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .entry_area .inner .entry_copy {
    width: 91.18%;
  }
}
.entry_area .inner .cmn_re_btn_wrap {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -41px;
}
@media screen and (max-width: 768px) {
  .entry_area .inner .cmn_re_btn_wrap {
    bottom: -26px;
  }
}
.entry_area .inner .cmn_re_btn_wrap .cmn_re_btn li {
  width: 400px;
  height: 90px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .entry_area .inner .cmn_re_btn_wrap .cmn_re_btn li {
    width: 240px;
    height: 52px;
  }
}
.entry_area .inner .cmn_re_btn_wrap .cmn_re_btn li a span {
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .entry_area .inner .cmn_re_btn_wrap .cmn_re_btn li a span {
    font-size: 16px;
  }
}
.entry_area .inner .cmn_re_btn_wrap .cmn_re_btn li.btn_arrow::after {
  width: 10px;
  height: 20px;
  right: 35px;
}
@media screen and (max-width: 768px) {
  .entry_area .inner .cmn_re_btn_wrap .cmn_re_btn li.btn_arrow::after {
    width: 7px;
    height: 14px;
    right: 17px;
  }
}

/*=======================================
　concept_sec
=======================================*/
.concept_sec {
  position: relative;
  margin-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .concept_sec {
    margin-bottom: 80px;
  }
}
.concept_sec .copy_main {
  position: absolute;
  right: 10.9270833333vw;
  top: 10.03125vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: 4.0625vw;
     -moz-column-gap: 4.0625vw;
          column-gap: 4.0625vw;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .concept_sec .copy_main {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 12.8533333333vw;
    -webkit-column-gap: 6.4vw;
       -moz-column-gap: 6.4vw;
            column-gap: 6.4vw;
  }
}
.concept_sec .copy_main img {
  width: 2.7604166667vw;
}
@media screen and (max-width: 768px) {
  .concept_sec .copy_main img {
    width: 5.3333333333vw;
  }
}
.concept_sec .copy_main img:last-child {
  width: 3.0729166667vw;
}
@media screen and (max-width: 768px) {
  .concept_sec .copy_main img:last-child {
    width: 6.1333333333vw;
  }
}
.concept_sec .cmn_caption01 {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.52)));
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.52) 100%);
  padding: 86px 50px 26px;
}
@media screen and (max-width: 768px) {
  .concept_sec .cmn_caption01 {
    padding: 0;
    position: static;
    color: inherit;
    text-shadow: none;
    width: 90%;
    margin: 10px auto 0;
    background: none;
  }
}

/*=======================================
　cmn_section
=======================================*/
.cmn_ttl_area {
  width: 23.4375%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .cmn_ttl_area {
    width: 90%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .cmn_ttl_area img {
    width: auto;
    height: 6.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .cmn_ttl_area img {
    height: 36px;
  }
}

.cmn_content_area {
  /* flex: 1; */
  width: 76.5625%;
}
@media screen and (max-width: 1024px) {
  .cmn_content_area {
    width: 100%;
  }
}
.cmn_content_area .inner {
  max-width: 1111px;
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .cmn_content_area .inner {
    margin-left: auto;
  }
}

.cmn_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 150px;
}
@media screen and (max-width: 1024px) {
  .cmn_section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 80px;
  }
}
@media screen and (max-width: 768px) {
  .cmn_section {
    margin-bottom: 75px;
  }
}
.cmn_section:last-of-type {
  margin-bottom: 300px;
}
.cmn_section.cmn_section_bg {
  background: url("../img/top/cmn_section_bg.jpg") no-repeat;
  background-size: cover;
  padding: 179px 0 150px;
}
@media screen and (max-width: 768px) {
  .cmn_section.cmn_section_bg {
    padding: 90px 0 75px;
  }
}
.cmn_section .cmn_content_area .cmn_ttl_img01 {
  margin-bottom: 78.4px;
}
@media screen and (max-width: 1024px) {
  .cmn_section .cmn_content_area .cmn_ttl_img01 {
    width: 90%;
    margin: 0 auto 40px;
  }
}
.cmn_section .cmn_content_area .cmn_section_copy {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 34px;
  letter-spacing: 0.15em;
  line-height: 1.441;
  color: #07183b;
  margin-bottom: 52px;
}
.cmn_section .cmn_content_area .cmn_section_copy .br1280 {
  display: none;
}
@media screen and (max-width: 1280px) {
  .cmn_section .cmn_content_area .cmn_section_copy .br1280 {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .cmn_section .cmn_content_area .cmn_section_copy .br1280 {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .cmn_section .cmn_content_area .cmn_section_copy {
    width: 90%;
    margin: 0 auto 26px;
  }
}
@media screen and (max-width: 768px) {
  .cmn_section .cmn_content_area .cmn_section_copy {
    font-size: 17px;
  }
}
.cmn_section .cmn_content_area .cmn_section_img_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .cmn_section .cmn_content_area .cmn_section_img_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 50px;
  }
}
.cmn_section .cmn_content_area .img {
  position: relative;
}
.cmn_section .cmn_content_area .img .cmn_caption01 {
  position: absolute;
  right: 15px;
  bottom: 13px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .cmn_section .cmn_content_area .img .cmn_caption01 {
    right: 10px;
    bottom: 10px;
  }
}
.cmn_section .cmn_content_area .inner .copy {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 29px;
  letter-spacing: 0.05em;
  line-height: 1.413;
  color: #45609a;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .cmn_section .cmn_content_area .inner .copy {
    font-size: 19px;
    margin-bottom: 20px;
  }
}
.cmn_section .cmn_content_area .inner .copy sup {
  font-size: 45%;
  top: -1em;
}
.cmn_section .cmn_content_area .inner .store_list {
  background: #fff;
  padding: 27.7px 30px 36.4px;
}
@media screen and (max-width: 768px) {
  .cmn_section .cmn_content_area .inner .store_list {
    padding: 15px 5% 20px;
  }
}
.cmn_section .cmn_content_area .inner .store_list .list_ttl {
  font-size: 16px;
  height: 28.06px;
  background: #002752;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  margin-bottom: 13px;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 768px) {
  .cmn_section .cmn_content_area .inner .store_list .list_ttl {
    font-size: 14px;
  }
}
.cmn_section .cmn_content_area .inner .store_list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
}
.cmn_section .cmn_content_area .inner .store_list dl:not(:last-child) {
  margin-bottom: 8px;
}
.cmn_section .cmn_content_area .inner .store_list dl::before {
  content: "";
  width: 95%;
  height: 2.94px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url("../img/top/dot.svg") repeat-x;
  background-size: 8px 100%;
}
.cmn_section .cmn_content_area .inner .store_list dl dt, .cmn_section .cmn_content_area .inner .store_list dl dd {
  background: #fff;
  padding: 0 0.5em;
  z-index: 1;
  position: relative;
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (max-width: 1440px) {
  .cmn_section .cmn_content_area .inner .store_list dl dt, .cmn_section .cmn_content_area .inner .store_list dl dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .cmn_section .cmn_content_area .inner .store_list dl dt, .cmn_section .cmn_content_area .inner .store_list dl dd {
    font-size: 12px;
  }
}
.cmn_section .cmn_content_area .inner .store_list dl dt {
  padding-left: 19.41px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .cmn_section .cmn_content_area .inner .store_list dl dt {
    padding-left: 15px;
  }
}
.cmn_section .cmn_content_area .inner .store_list dl dt::before {
  content: "";
  width: 15.81px;
  height: 15.81px;
  background: #5d8aaf;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 768px) {
  .cmn_section .cmn_content_area .inner .store_list dl dt::before {
    width: 10px;
    height: 10px;
  }
}
.cmn_section .cmn_content_area .inner .cmn_section_clm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .cmn_section .cmn_content_area .inner .cmn_section_clm {
    row-gap: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.cmn_section .cmn_content_area .inner .cmn_section_clm.clm_2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .cmn_section .cmn_content_area .inner .cmn_section_clm.clm_2 {
    margin-bottom: 25px;
  }
}
.cmn_section .cmn_content_area .inner .cmn_section_clm.clm_2 .img_area {
  width: 51.39%;
}
@media screen and (max-width: 1024px) {
  .cmn_section .cmn_content_area .inner .cmn_section_clm.clm_2 .img_area {
    width: 100%;
  }
}
.cmn_section .cmn_content_area .inner .cmn_section_clm.clm_2 .txt_area {
  width: 41.4%;
}
@media screen and (max-width: 1024px) {
  .cmn_section .cmn_content_area .inner .cmn_section_clm.clm_2 .txt_area {
    width: 100% !important;
  }
}
.cmn_section .cmn_content_area .inner .cmn_section_clm.clm_3 {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .cmn_section .cmn_content_area .inner .cmn_section_clm.clm_3 {
    margin-bottom: 50px;
  }
}
.cmn_section .cmn_content_area .inner .cmn_section_clm.clm_3 .img {
  width: 31.68%;
}
@media screen and (max-width: 1024px) {
  .cmn_section .cmn_content_area .inner .cmn_section_clm.clm_3 .img {
    width: 100%;
  }
}
.cmn_section.position_sec .cmn_section_clm.clm_2 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .cmn_section.position_sec .cmn_section_clm.clm_2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.cmn_section.position_sec .cmn_section_clm .img img {
  margin-bottom: 15px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .cmn_section.position_sec .cmn_section_clm .img img {
    margin-bottom: 10px;
  }
}
.cmn_section.position_sec .cmn_section_clm .img .cmn_caption01 {
  color: var(--main_black);
  text-shadow: none;
  position: static;
  text-align: inherit;
}
.cmn_section.location_sec .cmn_section_clm.clm_2 {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 90px !important;
}
@media screen and (max-width: 768px) {
  .cmn_section.location_sec .cmn_section_clm.clm_2 {
    margin-bottom: 45px !important;
  }
}
.cmn_section.location_sec .cmn_section_clm .txt_area .cmn_txt02 {
  margin-bottom: 48.7px;
}
@media screen and (max-width: 768px) {
  .cmn_section.location_sec .cmn_section_clm .txt_area .cmn_txt02 {
    margin-bottom: 25px;
  }
}
.cmn_section.access_sec {
  margin-bottom: 300px;
}
@media screen and (max-width: 768px) {
  .cmn_section.access_sec {
    margin-bottom: 150px;
  }
}
.cmn_section.access_sec .access_ttl {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #fff;
  background: #002752;
  padding: 15.5px 27px;
  margin-bottom: 25px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cmn_section.access_sec .access_ttl {
    padding: 10px 15px;
    margin-bottom: 15px;
  }
}
.cmn_section.access_sec .access_ttl .txt_lg {
  font-size: 28px;
  font-weight: 600;
}
@media only screen and (max-width: 1440px) {
  .cmn_section.access_sec .access_ttl .txt_lg {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .cmn_section.access_sec .access_ttl .txt_lg {
    font-size: 18px;
  }
}
.cmn_section.access_sec .access_ttl .txt_md {
  font-size: 20px;
}
@media only screen and (max-width: 1440px) {
  .cmn_section.access_sec .access_ttl .txt_md {
    font-size: 17px;
  }
}
@media screen and (max-width: 768px) {
  .cmn_section.access_sec .access_ttl .txt_md {
    font-size: 14px;
  }
}
.cmn_section.access_sec .access_ttl .txt_sm {
  font-size: 16px;
}
@media only screen and (max-width: 1440px) {
  .cmn_section.access_sec .access_ttl .txt_sm {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .cmn_section.access_sec .access_ttl .txt_sm {
    font-size: 12px;
  }
}
.cmn_section.access_sec .access_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 34.2px;
}
@media screen and (max-width: 1024px) {
  .cmn_section.access_sec .access_txt {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cmn_section.access_sec .cmn_section_clm {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: start !important;
}
@media screen and (max-width: 768px) {
  .cmn_section.access_sec .cmn_section_clm.clm_2 {
    margin-bottom: 40px !important;
  }
}
.cmn_section.access_sec .cmn_section_clm.clm_2:nth-child(2 of .clm_2) {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 768px) {
  .cmn_section.access_sec .cmn_section_clm.clm_2:nth-child(2 of .clm_2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 25px;
    margin-bottom: 50px !important;
  }
}
.cmn_section.access_sec .cmn_section_clm .img_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cmn_section.access_sec .cmn_section_clm .img_area .img {
  position: relative;
}
.cmn_section.access_sec .cmn_section_clm .txt_area {
  width: 43.2% !important;
}
@media screen and (max-width: 768px) {
  .cmn_section.access_sec .cmn_section_clm .txt_area {
    width: 100% !important;
  }
}
.cmn_section.access_sec .cmn_section_clm .txt_area .img {
  margin-top: 29.7px;
}

/*=======================================
　plan_sec
=======================================*/
.plan_sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin-bottom: 300px;
}
@media screen and (max-width: 1024px) {
  .plan_sec {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .plan_sec {
    margin-bottom: 150px;
  }
}
.plan_sec .cmn_content_area .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 120px;
     -moz-column-gap: 120px;
          column-gap: 120px;
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .plan_sec .cmn_content_area .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    row-gap: 40px;
  }
}
.plan_sec .cmn_content_area .inner .txt_area {
  width: 40.59%;
}
@media screen and (max-width: 1024px) {
  .plan_sec .cmn_content_area .inner .txt_area {
    width: 100%;
  }
}
.plan_sec .cmn_content_area .inner .txt_area .cmn_ttl_img01 {
  margin-bottom: 61.4px;
}
@media screen and (max-width: 768px) {
  .plan_sec .cmn_content_area .inner .txt_area .cmn_ttl_img01 {
    margin-bottom: 30px;
  }
}
.plan_sec .cmn_content_area .inner .txt_area .cmn_txt01 {
  margin-bottom: 125px;
}
@media screen and (max-width: 768px) {
  .plan_sec .cmn_content_area .inner .txt_area .cmn_txt01 {
    margin-bottom: 60px;
  }
}
.plan_sec .cmn_content_area .inner .img_area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: calc(100% - 540px - 120px);
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 1024px) {
  .plan_sec .cmn_content_area .inner .img_area {
    width: 100%;
  }
}
.plan_sec .cmn_content_area .inner .img_area .splide .splide__track {
  padding-right: 40.59% !important;
}
@media screen and (max-width: 768px) {
  .plan_sec .cmn_content_area .inner .img_area .splide .splide__track {
    padding-right: 0 !important;
  }
}
.plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide {
  width: 540px;
  background: #fff;
  border: 1px solid #c2ccdf;
  -webkit-filter: drop-shadow(0px 0px 11px rgba(100, 118, 126, 0.1));
          filter: drop-shadow(0px 0px 11px rgba(100, 118, 126, 0.1));
  border-radius: 5px;
  text-align: center;
}
.plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide:has(#modaal-box-atype) .img, .plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide:has(#modaal-box-ctype) .img {
  width: 48.736%;
}
@media screen and (max-width: 768px) {
  .plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide {
    width: 100%;
  }
}
.plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide a {
  position: relative;
  padding: 50px 5% 45px;
  display: block;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide a {
    padding: 25px 5% 50px;
  }
}
.plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide a::before {
  content: "";
  background: url("../img/common/modal_open.svg") no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide a::before {
    width: 30px;
    height: 30px;
    bottom: 15px;
    right: 15px;
  }
}
.plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide .plan_type {
  width: 63.7%;
  font-size: 31px;
  letter-spacing: 0.1em;
  color: #45609a;
  border-bottom: 1px solid #676fb4;
  -o-border-image: linear-gradient(to right, transparent 0%, #676fb4 50%, transparent 100%) 1;
     border-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, #676fb4), to(transparent)) 1;
     border-image: linear-gradient(to right, transparent 0%, #676fb4 50%, transparent 100%) 1;
  margin: 0 auto 18px;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide .plan_type {
    width: 80%;
    font-size: 20px;
  }
}
.plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide .plan_type .txt_lg {
  font-size: 60px;
}
@media screen and (max-width: 768px) {
  .plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide .plan_type .txt_lg {
    font-size: 35px;
  }
}
.plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide .plan_layout {
  display: block;
  /* vertical-align: baseline; */
  margin: 0 auto 8px;
  /* width: 63.7%; */
  font-size: 31px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide .plan_layout {
    /* width: 80%; */
    font-size: 20px;
  }
}
.plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide .plan_layout .txt_lg {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide .plan_layout .txt_lg {
    font-size: 25px;
  }
}
.plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide .area_size {
  display: inline-block;
  letter-spacing: 0.1em;
  margin-bottom: 35px;
  vertical-align: baseline;
}
.plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide .area_size .txt_lg {
  font-size: 34px;
}
@media screen and (max-width: 768px) {
  .plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide .area_size .txt_lg {
    font-size: 22px;
  }
}
.plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide .area_size .txt_md01 {
  font-size: 21px;
}
@media screen and (max-width: 768px) {
  .plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide .area_size .txt_md01 {
    font-size: 18px;
  }
}
.plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide .area_size .txt_md02 {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide .area_size .txt_md02 {
    font-size: 16px;
  }
}
.plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide .area_size .txt_sm {
  font-size: 14px;
  margin-right: 0.5em;
}
@media screen and (max-width: 768px) {
  .plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide .area_size .txt_sm {
    font-size: 11px;
  }
}
.plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide .img {
  width: 60%;
  -webkit-transform: translateX(11%);
          transform: translateX(11%);
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .plan_sec .cmn_content_area .inner .img_area .splide .splide__track .splide__list .splide__slide .img {
    width: 80%;
  }
}
.plan_sec .cmn_content_area .note {
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .plan_sec .cmn_content_area .note {
    width: 90%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .plan_sec .cmn_content_area .note {
    font-size: 10px;
  }
}

/* モーダル中身 */
.modaal-inner-wrapper {
  padding: 0;
}
.modaal-inner-wrapper .modaal-container {
  width: 90%;
  max-width: 1110px;
  border: 1px solid #c2ccdf;
  -webkit-filter: drop-shadow(0px 0px 11px rgba(100, 118, 126, 0.1));
          filter: drop-shadow(0px 0px 11px rgba(100, 118, 126, 0.1));
  border-radius: 5px;
  margin: 2% 0;
}
.modaal-inner-wrapper .modaal-container .modaal-content-container {
  padding: 60px 98px 80px;
}
@media screen and (max-width: 1024px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container {
    padding: 30px 5% 40px;
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .plan_type {
  width: 84.68%;
  font-size: 31px;
  letter-spacing: 0.1em;
  color: #45609a;
  border-bottom: 1px solid #676fb4;
  -o-border-image: linear-gradient(to right, transparent 0%, #676fb4 20%, #676fb4 50%, #676fb4 80%, transparent 100%) 1;
     border-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(20%, #676fb4), color-stop(50%, #676fb4), color-stop(80%, #676fb4), to(transparent)) 1;
     border-image: linear-gradient(to right, transparent 0%, #676fb4 20%, #676fb4 50%, #676fb4 80%, transparent 100%) 1;
  margin: 0 auto 25px;
  padding-bottom: 12px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .plan_type {
    font-size: 20px;
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .plan_type .txt_lg {
  font-size: 65px;
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .plan_type .txt_lg {
    font-size: 40px;
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .plan_layout_wrap {
  margin: 0 auto 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .plan_layout_wrap {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .plan_layout_wrap {
    text-align: center;
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .plan_layout_wrap .plan_layout {
  font-size: 35px;
  letter-spacing: 0.1em;
  /* vertical-align: baseline; */
  text-align: center;
  display: block;
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .plan_layout_wrap .plan_layout {
    font-size: 20px;
    /* display: inline-block; */
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .plan_layout_wrap .plan_layout .txt_lg {
  font-size: 44px;
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .plan_layout_wrap .plan_layout .txt_lg {
    font-size: 30px;
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .plan_layout_wrap .plan_layout .txt_sm {
  font-size: 25px;
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .plan_layout_wrap .plan_layout .txt_sm {
    font-size: 16px;
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .plan_layout_wrap .area_size {
  letter-spacing: 0.1em;
  vertical-align: baseline;
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .plan_layout_wrap .area_size {
    display: inline-block;
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .plan_layout_wrap .area_size .txt_lg {
  font-size: 34px;
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .plan_layout_wrap .area_size .txt_lg {
    font-size: 22px;
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .plan_layout_wrap .area_size .txt_md01 {
  font-size: 21px;
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .plan_layout_wrap .area_size .txt_md01 {
    font-size: 18px;
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .plan_layout_wrap .area_size .txt_md02 {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .plan_layout_wrap .area_size .txt_md02 {
    font-size: 16px;
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .plan_layout_wrap .area_size .txt_sm {
  font-size: 14px;
  margin-right: 0.5em;
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .plan_layout_wrap .area_size .txt_sm {
    font-size: 11px;
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 25px;
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .img_area {
  width: 49.34%;
  position: relative;
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .img_area img {
  display: block;
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
}
@media screen and (max-width: 1024px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .img_area img {
    position: static;
    height: auto;
    translate: 0 0;
  }
}
@media screen and (max-width: 1024px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .img_area {
    width: 100%;
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area {
  width: 46.26%;
}
@media screen and (max-width: 1024px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .type_list, .modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .detail_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .type_list li,
.modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .detail_list dl dt {
  position: relative;
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .type_list li,
  .modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .detail_list dl dt {
    padding-left: 13px;
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .type_list li::before,
.modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .detail_list dl dt::before {
  content: "";
  display: inline-block;
  background: #5D8AAF;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.4em;
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .type_list {
  margin-bottom: 60px;
  row-gap: 28px;
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .type_list {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 30px;
    row-gap: 15px;
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .type_list li {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.444;
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .type_list li {
    font-size: 15px;
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .type_list li::before {
  width: 10px;
  height: 10px;
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .type_list li::before {
    width: 8px;
    height: 8px;
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .detail_list {
  row-gap: 0.8em;
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .detail_list {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .detail_list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .detail_list dl dt, .modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .detail_list dl dd {
  font-size: 16px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .detail_list dl dt, .modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .detail_list dl dd {
    font-size: 13px;
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .detail_list dl dt .txt_sm, .modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .detail_list dl dd .txt_sm {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .detail_list dl dt .txt_sm, .modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .detail_list dl dd .txt_sm {
    font-size: 11px;
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .detail_list dl dt::before {
  width: 7px;
  height: 7px;
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .detail_list dl dt::before {
    width: 6px;
    height: 6px;
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .detail_list dl.total {
  padding-top: 14px;
  border-top: 1px solid #8188c1;
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .cmn_notes02 {
  margin-bottom: 57px;
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .cmn_notes02 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-bottom: 0;
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .legend {
  width: 50.59%;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container .modaal-content-container .flex_area .txt_area .legend {
    width: 70%;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-bottom: 50px;
  }
}

/* 閉じるボタン */
.modaal-close {
  position: absolute;
  right: 58px;
  top: 58px;
  cursor: pointer;
  z-index: 10;
  background: url("../img/common/modal_close.svg") no-repeat !important;
  background-size: cover !important;
  width: 58px;
  height: 58px;
}
@media screen and (max-width: 768px) {
  .modaal-close {
    width: 30px;
    height: 30px;
    right: 15px;
    top: 15px;
  }
}
.modaal-close::before, .modaal-close::after {
  display: none;
}

/* 限定ログインフォーム */
.login_container {
  border: 1px solid #b2900a;
  background: #fff;
  padding: 50px 20px;
  margin: 100px auto 0;
  width: 90%;
  max-width: 1024px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .login_container #roomlogin {
    padding: 45px 10px;
  }
}
.login_container .login_head {
  text-align: center;
}
.login_container .login_head h4 {
  color: #b2900a;
  font-size: 28px;
  margin-bottom: 10px;
}
.login_container .login_head p {
  font-size: 16px;
}
.login_container .login_head p.loginnote {
  color: #b20000;
  font-size: 13px;
  margin-top: 10px;
}
.login_container .rlogin {
  width: 100%;
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .login_container .rlogin {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.login_container .rlogin div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.login_container .rlogin div.loginlabel {
  background: rgba(102, 96, 87, 0.8);
  width: 160px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .login_container .rlogin div.loginlabel {
    width: 40%;
    font-size: 16px;
  }
}
.login_container .rlogin div.logininput {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .login_container .rlogin div.logininput {
    width: 60%;
    margin-right: 0;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.login_container .rlogin div.logininput input {
  width: 100%;
  height: 100%;
  padding: 0 10px;
  color: #333;
  border: 1px solid rgb(118, 118, 118);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.login_container .rlogin div.loginbtn input {
  width: 120px;
  height: 38px;
  padding: 0;
  background: rgba(0, 0, 0, 0.8);
  border: none;
  color: #fff;
  font-size: 18px;
  text-align: center;
  font-family: Arial, "Public Sans", "Noto Sans JP", sans-serif;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (max-width: 768px) {
  .login_container .rlogin div.loginbtn input {
    width: 160px;
    margin-top: 10px;
  }
}
.login_container #roomlogin_flow {
  background: #eeeeE8;
  padding: 30px 0 40px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .login_container #roomlogin_flow {
    padding: 20px 20px 30px;
  }
}
.login_container #roomlogin_flow .loginflow {
  z-index: 1;
}
.login_container .loginflow {
  max-width: 1050px;
  width: 96%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .login_container .loginflow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.login_container .loginflow p {
  font-size: 16px;
  line-height: 140%;
}
@media screen and (max-width: 768px) {
  .login_container .loginflow p {
    font-size: 14px;
  }
}
.login_container .flow01,
.login_container .flow02 {
  background: url("../img/top/roomlogin_arw.png") no-repeat right center;
  background-size: auto 58px;
  background-position: bottom 10px right;
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  .login_container .flow01,
  .login_container .flow02 {
    background: url("../img/top/roomlogin_arw_sp.png") no-repeat bottom center;
    background-size: 45px auto;
    padding: 0 0 35px;
    width: 100% !important;
  }
}
.login_container .flow01 {
  width: 23%;
  margin-right: 2%;
}
.login_container .flow02 {
  width: 32%;
  margin-right: 2%;
}
.login_container .flow03 {
  width: 32%;
}
@media screen and (max-width: 768px) {
  .login_container .flow03 {
    width: 100%;
  }
}
.login_container .flownum {
  font-family: "EB Garamond", serif;
  font-size: 36px;
  color: #b2900a;
  line-height: 120%;
}
.login_container .flowttl {
  font-size: 20px;
  color: #b2900a;
}

/* ログアウト時 */
.only-not-limited.plan_sec .splide__slide.only-not-limited-type a {
  pointer-events: none;
}
.only-not-limited.plan_sec .splide__slide.only-not-limited-type a::before {
  display: none;
}
.only-not-limited.plan_sec .splide__slide.only-not-limited-type .img::before {
  content: "物件エントリー者様限定公開中";
  width: 100%;
  height: 80%;
  display: inline-block;
  background: #500A0A;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 20px;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*=======================================
　pre-inc
=======================================*/
@media only screen and (min-width: 769px) {
  .pre-inc #salon .wrap1024 {
    max-width: 51.2em;
    margin: 0 auto;
  }
}

/* html:has(.modal_bk) {
  scrollbar-width: none;
  overflow: hidden;
} */
@media screen and (min-width: 769px) and (max-width: 1600px) {
  .pre-inc {
    font-size: 1.2vw;
  }
}
.pre-inc {
  margin-bottom: 300px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .pre-inc {
    margin-bottom: 150px;
  }
}
.pre-inc article {
  margin-top: 0;
  overflow: hidden;
}
.pre-inc #salon {
  background: url("../img/top/salon_bk.webp") no-repeat center center/cover;
  overflow: hidden;
  padding: 2.5em 0 3em;
  position: relative;
  font-size: 20px;
  line-height: 1.5;
}
@media only screen and (max-width: 1200px) {
  .pre-inc #salon {
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 768px) {
  .pre-inc #salon {
    font-size: 4vw;
  }
}
.pre-inc #salon > i {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.9);
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.pre-inc #salon .wrap1024 {
  text-align: center;
  color: #fff;
}
.pre-inc .salon_tit {
  font-size: 2.5em;
}
.pre-inc .salon_tit + p {
  font-size: 0.9em;
  margin-top: 1em;
}
.pre-inc .salon_tit_s {
  font-size: 2.8em;
  margin-top: 0.5em;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #644f1d), color-stop(45%, #ab9d68), color-stop(60%, #9d803a));
  background: linear-gradient(to bottom, #644f1d 20%, #ab9d68 45%, #9d803a 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.05em;
}
.pre-inc .salon_tit_s small {
  font-size: 0.64em;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #644f1d), color-stop(45%, #ab9d68), color-stop(60%, #9d803a));
  background: linear-gradient(to bottom, #644f1d 20%, #ab9d68 45%, #9d803a 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pre-inc .salon_video {
  margin-top: 2em;
  position: relative;
}
.pre-inc .salon_video i:nth-of-type(1) {
  display: block;
  width: 7.5em;
  height: 1px;
  background: #fff;
  position: absolute;
  top: -0.5em;
  left: -1em;
}
.pre-inc .salon_video i:nth-of-type(2) {
  display: block;
  width: 1px;
  height: 7.5em;
  background: #fff;
  position: absolute;
  top: -1em;
  left: -0.5em;
}
.pre-inc .salon_video i:nth-of-type(3) {
  display: block;
  width: 7.5em;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: -0.5em;
  right: -1em;
}
.pre-inc .salon_video i:nth-of-type(4) {
  display: block;
  width: 1px;
  height: 7.5em;
  background: #fff;
  position: absolute;
  bottom: -1em;
  right: -0.5em;
}
.pre-inc .salon_video video {
  width: 100%;
}
.pre-inc #salon a {
  display: inline-block;
  width: 20em;
  margin-top: 3em;
  text-align: center;
  color: #fff;
  padding: 0.7em;
  border: 1px solid;
  -o-border-image: linear-gradient(170deg, #9a792d, #a69e6f, #6c5010);
     border-image: linear-gradient(170deg, #9a792d, #a69e6f, #6c5010);
  border-image-slice: 1;
  position: relative;
}
.pre-inc #salon a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(170deg, #9a792d, #a69e6f, #6c5010);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.pre-inc #salon a::after {
  content: ">";
  position: absolute;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: 0.5em;
  font-size: 1em;
  line-height: 0.5;
}
.pre-inc #salon a span {
  font-size: 1em;
  letter-spacing: 0.05em;
  text-decoration: none;
  z-index: 2;
  position: relative;
}

@media screen and (max-width: 768px) {
  .pre-inc article {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .pre-inc article {
    margin-top: 55px;
  }
}
@media screen and (min-width: 769px) {
  .pre-inc #salon a:hover::before {
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .pre-inc .salon_tit {
    font-size: 1.8em;
  }
  .pre-inc .salon_tit_s {
    font-size: 1.7em;
  }
  .pre-inc .salon_video {
    width: 90vw;
    margin-inline: auto;
  }
}
/*=======================================
　scroll-infinity
=======================================*/
.scroll-infinity {
  margin-bottom: 300px;
}
@media screen and (max-width: 768px) {
  .scroll-infinity {
    margin-bottom: 120px;
  }
}
.scroll-infinity__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  overflow: hidden;
}
.scroll-infinity__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  list-style: none;
  padding: 0;
}
.scroll-infinity__list--left {
  -webkit-animation: infinity-scroll-left 80s infinite linear 0.5s both;
          animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: 25vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .scroll-infinity__item {
    width: 50vw;
  }
}
.scroll-infinity__item > img {
  width: 100%;
}
.scroll-infinity__item > .cmn_caption01 {
  position: absolute;
  right: 15px;
  bottom: 13px;
}
@media screen and (max-width: 768px) {
  .scroll-infinity__item > .cmn_caption01 {
    right: 10px;
    bottom: 10px;
  }
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/*=======================================
　bnr_area
=======================================*/
.bnr_area {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .bnr_area {
    margin-bottom: 30px;
  }
}
.bnr_area .inner {
  max-width: 1024px;
}
.bnr_area .inner .bnr_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .bnr_area .inner .bnr_wrap {
    row-gap: 20px;
    margin-bottom: 30px;
  }
}
.bnr_area .inner .cmn_notes01 {
  margin-bottom: 60px;
}
.bnr_area .cmn_re_btn_wrap {
  width: 90%;
  max-width: 1121px;
  margin-inline: auto;
}
.bnr_area .cmn_re_btn_wrap .cmn_re_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2.4085637823%;
     -moz-column-gap: 2.4085637823%;
          column-gap: 2.4085637823%;
  row-gap: 20px;
}
.bnr_area .cmn_re_btn_wrap .cmn_re_btn .reservation_btn {
  width: 547px;
  height: 141px;
  margin: 0 auto;
}
.bnr_area .cmn_re_btn_wrap .cmn_re_btn .reservation_btn:nth-of-type(2) a {
  background: -webkit-gradient(linear, left top, right top, from(#FF9F85), to(#31457E));
  background: linear-gradient(to right, #FF9F85 0%, #31457E 100%);
}
@media screen and (max-width: 768px) {
  .bnr_area .cmn_re_btn_wrap .cmn_re_btn .reservation_btn {
    width: 300px;
    height: 70px;
  }
}
.bnr_area .cmn_re_btn_wrap .cmn_re_btn .reservation_btn span {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .bnr_area .cmn_re_btn_wrap .cmn_re_btn .reservation_btn span {
    font-size: 20px;
  }
}
.bnr_area .cmn_re_btn_wrap .cmn_re_btn .reservation_btn::after {
  width: 14px;
  height: 27px;
  right: 49px;
}
@media screen and (max-width: 768px) {
  .bnr_area .cmn_re_btn_wrap .cmn_re_btn .reservation_btn::after {
    width: 7px;
    height: 14px;
    right: 25px;
  }
}

.design_sec {
  padding-block: 24.0572916667vw;
  background: center/cover url(../img/top/design_bg.jpg) no-repeat;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .design_sec {
    padding-block: unset;
    padding-top: 24.0572916667vw;
    padding-bottom: 60.1045776381vw;
  }
}
@media screen and (max-width: 768px) {
  .design_sec {
    padding-bottom: 78.9065224378vw;
  }
}
.design_sec::before {
  content: "";
  display: block;
  width: 78.75vw;
  aspect-ratio: 1512/647;
  background: center/cover url(../img/top/design_img01.png) no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -10;
}
.design_sec .figure_wrapper {
  width: 76.171875vw;
  aspect-ratio: 1462.49/1154;
  position: absolute;
  top: 112px;
  right: calc(-499px + 22vw);
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .design_sec .figure_wrapper {
    top: auto;
    right: -11.23046875vw;
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .design_sec .figure_wrapper {
    width: 100vw;
    right: 0;
  }
}
.design_sec .figure_wrapper figure {
  display: block;
  width: 100%;
  height: 100%;
  background: center/cover url(../img/top/design_img02.png) no-repeat;
  position: relative;
}
.design_sec .figure_wrapper figure figcaption {
  color: #fff;
  font-family: "Noto serif JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: absolute;
  right: calc(499px - 22vw + 1.5104166667vw);
  bottom: 20.4px;
  -webkit-filter: drop-shadow(0 0 6px #000);
          filter: drop-shadow(0 0 6px #000);
}
@media screen and (max-width: 1024px) {
  .design_sec .figure_wrapper figure figcaption {
    right: calc(11.23046875vw + 29px);
  }
}
@media screen and (max-width: 768px) {
  .design_sec .figure_wrapper figure figcaption {
    right: 29px;
    font-size: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .design_sec .cmn_ttl_area {
    display: none;
  }
}
.design_sec .cmn_content_area .cmn_content_txt_area .cmn_ttl_img01 {
  margin-bottom: 66px;
}
@media screen and (max-width: 1024px) {
  .design_sec .cmn_content_area .cmn_content_txt_area .cmn_ttl_img01 {
    margin-bottom: 44px;
  }
}
@media screen and (max-width: 768px) {
  .design_sec .cmn_content_area .cmn_content_txt_area .cmn_ttl_img01 {
    margin-bottom: 33px;
  }
}
.design_sec .cmn_content_area .cmn_content_txt_area .cmn_re_btn {
  width: 90%;
  margin-inline: auto;
}
.design_sec .cmn_content_area .cmn_section_copy {
  margin-bottom: 150px;
}
@media screen and (max-width: 1024px) {
  .design_sec .cmn_content_area .cmn_section_copy {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .design_sec .cmn_content_area .cmn_section_copy {
    margin-bottom: 75px;
  }
}/*# sourceMappingURL=top.css.map */