@charset "UTF-8";
:root {
  --color-main-tempalte: #A790C4;
  --color-main-tempalte2: #2D2D2D;
  --color-buttom-gradient-common: #2C8AAE;
}

body {
  font-size: 1.6rem;
  margin: 0;
  color: #000;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Source Han Sans JP", "Noto Sans JP", sans-serif;
}

.main {
  overflow-x: hidden;
}

html,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  box-sizing: border-box;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q::before,
q::after,
blockquote::before,
blockquote::after {
  content: "";
  content: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

input[type=text],
textarea {
  -webkit-appearance: none;
  box-sizing: border-box;
  max-width: 100%;
}

img {
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #000000;
}

/* @media print, screen and (min-width: 769px) { */
  html {
    font-size: 10px;
  }
  a:hover {
    transition: all 0.3s;
    opacity: 0.6;
  }
/* } */
/* = SP (768px以下)
  ----------------------------------------------- */
/* @media screen and (max-width: 768px) {
  html {
    font-size: 2.67vw;
  }
} */
@font-face {
  font-family: "CenturyGothic";
  src: url("https://assets.micado-rayout.jp/fonts/CenturyGothic.ttf");
}
@font-face {
  font-family: "Source Han Sans JP";
  src: url("https://assets.micado-rayout.jp/fonts/SourceHanSansJP-Regular.otf");
}
@font-face {
  font-family: "Vibis Rock";
  src: url("https://assets.micado-rayout.jp/fonts/Vibis-Rock.otf");
  font-weight: 400;
}
@font-face {
  font-family: "Vibis Classique";
  src: url("https://assets.micado-rayout.jp/fonts/Vibis-Classique.otf");
  font-weight: 400;
}
.container {
  margin: 0 auto;
  max-width: 128rem;
}
@media screen and (max-width: 1200px) {
  .container {
    max-width: 76.8rem;
  }
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.container-child {
  margin: 0 auto;
  max-width: 108rem;
}
@media screen and (max-width: 1200px) {
  .container-child {
    max-width: 76.8rem;
  }
}
@media screen and (max-width: 768px) {
  .container-child {
    padding: 0 2rem;
  }
}

#new-detail-data .news-container .container-child {
  max-width: 720px;
}

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

.center-justify {
  justify-content: center;
}

.between-justify {
  justify-content: space-between;
}

img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.hide {
  display: none !important;
}

.col {
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .col-sp {
    flex-direction: column;
  }
}

.relative {
  position: relative;
}

.pc {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

.flex {
  display: flex;
}

.pc-flex {
  display: flex;
}
@media screen and (max-width: 768px) {
  .pc-flex {
    display: none !important;
  }
}

.sp-flex {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-flex {
    display: flex !important;
  }
}

.container-custom {
  max-width: 120rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .container-custom {
    flex-direction: column-reverse;
    padding: 0 2rem;
  }
}
.container-custom .main-content {
  max-width: 88rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .container-custom .main-content {
    margin-top: 5rem;
  }
}

.custom-font-family--hiragino {
  font-family: "Hiragino Kaku Gothic Pro", sans-serif !important;
}

.box-coupon {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  background: #fff;
  border: 0.2rem solid #dddddd;
  border-radius: 0.5rem;
  padding: 2rem 2.5rem;
  top: calc(100% + 0.8rem);
  display: flex;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .box-coupon {
    flex-direction: column;
  }
}
.box-coupon .box-coupon__col {
  min-width: 18rem;
}
.box-coupon .box-coupon__col:last-child {
  padding-left: 2rem;
  border-left: 1px solid #dddddd;
  margin-left: 2rem;
}
@media screen and (max-width: 768px) {
  .box-coupon .box-coupon__col:last-child {
    padding-top: 2rem;
    border-left: unset;
    margin-left: 0;
    padding-left: 0;
  }
}
.box-coupon .box-coupon__title {
  font-family: "Source Han Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.06rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #000000;
}
.box-coupon .box-coupon__input input {
  background: #efefef;
  border-radius: 0.3rem;
  padding: 1rem 1.4rem 1.3rem;
  color: #333333;
  border: none;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.04rem;
  outline: none;
  min-height: 5rem;
  max-width: 18rem;
}
.box-coupon .box-coupon__close {
  position: absolute;
  top: 0;
  right: 0.9rem;
}

.button-custom {
  font-family: "Source Han Sans JP", serif;
  font-size: 1.4rem;
  line-height: 2rem;
  letter-spacing: 0.06rem;
  font-weight: 400;
  color: var(--color-main-tempalte);
  border: 0.1rem solid var(--color-main-tempalte);
  max-width: 17.1rem;
  margin-left: 2.5rem;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .button-custom {
    display: none !important;
  }
}
.button-custom span {
  padding: 0.9rem 2rem;
  display: block;
}
.button-custom:hover {
  background: var(--color-main-tempalte);
}
.button-custom:hover span {
  color: #fff;
}

.button-coupon.active .box-coupon {
  opacity: 1;
  pointer-events: all;
}

.txt_link_defaul {
  color: #0000ff;
  text-decoration: underline;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: flex;
}
.txt_link_defaul svg {
  margin-left: 1rem;
}

.w-65 {
  width: 65%;
}

.w-40 {
  width: 40%;
}

.w-50 {
  width: 50%;
}

.banner-block {
  height: 76.8rem;
}
@media screen and (max-width: 768px) {
  .banner-block {
    height: 64rem;
  }
}
.banner-block .banner-txt {
  font-family: "Source Han Sans JP", sans-serif;
  left: 0;
  margin: 0 auto;
  max-width: 108rem;
  padding-top: 4rem;
  position: absolute;
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .banner-block .banner-txt {
    max-width: 76.8rem;
  }
}
@media screen and (max-width: 768px) {
  .banner-block .banner-txt {
    padding: 2.5rem 2rem 0;
  }
}
.banner-block .banner-txt .banner-txt__number {
  position: absolute;
  font-size: 2.6rem;
  font-weight: 300;
  font-family: "Montserrat";
  line-height: 3.2rem;
  letter-spacing: 1rem;
  color: #fff;
  right: calc(100% + 1rem);
  top: -2rem;
  display: flex;
  justify-content: space-between;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 1200px) {
  .banner-block .banner-txt .banner-txt__number {
    right: unset;
    left: 2rem;
    top: -5rem;
  }
}
@media screen and (max-width: 768px) {
  .banner-block .banner-txt .banner-txt__number {
    font-size: 1.2rem;
    top: 0;
  }
}
.banner-block .banner-txt .banner-txt__number::after {
  content: "";
  position: absolute;
  width: 5.3rem;
  height: 0.1rem;
  background-color: #fff;
  transform: rotate(135deg);
  bottom: -1.1rem;
  right: -2.8rem;
}
@media screen and (max-width: 768px) {
  .banner-block .banner-txt .banner-txt__number::after {
    content: "";
    width: 3.2rem;
    height: 0.1rem;
    transform: rotate(140deg);
    bottom: 0.3rem;
    right: -1.2rem;
  }
}
.banner-block .banner-txt .banner-txt__title {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: 3rem;
  line-height: 1;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
@media screen and (max-width: 1200px) {
  .banner-block .banner-txt .banner-txt__title {
    padding: 2rem 2rem 0;
  }
}
@media screen and (max-width: 768px) {
  .banner-block .banner-txt .banner-txt__title {
    font-size: 3rem;
    letter-spacing: 0.3rem;
    padding: 2rem 0 0;
  }
}
.banner-block .banner-txt .banner-txt__subtitle {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
  line-height: 1;
  margin-top: 1.3rem;
}
@media screen and (max-width: 1200px) {
  .banner-block .banner-txt .banner-txt__subtitle {
    padding-left: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .banner-block .banner-txt .banner-txt__subtitle {
    font-size: 1.4rem;
    padding-left: 0;
    width: 60%;
    line-height: 2;
  }
}
.banner-block .banner-txt .banner-txt__description {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04rem;
  line-height: 3.2rem;
  margin-top: 4rem;
  white-space: pre-line;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
@media screen and (max-width: 1200px) {
  .banner-block .banner-txt .banner-txt__description {
    padding-left: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .banner-block .banner-txt .banner-txt__description {
    font-size: 1.2rem;
    width: 70%;
    font-weight: 400;
    line-height: 2;
    padding-left: 0;
    margin-top: 3rem;
    -webkit-line-clamp: inherit;
  }
}
.banner-block .banner-breackcrumb {
  display: flex;
  position: absolute;
  bottom: 7rem;
  align-items: center;
  overflow: auto;
  max-width: 108rem;
  margin: 0 auto;
  left: 0;
  right: 0;
  z-index: 1;
  flex-wrap: wrap;
  display: none;
}
@media screen and (max-width: 1200px) {
  .banner-block .banner-breackcrumb {
    padding-left: 2rem;
    width: 100%;
    max-width: 76.8rem;
    padding-right: 4rem;
    bottom: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .banner-block .banner-breackcrumb {
    flex-direction: column;
    top: unset;
    padding-left: 2rem;
    align-items: flex-start;
    bottom: 6rem;
    overflow-y: scroll;
    height: 9rem;
    flex-wrap: unset;
    display: block;
  }
}
.banner-block .banner-breackcrumb__item {
  font-size: 2rem;
  line-height: 4.4rem;
  letter-spacing: 0.1rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .banner-block .banner-breackcrumb__item {
    font-size: 1.4rem;
    line-height: 3rem;
  }
}
.banner-block .banner-breackcrumb__item:nth-child(2) {
  padding-right: 1rem;
  padding-left: 1rem;
}
@media screen and (max-width: 768px) {
  .banner-block .banner-breackcrumb__item:nth-child(2) {
    padding: 0;
  }
}
.banner-block .banner-breackcrumb__item:nth-child(2)::before {
  content: " ";
}
.banner-block .banner-breackcrumb .next-icon__previous {
  display: flex;
  align-items: center;
  min-width: -moz-max-content;
  min-width: max-content;
}
@media screen and (max-width: 768px) {
  .banner-block .banner-breackcrumb .next-icon__previous {
    display: flex;
    align-items: center;
  }
}
.banner-block .banner-breackcrumb .next-icon__banner {
  margin: 0 2rem;
  padding-right: 0;
}
.banner-block .banner-breackcrumb .next-icon__banner:after {
  height: 0.6rem;
  width: 0.6rem;
  border-width: 0.1rem 0.1rem 0 0;
}
.banner-block .banner-block .button {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .banner-block .banner-block .button {
    display: block !important;
  }
}
.banner-block .img-wrap {
  height: 100%;
  width: 100%;
}
.banner-block .overlay {
  background-color: #000;
  height: 100%;
  opacity: 0.3;
  position: absolute;
  top: 0;
  width: 100%;
}
.banner-block .restaurant-logo-cm {
  margin: 2rem 0 0 !important;
}

.text-scroll {
  position: absolute;
  right: 8rem;
  bottom: 9rem;
  writing-mode: vertical-rl;
  font-size: 1.4rem;
  line-height: 4.4rem;
  letter-spacing: 0.06rem;
  font-weight: 700;
  font-family: "Source Han Sans JP", sans-serif;
  color: #fff;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .text-scroll {
    right: 2rem;
  }
}
.text-scroll::before {
  content: " ";
  width: 14.9rem;
  height: 0.01rem;
  background-color: #fff;
  position: absolute;
  top: 7.5rem;
  right: -3.5rem;
  transform: rotate(90deg);
}

.banner-plan {
  height: 50rem;
}
@media screen and (max-width: 768px) {
  .banner-plan {
    height: 30rem;
  }
}
.banner-plan .banner-txt {
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 0;
  letter-spacing: 0.1rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .banner-plan .banner-txt {
    width: inherit;
    padding: 2.5rem 2rem 0;
  }
}
.banner-plan .banner-txt h1 {
  display: none;
  font-family: "Montserrat";
}
@media screen and (max-width: 768px) {
  .banner-plan .banner-txt h1 {
    display: block;
    font-size: 3rem;
    line-height: 3.7rem;
    text-align: left;
    font-weight: 400;
  }
}
.banner-plan .banner-txt p {
  font-size: 2.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .banner-plan .banner-txt p {
    font-size: 1.4rem;
    text-align: left;
    margin: 0;
    margin-top: 5px;
    font-weight: 400;
  }
}
.banner-plan .img-wrap {
  height: 100%;
  width: 100%;
}
.banner-plan .overlay {
  background-color: #000;
  height: 100%;
  opacity: 0.3;
  position: absolute;
  top: 0;
  width: 100%;
}

.btn-banner-prev {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  width: 80px;
  height: 40px;
  position: relative;
  display: none;
}
@media screen and (max-width: 768px) {
  .btn-banner-prev {
    display: block;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.06rem;
    line-height: 3.6rem;
    padding: 1rem 0;
    padding-left: 3.5rem;
    margin-bottom: 5rem;
  }
}
.btn-banner-prev::before {
  content: "";
  display: flex;
  background-color: #fff;
  width: 100%;
  height: 0.1rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.btn-banner-prev::after {
  content: "";
  background-color: #fff;
  width: 1.7rem;
  height: 0.1rem;
  transform: rotate(-30deg);
  position: absolute;
  left: 0;
  bottom: 5px;
}

.pagination-cm {
  display: flex;
  justify-content: center;
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .pagination-cm {
    margin-top: 4rem;
  }
}
.pagination-cm .paginationjs-pages li {
  border: 0;
}
.pagination-cm .paginationjs-pages li:last-child {
  border-right: none !important;
}
.pagination-cm .paginationjs-pages li:last-child > a {
  border-radius: 0 3px 3px 0;
  font-family: "Montserrat", "Hiragino Kaku Gothic Pro", ヒラギノ角ゴ Pro;
}
.pagination-cm .paginationjs-pages li:hover a {
  height: unset !important;
  min-width: unset !important;
}
.pagination-cm .paginationjs-pages .active a {
  background-color: unset !important;
  color: var(--color-main-tempalte) !important;
  height: unset !important;
  width: unset !important;
}
.pagination-cm .paginationjs-pages .active a::after {
  background-color: var(--color-main-tempalte);
  bottom: -1rem;
  content: "";
  display: flex;
  height: 0.1rem;
  position: relative;
  width: 100%;
}
.pagination-cm .paginationjs-pages a {
  background: transparent !important;
  color: #000 !important;
  font-size: 2rem !important;
  font-weight: 500;
  letter-spacing: 0.06rem;
  line-height: 1 !important;
  min-width: unset !important;
  padding: 0 0.8rem;
}
.pagination-cm .paginationjs-ellipsis a {
  font-size: 3rem !important;
  height: unset;
  opacity: 1 !important;
  transform: translateY(-1.3rem);
}
.pagination-cm .paginationjs-next {
  margin-left: 6rem;
}
@media screen and (max-width: 768px) {
  .pagination-cm .paginationjs-next {
    margin-left: 4.4rem;
  }
}

@media screen and (max-width: 768px) {
  .four-seasons {
    display: none !important;
  }
}
.four-seasons .four-seasons__list {
  display: flex;
  position: relative;
  height: 54rem;
}
.four-seasons .four-seasons__item {
  width: 25%;
  height: 54rem;
}
.four-seasons .four-seasons__item .four-seasons__link:hover + .seasons-hover__img {
  opacity: 1;
}
.four-seasons .four-seasons__item .four-seasons__link:hover + .seasons-hover__img img {
  animation: scale01 8s ease-out 0.3s forwards;
}
.four-seasons .seasons-hover__img {
  position: absolute;
  z-index: 3;
  opacity: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 1s ease;
  overflow: hidden;
}
.four-seasons .four-seasons__link {
  position: relative;
  max-width: 750px;
  text-decoration: none;
}
.four-seasons .four-seasons__link:hover {
  transition: initial;
  opacity: initial;
}
.four-seasons .seasons__img {
  width: 100%;
  height: 100%;
}
.four-seasons .seasons__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.four-seasons .seasons__layer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
}
.four-seasons .seasons__box {
  padding: 30px;
  position: absolute;
  right: 0px;
  bottom: 0px;
  color: #000;
  -webkit-backdrop-filter: blur(5px) brightness(115%);
  backdrop-filter: blur(5px) brightness(115%);
  background-color: rgba(255, 255, 255, 0.8);
  font-family: "Montserrat", sans-serif;
}
.four-seasons .seasons__box .seasons__title {
  font-family: "Source Han Sans JP", sans-serif;
  font-size: 3rem;
  line-height: 3.7rem;
  margin-bottom: 2rem;
}
.four-seasons .seasons__box .seasons__desc {
  font-size: 1.4rem;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 3.2rem;
  opacity: 0.8;
  margin-bottom: 2.5rem;
}
.four-seasons .seasons__arrow {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.8rem;
  padding: 1rem 0;
  max-width: 18rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .four-seasons .seasons__arrow {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.06rem;
    line-height: 3.6rem;
    padding: 1rem 0;
  }
}
.four-seasons .seasons__arrow::before {
  content: "";
  display: flex;
  background-color: #000;
  width: 18rem;
  height: 0.1rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.four-seasons .seasons__arrow::after {
  content: "";
  background-color: #000;
  width: 1.3rem;
  height: 0.1rem;
  transform: rotate(30deg);
  position: absolute;
  right: 0;
  bottom: 4px;
}

.allcontaints .allcontaints__item {
  width: 25%;
  height: 54rem;
}
.allcontaints .seasons-hover__img {
  position: absolute;
  z-index: 3;
  opacity: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 1s ease;
  overflow: hidden;
}
.allcontaints .allcontaints__link {
  position: relative;
  max-width: 750px;
  text-decoration: none;
}
.allcontaints .seasons__img {
  width: 100%;
  height: 100%;
}
.allcontaints .seasons__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.allcontaints .seasons__layer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
}
.allcontaints .seasons__box {
  width: 28rem;
  height: 22rem;
  padding: 3rem;
  position: absolute;
  right: 0px;
  bottom: 0px;
  color: #000;
  -webkit-backdrop-filter: blur(5px) brightness(115%);
  backdrop-filter: blur(5px) brightness(115%);
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1200px) {
  .allcontaints .seasons__box {
    width: 100%;
    height: auto;
    padding: 2rem;
  }
}
.allcontaints .seasons__box .seasons__title {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  line-height: 3.7rem;
  margin-bottom: 0.4rem;
}
.allcontaints .seasons__box .seasons__desc {
  font-size: 1.4rem;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2.6rem;
  opacity: 0.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 1.5rem;
}
.allcontaints .seasons__arrow {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.8rem;
  padding: 1rem 0;
  max-width: 18rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .allcontaints .seasons__arrow {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.06rem;
    line-height: 3.6rem;
    padding: 1rem 0;
  }
}
.allcontaints .seasons__arrow::before {
  content: "";
  display: flex;
  background-color: #000;
  width: 18rem;
  height: 0.1rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.allcontaints .seasons__arrow::after {
  content: "";
  background-color: #000;
  width: 1.3rem;
  height: 0.1rem;
  transform: rotate(30deg);
  position: absolute;
  right: 0;
  bottom: 4px;
}

#button-plan__filter {
  position: relative;
}
#button-plan__filter .box-select {
  opacity: 0;
  z-index: 99;
  pointer-events: none;
  position: absolute;
  background: #fff;
  border: 0.2rem solid #dddddd;
  border-radius: 0.5rem;
  padding: 2rem 1.5rem;
  top: calc(100% + 0.8rem);
}
#button-plan__filter .swiper-filter {
  width: 16rem;
  height: 3.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  background-color: #4c4c4c;
  color: #fff;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  display: none;
  font-size: 1.4rem;
  line-height: 3rem;
}
@media screen and (max-width: 768px) {
  #button-plan__filter .swiper-filter {
    display: flex;
  }
}
#button-plan__filter .swiper-filter svg {
  margin-right: 5px;
}
#button-plan__filter .plan-content__select {
  display: flex;
  justify-content: flex-end;
  margin-left: 5.4rem;
}
@media screen and (max-width: 768px) {
  #button-plan__filter .plan-content__select {
    opacity: 0;
    z-index: 99;
    pointer-events: none;
    position: absolute;
    background: #fff;
    border: 0.2rem solid #DDDDDD;
    border-radius: 0.5rem;
    padding: 2rem 1.5rem;
    top: calc(100% + 0.8rem);
    display: flex;
    left: 0;
    margin-left: 0;
  }
}
#button-plan__filter .plan-content__select.active {
  opacity: 1;
  pointer-events: all;
}
#button-plan__filter .plan-content__select .select__title {
  font-size: 1.2rem;
  font-weight: bold;
  opacity: 0.7;
  letter-spacing: 0.1em;
  line-height: 1.7rem;
  color: #333;
  margin-bottom: 0.8rem;
}
#button-plan__filter .plan-content__select select,
#button-plan__filter .plan-content__select option {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.828' height='8.828' viewBox='0 0 14.828 8.828'%3E%3Cpath id='Path_1008' data-name='Path 1008' d='M4102.758,188.041l6,6-6,6' transform='translate(201.455 -4101.344) rotate(90)' fill='none' stroke='%23000' stroke-linecap='round' stroke-width='2'/%3E%3C/svg%3E%0A");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 1.2rem;
  border: unset;
  border-bottom: 0.2rem solid #000;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  margin-right: 3rem;
  outline: unset;
  padding-bottom: 0.5rem;
  width: 18rem;
  color: #333333;
  height: 35px;
}
@media screen and (max-width: 1200px) {
  #button-plan__filter .plan-content__select select,
#button-plan__filter .plan-content__select option {
    width: 15rem;
  }
}
@media screen and (max-width: 768px) {
  #button-plan__filter .plan-content__select select,
#button-plan__filter .plan-content__select option {
    background-position: top 0.5rem right 1rem;
    background-size: 1.4rem;
    font-size: 1.3rem;
    margin-left: 0;
    padding-bottom: 0.8rem;
    width: 10rem;
  }
}
@media screen and (max-width: 768px) {
  #button-plan__filter .box-select__close {
    position: absolute;
    z-index: 99;
    top: 0;
    right: 1rem;
  }
  #button-plan__filter .box-select__col:last-child {
    padding-left: 2rem;
    border-left: 1px solid #dddddd;
  }
}

.plan-content {
  font-family: "Source Han Sans JP", sans-serif;
  overflow: hidden;
  padding: 10rem 0;
  background-color: #f9f9f9;
}
@media screen and (max-width: 768px) {
  .plan-content {
    padding: 4rem 0 6rem;
  }
}
.plan-content .plan-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .plan-content .plan-top {
    justify-content: center;
    margin-bottom: 3rem;
    margin-bottom: 1.5rem;
  }
}
.plan-content .plan-top__left {
  display: flex;
}
@media screen and (max-width: 768px) {
  .plan-content .plan-top__left {
    flex-direction: column;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .plan-content .plan-top__title {
    margin-bottom: 3rem;
    text-align: center;
  }
}
.plan-content .text-plan-EN {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.3rem;
  line-height: 3.7rem;
}
@media screen and (max-width: 768px) {
  .plan-content .text-plan-EN {
    font-size: 2.6rem;
    line-height: 3.2rem;
  }
}
.plan-content .text-plan-JP {
  color: #333;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 2rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .plan-content .text-plan-JP {
    font-size: 1rem;
  }
}
.plan-content .plan-content__select {
  justify-content: flex-end;
  margin-left: 5.4rem;
}
@media screen and (max-width: 768px) {
  .plan-content .plan-content__select {
    display: flex;
  }
}
.plan-content .plan-content__select .select__title {
  font-size: 1.2rem;
  font-weight: bold;
  opacity: 0.7;
  letter-spacing: 0.1em;
  line-height: 1.7rem;
  color: #333;
  margin-bottom: 0.8rem;
}
.plan-content .plan-content__select select,
.plan-content .plan-content__select option {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.828' height='8.828' viewBox='0 0 14.828 8.828'%3E%3Cpath id='Path_1008' data-name='Path 1008' d='M4102.758,188.041l6,6-6,6' transform='translate(201.455 -4101.344) rotate(90)' fill='none' stroke='%23000' stroke-linecap='round' stroke-width='2'/%3E%3C/svg%3E%0A");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 1.2rem;
  border: unset;
  border-bottom: 0.2rem solid #000;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  margin-right: 3rem;
  outline: unset;
  padding-bottom: 0.5rem;
  width: 18rem;
  color: #333333;
  height: 35px;
}
@media screen and (max-width: 1200px) {
  .plan-content .plan-content__select select,
.plan-content .plan-content__select option {
    width: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .plan-content .plan-content__select select,
.plan-content .plan-content__select option {
    background-position: top 0.5rem right 1rem;
    background-size: 1.4rem;
    font-size: 1.3rem;
    margin-left: 0;
    padding-bottom: 0.8rem;
    width: 10rem;
  }
}
.plan-content .swiper-filter {
  width: 16rem;
  height: 3.8rem;
  background-color: #4c4c4c;
  color: #fff;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  display: none;
}
@media screen and (max-width: 768px) {
  .plan-content .swiper-filter {
    display: flex;
  }
}
.plan-content .swiper-filter svg {
  margin-right: 5px;
}
.plan-content .custom-link {
  font-family: "Montserrat", sans-serif;
  margin-right: 14rem;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.2rem;
  padding: 1.4rem 0;
  width: 200px;
  height: 40px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .plan-content .custom-link {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .plan-content .custom-link {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.06rem;
    line-height: 3.6rem;
    padding: 1rem 0;
    margin-right: 0;
  }
}
.plan-content .custom-link::before {
  content: "";
  display: flex;
  background-color: #000;
  width: 20rem;
  height: 0.2rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.plan-content .custom-link::after {
  content: "";
  background-color: #000;
  width: 1.3rem;
  height: 0.2rem;
  transform: rotate(30deg);
  position: absolute;
  right: 0;
  bottom: 4px;
}
.plan-content .plan-content__list {
  margin-top: 4rem;
  min-height: 30rem;
}
@media screen and (max-width: 1200px) {
  .plan-content .plan-content__list {
    min-height: 17rem;
  }
}
@media screen and (max-width: 768px) {
  .plan-content .plan-content__list {
    margin-top: 1.5rem;
    min-height: 25rem;
  }
}
.plan-content .plan-content__list .slide-content {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  max-width: 108rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .plan-content .plan-content__list .slide-content {
    flex-direction: column;
  }
}
.plan-content .plan-content__list .img-thumbnail {
  margin-right: 4rem;
  width: 44rem;
  height: 50rem;
}
@media screen and (max-width: 1200px) {
  .plan-content .plan-content__list .img-thumbnail {
    width: 32rem;
    height: 36rem;
  }
}
@media screen and (max-width: 768px) {
  .plan-content .plan-content__list .img-thumbnail {
    width: 100%;
    margin-right: 0;
    height: 22rem;
    margin-bottom: 2rem;
  }
}
.plan-content .plan-content__list .content-box {
  max-width: 49rem;
}
.plan-content .plan-content__list .content-box .content-box__index {
  font-family: "Montserrat";
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  line-height: 2.4rem;
  position: relative;
  display: inline-block;
  margin-bottom: 2.8rem;
  color: #000;
}
@media screen and (max-width: 768px) {
  .plan-content .plan-content__list .content-box .content-box__index {
    position: absolute;
    top: 0;
    padding: 10px;
    font-size: 1.2rem;
    width: 5.4rem;
    height: 5.4rem;
    -webkit-backdrop-filter: blur(5px) brightness(115%);
    backdrop-filter: blur(5px) brightness(115%);
    background-color: rgba(255, 255, 255, 0.8);
  }
}
.plan-content .plan-content__list .content-box .content-box__index::after {
  content: "";
  position: absolute;
  width: 4.3rem;
  height: 0.1rem;
  background-color: #707070;
  transform: rotate(-45deg);
  right: -2.3rem;
  top: 3rem;
}
@media screen and (max-width: 768px) {
  .plan-content .plan-content__list .content-box .content-box__index::after {
    width: 3.1rem;
    top: 3.3rem;
    right: 0.5rem;
  }
}
.plan-content .plan-content__list .content-box .ml-pc-60 {
  margin-left: 60px;
}
@media screen and (max-width: 768px) {
  .plan-content .plan-content__list .content-box .ml-pc-60 {
    margin-left: 0;
  }
}
.plan-content .plan-content__list .content-box .content-box__title {
  font-size: 3rem;
  font-weight: 500;
  line-height: 5rem;
  letter-spacing: 0.04em;
  margin-bottom: 4rem;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1200px) {
  .plan-content .plan-content__list .content-box .content-box__title {
    max-width: 33rem;
  }
}
@media screen and (max-width: 768px) {
  .plan-content .plan-content__list .content-box .content-box__title {
    max-width: unset;
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 1.5rem;
  }
}
.plan-content .plan-content__list .content-box .content-box__des {
  display: flex;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 3.2rem;
  text-align: justify;
  margin-right: 1.5em;
  margin-bottom: 4rem;
}
.plan-content .plan-content__list .content-box .content-box__des .left {
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .plan-content .plan-content__list .content-box .content-box__des .left {
    margin-right: 1.3rem;
  }
}
@media screen and (max-width: 1200px) {
  .plan-content .plan-content__list .content-box .content-box__des {
    font-size: 1.3rem;
    line-height: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .plan-content .plan-content__list .content-box .content-box__des {
    font-size: 1.4rem;
    line-height: 3rem;
    margin-bottom: 2rem;
  }
}
.plan-content .plan-content__list .slide-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22rem;
  height: 6rem;
  border: 1px solid #707070;
  color: #333;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .plan-content .plan-content__list .slide-btn {
    margin: 0 auto;
  }
}
.plan-content .plan-content__list .swiper-button {
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
}
.plan-content .plan-content__list .swiper-button-next-plan {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 8rem;
  height: 8rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1200px) {
  .plan-content .plan-content__list .swiper-button-next-plan {
    height: 5rem;
    right: -2.5rem;
    width: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .plan-content .plan-content__list .swiper-button-next-plan {
    height: 3.8rem;
    right: 0;
    width: 3.8rem;
    top: -1.2rem;
  }
}
.plan-content .plan-content__list .swiper-button-next-plan::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='45' height='69' viewBox='0 0 45 69'%3E%3Ctext id='_' data-name='←' transform='matrix(-1, 0, 0, 1, 45, 56)' fill='%23fff' font-size='52' font-family='SegoeUI, Segoe UI'%3E%3Ctspan x='0' y='0'%3E←%3C/tspan%3E%3C/text%3E%3C/svg%3E%0A");
  background-position: top 0.4rem center;
  background-repeat: no-repeat;
  background-size: 4rem;
  content: "";
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .plan-content .plan-content__list .swiper-button-next-plan::after {
    background-size: 3rem;
    background-position: top -0.2rem center;
  }
}
@media screen and (max-width: 768px) {
  .plan-content .plan-content__list .swiper-button-next-plan::after {
    background-size: 2rem;
    background-position: top center;
  }
}
.plan-content .plan-content__list .swiper-button-prev-plan {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 8rem;
  height: 8rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1200px) {
  .plan-content .plan-content__list .swiper-button-prev-plan {
    height: 5rem;
    left: -2.5rem;
    width: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .plan-content .plan-content__list .swiper-button-prev-plan {
    top: -1.2rem;
    left: unset;
    height: 3.8rem;
    right: 4.8rem;
    width: 3.8rem;
  }
}
.plan-content .plan-content__list .swiper-button-prev-plan::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='45' height='69' viewBox='0 0 45 69'%3E%3Ctext id='_' data-name='←' transform='translate(0 56)' fill='%23fff' font-size='52' font-family='SegoeUI, Segoe UI'%3E%3Ctspan x='0' y='0'%3E←%3C/tspan%3E%3C/text%3E%3C/svg%3E%0A");
  background-position: top 0.4rem center;
  background-repeat: no-repeat;
  background-size: 4rem;
  content: "";
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .plan-content .plan-content__list .swiper-button-prev-plan::after {
    background-size: 3rem;
    background-position: top -0.2rem center;
  }
}
@media screen and (max-width: 768px) {
  .plan-content .plan-content__list .swiper-button-prev-plan::after {
    background-size: 2rem;
    background-position: top center;
  }
}

.button-more {
  align-items: center;
  background: var(--color-main-tempalte);
  border-radius: 5.5rem;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 2rem;
  font-weight: 600;
  margin: 0 auto;
  padding: 2.5rem 10rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .button-more {
    font-size: 1.6rem;
    justify-content: center;
    padding: 1.5rem 0;
    width: calc(100% - 4rem);
  }
}
.button-more::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.905' height='18.982' viewBox='0 0 10.905 18.982'%3E%3Cpath id='Path_935' data-name='Path 935' d='M4102.758,188.041l8.077,8.077-8.077,8.077' transform='translate(-4101.344 -186.627)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-width='2'/%3E%3C/svg%3E%0A");
  position: absolute;
  right: 3.4rem;
  top: 53%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .button-more::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.905' height='18.982' viewBox='0 0 10.905 18.982'%3E%3Cpath id='Path_935' data-name='Path 935' d='M4102.758,188.041l8.077,8.077-8.077,8.077' transform='translate(-4101.344 -186.627)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-width='2'/%3E%3C/svg%3E%0A");
    background-size: 100% 100%;
    content: "";
    height: 1.6rem;
    right: 6.6rem;
    width: 0.8rem;
  }
}

.more-info-link {
  position: relative;
  padding-bottom: 2rem;
  padding-right: 8rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Montserrat", sans-serif;
}
.more-info-link::before {
  content: "";
  width: 3rem;
  height: 0.1rem;
  background-color: #707070;
  position: absolute;
  bottom: 1rem;
  right: -0.3rem;
  transform: rotate(40deg);
}
.more-info-link::after {
  content: "";
  width: 100%;
  height: 0.1rem;
  background-color: #707070;
  position: absolute;
  bottom: 0;
  left: 0;
}
.more-info-link.border-black::before {
  background-color: #000;
}
.more-info-link.border-black::after {
  background-color: #000;
}

.search-box-fixer {
  left: 0;
  padding: 14rem 0 6rem 0;
  position: fixed;
  right: 0;
  top: -35rem;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .search-box-fixer {
    align-items: center;
    bottom: calc(100vh + 50%);
    display: flex;
    justify-content: center;
    padding: 0;
    top: -100vh;
  }
}
.search-box-fixer.show {
  top: 0;
  bottom: 0;
}
.search-box-fixer .search_box {
  margin-top: 0;
}
.search-box-fixer .overlay-search-form {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.search_box {
  margin-top: -4rem;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 1200px) {
  .search_box {
    margin-top: -2rem;
  }
}
@media screen and (max-width: 768px) {
  .search_box {
    margin-top: 3rem;
  }
}
.search_box .search_box__body {
  align-items: center;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.16);
  display: flex;
  flex: 1;
  height: 14.6rem;
  justify-content: space-between;
  padding: 3.5rem 6rem;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .search_box .search_box__body {
    height: 10rem;
    padding: 1.5rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .search_box .search_box__body {
    border-radius: 2rem;
    flex-direction: column;
    height: unset;
    padding: 1.9rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .search_box .search_box__search_text {
    border-bottom: 0.2rem solid #d4d1cc;
    font-family: "Hiragino Kaku Gothic Pro", sans-serif;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1;
    padding-bottom: 2.1rem;
    text-align: center;
    width: 100%;
    color: #000;
  }
}
.search_box .search_box__left {
  display: flex;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .search_box .search_box__left {
    border-bottom: 0.1rem solid #ddd;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.search_box .search_box__left .search_border {
  border-right: 0.1rem solid #ddd;
}
@media screen and (max-width: 768px) {
  .search_box .search_box__left .search_border {
    border-right: unset;
  }
}
.search_box .search_box__left .search_border:last-of-type {
  border-right: unset;
}
.search_box .search_box__left .search_box__search {
  flex-direction: column;
  justify-content: center;
  padding-right: 4rem;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .search_box .search_box__left .search_box__search {
    padding-right: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .search_box .search_box__left .search_box__search {
    flex-direction: row;
    width: 50%;
  }
}
.search_box .search_box__left .search_box__svg {
  height: 3rem;
  margin: 0 auto;
  width: 3rem;
}
.search_box .search_box__left .search_box__svg svg {
  height: 100%;
  width: 100%;
}
.search_box .search_box__left .search_box__svg path {
  fill: #2D2D2D;
}
.search_box .search_box__left .search_box__search_text {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.06rem;
  line-height: 1;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .search_box .search_box__left .search_box__search_text {
    font-size: 1.2rem;
  }
}
.search_box .search_box__left .search_box__text {
  color: #000;
  font-family: "Source Han Sans JP", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06rem;
  line-height: 1;
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 768px) {
  .search_box .search_box__left .search_box__text {
    color: #000;
    font-family: "DINPro", sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2.4rem;
    letter-spacing: 0.04rem;
    margin-bottom: 0;
  }
}
.search_box .search_box__left .search_box__date_time {
  flex: 2;
  padding: 0 2rem;
  max-width: 35rem;
}
@media screen and (max-width: 1200px) {
  .search_box .search_box__left .search_box__date_time {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 768px) {
  .search_box .search_box__left .search_box__date_time {
    border-bottom: 0.1rem solid #ddd;
    flex-direction: row;
    justify-content: center;
    min-width: 100%;
    padding: 0;
    padding: 2rem 0;
    width: 100%;
  }
}
.search_box .search_box__left .search_box__time {
  position: relative;
}
@media screen and (max-width: 768px) {
  .search_box .search_box__left .search_box__time {
    width: 100%;
    align-items: center;
  }
  .search_box .search_box__left .search_box__time .search_box__text {
    margin-right: 1.8rem;
  }
}
.search_box .search_box__left .date-input__box {
  display: flex;
  align-items: center;
}
.search_box .search_box__left .date-input__text {
  display: inline-block;
  margin: 0 1.5rem;
  font-size: 2rem;
}
@media screen and (max-width: 1200px) {
  .search_box .search_box__left .date-input__text {
    margin: 0 1rem;
  }
}
.search_box .search_box__left .calendar_img {
  cursor: pointer;
  display: flex;
  margin-left: 0;
  min-width: 2rem;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1200px) {
  .search_box .search_box__left .calendar_img {
    min-width: 1.4rem;
    width: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .search_box .search_box__left .calendar_img {
    margin-left: 0;
    min-width: 1.2rem;
    max-width: 1.2rem;
  }
}
.search_box .search_box__left .calendar_img img {
  height: auto;
  -o-object-fit: unset;
     object-fit: unset;
}
.search_box .search_box__left .input_date {
  border: unset;
  font-size: 2rem;
  letter-spacing: 0.004rem;
  line-height: 2.4rem;
  outline: none;
  padding: 0;
  width: calc(100% - 6rem);
}
@media screen and (max-width: 1200px) {
  .search_box .search_box__left .input_date {
    width: calc(100% - 4rem);
  }
}
@media screen and (max-width: 768px) {
  .search_box .search_box__left .input_date {
    font-size: 1.6rem;
    text-align: center;
    width: 18.4rem;
  }
}
.search_box .search_box__left .input_date::-webkit-calendar-picker-indicator {
  height: 2rem;
  opacity: 0;
  position: absolute;
  right: 0;
  width: 2rem;
  z-index: 999;
}
.search_box .search_box__left .search_box__select {
  padding: 0 3rem 0 2rem;
}
@media screen and (max-width: 1200px) {
  .search_box .search_box__left .search_box__select {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 768px) {
  .search_box .search_box__left .search_box__select {
    align-items: center;
    display: flex;
    padding: 0;
    max-width: 50%;
    flex: 1;
  }
}
.search_box .search_box__left .search_box__option select {
  font-size: 2rem;
  height: 2.7rem;
  letter-spacing: 0.04rem;
  line-height: 1;
  padding-left: 0;
  padding-right: 1.2rem;
  position: relative;
  text-indent: 0.1rem;
  background-color: transparent;
  border: unset;
  color: #000;
  cursor: pointer;
  outline: unset;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.9' height='6.157' viewBox='0 0 10.9 6.157'%3E%3Cpath id='Path_885' data-name='Path 885' d='M4102.758,188.041l4.743,4.743-4.743,4.743' transform='translate(198.234 -4102.051) rotate(90)' fill='none' stroke='%23000' stroke-linecap='round' stroke-width='1'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 1.1rem;
}
@media screen and (max-width: 1200px) {
  .search_box .search_box__left .search_box__option select {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .search_box .search_box__left .search_box__option select {
    font-size: 1.6rem;
    height: unset;
    left: 2.1rem;
    padding: 2.2rem 1.5rem 2.2rem 0;
  }
}
.search_box .search_box__right {
  display: flex;
  flex: 1;
  height: 100%;
  justify-content: flex-end;
  max-width: 21.5rem;
}
@media screen and (max-width: 1200px) {
  .search_box .search_box__right {
    max-width: 13rem;
  }
}
@media screen and (max-width: 768px) {
  .search_box .search_box__right {
    flex-direction: column;
    max-width: 100%;
    width: 100%;
  }
}
.search_box .search_box__right .search_box__button {
  background-color: var(--color-main-tempalte2);
  color: #fff;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
  line-height: 1;
  margin-right: 0;
  max-width: 19rem;
  transition: all 0.5s;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .search_box .search_box__right .search_box__button {
    font-size: 1.5rem;
    max-width: 13rem;
  }
}
@media screen and (max-width: 768px) {
  .search_box .search_box__right .search_box__button {
    font-size: 1.6rem;
    height: 6rem;
    margin-top: 2.5rem;
    max-width: 100%;
    order: 0;
  }
}
.search_box .search_box__right .search_box__button:hover {
  background-color: #fff;
  border: 0.1rem solid var(--color-main-tempalte2);
  color: var(--color-main-tempalte2);
}
.search_box .search_box__right .search_box__button:hover path {
  fill: var(--color-main-tempalte2);
}
.search_box .search_box__right .search_box__button path {
  transition: all 0.5s;
}
.search_box .search_box__right .search_box__button svg {
  margin-right: 0.6rem;
  position: relative;
  top: 0.2rem;
}
@media screen and (max-width: 768px) {
  .search_box .search_box__right .search_box__button svg {
    display: none;
  }
}
.search_box .search_box__right .search_box__detail {
  margin-left: 2rem;
}
.search_box .search_box__right .search_box__desc {
  color: #2c8aae;
  font-size: 1.6rem;
  letter-spacing: 0.06rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .search_box .search_box__right .search_box__desc {
    display: block;
    margin-top: 1.2rem;
  }
}
.search_box .search_box__right .search_box__desc:hover {
  text-decoration: underline;
}
.search_box .search_box__right .search_box__desc:last-child {
  margin-top: 1.2rem;
}
.search_box .view-more-plan {
  color: var(--color-main-tempalte2);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
  line-height: 1;
  margin-top: 1.7rem;
  display: none;
}
@media screen and (max-width: 768px) {
  .search_box .view-more-plan {
    font-size: 1.3rem;
    letter-spacing: 0.03rem;
    text-decoration: underline;
    display: block;
  }
}
.search_box .and-txt {
  display: inline-block;
  margin: 0 0.2rem;
}

.reserve-content {
  min-height: 54rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .reserve-content {
    min-height: 38.3rem;
    margin-top: 6rem;
  }
}
.reserve-content .reserve-background {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.reserve-content .reserve-background .reserve-img {
  height: 100%;
  width: 100%;
}
.reserve-content .reserve-background .reserve-img .overlay {
  background-color: #000;
  height: 100%;
  opacity: 0.3;
  position: absolute;
  top: 0;
  width: 100%;
}
.reserve-content .reserve-detailt {
  color: #fff;
  padding-bottom: 8rem;
  padding-top: 10.5rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .reserve-content .reserve-detailt {
    padding: 4rem 0;
    width: 90%;
    margin: auto;
  }
}
.reserve-content .reserve-detailt .text-EN {
  color: #fff !important;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.037rem;
  line-height: 1;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
.reserve-content .reserve-detailt .text-JP {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 1;
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .reserve-content .reserve-detailt .text-JP {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
}
.reserve-content .reserve-detailt .text-detail {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04rem;
  line-height: 3.2rem;
  margin-top: 4.3rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .reserve-content .reserve-detailt .text-detail {
    font-size: 1.2rem;
    line-height: 2.4rem;
    margin-top: 3rem;
  }
}
.reserve-content .reserve-btn {
  background-color: var(--color-main-tempalte2);
  border-radius: 0.3rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  height: 7rem;
  line-height: 1;
  margin: 4.5rem auto 0;
  transition: all 0.3s;
  width: 26rem;
}
@media screen and (max-width: 768px) {
  .reserve-content .reserve-btn {
    font-size: 1.6rem;
    height: 6rem;
    margin-top: 3.6rem;
    width: 22rem;
  }
}
.reserve-content .reserve-btn:hover {
  background-color: #fff;
  border: 0.2rem solid var(--color-main-tempalte2);
  color: var(--color-main-tempalte2);
}
.reserve-content .reserve-btn__more {
  background-color: var(--color-main-tempalte);
  border-radius: 6.3rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  height: 6rem;
  line-height: 1;
  margin: 2rem auto 0;
  transition: all 0.3s;
  width: 26rem;
}
.reserve-content .reserve-btn__more:hover {
  background-color: #fff;
  border: 0.2rem solid var(--color-main-tempalte);
  color: var(--color-main-tempalte);
}
.reserve-content .noti-txt {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 1;
  margin-top: 3.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .reserve-content .noti-txt {
    font-size: 1.4rem;
    margin-top: 2.2rem;
  }
}

.menu-inside {
  background-color: #111;
  height: 8rem;
  padding: 0 2rem;
}
.menu-inside .inside-row {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: space-between;
}
.menu-inside .inside-col {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}
.menu-inside .inside-col a {
  color: #fff;
  font-family: "Source Han Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}
.menu-inside .inside-col .next-content {
  opacity: 0.4;
}

.next-icon {
  align-items: center;
  display: flex;
  padding-right: 2rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.next-icon::after {
  border-color: currentColor;
  border-style: solid;
  border-width: 0.2rem 0.2rem 0 0;
  color: #fff;
  content: "";
  height: 1rem;
  position: absolute;
  right: 0;
  transform: rotate(45deg);
  width: 1rem;
}

@media screen and (max-width: 768px) {
  .couple-button-header {
    display: flex;
    position: fixed;
    z-index: 999;
    bottom: 0;
    right: 0;
  }
}
.couple-button-header .couple-button__item {
  width: 16rem;
  height: 8rem;
  font-size: 1.6rem;
  line-height: 3rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 5;
}
@media screen and (max-width: 1439px) {
  .couple-button-header .couple-button__item {
    width: 11rem;
    height: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .couple-button-header .couple-button__item {
    font-size: 1.2rem;
    width: 9rem;
    height: 5.6rem;
  }
}
.couple-button-header .couple-button__item:hover {
  opacity: 0.6;
}
.couple-button-header .vacancy-reservation-btn {
  background-color: #A790C4;
}
.couple-button-header .plan-list-btn {
  background-color: var(--color-main-tempalte2);
}

.allcontaints-content {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .allcontaints-content {
    margin-top: 6rem;
  }
}
.allcontaints-content .all-containts-heading {
  color: var(--color-main-tempalte);
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .allcontaints-content .all-containts-heading {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .allcontaints-content .all-containts-heading {
    color: #000;
    font-size: 2.6rem;
    font-family: "Montserrat", sans-serif;
  }
}
.allcontaints-content .allcontaints-wrap__slide {
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .allcontaints-content .allcontaints-wrap__slide {
    margin-top: 3rem;
    margin-right: -2rem;
    margin-left: -2rem;
    padding: 0 2rem;
  }
}
.allcontaints-content .allcontaints-img {
  height: 20rem;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .allcontaints-content .allcontaints-img {
    height: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .allcontaints-content .allcontaints-img {
    height: 20rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  }
}
.allcontaints-content .allcontaints-img:hover img {
  transform: scale(1.1);
  transition: all 0.5s;
}
.allcontaints-content .allcontaints-img img {
  height: 100%;
}
.allcontaints-content .allcontaints-wrap {
  display: grid;
  grid-gap: 4rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1200px) {
  .allcontaints-content .allcontaints-wrap {
    grid-gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .allcontaints-content .allcontaints-wrap {
    display: flex;
    flex-wrap: nowrap;
    grid-gap: 0;
    grid-template-columns: unset;
    justify-content: unset;
  }
}
.allcontaints-content .allcontaints-wrap .allcontaints-wrap__item {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .allcontaints-content .allcontaints-wrap .allcontaints-wrap__item {
    width: 15rem;
  }
}
.allcontaints-content .allcontaints-wrap .allcontaints-detailt .text-EN {
  color: #333;
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 0.24rem;
  line-height: 1.2;
  word-break: break-word;
  margin: 1rem 0 0.5rem;
  font-family: "Montserrat", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Source Han Sans JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1200px) {
  .allcontaints-content .allcontaints-wrap .allcontaints-detailt .text-EN {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .allcontaints-content .allcontaints-wrap .allcontaints-detailt .text-EN {
    font-size: 1.6rem;
  }
}
.allcontaints-content .allcontaints-wrap .allcontaints-detailt .text-JP {
  color: #000;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.06rem;
  line-height: 2.6rem;
  opacity: 0.9;
}
@media screen and (max-width: 1200px) {
  .allcontaints-content .allcontaints-wrap .allcontaints-detailt .text-JP {
    font-size: 1rem;
    line-height: 1.6;
  }
}
.allcontaints-content .allcontaints-pagination {
  height: 0.1rem !important;
  transform: translateX(2rem);
}
.allcontaints-content .allcontaints-pagination .swiper-pagination-progressbar-fill {
  background: #000 !important;
}

.location-edu {
  margin: 10rem 0 10rem 8rem;
}
@media screen and (max-width: 1200px) {
  .location-edu {
    margin: 5rem 0 5rem 4rem;
  }
}
@media screen and (max-width: 768px) {
  .location-edu {
    margin: 4rem 0 4rem 2rem;
  }
}
.location-edu .location-edu__wrap {
  overflow: hidden;
}
.location-edu .location-edu__item {
  width: 30rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .location-edu .location-edu__item {
    width: 26rem;
  }
}
.location-edu .location-edu__item img {
  height: 21rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .location-edu .location-edu__item img {
    height: 18rem;
  }
}
.location-edu .location-edu__item .txt-wrap__title {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.6rem;
  margin-bottom: 0.6rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .location-edu .location-edu__item .txt-wrap__title {
    font-size: 1.2rem;
  }
}
.location-edu .location-edu__item .txt-wrap__des {
  color: #6F6F6F;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.7rem;
}

.image-width-margin {
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  margin: 5rem 0;
}
@media screen and (max-width: 768px) {
  .image-width-margin {
    margin: 2.5rem 0;
  }
}

.image-full-width {
  display: block;
  height: 80rem;
  margin: 5rem 0;
}
@media screen and (max-width: 1200px) {
  .image-full-width {
    height: 50rem;
  }
}
@media screen and (max-width: 768px) {
  .image-full-width {
    height: 25rem;
    margin: 2.5rem 0;
  }
}

.navbar {
  border: 0.1rem solid #ddd;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 28rem;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  width: 100%;
  padding-bottom: 0.85rem;
  margin-left: 40px;
}
@media screen and (max-width: 1200px) {
  .navbar {
    max-width: 27rem;
  }
}
@media screen and (max-width: 768px) {
  .navbar {
    max-width: 25rem;
    max-width: 100%;
    margin-left: 0;
  }
}
.navbar .navbar-item {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 100%;
}
.navbar .navbar-item .navbar-item-left {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 4.8rem;
}
.navbar .navbar-item .navbar-item-right {
  display: flex;
  width: 1rem;
}
.navbar .navbar-item-child {
  padding-top: 0.8rem;
}
.navbar .navbar-brick {
  background-color: #ddd;
  height: 0.1rem;
  margin: 0 auto;
  margin-bottom: 0.85rem;
  margin-top: 0.85rem;
  max-width: 100%;
}

.mv-v2 {
  position: relative;
  height: 60rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .mv-v2 {
    height: 37.5rem;
  }
}
.mv-v2 .w-h-full {
  width: 100%;
  height: 100%;
}
.mv-v2 .mv-v2-text__wrap {
  position: absolute;
  z-index: 10;
  max-width: 108rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding-top: 4rem;
}
@media screen and (max-width: 1200px) {
  .mv-v2 .mv-v2-text__wrap {
    max-width: 76.8rem;
  }
}
@media screen and (max-width: 768px) {
  .mv-v2 .mv-v2-text__wrap {
    padding-top: 2.5rem;
  }
}
.mv-v2 .mv-v2-text {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
  line-height: 1;
  margin-top: 3.3rem;
}
@media screen and (max-width: 768px) {
  .mv-v2 .mv-v2-text {
    font-size: 1.6rem;
    text-align: center;
    width: 60%;
    margin: 1rem auto 0;
    line-height: 1.5;
  }
}
.mv-v2 .mv-v2-heading {
  color: #fff;
  font-family: "Vibis Rock", sans-serif;
  font-size: 10rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 1;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .mv-v2 .mv-v2-heading {
    font-size: 6rem;
    text-align: center;
  }
}
.mv-v2 .swiperContainer {
  width: 100%;
  height: 100%;
}
.mv-v2 .swiperContainer .swiper-slide {
  position: relative;
}
.mv-v2 .swiperContainer .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.6784313725));
}
.mv-v2 .swiperContainer .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.concept-content-ver02 {
  margin: 10rem 8rem;
}
@media screen and (max-width: 1200px) {
  .concept-content-ver02 {
    margin: 5rem 4rem;
  }
}
@media screen and (max-width: 768px) {
  .concept-content-ver02 {
    margin: 4rem 2rem;
  }
}
.concept-content-ver02 .concept-content__container {
  flex-direction: column;
}
.concept-content-ver02 .text-wrap {
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .concept-content-ver02 .text-wrap {
    margin-bottom: 3rem !important;
  }
}
.concept-content-ver02 .txt-title-EN {
  color: #A5A6B0;
  font-size: 2.4rem;
  line-height: 3.5rem;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .concept-content-ver02 .txt-title-EN {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .concept-content-ver02 .txt-title-EN {
    font-size: 1.6rem;
  }
}
.concept-content-ver02 .txt-title-JP {
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 4.9rem;
  margin-top: 1.2rem;
}
@media screen and (max-width: 1200px) {
  .concept-content-ver02 .txt-title-JP {
    font-size: 2.8rem;
    line-height: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .concept-content-ver02 .txt-title-JP {
    font-size: 2rem;
    line-height: 2.9rem;
    margin-top: 1.5rem;
  }
}
.concept-content-ver02 .detail-content {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 3.2rem;
  margin-top: 3.2rem;
}
@media screen and (max-width: 1200px) {
  .concept-content-ver02 .detail-content {
    font-size: 1.5rem;
    line-height: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .concept-content-ver02 .detail-content {
    font-size: 1.2rem;
    line-height: 2.4rem;
    margin-top: 2rem;
  }
}
.concept-content-ver02 .desc-txt {
  font-size: 1.6rem;
  font-weight: 500;
  height: 0;
  line-height: 2.6rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .concept-content-ver02 .desc-txt {
    font-size: 1.2rem;
    line-height: 2rem;
    margin-top: 0.5rem;
  }
}
.concept-content-ver02 .concept-img {
  height: max(60rem, 41.7vw);
}
@media screen and (max-width: 1200px) {
  .concept-content-ver02 .concept-img {
    height: 45rem;
  }
}
@media screen and (max-width: 768px) {
  .concept-content-ver02 .concept-img {
    height: 18rem !important;
    min-height: unset !important;
  }
}
.concept-content-ver02.content__right .text-wrap {
  width: 50%;
  padding-right: 8rem;
  margin-bottom: 0rem;
}
@media screen and (max-width: 768px) {
  .concept-content-ver02.content__right .text-wrap {
    padding: 0;
    width: 100%;
  }
}
.concept-content-ver02.content__right .concept-content__container {
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .concept-content-ver02.content__right .concept-content__container {
    flex-direction: column;
  }
}
.concept-content-ver02.content__right .concept-img {
  height: 33.4vw;
  min-height: 47.9rem;
  width: 50%;
}
@media screen and (max-width: 1200px) {
  .concept-content-ver02.content__right .concept-img {
    min-height: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .concept-content-ver02.content__right .concept-img {
    min-height: 25rem;
    width: 100%;
  }
}
.concept-content-ver02.content__left .text-wrap {
  order: 1;
  padding-left: 8rem;
  width: 50%;
  margin-bottom: 0rem;
}
@media screen and (max-width: 1200px) {
  .concept-content-ver02.content__left .text-wrap {
    padding-left: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .concept-content-ver02.content__left .text-wrap {
    order: 0;
    padding: 0;
    width: 100%;
  }
}
.concept-content-ver02.content__left .concept-content__container {
  flex-direction: row;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .concept-content-ver02.content__left .concept-content__container {
    flex-direction: column;
  }
}
.concept-content-ver02.content__left .concept-img {
  height: 33.4vw;
  min-height: 47.9rem;
  width: 50%;
}
@media screen and (max-width: 1200px) {
  .concept-content-ver02.content__left .concept-img {
    min-height: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .concept-content-ver02.content__left .concept-img {
    min-height: 25rem;
    width: 100%;
  }
}
.concept-content-ver02.content__center .text-wrap {
  text-align: center;
  max-width: 90%;
  margin: 0 auto 6rem;
}
@media screen and (max-width: 768px) {
  .concept-content-ver02.content__center .text-wrap {
    max-width: 100%;
  }
}
.concept-content-ver02.content__custom .txt-title-JP {
  margin: 0 0 6rem;
}
@media screen and (max-width: 768px) {
  .concept-content-ver02.content__custom .txt-title-JP {
    margin: 0 0 2rem;
  }
}
.concept-content-ver02.content__custom .detail-content {
  line-height: 2.6rem;
}
@media screen and (max-width: 768px) {
  .concept-content-ver02.content__custom .detail-content {
    margin-top: 1.5rem;
    font-size: 1.6rem;
    font-weight: 500;
  }
}

.roll-left {
  position: relative;
  overflow: hidden;
}
.roll-left img {
  opacity: 0;
  transition: opacity 1.5s ease 0.6s;
  animation-delay: 0.6s;
}
.roll-left::after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  bottom: 0;
  background: #332F2F;
}
.roll-left.is-view::after {
  animation: rollLeft 1s ease;
  animation-delay: 0.5s;
}
.roll-left.is-view img {
  opacity: 1;
}

@keyframes scale01 {
  0% {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
@keyframes rollLeft {
  0% {
    left: 0;
    right: 100%;
  }
  50% {
    left: 0;
    right: 0;
  }
  100% {
    left: 100%;
    right: 0;
  }
}
.header {
  padding: 0 0 0 8rem;
  position: fixed;
  top: 0;
  transition: all 0.5s;
  width: 100%;
  z-index: 999;
}
@media screen and (max-width: 1439px) {
  .header {
    padding: 0 0 0 4rem;
  }
}
@media screen and (max-width: 1200px) {
  .header {
    padding: 0 0 0 2rem;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 1.6rem 2rem;
  }
}
.header.alway-show {
  top: 0 !important;
  background-color: transparent !important;
}
@media screen and (max-width: 768px) {
  .header.alway-show .btn-show-menu {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .header.alway-show .close-search-form-sp {
    display: block !important;
  }
}
.header.header-up {
  top: -13.8rem;
}
.header.header-white, .header.page-header-white {
  background-color: rgba(255, 255, 255, 0.6);
}
.header.header-white .menu-list, .header.page-header-white .menu-list {
  color: #000 !important;
}
.header.header-white .header-logo__txt, .header.page-header-white .header-logo__txt {
  color: #000 !important;
}
.header.header-white .change-language__item, .header.page-header-white .change-language__item {
  color: #000 !important;
}
.header .header-logo {
  position: relative;
  z-index: 1;
}
.header .header-logo .header-logo__img {
  margin-right: 0.5rem;
  width: 13rem;
  max-height: 8rem;
}
@media screen and (max-width: 1439px) {
  .header .header-logo .header-logo__img {
    width: 9rem;
    max-height: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .header .header-logo .header-logo__img {
    width: 6.6rem;
  }
}
.header .header-logo .header-logo__txt {
  color: #fff;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
  line-height: 1;
}
@media screen and (max-width: 1439px) {
  .header .header-logo .header-logo__txt {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .header .header-logo .header-logo__txt {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
.header .header-menu {
  justify-content: flex-end;
  width: calc(100% - 25rem);
  position: relative;
  z-index: 1;
  padding-left: 1.5rem;
}
@media screen and (max-width: 1439px) {
  .header .header-menu {
    width: calc(100% - 19rem);
  }
}
@media screen and (max-width: 768px) {
  .header .header-menu {
    width: calc(100% - 13.5rem);
    padding-left: 0;
  }
}
.header .header-menu__list {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 1439px) {
  .header .header-menu__list {
    flex-wrap: wrap;
  }
}
.header .header-menu__list .menu-list {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.2rem;
  margin-right: 1.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 1439px) {
  .header .header-menu__list .menu-list {
    font-size: 1.5rem;
    margin-right: 3rem;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 1200px) {
  .header .header-menu__list .menu-list {
    font-size: 1.6rem;
    white-space: normal;
  }
}
.header .btn-show-menu {
  margin-left: 1.5rem;
}
.header .btn-show-menu .btn-show-menu__txt {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04rem;
  line-height: 1;
}
.header .btn-show-menu .btn-show-menu__icon {
  height: 1.8rem;
  margin-left: 0.6rem;
  width: 2rem;
}
.header .btn-show-menu .btn-show-menu__icon svg {
  height: 100%;
  width: 100%;
}
.header .close-btn-menu {
  cursor: pointer;
}
.header .close-btn-menu .close-menu__txt {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04rem;
  line-height: 1;
}
.header .close-btn-menu .close-menu__icon {
  width: 1.8rem;
  height: 1.8rem;
  margin-left: 0.8rem;
}
.header .close-btn-menu svg {
  height: 100%;
  width: 100%;
}
.header .close-search-form-sp {
  display: none;
}
.header .header-more {
  cursor: pointer;
  display: none;
  position: relative;
}
.header .header-more.active {
  display: block;
}
.header .header-more::after {
  bottom: -2rem;
  content: "";
  display: none;
  height: 2rem;
  left: 0;
  position: absolute;
  width: 100%;
}
.header .header-more:hover .header-more__item {
  height: unset;
  opacity: 1;
  overflow: auto;
  padding: 2rem;
  transition: opacity 0.3s;
}
.header .header-more:hover::after {
  display: block;
}
.header .header-more .header-white__txt {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.2rem;
  margin-right: 3.2rem;
  white-space: nowrap;
}
.header .header-more .header-more__item {
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  height: 0;
  left: -2rem;
  opacity: 0;
  overflow: hidden;
  padding: 2rem;
  padding: 0;
  position: absolute;
  top: 5rem;
}
.header .header-menu__modal--sp {
  background-color: rgba(255, 255, 255, 0.94);
  bottom: calc(100vh + 50%);
  left: 0;
  padding: 1.6rem 2rem;
  position: fixed;
  right: 0;
  top: -100vh;
  transition: all 0.5s;
}
.header .header-menu__modal--sp.show {
  bottom: 0;
  top: 0;
}
.header .header-menu__modal--sp .header-menu__list--sp {
  font-family: "Source Han Sans JP", sans-serif;
  height: 100%;
  margin-top: 3.2rem;
  max-height: 60rem;
  overflow-y: scroll;
  padding-bottom: 7rem;
  letter-spacing: 0.01rem;
  color: #333;
  font-weight: bold;
}
.header .header-menu__modal--sp .header-menu__list--sp .header-menu__list-top {
  margin-bottom: 3rem;
}
.header .header-menu__modal--sp .header-menu__list--sp .header-menu__list-top .menu-item {
  margin-bottom: 1.5rem;
}
.header .header-menu__modal--sp .header-menu__list--sp .header-menu__list-top .menu-link {
  font-size: 2rem;
  line-height: 2.8rem;
}
.header .header-menu__modal--sp .header-menu__list--sp .header-menu__list-bottom {
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
}
.header .header-menu__modal--sp .header-menu__list--sp .header-menu__list-bottom .menu-item {
  margin-right: 2rem;
  margin-bottom: 1.2rem;
}
.header .header-menu__modal--sp .header-menu__list--sp .header-menu__list-bottom .menu-link {
  opacity: 0.6;
  font-size: 1.2rem;
  line-height: 2.8rem;
}
.header .header-menu__modal--sp .header-menu__list--sp .header-menu__info {
  font-size: 1.2rem;
  line-height: 2.4rem;
  font-family: "Gotham", sans-serif;
  margin-bottom: 1.5rem;
}
.header .header-menu__modal--sp .header-menu__list--sp .header-menu__phone {
  font-size: 2.1rem;
  line-height: 2.5rem;
  font-family: "Gotham", sans-serif;
  margin-bottom: 5rem;
}
.header .header-menu__modal--sp .header-menu__list--sp .menu-link-sns {
  margin-bottom: 1.5rem;
}
.header .header-menu__modal--sp .header-menu__list--sp .menu-link-sns .menu-link-sns__item {
  width: 2.4rem;
  margin-right: 0.5rem;
}
.header .header-menu__modal--sp .header-menu__list--sp .menu-link-sns svg {
  width: 100%;
}
.header .header-menu__modal--sp .header-menu__btn {
  margin-top: 2.8rem;
}
.header .header-menu__modal--sp .header-menu__btn .menu-btn {
  font-size: 1.6rem;
  height: 5.6rem;
  width: calc(50% - 0.75rem);
}
.header .header-menu__modal--sp .header-menu__language {
  justify-content: flex-end;
  margin-top: 1rem;
}
.header .header-menu__modal--sp .header-menu__language span {
  font-family: "Vibis Classique", sans-serif;
  font-size: 4.6rem;
  line-height: 1;
  margin-right: 2rem;
}
.header .header-menu__modal--sp .header-menu__language select,
.header .header-menu__modal--sp .header-menu__language option {
  color: #000;
  font-family: "Vibis Classique", sans-serif;
  font-size: 4.8rem;
}
@media screen and (max-width: 768px) {
  .header .couple-button-header {
    display: none;
  }
}
.header .change-language .change-language__item {
  color: #fff;
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .header .change-language .change-language__item {
    color: #000 !important;
  }
}
.header .change-language .change-language__item.active {
  opacity: 1;
}
.header .change-language span {
  margin: 0 0.2rem;
  display: inline-block;
}

.footer {
  background-color: #F5F5F3;
  color: #222;
  padding: 8rem 0 7.3rem;
  font-family: "Source Han Sans JP", serif;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 6rem 0 2rem;
  }
}
.footer .footer-wrap {
  display: flex;
  justify-content: space-between;
  max-width: 132rem;
  padding: 0 2rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer .footer-wrap {
    flex-direction: column;
  }
}
.footer .footer-left {
  padding-right: 8rem;
  border-right: 1px solid #DDD;
}
@media screen and (max-width: 1200px) {
  .footer .footer-left {
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-left {
    border-right: none;
    border-bottom: 1px solid #DDD;
    padding-bottom: 6rem;
  }
}
.footer .footer-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3.4rem;
  max-width: 70rem;
}
@media screen and (max-width: 1200px) {
  .footer .footer-list {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-list_bottom {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-list_bottom .footer-item {
    margin-bottom: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-list_bottom .footer-link {
    font-size: 1.2rem;
  }
}
.footer .footer-item {
  min-width: 6rem;
  margin-right: 4rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1200px) {
  .footer .footer-item {
    margin-bottom: 2rem;
    margin-right: 2rem;
  }
}
.footer .footer-link {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 2rem;
  text-decoration: underline;
}
.footer .footer-title {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1rem;
  color: #222;
  opacity: 0.6;
}
.footer .footer-group_list {
  display: flex;
  flex-wrap: wrap;
}
.footer .footer-group {
  margin-right: 3rem;
}
@media screen and (max-width: 768px) {
  .footer .footer-group {
    margin-bottom: 3rem;
  }
}
.footer .footer-group .footer-label {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.4rem;
  padding-bottom: 1.5rem;
  position: relative;
  margin-bottom: 2rem;
}
.footer .footer-group .footer-label::after {
  content: "";
  position: absolute;
  width: 1.6rem;
  height: 0.1rem;
  background-color: #707070;
  left: 0;
  bottom: 0;
}
.footer .footer-group .footer-content {
  font-family: "Montserrat";
  font-size: 1.2rem;
  font-weight: bold;
  opacity: 0.6;
}
.footer .footer-business {
  margin-top: 9rem;
}
@media screen and (max-width: 768px) {
  .footer .footer-business {
    margin-top: 3.8rem;
  }
}
.footer .footer-business .footer-title {
  margin-bottom: 2.7rem;
}
@media screen and (max-width: 768px) {
  .footer .footer-business .footer-group_list {
    width: 70%;
  }
}
.footer .footer-sns {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .footer .footer-sns {
    margin-top: 2rem;
  }
}
.footer .footer-sns .footer-title {
  margin-bottom: 1.5rem;
}
.footer .footer-sns .footer-group {
  margin-bottom: 0;
}
.footer .footer-copywright {
  font-family: "Gotham", sans-serif;
  margin-top: 5rem;
  opacity: 0.6;
  font-weight: 500;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .footer .footer-copywright {
    margin-top: 0;
  }
}
.footer .footer-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  letter-spacing: 0.1rem;
  padding-left: 3rem;
}
@media screen and (max-width: 1200px) {
  .footer .footer-right {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-right {
    padding: 0;
  }
}
.footer .footer-logo {
  width: 20rem;
  margin-bottom: 0.7rem;
}
@media screen and (max-width: 768px) {
  .footer .footer-logo {
    width: 18rem;
    margin-top: 5.3rem;
  }
}
.footer .footer-logo__name {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 3.7rem;
  margin-bottom: 3.3rem;
}
@media screen and (max-width: 768px) {
  .footer .footer-logo__name {
    font-size: 2.2rem;
    margin-bottom: 3.1rem;
  }
}
.footer .footer-number {
  font-family: "Gotham", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 2.8rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .footer .footer-number {
    font-size: 2.1rem;
    margin-bottom: 2.7rem;
  }
}
.footer .footer-info {
  font-family: "Gotham", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2.8rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .footer .footer-info {
    font-size: 1.2rem;
    line-height: 2.4rem;
  }
}
.footer .footer-map {
  width: 37.1rem;
  height: 18.5rem;
}
.footer .footer-map iframe {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .footer .footer-map {
    width: 100%;
    margin-bottom: 3.8rem;
  }
}

.top-page {
  overflow-x: hidden;
}
.top-page .mv-top {
  position: relative;
}
.top-page .mv-top .couple-button-header {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-page .mv-top .couple-button-header {
    display: flex;
  }
}
.top-page .mv-top .img-thumbnail {
  height: 76.8rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-page .mv-top .img-thumbnail {
    height: 64rem;
  }
}
.top-page .mv-top .img-thumbnail::before {
  background: rgba(0, 0, 0, 0.4);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-page .mv-top .img-thumbnail::before {
    background: rgba(0, 0, 0, 0.4);
  }
}
@media screen and (max-width: 768px) {
  .top-page .mv-top .mv-top__logo {
    max-width: 19rem;
    margin: 0 auto;
  }
}
.top-page .mv-top .mv-top__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .top-page .mv-top .mv-top__content {
    width: 100%;
  }
}
.top-page .mv-top .mv-top__box {
  height: 76.8rem;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  top: 0;
  width: -webkit-fill-available;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  .top-page .mv-top .mv-top__box {
    width: 100%;
    height: 64rem;
  }
}
.top-page .mv-top .mv-top__desc {
  color: #fff;
  letter-spacing: 0.1rem;
  text-align: center;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.8s;
}
@media screen and (max-width: 1200px) {
  .top-page .mv-top .mv-top__desc {
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 768px) {
  .top-page .mv-top .mv-top__desc {
    font-size: 3.4rem;
    width: 100%;
  }
}
.top-page .mv-top .mv-top__desc .desc__top {
  margin-bottom: 6rem;
  font-size: 1.1rem;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 768px) {
  .top-page .mv-top .mv-top__desc .desc__top {
    font-size: 1rem;
    margin-bottom: 3.1rem;
  }
}
.top-page .mv-top .mv-top__desc .desc__top .desc__top-image {
  max-width: 30.7rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top-page .mv-top .mv-top__desc .desc__top .desc__top-image {
    max-width: 19rem;
  }
}
.top-page .mv-top .mv-top__desc .desc__top .name {
  font-family: "Montserrat";
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: 0.48rem;
  margin-top: 2.8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-page .mv-top .mv-top__desc .desc__top .name {
    font-size: 1rem;
    line-height: 1.3rem;
    margin-top: 2rem;
  }
}
.top-page .mv-top .mv-top__desc .desc__bottom {
  font-family: "Source Han Sans JP";
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-top: 5.95rem;
  letter-spacing: 0.1rem;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .top-page .mv-top .mv-top__desc .desc__bottom {
    font-size: 1.5rem;
    margin-top: 3rem;
    white-space: normal;
    width: 100%;
    padding: 0 2rem;
  }
}
.top-page .intro-banner {
  margin-top: 6.5rem;
}
@media screen and (max-width: 1200px) {
  .top-page .intro-banner {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .top-page .intro-banner {
    margin-top: 3rem;
  }
}
.top-page .intro-banner .intro-banner__swiper {
  overflow: hidden;
  width: 100%;
  height: 22rem;
}
@media screen and (max-width: 1200px) {
  .top-page .intro-banner .intro-banner__swiper {
    height: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .top-page .intro-banner .intro-banner__swiper {
    box-shadow: 0 0 1rem 0 RGBA(0, 0, 0, 0.1);
    box-sizing: border-box;
    border-radius: 0.6rem;
  }
}
.top-page .intro-banner .intro-banner__pagination {
  justify-content: center;
  align-items: center;
  display: none;
}
@media screen and (max-width: 768px) {
  .top-page .intro-banner .intro-banner__pagination {
    display: flex;
    margin-top: 2rem;
  }
}
.top-page .intro-banner .intro-banner__pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 1rem;
}
.top-page .intro-banner .intro-banner__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 1rem;
  height: 1rem;
  background-color: #000 !important;
}
.top-page .intro-banner .intro-banner__box {
  height: 100%;
  overflow: hidden;
}
.top-page .intro-banner .intro-banner__box .overlay {
  transition: all 0.5s;
  z-index: 1;
}
.top-page .intro-banner .intro-banner__box img {
  height: 100%;
}
.top-page .intro-banner .intro-banner__box img:hover {
  transition: all 0.5s;
}
.top-page .intro-banner .intro-banner__box:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .top-page .intro-banner .intro-banner__box:hover img {
    transform: unset;
    opacity: 1;
  }
}
.top-page .four-seasons-top {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .top-page .four-seasons-top {
    margin-top: 4rem;
  }
}
.top-page .four-seasons-top .four-seasons__item {
  padding: 6rem 0;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .top-page .four-seasons-top .four-seasons__item {
    padding: 0;
    margin-bottom: 6rem;
  }
}
.top-page .four-seasons-top .four-seasons__item:last-child {
  margin-bottom: 0 !important;
}
.top-page .four-seasons-top .four-seasons__item:nth-child(odd) .four-seasons__item--info {
  margin-left: auto;
}
.top-page .four-seasons-top .four-seasons__item .img-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .top-page .four-seasons-top .four-seasons__item .img-wrap {
    position: relative;
    height: 24rem;
  }
}
.top-page .four-seasons-top .four-seasons__item--info {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  filter: brightness(15px);
  background-color: rgba(255, 255, 255, 0.8);
  width: 42rem;
  padding: 7rem 5rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1200px) {
  .top-page .four-seasons-top .four-seasons__item--info {
    padding: 3rem;
    width: 35rem;
  }
}
@media screen and (max-width: 768px) {
  .top-page .four-seasons-top .four-seasons__item--info {
    width: 100%;
    margin-top: -5rem;
    padding: 2.5rem 2rem 5.7rem;
    aspect-ratio: unset;
  }
}
.top-page .four-seasons-top .four-seasons__item--info .info-number {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.3rem;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .top-page .four-seasons-top .four-seasons__item--info .info-number {
    font-size: 1.2rem;
  }
}
.top-page .four-seasons-top .four-seasons__item--info .info-number::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 0.1rem;
  background-color: #707070;
  position: absolute;
  transform: rotate(320deg);
  bottom: -0.6rem;
  right: -1.7rem;
}
@media screen and (max-width: 768px) {
  .top-page .four-seasons-top .four-seasons__item--info .info-number::after {
    width: 3rem;
  }
}
.top-page .four-seasons-top .four-seasons__item--info .info-page {
  padding-top: 2.5rem;
  padding-left: 0.5rem;
}
.top-page .four-seasons-top .four-seasons__item--info .info-page .info-page__titleEN {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  margin: 0 0 0.4rem 0;
}
@media screen and (max-width: 768px) {
  .top-page .four-seasons-top .four-seasons__item--info .info-page .info-page__titleEN {
    font-size: 2.6rem;
  }
}
.top-page .four-seasons-top .four-seasons__item--info .info-page .info-page__titleJA {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .top-page .four-seasons-top .four-seasons__item--info .info-page .info-page__titleJA {
    font-size: 1rem;
  }
}
.top-page .four-seasons-top .four-seasons__item--info .info-page .info-page__desc {
  font-size: 1.4rem;
  line-height: 3.2rem;
  margin-top: 4rem;
  opacity: 0.8;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 1200px) {
  .top-page .four-seasons-top .four-seasons__item--info .info-page .info-page__desc {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .top-page .four-seasons-top .four-seasons__item--info .info-page .info-page__desc {
    font-size: 1rem;
    margin-top: 2.4rem;
  }
}
.top-page .four-seasons-top .four-seasons__item--info .info-page .more-info-link {
  margin-top: 3.8rem;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .top-page .four-seasons-top .four-seasons__item--info .info-page .more-info-link {
    font-size: 1.6rem;
    letter-spacing: 0.06rem;
    font-weight: 400;
  }
}
.top-page .top_concept {
  margin-top: 10rem;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .top-page .top_concept {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .top-page .top_concept {
    margin-top: 5rem;
  }
}
.top-page .top_concept .top_concept__title {
  font-family: "Montserrat";
  font-size: 4.6rem;
  line-height: 5.7rem;
  font-weight: 400;
  color: #000 !important;
}
@media screen and (max-width: 768px) {
  .top-page .top_concept .top_concept__title {
    font-size: 3rem;
    line-height: 3.7rem;
  }
}
.top-page .top_concept .top_concept__sub_title {
  font-family: "Source Han Sans JP";
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 4.4rem;
  letter-spacing: 0.06rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .top-page .top_concept .top_concept__sub_title {
    font-size: 1rem;
    margin-top: 0.5rem;
    display: flex;
    line-height: 1;
    align-items: center;
    justify-content: center;
  }
}
.top-page .top_concept .top_concept__desc {
  font-family: "Source Han Sans JP";
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 4rem;
  letter-spacing: 0.06rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .top-page .top_concept .top_concept__desc {
    font-size: 1.8rem;
    line-height: 3rem;
    margin-top: 2.5rem;
  }
}
.top-page .top_concept .top_concept__text {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.04em;
  margin: 0 auto;
  margin-top: 4rem;
  max-width: 78.2em;
}
@media screen and (max-width: 768px) {
  .top-page .top_concept .top_concept__text {
    font-size: 1.2rem;
    line-height: 2.4rem;
    letter-spacing: 0.04rem;
    margin-top: 2.5rem;
    max-width: 100%;
  }
}
.top-page .top_concept .top_concept__image {
  max-width: 108rem;
  height: 36rem;
  margin: 0 auto;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .top-page .top_concept .top_concept__image {
    margin-top: 3rem;
    height: 18rem;
  }
}
.top-page .photo-gallery {
  margin-top: 10rem;
}
@media screen and (max-width: 1200px) {
  .top-page .photo-gallery {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .top-page .photo-gallery {
    margin-top: 0;
  }
}
.top-page .photo-gallery .photo-gallery__swiper {
  height: 64rem;
}
@media screen and (max-width: 1200px) {
  .top-page .photo-gallery .photo-gallery__swiper {
    height: 45rem;
  }
}
@media screen and (max-width: 768px) {
  .top-page .photo-gallery .photo-gallery__swiper {
    height: 28rem;
    margin-left: -2rem;
    width: calc(100% + 4rem);
  }
}
.top-page .photo-gallery .photo-gallery__swiper .img-wrap {
  width: 100%;
  height: 100%;
}
.top-page .photo-gallery .photo-gallery__swiper .img-wrap::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.2;
}
.top-page .photo-gallery .photo-gallery__swiper .photo-gallery__name {
  position: absolute;
  max-width: 108rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  margin-top: 8rem;
  z-index: 1;
  color: #fff;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .top-page .photo-gallery .photo-gallery__swiper .photo-gallery__name {
    margin-top: 5rem;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 768px) {
  .top-page .photo-gallery .photo-gallery__swiper .photo-gallery__name {
    margin-top: 3rem;
    font-size: 2rem;
  }
}
.top-page .photo-gallery .photo-gallery__swiper .photo-gallery__container--pagination {
  position: absolute;
  max-width: 108rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  bottom: 3rem;
}
@media screen and (max-width: 1200px) {
  .top-page .photo-gallery .photo-gallery__swiper .photo-gallery__container--pagination {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 768px) {
  .top-page .photo-gallery .photo-gallery__swiper .photo-gallery__container--pagination {
    bottom: 2rem;
  }
}
.top-page .photo-gallery .photo-gallery__swiper .photo-gallery__container--pagination .photo-gallery__pagination--inner {
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.3rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .top-page .photo-gallery .photo-gallery__swiper .photo-gallery__container--pagination .photo-gallery__pagination--inner {
    font-size: 1.4rem;
  }
}
.top-page .photo-gallery .photo-gallery__swiper .photo-gallery__container--pagination .photo-gallery__process {
  width: 100%;
  height: 0.2rem;
  background-color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .top-page .photo-gallery .photo-gallery__swiper .photo-gallery__container--pagination .photo-gallery__process {
    margin-bottom: 1rem;
  }
}
.top-page .photo-gallery .photo-gallery__swiper .photo-gallery__container--pagination .photo-gallery__process .photo-gallery__process--inner {
  height: 100%;
  background-color: var(--color-main-tempalte);
}
.top-page .instagram-content {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .top-page .instagram-content {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .top-page .instagram-content .instagram-content__inner {
    flex-direction: column;
  }
}
.top-page .instagram-content .instagram-content__inner--txt {
  width: 31%;
}
@media screen and (max-width: 768px) {
  .top-page .instagram-content .instagram-content__inner--txt {
    width: 100%;
  }
}
.top-page .instagram-content .instagram-content__inner--txt .instagram-txt-EN {
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .top-page .instagram-content .instagram-content__inner--txt .instagram-txt-EN {
    font-size: 2.6rem;
  }
}
.top-page .instagram-content .instagram-content__inner--txt .instagram-txt-JA {
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 0.1rem;
  margin: 0.5rem 0 3rem;
  color: #333;
}
@media screen and (max-width: 768px) {
  .top-page .instagram-content .instagram-content__inner--txt .instagram-txt-JA {
    font-size: 1rem;
    margin: 0.5rem 0 2rem;
  }
}
.top-page .instagram-content .instagram-content__inner--txt .instagram-txt-desc {
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: 0.04rem;
  color: #333;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .top-page .instagram-content .instagram-content__inner--txt .instagram-txt-desc {
    font-size: 1.2rem;
    line-height: 2rem;
  }
}
.top-page .instagram-content .instagram-content__inner--txt .more-info-link {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.2rem;
  padding-bottom: 1.4rem;
  margin-top: 6rem;
}
.top-page .instagram-content .instagram-content__inner--thumb {
  width: 62.75%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 768px) {
  .top-page .instagram-content .instagram-content__inner--thumb {
    width: calc(100% + 4rem);
    margin: 2rem 0 3rem;
  }
}
.top-page .instagram-content .instagram-content__inner--thumb .instagram-thumb__item {
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .top-page .instagram-content .more-info-link {
    font-size: 1.6rem;
    letter-spacing: 0.06rem;
    font-weight: 400;
    margin-right: auto;
    padding-bottom: 1.8rem;
    padding-right: 11rem;
  }
}
.top-page .news-content {
  margin: 12rem 0;
}
@media screen and (max-width: 768px) {
  .top-page .news-content {
    margin: 6rem 0;
  }
}
@media screen and (max-width: 768px) {
  .top-page .news-content .news-content__inner {
    flex-direction: column;
  }
}
.top-page .news-content .news-content__inner--txt {
  width: 31%;
}
@media screen and (max-width: 768px) {
  .top-page .news-content .news-content__inner--txt {
    width: 100%;
  }
}
.top-page .news-content .news-content__inner--txt .news-txt-EN {
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .top-page .news-content .news-content__inner--txt .news-txt-EN {
    font-size: 2.6rem;
  }
}
.top-page .news-content .news-content__inner--txt .news-txt-JA {
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 0.1rem;
  margin: 0.5rem 0 0;
  color: #333;
}
@media screen and (max-width: 768px) {
  .top-page .news-content .news-content__inner--txt .news-txt-JA {
    font-size: 1rem;
  }
}
.top-page .news-content .news-content__inner--thumb {
  width: 62.75%;
}
@media screen and (max-width: 768px) {
  .top-page .news-content .news-content__inner--thumb {
    width: 100%;
    margin-top: 3rem;
  }
}
.top-page .news-content .news-content__inner--thumb .news-thumb__item {
  padding: 3rem 0;
  border-top: 1px solid #ddd;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-page .news-content .news-content__inner--thumb .news-thumb__item {
    padding: 2rem 0;
    align-items: center;
  }
}
.top-page .news-content .news-content__inner--thumb .news-thumb__item::before {
  content: "";
  position: absolute;
  width: 4rem;
  height: 0.1rem;
  background-color: var(--color-main-tempalte);
  top: -0.1rem;
  left: 0;
}
.top-page .news-content .news-content__inner--thumb .news-thumb__item .thumb-item__txt {
  width: 56.53%;
}
@media screen and (max-width: 768px) {
  .top-page .news-content .news-content__inner--thumb .news-thumb__item .thumb-item__txt {
    width: 16.2rem;
  }
}
.top-page .news-content .news-content__inner--thumb .news-thumb__item .thumb-item__txt--date {
  font-size: 2rem;
  line-height: 2.2rem;
  letter-spacing: 0.06rem;
  opacity: 0.9;
}
@media screen and (max-width: 768px) {
  .top-page .news-content .news-content__inner--thumb .news-thumb__item .thumb-item__txt--date {
    font-size: 1.4rem;
  }
}
.top-page .news-content .news-content__inner--thumb .news-thumb__item .thumb-item__txt--title {
  font-size: 1.8rem;
  line-height: 2.6rem;
  letter-spacing: 0.06rem;
  opacity: 0.9;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .top-page .news-content .news-content__inner--thumb .news-thumb__item .thumb-item__txt--title {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}
.top-page .news-content .news-content__inner--thumb .news-thumb__item .thumb-item__img {
  width: 34.8%;
  height: 10rem;
}
@media screen and (max-width: 768px) {
  .top-page .news-content .news-content__inner--thumb .news-thumb__item .thumb-item__img {
    width: 14rem;
    height: 12rem;
  }
}
.top-page .news-content .news-content__inner--thumb .more-info-link {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.2rem;
  padding-bottom: 1.4rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .top-page .news-content .news-content__inner--thumb .more-info-link {
    font-size: 1.6rem;
    letter-spacing: 0.06rem;
    font-weight: 400;
    margin-top: 4rem;
    margin-right: auto;
    padding-bottom: 1.8rem;
    padding-right: 11rem;
  }
}
.top-page .reserve-content {
  margin-top: 12rem;
}
@media screen and (max-width: 768px) {
  .top-page .reserve-content {
    margin-top: 6rem;
  }
}

.page-access .container {
  width: 100%;
}
.page-access .access-map .access-map__inner {
  height: 63.8rem;
  margin-top: 12rem;
}
@media screen and (max-width: 768px) {
  .page-access .access-map .access-map__inner {
    height: 19rem;
    margin-top: 1.5rem;
  }
}
.page-access .access-map iframe {
  width: 100%;
  height: 100%;
}
.page-access .access-roadMap__inner {
  margin: 6rem 0 12.3rem;
}
@media screen and (max-width: 768px) {
  .page-access .access-roadMap__inner {
    margin: 0;
    flex-direction: column;
  }
}
.page-access .access-roadMap__item {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .page-access .access-roadMap__item {
    width: 100%;
    margin: 6rem 0 0;
  }
  .page-access .access-roadMap__item:last-child {
    margin: 6rem 0 6rem;
  }
}
.page-access .access-roadMap__item .access-roadMap__item--vehicle {
  text-align: center;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .page-access .access-roadMap__item .access-roadMap__item--vehicle {
    text-align: unset;
    margin-bottom: 2rem;
  }
}
.page-access .access-roadMap__item .access-roadMap__item--vehicle .vehicle-EN {
  font-size: 3rem;
  line-height: 1;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.1rem;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 768px) {
  .page-access .access-roadMap__item .access-roadMap__item--vehicle .vehicle-EN {
    font-size: 2.6rem;
  }
}
.page-access .access-roadMap__item .access-roadMap__item--vehicle .vehicle-JA {
  font-size: 1rem;
  line-height: 1;
  font-weight: bold;
  color: #333;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .page-access .container {
    width: 100%;
  }
}
.page-access .address-sp {
  padding: 0 2rem;
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  margin-top: 6rem;
}

.map_vehicle_content .map_vehicle_col {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: 0 1rem;
  flex: 1 1;
}
@media screen and (max-width: 768px) {
  .map_vehicle_content .map_vehicle_col {
    max-width: 100%;
    width: 100%;
    padding: 0 0.6rem;
  }
  .map_vehicle_content .map_vehicle_col:nth-child(2n) {
    margin-top: 6rem;
  }
}
.map_vehicle_content .map_vehicle_detail {
  margin-bottom: 1rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .map_vehicle_content .map_vehicle_detail {
    margin-top: 3rem;
  }
}
.map_vehicle_content .map_vehicle_detail .map_vehicle_detail-item {
  border-left: 0.5rem solid #e1e1e1;
  margin-left: 1.1rem;
  padding-bottom: 3.6rem;
  padding-left: 2.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .map_vehicle_content .map_vehicle_detail .map_vehicle_detail-item {
    border: unset;
  }
}
.map_vehicle_content .map_vehicle_detail .map_vehicle_detail-item::before {
  background-color: #E1E1E1;
  bottom: 0;
  height: 100%;
  left: -0.5rem;
  position: absolute;
  width: 0.5rem;
}
@media screen and (max-width: 768px) {
  .map_vehicle_content .map_vehicle_detail .map_vehicle_detail-item::before {
    content: "";
  }
}
.map_vehicle_content .map_vehicle_detail .map_vehicle_detail-item::after {
  background-color: #fff;
  border: 0.7rem solid #b7b7b7;
  border-radius: 50%;
  content: "";
  height: 1.4rem;
  left: -1.7rem;
  position: absolute;
  top: -0.5rem;
  width: 1.4rem;
}
.map_vehicle_content .map_vehicle_detail .map_vehicle_detail-item:last-child {
  border-left: 0.7rem solid transparent !important;
  left: -0.2rem;
  padding-bottom: 0 !important;
}
@media screen and (max-width: 768px) {
  .map_vehicle_content .map_vehicle_detail .map_vehicle_detail-item:last-child {
    left: -0.8rem;
  }
}
.map_vehicle_content .map_vehicle_detail .map_vehicle_detail-item:last-child::after {
  border: 0.7rem solid var(--color-main-tempalte) !important;
}
.map_vehicle_content .map_vehicle_detail .map_vehicle_detail-item:last-child::before {
  display: none;
}
.map_vehicle_content .map_vehicle_detail .map_vehicle_detail-item:last-child .destination_txt {
  color: var(--color-main-tempalte);
}
.map_vehicle_content .destination_txt {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 2rem;
}
@media screen and (max-width: 1200px) {
  .map_vehicle_content .destination_txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .map_vehicle_content .destination_txt {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}
.map_vehicle_content .location_txt {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 2rem;
  margin-top: 1.2rem;
}
@media screen and (max-width: 1200px) {
  .map_vehicle_content .location_txt {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .map_vehicle_content .location_txt {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.02rem;
  }
}
.map_vehicle_content .vehicle_type_EN {
  font-size: 3rem;
  font-weight: 400;
  line-height: 3.7rem;
  text-align: center;
}
.map_vehicle_content .vehicle_type_JP {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
  line-height: 4.4rem;
  margin-top: 0.5rem;
  text-align: center;
}
.map_vehicle_content .time_extimate {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
  line-height: 3rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .map_vehicle_content .time_extimate {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .map_vehicle_content .time_extimate {
    display: flex;
    justify-content: center;
    font-size: 1.6rem;
    padding: 1.4rem 0;
    border-top: 0.1rem solid #ddd;
    border-bottom: 0.1rem solid #ddd;
    margin-top: 6rem;
    width: calc(100% + 1.2rem);
    margin-left: -0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .map_vehicle_content .time_extimate.custom-margin-sp {
    margin-top: 0 !important;
  }
}

.page-plan-list {
  font-family: "Source Han Sans JP", sans-serif;
}
.page-plan-list .plan-content {
  margin-top: 0;
}
.page-plan-list .plan-content__top {
  background-color: #F9F9F9;
  padding: 10rem 0 10.6rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .page-plan-list .plan-content__top {
    padding: 20px 0;
    margin-bottom: 4rem;
  }
}
.page-plan-list .plan-content__amount {
  color: #000;
}
.page-plan-list .plan-content__amount .numb {
  font-size: 3rem;
  letter-spacing: 0.1rem;
  line-height: 3.7rem;
  margin-right: 1.2rem;
}
.page-plan-list .plan-content__amount .txt {
  font-size: 1.4rem;
  font-weight: 500;
}
.page-plan-list #button-plan__filter .plan-content__select {
  left: unset;
  right: 0;
}
.page-plan-list .plan-list-content {
  font-family: "Source Han Sans JP", sans-serif;
  overflow: hidden;
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .page-plan-list .plan-list-content {
    min-height: 20rem;
  }
}
.page-plan-list .plan-list-content .plan-top {
  display: flex;
}
@media screen and (max-width: 768px) {
  .page-plan-list .plan-list-content .plan-top {
    justify-content: space-between;
  }
}
.page-plan-list .plan-list-content .text-plan-EN {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 3.7rem;
}
@media screen and (max-width: 768px) {
  .page-plan-list .plan-list-content .text-plan-EN {
    font-size: 2.6rem;
    line-height: 3.2rem;
  }
}
.page-plan-list .plan-list-content .text-plan-JP {
  color: #333;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 2rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .page-plan-list .plan-list-content .text-plan-JP {
    font-size: 1rem;
  }
}
.page-plan-list .plan-list-content .plan-content__list {
  margin-bottom: 15rem;
}
@media screen and (max-width: 768px) {
  .page-plan-list .plan-list-content .plan-content__list {
    margin-bottom: 0;
    margin-top: 4rem;
  }
}
.page-plan-list .plan-list-content .plan-content__list .slide-content {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  max-width: 108rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page-plan-list .plan-list-content .plan-content__list .slide-content {
    flex-direction: column;
  }
}
@media screen and (max-width: 1200px) {
  .page-plan-list .plan-list-content .plan-content__list .img-thumbnail {
    width: 32rem;
    height: 36rem;
  }
}
@media screen and (max-width: 768px) {
  .page-plan-list .plan-list-content .plan-content__list .img-thumbnail {
    width: 100%;
    height: 22rem;
    margin-bottom: 2rem;
  }
}
.page-plan-list .plan-list-content .plan-content__list .content-box {
  max-width: 49rem;
}
.page-plan-list .plan-list-content .plan-content__list .content-box .content-box__index {
  font-family: "Montserrat";
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  line-height: 2.4rem;
  position: relative;
  display: inline-block;
  margin-bottom: 2.8rem;
  color: #000;
}
@media screen and (max-width: 768px) {
  .page-plan-list .plan-list-content .plan-content__list .content-box .content-box__index {
    display: none;
  }
}
.page-plan-list .plan-list-content .plan-content__list .content-box .content-box__index::after {
  content: "";
  position: absolute;
  width: 4.3rem;
  height: 0.1rem;
  background-color: #707070;
  transform: rotate(-45deg);
  right: -2.3rem;
  top: 3rem;
}
@media screen and (max-width: 768px) {
  .page-plan-list .plan-list-content .plan-content__list .content-box .content-box__index::after {
    width: 3.1rem;
    top: 3.3rem;
    right: 0.5rem;
  }
}
.page-plan-list .plan-list-content .plan-content__list .content-box .ml-pc-60 {
  margin-left: 60px;
}
@media screen and (max-width: 768px) {
  .page-plan-list .plan-list-content .plan-content__list .content-box .ml-pc-60 {
    margin-left: 0;
  }
}
.page-plan-list .plan-list-content .plan-content__list .content-box .content-box__title {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 4.4rem;
  letter-spacing: 0.03em;
  margin-bottom: 4rem;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 44rem;
}
@media screen and (max-width: 1200px) {
  .page-plan-list .plan-list-content .plan-content__list .content-box .content-box__title {
    width: 35rem;
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .page-plan-list .plan-list-content .plan-content__list .content-box .content-box__title {
    width: inherit;
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 1.5rem;
  }
}
.page-plan-list .plan-list-content .plan-content__list .content-box .content-box__des {
  display: flex;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 3.2rem;
  text-align: justify;
  margin-right: 1.5em;
  margin-bottom: 4rem;
}
.page-plan-list .plan-list-content .plan-content__list .content-box .content-box__des .left {
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .page-plan-list .plan-list-content .plan-content__list .content-box .content-box__des .left {
    margin-right: 2.3rem;
  }
}
@media screen and (max-width: 1200px) {
  .page-plan-list .plan-list-content .plan-content__list .content-box .content-box__des {
    font-size: 1.3rem;
    line-height: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .page-plan-list .plan-list-content .plan-content__list .content-box .content-box__des {
    font-size: 1.2rem;
    line-height: 2.4rem;
    margin-bottom: 2rem;
  }
}
.page-plan-list .plan-list-content .plan-content__list .swiper-filter {
  position: absolute;
  top: -6.2rem;
  width: 16rem;
  height: 3.8rem;
  background-color: #4C4C4C;
  color: #fff;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  display: none;
}
@media screen and (max-width: 768px) {
  .page-plan-list .plan-list-content .plan-content__list .swiper-filter {
    display: flex;
  }
}
.page-plan-list .plan-list-content .plan-content__list .swiper-filter svg {
  margin-right: 5px;
}
.page-plan-list .plan-list-content .plan-content__list .slide-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22rem;
  height: 6rem;
  border: 1px solid #707070;
  color: #333;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .page-plan-list .plan-list-content .plan-content__list .slide-btn {
    margin: 0 auto;
  }
}
.page-plan-list .plan-content__item {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-bottom: 12rem;
}
@media screen and (max-width: 768px) {
  .page-plan-list .plan-content__item {
    flex-direction: column;
    margin-bottom: 4rem;
  }
}
.page-plan-list .plan-content__item:nth-child(2n) {
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .page-plan-list .plan-content__item:nth-child(2n) {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .page-plan-list .plan-content__item .content-box .content-box__index {
    display: none;
  }
}
.page-plan-list .plan-content__item .img-thumbnail {
  width: 69rem;
  height: 50rem;
}
.page-plan-list .pagination-cm {
  margin-top: 0;
}

.page-plan-detail {
  font-family: "Source Han Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .page-plan-detail .banner-plan .banner-txt p {
    font-size: 1.8rem;
  }
}
.page-plan-detail .plan-detail-content {
  margin-top: 10.7rem;
  margin-bottom: 13.8rem;
}
@media screen and (max-width: 768px) {
  .page-plan-detail .plan-detail-content {
    margin-top: 4rem;
    margin-bottom: 6rem;
  }
}
.page-plan-detail .plan-detail-content .plan-detail__title {
  display: block;
  text-align: center;
  font-size: 3rem;
  letter-spacing: 0.3rem;
  line-height: 3.7rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .page-plan-detail .plan-detail-content .plan-detail__title {
    display: none;
  }
}
.page-plan-detail .plan-detail-content .plan-detail__img {
  height: 46rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .page-plan-detail .plan-detail-content .plan-detail__img {
    height: 24rem;
    margin-bottom: 3rem;
  }
}
.page-plan-detail .plan-detail-content .plan-detail__wrap {
  display: flex;
}
@media screen and (max-width: 768px) {
  .page-plan-detail .plan-detail-content .plan-detail__wrap {
    flex-direction: column-reverse;
  }
}
.page-plan-detail .plan-detail-content .plan-detail__left {
  max-width: 48rem;
  flex: 2;
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: 0.04rem;
  margin-right: 6rem;
  margin-top: 1rem;
}
@media screen and (max-width: 1200px) {
  .page-plan-detail .plan-detail-content .plan-detail__left {
    max-width: 37rem;
  }
}
@media screen and (max-width: 768px) {
  .page-plan-detail .plan-detail-content .plan-detail__left {
    margin-top: 2.3rem;
    margin-right: 0;
  }
}
.page-plan-detail .plan-detail-content .plan-detail__info {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .page-plan-detail .plan-detail-content .plan-detail__info {
    width: 100%;
  }
}
.page-plan-detail .plan-detail-content .plan-detail__item {
  height: 8rem;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  line-height: 2.6rem;
  letter-spacing: 0.06rem;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 768px) {
  .page-plan-detail .plan-detail-content .plan-detail__item {
    font-size: 1.4rem;
    height: 6rem;
  }
}
.page-plan-detail .plan-detail-content .plan-detail__item:first-child {
  border-top: 1px solid #A790C4;
}
@media screen and (max-width: 768px) {
  .page-plan-detail .plan-detail-content .plan-detail__item:first-child {
    border-top: 1px solid #2D2D2D;
  }
}
.page-plan-detail .plan-detail-content .plan-detail__item .label {
  font-weight: bold;
  min-width: 5rem;
  margin-right: 10rem;
}
@media screen and (max-width: 768px) {
  .page-plan-detail .plan-detail-content .plan-detail__item .label {
    min-width: 4.4rem;
    margin-right: 4rem;
  }
}
.page-plan-detail .plan-detail__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32rem;
  height: 7rem;
  background-color: var(--color-main-tempalte2);
  color: #fff;
  border-radius: 0.3rem;
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .page-plan-detail .plan-detail__btn {
    width: 20.4rem;
    height: 6rem;
    margin-top: 3rem;
  }
}
.page-plan-detail .plan-detail__btn svg {
  margin-left: 1rem;
}

.page-rooms {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-rooms .container-child {
    padding: 0;
  }
}
.page-rooms .rooms-top {
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .page-rooms .rooms-top {
    padding: 6rem 0;
  }
}
.page-rooms .rooms-top .rooms-top__title {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 2.7rem;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .page-rooms .rooms-top .rooms-top__title {
    font-size: 2.2rem;
    max-width: 21.6rem;
    line-height: 3.6rem;
    text-align: inherit;
    margin-bottom: 2rem;
  }
}
.page-rooms .rooms-top .rooms-top__info {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
  line-height: 3.2rem;
}
@media screen and (max-width: 768px) {
  .page-rooms .rooms-top .rooms-top__info {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.04rem;
    line-height: 2.8rem;
    width: 100%;
    text-align: inherit;
  }
}
.page-rooms .line-border {
  width: 100%;
  height: 0.1rem;
  margin-bottom: 10rem;
  background-color: #ddd;
}
@media screen and (max-width: 768px) {
  .page-rooms .line-border {
    margin-bottom: 0rem;
  }
}
.page-rooms .rooms-center {
  display: flex;
}
@media screen and (max-width: 768px) {
  .page-rooms .rooms-center {
    display: inherit;
    padding-top: 6rem;
  }
}
.page-rooms .rooms-center .rooms-title {
  writing-mode: vertical-lr;
  padding-top: 10rem;
  margin-left: -1.8rem;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .page-rooms .rooms-center .rooms-title {
    writing-mode: inherit;
    padding-top: 0;
    margin-left: 0;
    position: inherit;
  }
}
.page-rooms .rooms-center .rooms-title .rooms-title__en {
  font-family: "Montserrat", sans-serif;
  font-size: 4.6rem;
  font-weight: 400;
  line-height: 5.7rem;
  text-orientation: sideways-right;
}
@media screen and (max-width: 768px) {
  .page-rooms .rooms-center .rooms-title .rooms-title__en {
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 3.2rem;
  }
}
.page-rooms .rooms-center .rooms-title .rooms-title__jp {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
  line-height: 4.4rem;
  text-orientation: sideways-right;
}
.page-rooms .rooms-center .rooms-right {
  margin-bottom: 9.4rem;
  margin-left: 28rem;
}
@media screen and (max-width: 1200px) {
  .page-rooms .rooms-center .rooms-right {
    margin-left: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .page-rooms .rooms-center .rooms-right {
    padding-top: 0;
    margin-left: 0;
    margin-bottom: 6rem;
  }
}
.page-rooms .rooms-center .rooms-right .rooms-right__text-jp {
  font-size: 3rem;
  font-weight: 600;
  line-height: 3.7rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .page-rooms .rooms-center .rooms-right .rooms-right__text-jp {
    padding-top: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0.04rem;
  }
}
@media screen and (max-width: 768px) {
  .page-rooms .rooms-center .rooms-right .rooms-right__text-custom {
    display: none;
  }
}
.page-rooms .rooms-center .rooms-right .rooms-right__text-en {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 4.4rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .page-rooms .rooms-center .rooms-right .rooms-right__text-en {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0.04rem;
    opacity: 0.6;
  }
}
.page-rooms .rooms-center .rooms-right .room-swiper {
  margin-right: calc(-50vw + 61%);
  margin-top: 2rem;
  height: 27.8vw;
}
@media screen and (max-width: 768px) {
  .page-rooms .rooms-center .rooms-right .room-swiper {
    margin-top: 0;
    margin-right: -2rem;
    height: 20rem;
  }
}
.page-rooms .rooms-center .rooms-right .rooms-right__img {
  height: 100%;
}
.page-rooms .rooms-center .rooms-right .rooms-right__info {
  display: flex;
  padding-top: 3rem;
  width: 100rem;
}
@media screen and (max-width: 1200px) {
  .page-rooms .rooms-center .rooms-right .rooms-right__info {
    width: 65rem;
  }
}
@media screen and (max-width: 768px) {
  .page-rooms .rooms-center .rooms-right .rooms-right__info {
    padding-top: 1.5rem;
  }
}
.page-rooms .rooms-center .rooms-right .rooms-right__info .rooms-info__left {
  width: 50%;
  padding-right: 4rem;
}
@media screen and (max-width: 1200px) {
  .page-rooms .rooms-center .rooms-right .rooms-right__info .rooms-info__left {
    padding-right: 2rem;
  }
}
.page-rooms .rooms-center .rooms-right .rooms-right__info .rooms-info__right {
  width: 50%;
}
.page-rooms .rooms-center .rooms-right .rooms-right__info .rooms-info__text {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
  line-height: 3.2rem;
}
@media screen and (max-width: 768px) {
  .page-rooms .rooms-center .rooms-right .rooms-right__info .rooms-info__text {
    display: none;
  }
}
.page-rooms .rooms-center .rooms-right .rooms-right__info .line-info {
  width: 100%;
  height: 0.1rem;
  background-color: #A790C4;
}
@media screen and (max-width: 768px) {
  .page-rooms .rooms-center .rooms-right .rooms-right__info .line-info {
    display: none;
  }
}
.page-rooms .rooms-center .rooms-right .rooms-right__info .line-info__center {
  width: 100%;
  height: 0.1rem;
  background-color: #ddd;
}
@media screen and (max-width: 768px) {
  .page-rooms .rooms-center .rooms-right .rooms-right__info .line-info__center {
    display: none;
  }
}
.page-rooms .rooms-center .rooms-right .rooms-info__title {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.4rem;
  line-height: 2.2rem;
  margin: 2rem 0;
}
@media screen and (max-width: 768px) {
  .page-rooms .rooms-center .rooms-right .rooms-info__title {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.06rem;
    line-height: 1.2;
    margin: 2.5rem 0 0;
  }
}
@media screen and (max-width: 768px) {
  .page-rooms .rooms-center .rooms-right .rooms-info__right {
    display: none;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-rooms .rooms-center .rooms-right .rooms-info__right .rooms-info__param-text {
    padding: 0;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.06rem;
    line-height: 2.6rem;
  }
}
@media screen and (max-width: 768px) {
  .page-rooms .rooms-center .rooms-right .rooms-info__right .rooms-info__param--custom::after {
    rooms: "/";
    padding: 0 0.4rem 0 0.7rem;
  }
}
.page-rooms .rooms-center .rooms-right .rooms-info__right--custom {
  display: none;
}
@media screen and (max-width: 768px) {
  .page-rooms .rooms-center .rooms-right .rooms-info__right--custom {
    display: flex;
  }
}
.page-rooms .rooms-center .rooms-right .rooms-info__rooms {
  display: flex;
}
.page-rooms .rooms-center .rooms-right .rooms-info__rooms .rooms-info__param {
  padding: 2.5rem 0;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
  line-height: 2.6rem;
}
@media screen and (max-width: 768px) {
  .page-rooms .rooms-center .rooms-right .rooms-info__rooms .rooms-info__param {
    display: none;
  }
}
.page-rooms .rooms-center .rooms-right .rooms-info__rooms .rooms-info__param-text {
  padding: 2.5rem 0 2.5rem 8rem;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06rem;
  line-height: 2.6rem;
}
@media screen and (max-width: 768px) {
  .page-rooms .rooms-center .rooms-right .rooms-info__rooms .rooms-info__param-text {
    padding: 1.5rem 0 2.5rem;
    font-size: 1.4rem;
  }
}
.page-rooms .line-border__center {
  width: 100%;
  margin-bottom: 10rem;
  height: 0.1rem;
  background-color: #ddd;
}
@media screen and (max-width: 768px) {
  .page-rooms .line-border__center {
    margin-top: 6rem;
    margin-bottom: 0rem;
  }
}

.page-room-detail .content-title {
  padding: 9.4rem 0 2rem;
}
@media screen and (max-width: 768px) {
  .page-room-detail .content-title {
    padding: 5.5rem 0 2rem;
  }
}
.page-room-detail .content-title .content-title-jp {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.3rem;
  line-height: 3.7rem;
}
@media screen and (max-width: 768px) {
  .page-room-detail .content-title .content-title-jp {
    font-size: 2.4rem;
    letter-spacing: 0.04rem;
    line-height: 2.9rem;
  }
}
.page-room-detail .content-title .content-title-en {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 4.4rem;
}
@media screen and (max-width: 768px) {
  .page-room-detail .content-title .content-title-en {
    font-size: 1.4rem;
    letter-spacing: 0.04rem;
    line-height: 4.4rem;
    opacity: 0.6;
  }
}
.page-room-detail .roomDetailSwiper .swiper-slide {
  height: 27.8vw;
}
@media screen and (max-width: 768px) {
  .page-room-detail .roomDetailSwiper .swiper-slide {
    height: 20rem;
  }
}
.page-room-detail .roomDetailSwiper .swiper-button-next {
  width: 5rem;
  height: 6rem;
  background-color: #fff;
  margin-top: -3rem;
  right: 0;
}
@media screen and (max-width: 768px) {
  .page-room-detail .roomDetailSwiper .swiper-button-next {
    width: 3rem;
    height: 5rem;
  }
}
.page-room-detail .roomDetailSwiper .swiper-button-next::after {
  font-size: 3rem;
  color: #333;
  padding-left: 0.5rem;
}
@media screen and (max-width: 768px) {
  .page-room-detail .roomDetailSwiper .swiper-button-next::after {
    font-size: 2rem;
  }
}
.page-room-detail .roomDetailSwiper .swiper-button-prev {
  width: 5rem;
  height: 6rem;
  background-color: #fff;
  margin-top: -3rem;
  left: 0;
}
@media screen and (max-width: 768px) {
  .page-room-detail .roomDetailSwiper .swiper-button-prev {
    width: 3rem;
    height: 5rem;
  }
}
.page-room-detail .roomDetailSwiper .swiper-button-prev::after {
  font-size: 3rem;
  color: #333;
  padding-left: 0.5rem;
}
@media screen and (max-width: 768px) {
  .page-room-detail .roomDetailSwiper .swiper-button-prev::after {
    font-size: 2rem;
  }
}
.page-room-detail .content-info_roomdetail {
  padding: 4rem 0 10rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page-room-detail .content-info_roomdetail {
    flex-direction: column-reverse;
    padding: 4rem 0 6rem;
  }
}
.page-room-detail .content-info_roomdetail .content-info__left {
  width: 45%;
}
@media screen and (max-width: 1200px) {
  .page-room-detail .content-info_roomdetail .content-info__left {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .page-room-detail .content-info_roomdetail .content-info__left {
    width: 100%;
  }
}
.page-room-detail .content-info_roomdetail .content-info__left .content-left__text {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
  line-height: 3.2rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 1200px) {
  .page-room-detail .content-info_roomdetail .content-info__left .content-left__text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .page-room-detail .content-info_roomdetail .content-info__left .content-left__text {
    font-size: 1.4rem;
    line-height: 3rem;
    padding-top: 2.3rem;
    padding-bottom: 3rem;
  }
}
.page-room-detail .content-info_roomdetail .content-info__left .content-left__button {
  border-radius: 0.3rem;
  background-color: var(--color-main-tempalte2);
  display: flex;
  padding: 2rem 3.5rem 2rem 3rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .page-room-detail .content-info_roomdetail .content-info__left .content-left__button {
    padding: 1.5rem 2.3rem 1.5rem 2.5rem;
  }
}
.page-room-detail .content-info_roomdetail .content-info__left .content-left__button .content-left__button--text {
  font-size: 2rem;
  font-weight: 600;
  line-height: 3rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .page-room-detail .content-info_roomdetail .content-info__left .content-left__button .content-left__button--text {
    font-size: 1.6rem;
  }
}
.page-room-detail .content-info_roomdetail .content-info__left .content-left__button .next-icon::after {
  width: 0.7rem;
  height: 0.7rem;
}
@media screen and (max-width: 768px) {
  .page-room-detail .content-info_roomdetail .content-info__left .content-left__button .next-icon::after {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.page-room-detail .content-info_roomdetail .content-info__right {
  padding-right: 8rem;
  width: 45%;
}
@media screen and (max-width: 1200px) {
  .page-room-detail .content-info_roomdetail .content-info__right {
    padding-right: 0;
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .page-room-detail .content-info_roomdetail .content-info__right {
    width: 100%;
  }
}
.page-room-detail .content-info_roomdetail .content-info__right .content-right__info {
  display: flex;
  padding: 2.5rem 0;
  border-bottom: 0.1rem solid #DDDDDD;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page-room-detail .content-info_roomdetail .content-info__right .content-right__info {
    padding: 2rem 0;
  }
}
.page-room-detail .content-info_roomdetail .content-info__right .content-right__info .content-info__param {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.6rem;
  min-width: 10rem;
  max-width: 11.3rem;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .page-room-detail .content-info_roomdetail .content-info__right .content-right__info .content-info__param {
    font-size: 1.4rem;
    padding-right: 1rem;
  }
}
.page-room-detail .content-info_roomdetail .content-info__right .content-right__info .content-info__param-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.6rem;
}
@media screen and (max-width: 768px) {
  .page-room-detail .content-info_roomdetail .content-info__right .content-right__info .content-info__param-text {
    font-size: 1.4rem;
  }
}
.page-room-detail .content-info_roomdetail .content-info__right .content-right__info:first-child {
  border-top: 0.1rem solid #A790C4;
}
.page-room-detail .line-border__center {
  width: 100%;
  height: 0.1rem;
  background-color: #ddd;
}
@media screen and (max-width: 768px) {
  .page-room-detail .line-border__center {
    width: calc(100% + 2rem);
  }
}
.page-room-detail .content-aminity {
  background-color: #F9F9F9;
  border: 0.1rem solid #DDD;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .page-room-detail .content-aminity {
    display: none;
  }
}
.page-room-detail .content-aminity .content-aminity__title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 3.7rem;
  letter-spacing: 0.1rem;
  padding: 8rem 0 2rem;
}
.page-room-detail .content-aminity .content-aminity__center {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 2rem;
}
.page-room-detail .content-aminity .content-aminity__center .content-aminity__center--option {
  background-color: #fff;
  border: 0.1rem solid #DDD;
  max-width: 20rem;
  height: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  aspect-ratio: 1/1;
}
.page-room-detail .content-aminity .content-aminity__center .content-aminity__center--option .content-aminity__center--text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4rem;
  padding-top: 2.1rem;
}
@media screen and (max-width: 1200px) {
  .page-room-detail .content-aminity .content-aminity__center .content-aminity__center--option .content-aminity__center--text {
    font-size: 1.2rem;
    padding-top: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .page-room-detail .swiper-button-disabled {
    opacity: 0 !important;
  }
}

.page-news-list .news-content-list {
  display: grid;
  -moz-column-gap: 40px;
       column-gap: 40px;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 8rem;
}
@media screen and (max-width: 768px) {
  .page-news-list .news-content-list {
    grid-template-columns: repeat(1, 1fr);
    padding-top: 4rem;
  }
}
.page-news-list .news-content-list .news-content-list__ticket {
  max-width: 62rem;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 3rem 0;
  position: relative;
  border-top: 0.1rem solid #DDD;
}
.page-news-list .news-content-list .news-content-list__ticket::after {
  content: "";
  position: absolute;
  width: 3.2rem;
  height: 0.1rem;
  background-color: #A790C4;
  top: -1px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .page-news-list .news-content-list .news-content-list__ticket:first-child {
    flex-direction: column;
    border-top: none;
    padding-bottom: 3rem;
  }
  .page-news-list .news-content-list .news-content-list__ticket:first-child::after {
    content: none;
  }
  .page-news-list .news-content-list .news-content-list__ticket:first-child .news-content-list__img {
    max-width: initial;
    width: 100%;
    height: 20rem;
    margin-bottom: 1.5rem;
  }
  .page-news-list .news-content-list .news-content-list__ticket:first-child .news-content-list__content {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-news-list .news-content-list .news-content-list__ticket {
    padding: 2rem 0;
    align-items: center;
  }
}
.page-news-list .news-content-list .news-content-list__ticket .news-content-list__img {
  flex: 0 0 24rem;
  height: 16rem;
}
@media screen and (max-width: 768px) {
  .page-news-list .news-content-list .news-content-list__ticket .news-content-list__img {
    flex: 0 0 14rem;
    height: 12rem;
  }
}
.page-news-list .news-content-list .news-content-list__ticket .news-content-list__content {
  margin-right: 5.8rem;
}
@media screen and (max-width: 768px) {
  .page-news-list .news-content-list .news-content-list__ticket .news-content-list__content {
    margin-right: 3rem;
  }
}
.page-news-list .news-content-list .news-content-list__ticket .news-content-list__content .news-content-list__date {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.06rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .page-news-list .news-content-list .news-content-list__ticket .news-content-list__content .news-content-list__date {
    font-size: 1.4rem;
  }
}
.page-news-list .news-content-list .news-content-list__ticket .news-content-list__content .news-content-list__text {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-family: "Source Han Sans JP";
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.06rem;
  -webkit-line-clamp: 2;
  line-height: 2.8rem;
  margin-top: 2rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  .page-news-list .news-content-list .news-content-list__ticket .news-content-list__content .news-content-list__text {
    margin-top: 1rem;
    font-size: 1.4rem;
    -webkit-line-clamp: 3;
    line-height: 2rem;
  }
}
.page-news-list .total-list {
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .page-news-list .total-list {
    padding-bottom: 6rem;
  }
}
.page-news-list .four-seasons {
  margin-top: 0;
}

.last-new-left__header.sp {
  font-family: "Vibis Rock", sans-serif;
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 0.06rem;
  line-height: 1;
  margin-bottom: 1.6rem;
}

.page-news-detail .banner-txt .date {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .page-news-detail .banner-txt .date {
    font-size: 1.6rem;
    text-align: left;
    margin-bottom: 1.4rem;
    font-family: "Montserrat";
    font-weight: lighter;
  }
}
@media screen and (max-width: 768px) {
  .page-news-detail .banner-txt p {
    font-size: 1.8rem;
  }
}
.page-news-detail .news-detail__desc {
  font-family: "Source Han Sans JP", sans-serif;
  color: #333;
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 0.04rem;
  padding: 6rem 0 10rem;
  white-space: pre-line;
}
@media screen and (max-width: 768px) {
  .page-news-detail .news-detail__desc {
    font-size: 1.4rem;
    padding-bottom: 4rem;
  }
}
.page-news-detail .btn-nav__wrap {
  justify-content: center;
  align-items: center;
  margin-bottom: 6rem;
}
.page-news-detail .btn-nav__wrap .btn-nav {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 1;
  padding: 1rem 0;
  font-family: "Montserrat", sans-serif;
  color: #000;
  height: 40px;
}
.page-news-detail .btn-nav__wrap .btn-nav__prev {
  width: 80px;
  position: relative;
  padding-left: 3rem;
}
.page-news-detail .btn-nav__wrap .btn-nav__prev::before {
  content: "";
  display: flex;
  background-color: #000;
  width: 100%;
  height: 0.1rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.page-news-detail .btn-nav__wrap .btn-nav__prev::after {
  content: "";
  background-color: #000;
  width: 1.7rem;
  height: 0.1rem;
  transform: rotate(-30deg);
  position: absolute;
  left: 0;
  bottom: 5px;
}
.page-news-detail .btn-nav__wrap .btn-nav__next {
  width: 80px;
  position: relative;
  padding-right: 3.5rem;
}
.page-news-detail .btn-nav__wrap .btn-nav__next::before {
  content: "";
  display: flex;
  background-color: #000;
  width: 100%;
  height: 0.1rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.page-news-detail .btn-nav__wrap .btn-nav__next::after {
  content: "";
  background-color: #000;
  width: 1.7rem;
  height: 0.1rem;
  transform: rotate(30deg);
  position: absolute;
  right: 0;
  bottom: 5px;
}
.page-news-detail .btn-nav__wrap .btn-nav__current {
  border-bottom: 1px solid #000;
  opacity: 0.3;
  width: 13.5rem;
  margin: 0 2rem;
  text-align: center;
}

.page-restaurant .content-top {
  text-align: center;
  padding: 8rem 0;
  margin-bottom: 10rem;
  border-bottom: 1px solid #DDD;
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-top {
    text-align: inherit;
    padding: 6rem 0;
    margin-bottom: 6rem;
  }
}
.page-restaurant .content-top .content-top__title {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 2.7rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-top .content-top__title {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    line-height: 3.6rem;
  }
}
.page-restaurant .content-top .content-top__info {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
  line-height: 3.2rem;
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-top .content-top__info {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.04rem;
    line-height: 2.8rem;
  }
}
.page-restaurant .line-border {
  width: 100%;
  height: 0.1rem;
  background-color: #ddd;
}
.page-restaurant .content-restaurant {
  margin-bottom: 12rem;
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant {
    margin-bottom: 6rem;
  }
}
.page-restaurant .content-restaurant:nth-child(2n) .content-restaurant__top {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant:nth-child(2n) .content-restaurant__top {
    flex-direction: column-reverse;
  }
}
.page-restaurant .content-restaurant:nth-child(2n) .content-restaurant__top .content-restaurant__slider {
  margin-left: calc(-50vw + 100%);
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant:nth-child(2n) .content-restaurant__top .content-restaurant__slider {
    margin-right: -2rem;
    margin-left: 0;
  }
}
.page-restaurant .content-restaurant:nth-child(2n) .content-restaurant__top--left {
  padding-left: 8rem;
  padding-right: 0;
}
@media screen and (max-width: 1200px) {
  .page-restaurant .content-restaurant:nth-child(2n) .content-restaurant__top--left {
    padding-left: 4rem;
  }
}
.page-restaurant .content-restaurant .content-restaurant__top {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__top {
    flex-direction: column-reverse;
  }
}
.page-restaurant .content-restaurant .content-restaurant__top .content-restaurant__slider {
  width: 50vw;
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__top .content-restaurant__slider {
    margin-right: -2rem;
    width: calc(100% + 2rem);
  }
}
.page-restaurant .content-restaurant .content-restaurant__top .content-restaurant__top--left {
  width: 50%;
  padding-right: 8rem;
}
@media screen and (max-width: 1200px) {
  .page-restaurant .content-restaurant .content-restaurant__top .content-restaurant__top--left {
    padding-right: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__top .content-restaurant__top--left {
    width: 100%;
    padding: 0;
  }
}
.page-restaurant .content-restaurant .content-restaurant__top .content-restaurant__top--left .content-restaurant__title {
  padding: 5.4rem 0 6rem;
}
@media screen and (max-width: 1200px) {
  .page-restaurant .content-restaurant .content-restaurant__top .content-restaurant__top--left .content-restaurant__title {
    padding: 2rem 0 0;
  }
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__top .content-restaurant__top--left .content-restaurant__title {
    padding-top: 1.5rem;
  }
}
.page-restaurant .content-restaurant .content-restaurant__top .content-restaurant__top--left .content-restaurant__content {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
  line-height: 3.2rem;
  padding-bottom: 7.7rem;
  width: 90%;
}
@media screen and (max-width: 1200px) {
  .page-restaurant .content-restaurant .content-restaurant__top .content-restaurant__top--left .content-restaurant__content {
    font-size: 1.3rem;
    padding-bottom: 2.7rem;
  }
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__top .content-restaurant__top--left .content-restaurant__content {
    font-size: 1.4rem;
    padding-bottom: 0;
    width: 100%;
  }
}
.page-restaurant .content-restaurant .content-restaurant__top .content-restaurant__top--left .content-restaurant__content--title {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  line-height: 2.2rem;
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__top .content-restaurant__top--left .content-restaurant__content--title {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.06rem;
    line-height: 3.6rem;
    padding-top: 2.5rem;
    padding-bottom: 0;
  }
}
.page-restaurant .content-restaurant .content-restaurant__top .content-restaurant__text-jp {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.3rem;
  line-height: 3.7rem;
}
@media screen and (max-width: 1200px) {
  .page-restaurant .content-restaurant .content-restaurant__top .content-restaurant__text-jp {
    font-size: 2.5rem;
    line-height: 2;
  }
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__top .content-restaurant__text-jp {
    font-size: 1.8rem;
    letter-spacing: 0.04rem;
    line-height: 2.6rem;
  }
}
.page-restaurant .content-restaurant .content-restaurant__top .content-restaurant__text-en {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 4.4rem;
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__top .content-restaurant__text-en {
    font-size: 1.2rem;
    letter-spacing: 0.04rem;
    line-height: 4.4rem;
    opacity: 0.6;
    color: #333;
  }
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__top .content-restaurant__img img {
    aspect-ratio: 355/200;
    width: 35.5rem;
  }
}
.page-restaurant .content-restaurant .content-restaurant__top .content-restaurant__top--right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__top .content-restaurant__top--right {
    width: 100%;
  }
}
.page-restaurant .content-restaurant .content-restaurant__top .content-restaurant__top--right .content-restaurant__img {
  height: 27.8vw;
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__top .content-restaurant__top--right .content-restaurant__img {
    width: 100%;
    margin-right: 0;
    height: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__top .content-restaurant__top--right .content-restaurant__param--custom::after {
    content: "/";
    padding: 0 0.4rem 0 0.7rem;
  }
}
.page-restaurant .content-restaurant .content-restaurant__bottom {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12rem;
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__bottom {
    display: inherit;
  }
}
.page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__bottom--left {
  width: 50%;
  padding-left: 8rem;
}
@media screen and (max-width: 1200px) {
  .page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__bottom--left {
    padding-left: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__bottom--left {
    padding-left: 0;
  }
}
.page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__bottom--left .content-restaurant__title {
  padding: 19.4rem 0 6rem;
}
@media screen and (max-width: 1200px) {
  .page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__bottom--left .content-restaurant__title {
    padding: 19.4rem 0 0;
  }
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__bottom--left .content-restaurant__title {
    padding: 0;
  }
}
.page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__bottom--left .content-restaurant__content {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
  line-height: 3.2rem;
  padding-bottom: 5.7rem;
}
@media screen and (max-width: 1200px) {
  .page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__bottom--left .content-restaurant__content {
    font-size: 1.3rem;
    padding-bottom: 2.7rem;
  }
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__bottom--left .content-restaurant__content {
    display: none;
  }
}
.page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__bottom--left .content-restaurant__content--title {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  line-height: 2.2rem;
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__bottom--left .content-restaurant__content--title {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.06rem;
    line-height: 3.6rem;
    padding-top: 2.5rem;
    padding-bottom: 7rem;
  }
}
.page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__bottom--left .content-restaurant__content--title::before {
  content: "";
  display: flex;
  background-color: #000;
  width: 20rem;
  height: 0.1rem;
  position: absolute;
  margin-top: 4.1rem;
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__bottom--left .content-restaurant__content--title::before {
    width: 22rem;
    height: 0.1rem;
    position: absolute;
    margin-top: 4.1rem;
    background-color: #707070;
  }
}
.page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__bottom--left .content-restaurant__content--title::after {
  content: "";
  background-color: #000;
  width: 1.3rem;
  height: 0.1rem;
  transform: rotate(30deg);
  position: absolute;
  margin-top: 3.7rem;
  margin-left: 8.7rem;
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__bottom--left .content-restaurant__content--title::after {
    width: 1.7rem;
    margin-top: 3.7rem;
    margin-left: 8.1rem;
    background-color: #707070;
  }
}
.page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__text-jp {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.3rem;
  line-height: 3.7rem;
}
@media screen and (max-width: 1200px) {
  .page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__text-jp {
    font-size: 2.5rem;
    line-height: 1.7rem;
  }
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__text-jp {
    font-size: 1.8rem;
    letter-spacing: 0.04rem;
    line-height: 2.6rem;
  }
}
.page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__text-en {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 4.4rem;
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__text-en {
    font-size: 1.2rem;
    letter-spacing: 0.04rem;
    line-height: 4.4rem;
    opacity: 0.6;
    color: #333;
  }
}
.page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__bottom--right {
  padding-top: 14rem;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__bottom--right {
    padding-top: 0;
    width: calc(100% + 2rem);
  }
}
.page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__bottom--right .content-restaurant__img {
  margin-right: -90rem;
  overflow: hidden;
  width: calc(100% + 18rem);
}
.page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__bottom--right .content-restaurant__img--bottom {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__bottom--right .content-restaurant__img--bottom {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__bottom .content-restaurant__param--custom::after {
    content: "/";
    padding: 0 0.4rem 0 0.7rem;
  }
}
.page-restaurant .content-restaurant .content-restaurant__info {
  width: 100%;
  padding-top: 4rem;
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__info {
    padding: 0;
  }
}
.page-restaurant .content-restaurant .content-restaurant__info .line-info {
  width: 100%;
  height: 0.1rem;
  background-color: #A790C4;
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__info .line-info {
    display: none;
  }
}
.page-restaurant .content-restaurant .content-restaurant__info .content-restaurant__info--right {
  display: flex;
}
.page-restaurant .content-restaurant .content-restaurant__info .content-restaurant__info--right .content-restaurant__param {
  padding: 2.5rem 1rem 2.5rem 0;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
  line-height: 2.6rem;
  word-break: break-all;
  max-width: 14.7rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__info .content-restaurant__info--right .content-restaurant__param {
    display: none;
  }
}
.page-restaurant .content-restaurant .content-restaurant__info .content-restaurant__info--right .content-restaurant__param--text {
  padding: 2.5rem 0;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06rem;
  line-height: 2.6rem;
}
.page-restaurant .content-restaurant .content-restaurant__info .line-info__center {
  width: 100%;
  height: 0.1rem;
  background-color: #ddd;
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__info .line-info__center {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__info .content-restaurant__param--text {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.06rem;
    line-height: 2.6rem;
  }
}
.page-restaurant .content-restaurant .content-restaurant__right--custom {
  display: none;
}
@media screen and (max-width: 768px) {
  .page-restaurant .content-restaurant .content-restaurant__right--custom {
    width: 100%;
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .page-restaurant .container-child {
    padding: 0;
  }
}
.page-restaurant .restaurant-logo-cm {
  max-width: 30rem;
  height: 8rem;
  width: -moz-fit-content;
  width: fit-content;
}
.page-restaurant .restaurant-logo-cm img {
  width: auto !important;
}
@media screen and (max-width: 768px) {
  .page-restaurant .restaurant-logo-cm {
    max-width: 20rem;
    height: 4.2rem;
  }
}

.page-condition {
  padding: 15rem 0;
}
.page-condition .txt-heading-24 {
  display: flex;
  flex-direction: column;
  font-size: 2.4rem;
  letter-spacing: 0.04rem;
  line-height: 4.2rem;
}
.page-condition .txt-heading-24::after {
  background-color: #ddd;
  content: "";
  height: 0.1rem;
  margin-top: 0.6rem;
  max-width: 100%;
}
.page-condition .txt-heading-20 {
  display: flex;
  flex-direction: column;
  font-size: 2.2rem;
  letter-spacing: 0.04rem;
  line-height: 4.8rem;
  position: relative;
}
.page-condition .txt-heading-20::after {
  background-color: #ddd;
  content: "";
  height: 0.1rem;
  margin-top: 0.3rem;
  width: 100%;
}
.page-condition .txt-heading-20::before {
  background-color: var(--color-main-tempalte);
  bottom: 0;
  content: "";
  height: 0.1rem;
  width: 22rem;
  max-width: 100%;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .page-condition .txt-heading-20::before {
    width: 20rem;
  }
}
.page-condition .mt-60 {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .page-condition .mt-60 {
    margin-top: 3rem;
  }
}
.page-condition .txt-description {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 3.2rem;
  padding-top: 3rem;
}
@media screen and (max-width: 768px) {
  .page-condition .txt-description {
    padding-top: 1.5rem;
  }
}

.page-restaurant-detail .content-top {
  text-align: center;
  padding: 11.4rem 0 3rem;
}
@media screen and (max-width: 768px) {
  .page-restaurant-detail .content-top {
    text-align: inherit;
    padding: 5.5rem 0 1.9rem;
  }
}
.page-restaurant-detail .content-top .content-top__text--jp {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.3rem;
  line-height: 3.7rem;
}
@media screen and (max-width: 768px) {
  .page-restaurant-detail .content-top .content-top__text--jp {
    font-size: 2.4rem;
    letter-spacing: 0.04rem;
    line-height: 2.9rem;
  }
}
.page-restaurant-detail .content-top .content-top__text--en {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 4.4rem;
}
@media screen and (max-width: 768px) {
  .page-restaurant-detail .content-top .content-top__text--en {
    letter-spacing: 0.04rem;
    color: #333;
    opacity: 0.6;
  }
}
.page-restaurant-detail .restaurantDetailSwiper .swiper-slide {
  height: 46rem;
}
@media screen and (max-width: 768px) {
  .page-restaurant-detail .restaurantDetailSwiper .swiper-slide {
    height: 20.1rem;
  }
}
.page-restaurant-detail .content-restaurant__center {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12rem;
}
@media screen and (max-width: 768px) {
  .page-restaurant-detail .content-restaurant__center {
    flex-direction: column-reverse;
    padding-bottom: 5.5rem;
  }
}
.page-restaurant-detail .content-restaurant__center .content-restaurant__center--left {
  width: 50%;
  padding-top: 7rem;
}
@media screen and (max-width: 768px) {
  .page-restaurant-detail .content-restaurant__center .content-restaurant__center--left {
    width: 100%;
    padding-top: 2.3rem;
  }
}
.page-restaurant-detail .content-restaurant__center .content-restaurant__center--left .content-restaurant__left--text {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
  line-height: 3.2rem;
  padding-bottom: 6rem;
  margin-right: 6rem;
}
@media screen and (max-width: 1200px) {
  .page-restaurant-detail .content-restaurant__center .content-restaurant__center--left .content-restaurant__left--text {
    margin-right: 3rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .page-restaurant-detail .content-restaurant__center .content-restaurant__center--left .content-restaurant__left--text {
    margin-right: 0;
    padding-bottom: 3rem;
    line-height: 3rem;
    font-size: 1.4rem;
  }
}
.page-restaurant-detail .content-restaurant__center .content-restaurant__center--left .content-restaurant__left--button {
  border-radius: 0.3rem;
  min-width: 32rem;
  background-color: var(--color-main-tempalte2);
  display: flex;
  padding: 2rem 3.5rem 2rem 3rem;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .page-restaurant-detail .content-restaurant__center .content-restaurant__center--left .content-restaurant__left--button {
    min-width: 28rem;
  }
}
@media screen and (max-width: 768px) {
  .page-restaurant-detail .content-restaurant__center .content-restaurant__center--left .content-restaurant__left--button {
    min-width: 26rem;
  }
}
.page-restaurant-detail .content-restaurant__center .content-restaurant__center--left .content-restaurant__left--button .content-restaurant__button--text {
  font-size: 2rem;
  font-weight: 600;
  padding: 1.7rem 0;
  line-height: 0.3rem;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .page-restaurant-detail .content-restaurant__center .content-restaurant__center--left .content-restaurant__left--button .content-restaurant__button--text {
    font-size: 1.6rem;
    padding: 1.2rem 0;
  }
}
.page-restaurant-detail .content-restaurant__center .content-restaurant__center--left .content-restaurant__left--button .next-icon {
  padding-right: 1.6rem;
}
@media screen and (max-width: 768px) {
  .page-restaurant-detail .content-restaurant__center .content-restaurant__center--left .content-restaurant__left--button .next-icon {
    padding-right: 2rem;
  }
}
.page-restaurant-detail .content-restaurant__center .content-restaurant__center--left .content-restaurant__left--button .next-icon::after {
  width: 0.7rem;
  height: 0.7rem;
}
.page-restaurant-detail .content-restaurant__center .content-restaurant__center--right {
  width: 50%;
  padding-top: 6rem;
}
@media screen and (max-width: 768px) {
  .page-restaurant-detail .content-restaurant__center .content-restaurant__center--right {
    width: 100%;
    padding-top: 3rem;
  }
}
.page-restaurant-detail .content-restaurant__center .content-restaurant__center--right .content-restaurant__info {
  display: flex;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 0.1rem solid #DDDDDD;
}
@media screen and (max-width: 768px) {
  .page-restaurant-detail .content-restaurant__center .content-restaurant__center--right .content-restaurant__info {
    padding: 2rem 0;
  }
}
.page-restaurant-detail .content-restaurant__center .content-restaurant__center--right .content-restaurant__info .content-info__param {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.6rem;
  width: 100%;
  word-break: break-all;
  max-width: 14.7rem;
}
@media screen and (max-width: 1200px) {
  .page-restaurant-detail .content-restaurant__center .content-restaurant__center--right .content-restaurant__info .content-info__param {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .page-restaurant-detail .content-restaurant__center .content-restaurant__center--right .content-restaurant__info .content-info__param {
    padding-right: 1rem;
    font-size: 1.4rem;
    max-width: 11.3rem;
  }
}
.page-restaurant-detail .content-restaurant__center .content-restaurant__center--right .content-restaurant__info .content-info__param-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.6rem;
}
@media screen and (max-width: 1200px) {
  .page-restaurant-detail .content-restaurant__center .content-restaurant__center--right .content-restaurant__info .content-info__param-text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .page-restaurant-detail .content-restaurant__center .content-restaurant__center--right .content-restaurant__info .content-info__param-text {
    font-size: 1.4rem;
  }
}
.page-restaurant-detail .content-restaurant__center .content-restaurant__center--right .content-restaurant__info:first-child {
  border-top: 0.1rem solid #A790C4;
}
@media screen and (max-width: 768px) {
  .page-restaurant-detail .dinning-slide {
    padding: 0 2rem;
    margin: 0 -2rem;
  }
}
.page-restaurant-detail .dinning-food .dinning-food__titleJA {
  font-family: "Montserrat";
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.3rem;
  line-height: 3.7rem;
}
@media screen and (max-width: 768px) {
  .page-restaurant-detail .dinning-food .dinning-food__titleJA {
    font-size: 2.4rem;
    letter-spacing: 0.04rem;
    line-height: 2.9rem;
  }
}
.page-restaurant-detail .dinning-food .dinning-food__titleEN {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 4.4rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .page-restaurant-detail .dinning-food .dinning-food__titleEN {
    letter-spacing: 0.04rem;
    padding-bottom: 2rem;
    opacity: 0.6;
  }
}
.page-restaurant-detail .dinning-food .dinning-food__info .swiper-slide .img-wrap {
  height: 26.4vw;
}
@media screen and (max-width: 1200px) {
  .page-restaurant-detail .dinning-food .dinning-food__info .swiper-slide .img-wrap {
    height: 34vw;
  }
}
@media screen and (max-width: 768px) {
  .page-restaurant-detail .dinning-food .dinning-food__info .swiper-slide .img-wrap {
    height: 32rem;
  }
}
.page-restaurant-detail .dinning-food .dinning-food__info .swiper-slide .dinning-slide__title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 3.4rem;
  padding: 3rem 0 2rem;
}
@media screen and (max-width: 1200px) {
  .page-restaurant-detail .dinning-food .dinning-food__info .swiper-slide .dinning-slide__title {
    font-size: 1.7rem;
    padding: 1rem 0;
  }
}
@media screen and (max-width: 768px) {
  .page-restaurant-detail .dinning-food .dinning-food__info .swiper-slide .dinning-slide__title {
    font-size: 1.6rem;
    padding: 2rem 0 1.5rem;
  }
}
.page-restaurant-detail .dinning-food .dinning-food__info .swiper-slide .dinning-slide__text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 3rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1200px) {
  .page-restaurant-detail .dinning-food .dinning-food__info .swiper-slide .dinning-slide__text {
    font-size: 1.5rem;
    line-height: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .page-restaurant-detail .dinning-food .dinning-food__info .swiper-slide .dinning-slide__text {
    font-size: 1.2rem;
  }
}
.page-restaurant-detail .dinning-food .dinning-button {
  border-radius: 0.3rem;
  min-width: 32rem;
  background-color: var(--color-main-tempalte2);
  display: flex;
  padding: 2rem 2rem 2rem 3rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 7.2rem auto 12rem;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .page-restaurant-detail .dinning-food .dinning-button {
    min-width: 26rem;
    padding: 1.8rem 0;
    padding-left: 2.5rem;
    margin: 3rem auto 4rem;
  }
}
.page-restaurant-detail .dinning-food .dinning-button .dingning-button__text {
  font-size: 2rem;
  font-weight: 600;
  padding: 1.7rem 0;
  line-height: 0.3rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .page-restaurant-detail .dinning-food .dinning-button .dingning-button__text {
    font-size: 1.6rem;
    padding: 1.2rem 0;
  }
}
.page-restaurant-detail .dinning-food .dinning-button .next-icon {
  padding-right: 1.6rem;
}
@media screen and (max-width: 768px) {
  .page-restaurant-detail .dinning-food .dinning-button .next-icon {
    margin-right: 2.4rem;
    padding-left: 0.5rem;
  }
}
.page-restaurant-detail .dinning-food .dinning-button .next-icon::after {
  width: 0.7rem;
  height: 0.7rem;
}
.page-restaurant-detail .restaurant-logo-cm {
  max-width: 30rem;
  margin: 0 auto;
  height: 8rem;
  width: -moz-fit-content;
  width: fit-content;
}
.page-restaurant-detail .restaurant-logo-cm img {
  width: auto !important;
}
@media screen and (max-width: 768px) {
  .page-restaurant-detail .restaurant-logo-cm {
    max-width: 20rem;
    height: 4.2rem;
  }
}

.page-sightseeing .Sightseeing-top {
  padding: 6rem 0 2.3rem;
}
.page-sightseeing .Sightseeing-top .Sightseeing-top__text {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
  line-height: 2.8rem;
  padding-bottom: 2rem;
}
.page-sightseeing .Sightseeing-top .Sightseeing-top__img {
  width: 100%;
  height: 20rem;
}
.page-sightseeing .Sightseeing-center {
  display: flex;
  padding: 12rem 0;
}
@media screen and (max-width: 768px) {
  .page-sightseeing .Sightseeing-center {
    padding-top: 0rem;
    padding-bottom: 6rem;
  }
}
.page-sightseeing .Sightseeing-center .Sightseeing-title {
  writing-mode: vertical-lr;
}
@media screen and (max-width: 768px) {
  .page-sightseeing .Sightseeing-center .Sightseeing-title {
    margin-top: 4rem;
  }
}
.page-sightseeing .Sightseeing-center .Sightseeing-title .Sightseeing-title__en {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
  line-height: 4.4rem;
  color: #A790C4;
  text-orientation: sideways-right;
}
@media screen and (max-width: 768px) {
  .page-sightseeing .Sightseeing-center .Sightseeing-title .Sightseeing-title__en {
    font-size: 1.2rem;
    line-height: 1;
    margin-left: 0.5rem;
  }
}
.page-sightseeing .Sightseeing-center .Sightseeing-title .Sightseeing-title__jp {
  font-size: 3rem;
  font-weight: 600;
  line-height: 3.4rem;
}
@media screen and (max-width: 768px) {
  .page-sightseeing .Sightseeing-center .Sightseeing-title .Sightseeing-title__jp {
    font-size: 2rem;
    line-height: 2.2rem;
  }
}
.page-sightseeing .Sightseeing-center .Sightseeing-right {
  margin-left: 21.2rem;
}
@media screen and (max-width: 1200px) {
  .page-sightseeing .Sightseeing-center .Sightseeing-right {
    margin-left: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .page-sightseeing .Sightseeing-center .Sightseeing-right {
    margin-left: 4.5rem;
    width: 100%;
  }
}
.page-sightseeing .Sightseeing-center .Sightseeing-right .Sightseeing-right__text {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.04rem;
  line-height: 3.4rem;
  margin-bottom: 3rem;
}
.page-sightseeing .Sightseeing-center .Sightseeing-right .Sightseeing-right__img {
  width: calc(50vw + 26rem);
  height: 25vw;
}
.page-sightseeing .Sightseeing-center .Sightseeing-right .Sightseeing-right__info {
  display: flex;
  padding-top: 6rem;
}
.page-sightseeing .Sightseeing-center .Sightseeing-right .Sightseeing-right__info:last-child {
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .page-sightseeing .Sightseeing-center .Sightseeing-right .Sightseeing-right__info {
    padding-top: 0;
    display: inherit;
  }
}
.page-sightseeing .Sightseeing-center .Sightseeing-right .Sightseeing-right__info .Sightseeing-info__img {
  width: 40rem;
  height: 27rem;
  flex: none;
}
@media screen and (max-width: 768px) {
  .page-sightseeing .Sightseeing-center .Sightseeing-right .Sightseeing-right__info .Sightseeing-info__img {
    width: calc(100% + 2rem);
    margin-top: 4rem;
    height: 20rem;
  }
}
.page-sightseeing .Sightseeing-center .Sightseeing-right .Sightseeing-right__info .Sightseeing-info__right {
  padding-left: 4rem;
  margin: auto 0;
  padding-right: 18rem;
}
@media screen and (max-width: 1200px) {
  .page-sightseeing .Sightseeing-center .Sightseeing-right .Sightseeing-right__info .Sightseeing-info__right {
    margin-left: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .page-sightseeing .Sightseeing-center .Sightseeing-right .Sightseeing-right__info .Sightseeing-info__right {
    padding-left: 0;
    margin: 0;
    padding-right: 0;
  }
}
.page-sightseeing .Sightseeing-center .Sightseeing-right .Sightseeing-right__info .Sightseeing-info__right .Sightseeing-info__right--title {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 3.2rem;
}
@media screen and (max-width: 768px) {
  .page-sightseeing .Sightseeing-center .Sightseeing-right .Sightseeing-right__info .Sightseeing-info__right .Sightseeing-info__right--title {
    font-size: 1.8rem;
    line-height: 2.2rem;
    padding-top: 1.7rem;
  }
}
.page-sightseeing .Sightseeing-center .Sightseeing-right .Sightseeing-right__info .Sightseeing-info__right .Sightseeing-info__right--detail {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2rem;
  color: #6F6F6F;
  padding: 0.7rem 0 3rem;
}
@media screen and (max-width: 768px) {
  .page-sightseeing .Sightseeing-center .Sightseeing-right .Sightseeing-right__info .Sightseeing-info__right .Sightseeing-info__right--detail {
    font-size: 1.2rem;
    line-height: 1.7rem;
    padding: 0.7rem 0 1.5rem;
  }
}
.page-sightseeing .Sightseeing-center .Sightseeing-right .Sightseeing-right__info .Sightseeing-info__right .Sightseeing-info__right--text {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
  line-height: 3.2rem;
}
@media screen and (max-width: 768px) {
  .page-sightseeing .Sightseeing-center .Sightseeing-right .Sightseeing-right__info .Sightseeing-info__right .Sightseeing-info__right--text {
    font-size: 1.4rem;
    line-height: 2.8rem;
  }
}

.page-access .container {
  width: 100%;
}
.page-access .access-map .access-map__inner {
  height: 63.8rem;
  margin-top: 12rem;
}
@media screen and (max-width: 768px) {
  .page-access .access-map .access-map__inner {
    height: 19rem;
    margin-top: 1.5rem;
  }
}
.page-access .access-map iframe {
  width: 100%;
  height: 100%;
}
.page-access .access-roadMap__inner {
  margin: 6rem 0 12.3rem;
}
@media screen and (max-width: 768px) {
  .page-access .access-roadMap__inner {
    margin: 0;
    flex-direction: column;
  }
}
.page-access .access-roadMap__item {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .page-access .access-roadMap__item {
    width: 100%;
    margin: 6rem 0 0;
  }
  .page-access .access-roadMap__item:last-child {
    margin: 6rem 0 6rem;
  }
}
.page-access .access-roadMap__item .access-roadMap__item--vehicle {
  text-align: center;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .page-access .access-roadMap__item .access-roadMap__item--vehicle {
    text-align: unset;
    margin-bottom: 2rem;
  }
}
.page-access .access-roadMap__item .access-roadMap__item--vehicle .vehicle-EN {
  font-size: 3rem;
  line-height: 1;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.1rem;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 768px) {
  .page-access .access-roadMap__item .access-roadMap__item--vehicle .vehicle-EN {
    font-size: 2.6rem;
  }
}
.page-access .access-roadMap__item .access-roadMap__item--vehicle .vehicle-JA {
  font-size: 1rem;
  line-height: 1;
  font-weight: bold;
  color: #333;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .page-access .container {
    width: 100%;
  }
}
.page-access .address-sp {
  padding: 0 2rem;
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  margin-top: 6rem;
}

.map_vehicle_content .map_vehicle_col {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: 0 1rem;
  flex: 1 1;
}
@media screen and (max-width: 768px) {
  .map_vehicle_content .map_vehicle_col {
    max-width: 100%;
    width: 100%;
    padding: 0 0.6rem;
  }
  .map_vehicle_content .map_vehicle_col:nth-child(2n) {
    margin-top: 6rem;
  }
}
.map_vehicle_content .map_vehicle_detail {
  margin-bottom: 1rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .map_vehicle_content .map_vehicle_detail {
    margin-top: 3rem;
  }
}
.map_vehicle_content .map_vehicle_detail .map_vehicle_detail-item {
  border-left: 0.5rem solid #e1e1e1;
  margin-left: 1.1rem;
  padding-bottom: 3.6rem;
  padding-left: 2.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .map_vehicle_content .map_vehicle_detail .map_vehicle_detail-item {
    border: unset;
  }
}
.map_vehicle_content .map_vehicle_detail .map_vehicle_detail-item::before {
  background-color: #E1E1E1;
  bottom: 0;
  height: 100%;
  left: -0.5rem;
  position: absolute;
  width: 0.5rem;
}
@media screen and (max-width: 768px) {
  .map_vehicle_content .map_vehicle_detail .map_vehicle_detail-item::before {
    content: "";
  }
}
.map_vehicle_content .map_vehicle_detail .map_vehicle_detail-item::after {
  background-color: #fff;
  border: 0.7rem solid #b7b7b7;
  border-radius: 50%;
  content: "";
  height: 1.4rem;
  left: -1.7rem;
  position: absolute;
  top: -0.5rem;
  width: 1.4rem;
}
.map_vehicle_content .map_vehicle_detail .map_vehicle_detail-item:last-child {
  border-left: 0.7rem solid transparent !important;
  left: -0.2rem;
  padding-bottom: 0 !important;
}
@media screen and (max-width: 768px) {
  .map_vehicle_content .map_vehicle_detail .map_vehicle_detail-item:last-child {
    left: -0.8rem;
  }
}
.map_vehicle_content .map_vehicle_detail .map_vehicle_detail-item:last-child::after {
  border: 0.7rem solid var(--color-main-tempalte) !important;
}
.map_vehicle_content .map_vehicle_detail .map_vehicle_detail-item:last-child::before {
  display: none;
}
.map_vehicle_content .map_vehicle_detail .map_vehicle_detail-item:last-child .destination_txt {
  color: var(--color-main-tempalte);
}
.map_vehicle_content .destination_txt {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 2rem;
}
@media screen and (max-width: 1200px) {
  .map_vehicle_content .destination_txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .map_vehicle_content .destination_txt {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}
.map_vehicle_content .location_txt {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 2rem;
  margin-top: 1.2rem;
}
@media screen and (max-width: 1200px) {
  .map_vehicle_content .location_txt {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .map_vehicle_content .location_txt {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.02rem;
  }
}
.map_vehicle_content .vehicle_type_EN {
  font-size: 3rem;
  font-weight: 400;
  line-height: 3.7rem;
  text-align: center;
}
.map_vehicle_content .vehicle_type_JP {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
  line-height: 4.4rem;
  margin-top: 0.5rem;
  text-align: center;
}
.map_vehicle_content .time_extimate {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
  line-height: 3rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .map_vehicle_content .time_extimate {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .map_vehicle_content .time_extimate {
    display: flex;
    justify-content: center;
    font-size: 1.6rem;
    padding: 1.4rem 0;
    border-top: 0.1rem solid #ddd;
    border-bottom: 0.1rem solid #ddd;
    margin-top: 6rem;
    width: calc(100% + 1.2rem);
    margin-left: -0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .map_vehicle_content .time_extimate.custom-margin-sp {
    margin-top: 0 !important;
  }
}

.page-contact {
  padding-top: 19rem;
}
@media screen and (max-width: 1200px) {
  .page-contact {
    padding-top: 12rem;
  }
}
@media screen and (max-width: 768px) {
  .page-contact {
    padding-top: 8.3rem;
  }
}
.page-contact .main-content {
  width: 100%;
}
.page-contact .contact-form {
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .page-contact .contact-form {
    margin-top: 1.2rem;
  }
}
.page-contact .contact-form .contact-form__row {
  border: 0.1rem solid #ddd;
  border-top: none;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .page-contact .contact-form .contact-form__row {
    flex-direction: column;
    border: none;
    border-bottom: 0.1rem solid #ddd;
  }
}
.page-contact .contact-form .contact-form__row:first-child {
  border-top: 0.1rem solid #ddd;
}
@media screen and (max-width: 768px) {
  .page-contact .contact-form .contact-form__row:last-child {
    border-bottom: none !important;
  }
}
.page-contact .contact-form .contact-form__row--label {
  padding: 2.4rem 1.6rem;
  background-color: #FAFAFA;
  width: 22rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  word-wrap: break-word;
}
@media screen and (max-width: 768px) {
  .page-contact .contact-form .contact-form__row--label {
    width: 100%;
    background-color: unset;
    padding: 0;
    margin-top: 2rem;
  }
}
.page-contact .contact-form .contact-form__row--label label {
  font-size: 1.4rem;
  line-height: 1.3;
  letter-spacing: 0.1rem;
  color: #000;
  font-weight: 600;
  word-break: break-word;
}
@media screen and (max-width: 768px) {
  .page-contact .contact-form .contact-form__row--label label {
    font-size: 1.2rem;
  }
}
.page-contact .contact-form .contact-form__row--label .require:after {
  content: "必須";
  padding: 0 0.4rem;
  border-radius: 0.4rem;
  height: 1.6rem;
  background-color: #E00123;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.1rem;
  margin-left: 0.8rem;
  white-space: nowrap;
}
.page-contact .contact-form .contact-form__row--label .require:lang(en)::after {
  content: "required";
}
.page-contact .contact-form .contact-form__row--label .require:lang(zh-Hant)::after {
  content: "必需的";
}
.page-contact .contact-form .contact-form__row--label .require:lang(zh-Hans)::after {
  content: "必需的";
}
.page-contact .contact-form .contact-form__row--input {
  padding: 2.4rem;
  width: 100%;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .page-contact .contact-form .contact-form__row--input {
    padding: 0 0 1.6rem;
    margin-top: 1.2rem;
  }
}
.page-contact .contact-form .contact-form__row--input input::-webkit-outer-spin-button,
.page-contact .contact-form .contact-form__row--input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.page-contact .contact-form .contact-form__row--input input, .page-contact .contact-form .contact-form__row--input textarea {
  border: 0.1rem solid #ddd;
  border-radius: 0.8rem;
  padding: 0 1.6rem;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.1rem;
  font-weight: 600;
  color: #000;
  -moz-appearance: textfield;
}
@media screen and (max-width: 768px) {
  .page-contact .contact-form .contact-form__row--input input, .page-contact .contact-form .contact-form__row--input textarea {
    font-size: 1.2rem;
  }
}
.page-contact .contact-form .contact-form__row--input input {
  height: 4rem;
}
.page-contact .contact-form .contact-form__row--input textarea {
  height: 14rem !important;
  resize: none;
  padding-top: 0.9rem;
}
.page-contact .contact-form .contact-form__row--input input:-moz-placeholder-shown {
  background-color: #FFF9F5;
}
.page-contact .contact-form .contact-form__row--input input:placeholder-shown {
  background-color: #FFF9F5;
}
.page-contact .contact-form .contact-form__row--input input:not(:-moz-placeholder-shown) {
  background-color: #fff;
}
.page-contact .contact-form .contact-form__row--input input:not(:placeholder-shown) {
  background-color: #fff;
}
.page-contact .contact-form .contact-form__row--input textarea:-moz-placeholder-shown {
  background-color: #FFF9F5;
}
.page-contact .contact-form .contact-form__row--input textarea:placeholder-shown {
  background-color: #FFF9F5;
}
.page-contact .contact-form .contact-form__row--input textarea:not(:-moz-placeholder-shown) {
  background-color: #fff;
}
.page-contact .contact-form .contact-form__row--input textarea:not(:placeholder-shown) {
  background-color: #fff;
}
.page-contact .contact-form .contact-form__row--input input::-moz-placeholder, .page-contact .contact-form .contact-form__row--input textarea::-moz-placeholder {
  font-family: "Hiragino Sans", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.1rem;
  font-weight: 600;
  color: #999;
}
.page-contact .contact-form .contact-form__row--input input::placeholder, .page-contact .contact-form .contact-form__row--input textarea::placeholder {
  font-family: "Hiragino Sans", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.1rem;
  font-weight: 600;
  color: #999;
}
@media screen and (max-width: 768px) {
  .page-contact .contact-form .contact-form__row--input input::-moz-placeholder, .page-contact .contact-form .contact-form__row--input textarea::-moz-placeholder {
    font-size: 1.2rem;
  }
  .page-contact .contact-form .contact-form__row--input input::placeholder, .page-contact .contact-form .contact-form__row--input textarea::placeholder {
    font-size: 1.2rem;
  }
}
.page-contact .contact-form .contact-form__row--input .value-field {
  font-family: "Hiragino Sans", sans-serif;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .page-contact .contact-form .contact-form__row--input .value-field {
    font-size: 1.2rem;
  }
}
.page-contact .contact-form .contact-form__row--input label.error {
  color: #E00123;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}
.page-contact .txt-heading-24 {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 600;
  width: 100%;
  padding-bottom: 2.5rem;
  border-bottom: 0.1rem solid #ddd;
}
@media screen and (max-width: 768px) {
  .page-contact .txt-heading-24 {
    font-size: 1.6rem;
    padding-bottom: 1rem;
  }
}
.page-contact .hide {
  display: none;
}
.page-contact .btn-submit-contact {
  width: 32rem;
  height: 5.6rem;
  background-color: var(--color-main-tempalte);
  margin: 3.6rem auto 12rem;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  border-radius: 0.8rem;
  border: unset;
  cursor: pointer;
  transition: all 0.3s;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
    .page-contact .btn-submit-contact {
        max-width: 32rem;
        width: 100%;
    }
  }
.page-contact .btn-submit-contact:hover {
  opacity: 0.8;
}
.page-contact .success-screen .success-screen__heading {
  font-size: 2.4rem;
  line-height: 1;
  margin-top: 4.3rem;
  text-align: center;
  color: #222;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .page-contact .success-screen .success-screen__heading {
    font-size: 1.7rem;
    margin-top: 2.5rem;
  }
}
.page-contact .success-screen .success-screen__des {
  font-size: 1.6rem;
  line-height: 3.2rem;
  margin-top: 4.3rem;
  text-align: center;
  color: #222;
  margin-top: 3.2rem;
}
@media screen and (max-width: 1200px) {
  .page-contact .success-screen .success-screen__des {
    font-size: 1.4rem;
    margin-top: 2rem;
    line-height: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .page-contact .success-screen .success-screen__des {
    font-size: 1.2rem;
    margin-top: 2.5rem;
    line-height: 2rem;
  }
}

.page-other-facilities .content {
  margin-top: 6rem;
}
.page-other-facilities .content .banquet-hall {
  margin-top: 4rem;
}
.page-other-facilities .content .img-slide {
  height: 100%;
  position: absolute;
  width: 100%;
}
.page-other-facilities .content .banquet-hall-if {
  background-color: rgba(255, 255, 255, 0.9);
  height: 100%;
  max-width: 52rem;
  padding: 10rem 6.7rem 8.3rem 8rem;
  position: relative;
  z-index: 99;
}
@media screen and (max-width: 1200px) {
  .page-other-facilities .content .banquet-hall-if {
    padding: 5rem 2rem;
  }
}
.page-other-facilities .content .banquet-hall-if .txt-heading-30 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 4.4rem;
}
.page-other-facilities .content .banquet-hall-if .txt-style-18 {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.04rem;
  line-height: 2.8rem;
  padding-bottom: 2rem;
  padding-top: 1.2rem;
}
.page-other-facilities .content .banquet-hall-if .txt-heading-16 {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 3rem;
  width: 15rem;
}
.page-other-facilities .content .banquet-hall-if .txt-style-16 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 3rem;
}
.page-other-facilities .content .banquet-hall-if .txt-style-16--price {
  line-height: 2.4rem;
}
.page-other-facilities .content .banquet-hall-if .custom-border::after {
  background-color: #ccc;
  content: "";
  display: flex;
  height: 0.2rem;
  max-width: 100%;
  width: 38rem;
}
.page-other-facilities .content .banquet-hall-if .custom-border-top::after {
  margin-top: 1.8rem;
}
.page-other-facilities .content .banquet-hall-if .custom-border-center .business-hours {
  padding-top: 2.2rem;
}
.page-other-facilities .content .banquet-hall-if .custom-border-center::after {
  margin-top: 2.3rem;
}
.page-other-facilities .content .banquet-hall-if .custom-border-bottom::after {
  margin-top: 1.4rem;
}
.page-other-facilities .content .banquet-hall-if .price {
  padding-top: 1.6rem;
}
.page-other-facilities .content .banquet-hall:nth-child(even) {
  justify-content: flex-end;
}
.page-other-facilities .btn-link-default {
  color: #0000ff;
  cursor: pointer;
  text-decoration: underline;
}
.page-other-facilities .btn-link-style {
  align-items: center;
  color: #0000ff;
  cursor: pointer;
  display: flex;
  text-decoration: underline;
}
.page-other-facilities .other-facilities-slide .txt-heading-16 {
  color: #AFAFB9;
  font-family: "Gotham", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.9rem;
  margin-bottom: 2rem;
}
.page-other-facilities .other-facilities-slide .image-slide__wrap {
  display: flex;
}
.page-other-facilities .other-facilities-slide .swiper-pagination-bullets {
  max-width: 2.5rem;
  padding-top: 2.3rem;
}
.page-other-facilities .other-facilities-slide .swiper-pagination-bullet {
  align-items: center;
  background: #fff;
  border: 0.2rem solid #000;
  color: #000;
  display: flex;
  font-size: 1.2rem;
  height: 2.2rem;
  justify-content: center;
  line-height: 2rem;
  margin-bottom: 2rem;
  margin-left: 0.3rem;
  opacity: 0.4;
  position: relative;
  width: 2.2rem;
}
.page-other-facilities .other-facilities-slide .swiper-pagination-bullet:only-child {
  display: flex !important;
}
.page-other-facilities .other-facilities-slide .swiper-pagination-bullet::after {
  background-color: #000;
  bottom: -1.7rem;
  content: "";
  display: flex;
  height: 1.1rem;
  position: absolute;
  width: 0.1rem;
}
.page-other-facilities .other-facilities-slide .swiper-pagination-bullet:last-child::after {
  content: unset;
}
.page-other-facilities .other-facilities-slide .swiper-pagination-bullet-active {
  opacity: 1 !important;
}
.page-other-facilities .other-facilities-slide .swiper-pagination {
  display: flex;
  flex-direction: column;
  position: unset;
  width: 2.5rem;
}
.page-other-facilities .other-facilities-slide .facilities-slide-func {
  margin-top: 2.4rem;
  padding-top: 2.7rem;
  position: relative;
}
.page-other-facilities .other-facilities-slide .facilities-slide-func .swiper-button-next {
  border-bottom: 0.1rem solid #A3A3A3;
  display: flex;
  flex-direction: row-reverse;
  height: 2rem;
  right: 0;
  width: 5.9rem;
}
.page-other-facilities .other-facilities-slide .facilities-slide-func .swiper-button-next::after {
  content: unset;
}
.page-other-facilities .other-facilities-slide .facilities-slide-func .swiper-button-next .btn-icon {
  display: flex;
  padding-left: 0.8rem;
  width: 2rem;
}
.page-other-facilities .other-facilities-slide .facilities-slide-func .swiper-button-prev {
  border-bottom: 0.1rem solid #A3A3A3;
  height: 2rem;
  left: 0;
  width: 5.9rem;
}
.page-other-facilities .other-facilities-slide .facilities-slide-func .swiper-button-prev::after {
  content: unset;
}
.page-other-facilities .other-facilities-slide .facilities-slide-func .swiper-button-prev .btn-icon {
  display: flex;
  padding-left: 0.8rem;
  transform: rotate(180deg);
  width: 2rem;
}
.page-other-facilities .other-facilities-slide .facilities-slide-func .btn-txt {
  color: #A3A3A3;
  font-size: 1.3rem;
  line-height: 1.9rem;
}
.page-other-facilities .other-facilities-slide .facilities-slide-func svg {
  height: 100%;
  width: 100%;
}
.page-other-facilities .other-facilities-slide .banquet-hall-if {
  padding-left: 1.5rem;
  padding-top: 1.2rem;
}
@media screen and (max-width: 768px) {
  .page-other-facilities .other-facilities-slide .banquet-hall-if {
    margin-right: 2.5rem;
  }
}
.page-other-facilities .other-facilities-slide .banquet-hall-if .txt-headingchidl-16 {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.4rem;
}
.page-other-facilities .other-facilities-slide .banquet-hall-if .txt-if {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
  line-height: 2.4rem;
  margin-top: 0.6rem;
}
.page-other-facilities .other-facilities-slide .banquet-hall-if .txt-heading-12 {
  color: #AFAFB9;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.7rem;
  width: 7rem;
}
.page-other-facilities .other-facilities-slide .banquet-hall-if .txt-style-12 {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2rem;
}
.page-other-facilities .other-facilities-slide .banquet-hall-if .business-hours {
  padding-top: 1.6rem;
}
.page-other-facilities .other-facilities-slide .banquet-hall-if .price {
  padding-top: 1.6rem;
}
.page-other-facilities .other-facilities-slide .banquet-hall-if .custom-border::after {
  background-color: #ccc;
  content: "";
  display: flex;
  height: 0.2rem;
  max-width: 100%;
  width: 30.4rem;
}
.page-other-facilities .other-facilities-slide .banquet-hall-if .custom-border-top::after {
  margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .page-other-facilities .other-facilities-slide .banquet-hall-if .custom-border-top::after {
    height: 0.1rem;
    background: #A790C4;
  }
}
.page-other-facilities .other-facilities-slide .banquet-hall-if .custom-border-center::after {
  margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .page-other-facilities .other-facilities-slide .banquet-hall-if .custom-border-center::after {
    color: #ddd;
    height: 0.1rem;
  }
}
.page-other-facilities .other-facilities-slide .banquet-hall-if .custom-border-bottom::after {
  margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .page-other-facilities .other-facilities-slide .banquet-hall-if .custom-border-bottom::after {
    color: #ddd;
    height: 0.1rem;
  }
}
.page-other-facilities .other-facilities-slide .image-slide__other-1 {
  width: 100%;
}

.error-page {
    padding-top: 18rem;
    height: 76.8rem;
    flex-direction: column;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
  }
  @media screen and (max-width: 768px) {
    .error-page {
      padding: 15rem 2rem;
    }
  }
  .error-page::after {
    content: "";
    position: absolute;
    z-index: 0;
    background-color: #000;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    opacity: 0.4;
  }
  .error-page .error-content {
    position: relative;
    z-index: 1;
  }
  @media screen and (max-width: 768px) {
    .error-page .error-warning {
      flex-direction: column;
    }
  }
  .error-page .error-warning .error-warning__icon {
    width: 12.4rem;
    margin-right: 2rem;
  }
  @media screen and (max-width: 768px) {
    .error-page .error-warning .error-warning__icon {
      width: 5rem;
      margin-right: 0;
    }
  }
  @media screen and (max-width: 479px) {
    .error-page .error-warning .error-warning__icon {
      width: 10rem;
    }
  }
  .error-page .error-warning .error-warning__icon img {
    -o-object-fit: unset;
       object-fit: unset;
  }
  .error-page .error-warning .error-warning__code {
    font-size: 14.6rem;
    line-height: 1;
    font-weight: 600;
  }
  @media screen and (max-width: 768px) {
    .error-page .error-warning .error-warning__code {
      font-size: 5rem;
      margin-top: 1rem;
    }
  }
  @media screen and (max-width: 479px) {
    .error-page .error-warning .error-warning__code {
      font-size: 10rem;
      margin-top: 2rem;
    }
  }
  .error-page .error-notification .notification-txt-26 {
    font-size: 2.6rem;
    line-height: 3.7rem;
    font-weight: 600;
    margin: 1.3rem 0 3rem;
    text-align: center;
  }
  @media screen and (max-width: 768px) {
    .error-page .error-notification .notification-txt-26 {
      font-size: 1.5rem;
      line-height: 1.5rem;
      text-align: center;
      margin: 2rem 0;
    }
  }
  @media screen and (max-width: 479px) {
    .error-page .error-notification .notification-txt-26 {
      font-size: 2rem;
      line-height: 3rem;
    }
  }
  .error-page .error-notification .notification-txt-16 {
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: 600;
  }
  @media screen and (max-width: 768px) {
    .error-page .error-notification .notification-txt-16 {
      font-size: 1rem;
      line-height: 1.5rem;
    }
  }
  @media screen and (max-width: 479px) {
    .error-page .error-notification .notification-txt-16 {
      font-size: 1.4rem;
      line-height: 2rem;
    }
  }
  .error-page .error-line__left,
  .error-page .error-line__right {
    width: calc(50% - 2rem);
    height: 0.2rem;
    background-color: #fff;
  }
  @media screen and (max-width: 768px) {
    .error-page .error-line__left,
    .error-page .error-line__right {
      width: calc(50% - 1rem);
    }
  }
  .error-page .error-line {
    width: 100%;
    margin: 9rem 0 7rem;
  }
  @media screen and (max-width: 768px) {
    .error-page .error-line {
      margin: 4rem 0;
      width: calc(100% + 4rem);
    }
  }
  .error-page .error-line .error-line__left::after {
    content: "";
    position: absolute;
    width: 4.2rem;
    height: 0.2rem;
    background-color: #fff;
    transform: rotate(90deg);
    right: -2.1rem;
  }
  @media screen and (max-width: 479px) {
    .error-page .error-line .error-line__left::after {
      right: -1.5rem;
      width: 3rem;
    }
  }
  .error-page .error-line .error-line__right::after {
    content: "";
    position: absolute;
    width: 3rem;
    height: 0.2rem;
    background-color: #fff;
    transform: rotate(90deg);
    left: -1.5rem;
  }
  @media screen and (max-width: 479px) {
    .error-page .error-line .error-line__right::after {
      left: -1rem;
      width: 2rem;
    }
  }
  .error-page .error-btn {
    transform: translateX(10px);
  }
  @media screen and (max-width: 768px) {
    .error-page .error-btn {
      justify-content: space-between;
      width: 100%;
      transform: none;
    }
  }
  .error-page .error-btn .error-btn__item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5.2rem;
    border-radius: 0.3rem;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 600;
    color: #2C8AAE;
    margin: 0 2rem;
    background-color: #fff;
  }
  .error-page .error-btn .error-btn__item:first-child {
    width: 180px;
  }
  @media screen and (max-width: 768px) {
    .error-page .error-btn .error-btn__item:first-child {
      width: calc(50% - 1rem);
    }
  }
  .error-page .error-btn .error-btn__item:last-child {
    width: 200px;
  }
  @media screen and (max-width: 768px) {
    .error-page .error-btn .error-btn__item:last-child {
      width: calc(50% - 1rem);
    }
  }
  @media screen and (max-width: 768px) {
    .error-page .error-btn .error-btn__item {
      width: calc(50% - 1rem);
      margin: 0;
      padding: 0 1.5rem 0 3.2rem;
      font-size: 1.2rem;
    }
  }
  .error-page .error-btn .error-btn__item::after {
    content: "";
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7.704' height='11.401' viewBox='0 0 7.704 11.401'%3E%3Cpath id='Path_8307' data-name='Path 8307' d='M-4363.792-9877.6l6.5,5.344-6.5,4.656' transform='translate(-4356.792 -9866.898) rotate(180)' fill='none' stroke='%232c8aae' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/svg%3E%0A");
    background-size: cover;
    background-position: center;
    width: 1rem;
    height: 1.2rem;
    transform: translateY(0.1rem);
    left: 2rem;
  }

  .page-onsen .intro-content {
    text-align: center;
    padding: 8rem 0;
    border-bottom: 0.1rem solid #ddd;
  }
  @media screen and (max-width: 768px) {
    .page-onsen .intro-content {
      padding: 6rem 0;
      text-align: start;
    }
  }
  .page-onsen .intro-content .intro-main-title {
    font-size: 2.4rem;
    line-height: 2.7rem;
    letter-spacing: 0.1rem;
    font-weight: bold;
    margin-bottom: 3rem;
  }
  @media screen and (max-width: 768px) {
    .page-onsen .intro-content .intro-main-title {
      font-size: 2.2rem;
      line-height: 2.6rem;
    }
  }
  .page-onsen .intro-content .intro-main-desc {
    font-size: 1.6rem;
    line-height: 3.2rem;
    letter-spacing: 0.04rem;
    font-weight: 400;
  }
  @media screen and (max-width: 768px) {
    .page-onsen .intro-content .intro-main-desc {
      font-size: 1.4rem;
      line-height: 2.8rem;
    }
  }
  .page-onsen .post-content .post-content__item {
    margin: 12rem 0;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  @media screen and (max-width: 768px) {
    .page-onsen .post-content .post-content__item {
      margin: 6rem 0;
    }
  }
  .page-onsen .post-content .post-content__item .post-content__item--inner {
    width: 50%;
  }
  @media screen and (max-width: 768px) {
    .page-onsen .post-content .post-content__item .post-content__item--inner {
      width: 100%;
    }
  }
  .page-onsen .post-content .post-content__item .onsen-slide-swiper {
    width: 50vw;
    height: 27.8vw;
  }
  @media screen and (max-width: 1200px) {
    .page-onsen .post-content .post-content__item .onsen-slide-swiper {
      height: 35vw;
    }
  }
  @media screen and (max-width: 768px) {
    .page-onsen .post-content .post-content__item .onsen-slide-swiper {
      width: calc(100% + 2rem);
      height: 26rem;
      margin: 0 -2rem 2.1rem 0 !important;
    }
  }
  .page-onsen .post-content .post-content__item .post-content__item--info {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
  @media screen and (max-width: 768px) {
    .page-onsen .post-content .post-content__item .post-content__item--info {
      padding: 0 !important;
    }
  }
  .page-onsen .post-content .post-content__item .post-content__item--info .post-info__title {
    font-size: 3rem;
    line-height: 3.7rem;
    letter-spacing: 0.3rem;
    font-weight: bold;
  }
  @media screen and (max-width: 1200px) {
    .page-onsen .post-content .post-content__item .post-content__item--info .post-info__title {
      font-size: 2.5rem;
      line-height: 3rem;
    }
  }
  @media screen and (max-width: 768px) {
    .page-onsen .post-content .post-content__item .post-content__item--info .post-info__title {
      font-size: 2rem;
      line-height: 2.4rem;
      margin-bottom: 1.7rem;
    }
  }
  .page-onsen .post-content .post-content__item .post-content__item--info .post-info__subtitle {
    font-size: 1.4rem;
    line-height: 4.4rem;
    letter-spacing: 0.1rem;
    font-weight: bold;
    color: #333;
  }
  @media screen and (max-width: 1200px) {
    .page-onsen .post-content .post-content__item .post-content__item--info .post-info__subtitle {
      font-size: 1.2rem;
      line-height: 3rem;
    }
  }
  .page-onsen .post-content .post-content__item .post-content__item--info .post-info__desc {
    font-size: 1.6rem;
    line-height: 3.2rem;
    letter-spacing: 0.04rem;
    font-weight: 400;
    color: #333;
    margin-top: 8rem;
  }
  @media screen and (max-width: 768px) {
    .page-onsen .post-content .post-content__item .post-content__item--info .post-info__desc {
      font-size: 1.4rem;
      line-height: 3rem;
      margin-top: 0rem;
    }
  }
  .page-onsen .post-content .post-content__item .post-content__item--info .more-info-link {
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
    line-height: 2.2rem;
    font-weight: 500;
  }
  .page-onsen .post-content .post-content__item .post-content__item--parameter {
    margin-top: 4rem;
  }
  @media screen and (max-width: 768px) {
    .page-onsen .post-content .post-content__item .post-content__item--parameter {
      margin-top: 3rem;
    }
  }
  .page-onsen .post-content .post-content__item .post-content__item--parameter .parameter-row {
    border-bottom: 0.1rem solid #ddd;
    padding: 2.5rem 0;
  }
  @media screen and (max-width: 768px) {
    .page-onsen .post-content .post-content__item .post-content__item--parameter .parameter-row {
      padding: 2rem 0;
    }
  }
  .page-onsen .post-content .post-content__item .post-content__item--parameter .parameter-row:first-child {
    border-top: 0.1rem solid var(--color-main-tempalte);
  }
  .page-onsen .post-content .post-content__item .post-content__item--parameter .parameter-row .parameter-col {
    font-size: 1.6rem;
    line-height: 2.6rem;
    font-weight: bold;
    letter-spacing: 0.06rem;
    width: calc(100% - 12rem);
  }
  @media screen and (max-width: 768px) {
    .page-onsen .post-content .post-content__item .post-content__item--parameter .parameter-row .parameter-col {
      font-size: 1.4rem;
    }
  }
  .page-onsen .post-content .post-content__item .post-content__item--parameter .parameter-row .parameter-col__left {
    width: 25rem;
  }
  @media screen and (max-width: 768px) {
    .page-onsen .post-content .post-content__item .post-content__item--parameter .parameter-row .parameter-col__left {
      width: 12rem;
    }
  }
  .page-onsen .post-content .post-content__item .post-content__item--parameter .parameter-row .parameter-col__right {
    width: calc(100% - 25rem);
  }
  @media screen and (max-width: 768px) {
    .page-onsen .post-content .post-content__item .post-content__item--parameter .parameter-row .parameter-col__right {
      width: calc(100% - 12rem);
    }
  }
  .page-onsen .post-content .post-content__item:nth-child(even) {
    justify-content: flex-start;
  }
  .page-onsen .post-content .post-content__item:nth-child(even) .post-content__item--info {
    padding-left: 8rem;
  }
  @media screen and (max-width: 1200px) {
    .page-onsen .post-content .post-content__item:nth-child(even) .post-content__item--info {
      padding-left: 4rem;
    }
  }
  .page-onsen .post-content .post-content__item:nth-child(even) .post-content__item--thumb {
    order: -1;
  }
  .page-onsen .post-content .post-content__item:nth-child(even) .post-content__item--thumb .onsen-slide-swiper {
    margin-left: calc(-50vw + 100%);
  }
  @media screen and (max-width: 768px) {
    .page-onsen .post-content .post-content__item:nth-child(odd) .post-content__item--thumb {
      order: -1;
    }
  }
  .page-onsen .post-content .post-content__item:nth-child(odd) .post-content__item--info {
    padding-right: 8rem;
  }
  @media screen and (max-width: 1200px) {
    .page-onsen .post-content .post-content__item:nth-child(odd) .post-content__item--info {
      padding-right: 4rem;
    }
  }
