@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-origin: border-box;
}

:root {
  --txt-primary: #000;
  --wht: #fff;
  font-size: 10px;
  --gara: "adobe-garamond-pro";
  --noto: "Noto Serif JP";
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Serif JP";
  color: var(--txt-primary);
  display: block;
  overflow-x: hidden;
  width: 100%;
  word-break: break-all;
  font-weight: 400;
  font-style: normal;
  position: relative;
  padding-top: 80px;
}
p {
  font-size: 1.6rem;
}
/*====================================*/
/* base contents */
/*====================================*/
a {
  text-decoration: none;
}
ul {
  list-style-type: none;
}
ul li {
  color: currentColor;
}
img {
  max-width: 100%;
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

h1,
h2 {
  font-family: var(--gara);
}
h4,
h5 {
  font-family: var(--gara);
  font-weight: 400;
}
.mt80 {
  margin-top: 80px;
}
/* ------------------------
    edit contents
------------------------- */
/* 指定フォント ここから */

/* ----pc,sp/on_off---- */
.pc {
  display: block;
}
.pc_fl {
  display: flex;
}
.tb {
  display: block;
}

.sp {
  display: none;
}
@media (max-width: 1079.98px) {
  .pc {
    display: none;
  }
  .pc_fl {
    display: none;
  }
  .tb {
    display: none;
  }
  .sp {
    display: block;
  }
}
/* Slide Animated */
.animate {
  opacity: 0;
  transition: all 0.8s ease-in-out;
  position: relative;
}

.slide-up {
  transform: translateY(100px);
}

.slide-down {
  transform: translateY(-100px);
}

.slide-left {
  transform: translateX(100px);
}

.slide-right {
  transform: translateX(-100px);
}

.animate.active {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-600 {
  transition-delay: 600ms;
}
/*================= Header ===================*/
.header_container{
  display: flex;
  width: 100%;
  justify-content: center;
  position: fixed;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-top: -80px;
  background: #fff;
}
.header {
  background: var(--wht);
  display: flex;
  align-items: center;
  max-width: 1080px;
  padding: 22px 0;
  width: 100%;
}
.header .header_logo {
  max-width: 202px;
  max-height: 46px;
}
nav {
  margin-left: auto;
}
nav ul {
  display: flex;
  gap: 50px;
}
nav ul li a {
  color: var(--txt-primary);
  font-size: 1.6rem;
  line-height: 2;
  position: relative;
  display: inline-block;
  transition: all 0.5s ease;
}
/* nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--txt-primary);
  transition: width 0.3s ease;
}
nav ul li a:hover::after {
  width: 100%;
} */
nav ul li a::after {
  position: absolute;
  content: "";
  background: url(../img/content_bt.svg) no-repeat;
  width: 30px;
  height: 3px;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%, 50%);
  transition: width 0.4s ease;
}
nav ul li a:hover::after {
  width: 80px;
}
.top_image {
  background: url(../img/top_kv.webp) lightgray 50% / cover no-repeat;
  color: var(--wht);
  position: relative;
  z-index: 0;
  height: 1110px;
}
.top_image .img_tt {
  position: absolute;
  top: 380px;
  left: 433px;
  font-family: var(--gara);
  text-align: center;
  line-height: 2;
  font-style: italic;
}
.img_tt span {
  display: block;
  font-family: var(--noto);
  font-size: 3.2rem;
  margin-bottom: 24px;
  text-align: left;
}
.img_tt h1 {
  font-size: 6.4rem;
  font-weight: 400;
  white-space: nowrap;
}
.top_image .img_sp {
  position: absolute;
  z-index: 1;
  bottom: 140px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.img_sp p {
  position: relative;
  color: var(--wht);
  font-family: var(--gara);
  font-size: 2.4rem;
  font-weight: 400;
  font-style: italic;
  line-height: 2;
  animation: scrollText 2s ease-in-out infinite;
  transition: opacity 0.5s ease;
}
.img_sp p span {
  display: block;
  position: absolute;
  left: 50%;
  top: 145px;
  transform: translate(-50%, -50%);
  max-height: 150px;
}
@keyframes scrollText {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
/*================= Main ===================*/
.content {
  max-width: 1080px;
  margin: 0 auto;
}
/* hero */
.hero_tt {
  text-align: center;
  font-size: 3.2rem;
  font-style: italic;
  line-height: 2;
  font-weight: 400;
  margin: 40px auto 160px;
}
.grid-container {
  display: grid;
  grid-template-areas:
    "text top"
    "left right";
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto auto;
  gap: 64px;
  max-width: 1080px;
  margin: 0 auto;
  overflow-x: hidden;
  margin-top: 160px;
}
.text-section {
  grid-area: text;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.text-section .text_tt h2 {
  font-family: "Noto Serif JP";
  position: relative;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 2;
  font-style: italic;
}
.text-section h2::after {
  position: absolute;
  content: "";
  background: url(../img/hero_bt.svg) no-repeat;
  width: 400px;
  height: 2px;
  bottom: -7px;
  left: 0;
}
.cnt01_detail .dt_bottom .text-section h2::after {
  background: url(../img/bottom_long.svg) no-repeat;
}
.text-section .text_tt p {
  font-family: var(--gara);
  font-size: 2.4rem;
  font-style: italic;
  line-height: 2;
  margin-top: 10px;
}
.text-section p {
  line-height: 2;
}
.main-image {
  grid-area: top;
  background-image: url("../img/img_hero01.webp");
  background-size: cover;
  background-position: center;
  aspect-ratio: 16 / 9;
  max-width: 616px;
  height: 400px;
}
.small-image {
  background-size: cover;
  background-position: center;
}
.image-1 {
  grid-area: left;
  background-image: url("../img/img_hero02.webp");
  aspect-ratio: 4 / 3;
  width: 400px;
  height: 250px;
  margin-top: -30px;
}
.image-2 {
  grid-area: right;
  background-image: url("../img/img_hero03.webp");
  aspect-ratio: 4 / 3;
  max-width: 300px;
  height: 300px;
  margin-top: 40px;
}

/* Content01 */
.content_title {
  margin-top: 160px;
  position: relative;
}
.content_title p span {
  /* display: block; */
  position: relative;
}
.content_title p span::before {
  position: absolute;
  left: -37px;
  top: 23px;
  content: "";
  background: url(../img/dot.svg) no-repeat;
  display: block;
  width: 20px;
  height: 20px;
}
/* .content_title p span::after {
  position: absolute;
  left: -28px;
  bottom: -27px;
  content: "";
  background: url(../img/left_dot.svg) no-repeat;
  display: block;
  width: 2px;
  height: 1240px;
}
.content2 .content_title p span::after {
  height: 1200px;
}
.content3 .content_title p span::after {
  height: 1265px;
} */
.content_title p span::after {
  position: absolute;
  left: -28px;
  top: 30px; 
  content: "";
  background: url(../img/left_dot.svg) no-repeat;
  display: block;
  width: 2px;
  height: 1265px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 3s ease-out;
}
.content3 .content_title p span::after {
  content: none;
}
.content2.active .content_title p span::after {
  transform: scaleY(0.98);
}
.content1.active .content_title p span::after {
  transform: scaleY(1); 
}

.content_title h2 {
  position: relative;
  font-size: 6.4rem;
  font-style: italic;
  line-height: 1.7;
  font-weight: 400;
}
.content_title h2::after {
  position: absolute;
  content: "";
  background: url(../img/content_bt.svg) no-repeat;
  width: 1080px;
  height: 2px;
  bottom: 0;
  left: 0;
}
.content_title h2 span {
  display: block;
  font-family: var(--noto);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  font-style: italic;
}
.content_title p {
  font-size: var(--gara);
  margin-bottom: 24px;
  font-weight: 400;
  font-size: 3.2rem;
  font-style: italic;
  line-height: 2;
}
.cnt_top {
  margin: 40px auto;
  text-align: center;
  line-height: 2;
}
.cnt04_detail {
  margin-top: 120px;
}
.cnt01_detail .dt_top,
.cnt03_detail .dt_top {
  display: flex;
  gap: 64px;
}
.dt_top .img-section {
  max-width: 616px;
  max-height: 400px;
}
.cnt01_detail .dt_bottom {
  margin-top: 40px;
  display: flex;
  gap: 40px;
  border: 1px solid #eee;
  background: #eee;
  padding: 16px 32px 24px 32px;
}
.dt_bottom .img-section {
  display: flex;
  gap: 16px;
  max-height: 260px;
}
.dt_bottom .img-section img {
  max-width: 260px;
  height: 260px;
}
.text-section .text_list {
  display: flex;
  gap: 40px;
}
.text-section .text_list p:first-child {
  max-width: 260px;
}
.cnt01_detail .dt_bottom .text-section h2::after {
  width: 1016px;
}

/* Content02 */
.center {
  text-align: center;
}
.cnt02_detail .img-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.img-section .left {
  display: flex;
  margin-left: auto;
  gap: 24px;
  align-items: flex-start;
}
.img-section .left .left_01 {
  width: 440px;
}
.img-section .left .left_02 {
  max-width: 616px;
}
.img-section .right {
  display: flex;
  flex-direction: column;
  width: 1080px;
  max-height: 300px;
}
.text_list_grid {
  display: grid;
  grid-template-areas:
    "left center_left center_right right";
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
}
.text_list_grid p:first-child {
  grid-area: left;
}
.text_list_grid p:nth-child(2) {
  grid-area: center_left;
}
.text_list_grid p:nth-child(3) {
  grid-area: center_right;
}
.text_list_grid p:last-child {
  grid-area: right;
}
.cnt02_detail .grid-container,
.cnt03_detail .grid-container {
  margin-top: 0;
  gap: 24px;
  align-items: start;
  grid-template-areas:
    "text top"
    "center center";
}
.cnt02_detail .grid-container .text-section,
.cnt03_detail .grid-container .text-section {
  border: 1px solid #eee;
  background: #eee;
  padding: 16px 32px 24px 32px;
  width: 440px;
}
.cnt02_detail .grid-container .main-image {
  background-image: url(../img/content02_01.webp);
  height: 416px;
}
.cnt02_detail .grid-container .image-1 {
  background-image: url(../img/content02_02.webp);
  grid-area: center;
  width: 1080px;
  height: 300px;
  margin-top: 0;
}
/* Content03 */

.cnt03_detail .dt_bottom .img-section {
  margin-top: 40px;
  display: flex;
  gap: 28px;
  max-height: 300px;
}
.cnt03_detail .dt_bottom .img-section img {
  max-width: 526px;
  height: 300px;
}
.cnt03_detail .grid-container .main-image {
  background-image: url(../img/content03_01.webp);
}
.cnt03_detail .grid-container .image-1 {
  background-image: url(../img/content03_02.webp);
  grid-area: center;
  width: 1080px;
  height: 300px;
  margin-top: 0;
}
/* Fee content */
.fee_info {
  margin: 160px auto;
}
.fee_top {
  background: #eee;
}
.fee_top .fee_top_detail {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 0 48px;
  display: flex;
  align-items: center;
  gap: 180px;
}
.fee_top_detail .dt_left {
  position: relative;
  min-width: 327px;
}
.fee_top_detail .dt_left::after {
  position: absolute;
  content: "";
  background: url(../img/between.svg) no-repeat;
  width: 2px;
  height: 144px;
  bottom: -30px;
  right: -90px;
}
.fee_top_detail .dt_left h2 {
  font-family: "YuMincho";
  font-size: 3.2rem;
  font-style: italic;
  font-weight: 500;
  line-height: 2;
}
.fee_top_detail .dt_left p {
  margin-top: 17.15px;
  font-size: 1.6rem;
}
.fee_top_detail .dt_right {
  font-size: 1.6rem;
  line-height: 2;
  font-style: italic;
}
th {
  font-weight: 400;
}
.tb_tt {
  position: relative;
  text-align: start;
  padding-right: 73px;
  padding-bottom: 8.5px;
}
.fee_top_detail .tb_tt::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: #162335;
  left: -15px;
  bottom: 21px;
}
tr:last-child .tb_tt {
  padding-bottom: 0;
}
tr:last-child .tb_tt::before {
  bottom: 14px;
}
.fee_bottom {
  margin: 120px auto 0;
  max-width: 800px;
}
.list_note li {
  font-size: 1.2rem;
  line-height: 2;
}
.list_note li::before {
  content: "※";
  display: inline-block;
}
.btn_cta {
  margin-top: 160px;
}
.btn_cta a {
  position: relative;
  display: block;
  background: url(../img/btn.webp) no-repeat;
  background-size: cover;
  width: 900px;
  height: 150px;
  margin: auto;
  transition: transform 0.3s ease;
}
.btn_cta a:hover {
  transform: scale(1.05);
  opacity: 0.8;
}
.btn_cta a::after {
  position: absolute;
  content: "";
  background: url(../img/arrow_cta01.svg) no-repeat;
  background-size: cover;
  width: 26px;
  height: 26px;
  bottom: 10px;
  right: 20px;
}
.btn_cta a p {
  position: relative;
  color: var(--wht);
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 500;
  line-height: 2;
  margin-left: 23px;
}
.btn_cta a p::after {
  position: absolute;
  content: "";
  background: url(../img/bottom.svg) no-repeat;
  width: 312px;
  height: 2px;
  bottom: -3px;
  left: 0;
}
/* Content04 */
.cnt04_detail .room_name {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}
.room_name h4 {
  font-size: 3.2rem;
  font-style: italic;
  line-height: 2;
}
.room_name p {
  font-size: 1.6rem;
  line-height: 2;
}
.dt_top_tp01 .tp01_row {
  display: flex;
  gap: 80px;
}
.room_dt {
  position: relative;
  margin-top: 16px;
  font-style: italic;
}
.room_dt h5 {
  font-size: 2.4rem;
  line-height: 2;
}
.room_dt h5 span {
  font-family: var(--noto);
  display: block;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 400;
}
.room_cta {
  position: relative;
  text-align: right;
  margin-right: 115px;
}
.room_cta a {
  position: relative;
  font-family: var(--gara);
  color: var(--txt-primary);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  line-height: 2;
  text-decoration: none;
}
.room_cta a::after {
  position: absolute;
  content: "";
  background: url(../img/arrow_cta02.svg) no-repeat;
  background-size: cover;
  width: 182px;
  height: 12px;
  bottom: -10px;
  left: 0;
  transform: translateX(0);
  transition: transform 0.4s ease;
}
.room_cta a:hover::after {
  transform: translateX(20px);
}
.dt_top_tp02 .tpy_room {
  display: flex;
  gap: 24px;
}
.dt_top_tp02 .tpy_room .room_img {
  max-width: 650px;
  max-height: 300px;
}
.dt_top_tp02 .tpy_room .room_dt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 406px;
  margin-top: 0;
}
/* Content05 */
.fitness {
  position: relative;
}
.fitness::before {
  position: absolute;
  content: "";
  background: url(../img/img_fitness01.webp) no-repeat;
  background-size: cover;
  width: 753px;
  height: 384px;
  top: 0;
  right: 0;
  /* transform: translate(37%, 0px); */
}
.fitness:last-child {
  background: url(../img/fitness_bg.webp) no-repeat;
  background-size: cover;
  max-width: 100%;
  margin-top: 160px;
}
#content05 .content_title {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 80px;
  color: var(--wht);
}
#content05 .content_title h2 {
  opacity: 0.6;
}
#content05 .content_title h2::after {
  content: none;
}
.cnt05_detail {
  max-width: 1080px;
  margin: 0 auto;
  padding-bottom: 57px;
}
.cnt05_top .dt_right {
  color: var(--wht);
  margin-top: 24px;
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 40px;
}
.cnt05_top .dt_right .tb_tt {
  width: 116px;
  font-weight: 400;
}
.tb_dt {
  text-align: start;
  padding-bottom: 8.5px;
  font-weight: 400;
}
tr:last-child .tb_dt {
  padding-bottom: 0;
}
.cnt05_bottom {
  position: relative;
  color: var(--wht);
  padding: 16px 32px 32px 32px;
  border-radius: 16px;
  border: 1px solid #cdb269;
  max-width: 500px;
}
.cnt05_bottom::after {
  position: absolute;
  content: "";
  background: url(../img/img_fitness02.webp) no-repeat;
  background-size: cover;
  width: 419px;
  height: 240px;
  top: 0;
  right: 0;
  transform: translate(115%, 20%);
}
.cnt05_bottom h5 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 16px;
}
.cnt05_bottom p {
  font-size: 1.2rem;
  line-height: 2;
}
/*================= Footer ===================*/
footer {
  background: url(../img/footer_bg.webp) #162335 50% / cover no-repeat;
  background-blend-mode: multiply;
}
.footer {
  max-width: 916px;
  margin: 0 auto;
  padding: 103px 0 73px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.footer_logo {
  max-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer_logo img:first-child {
  /* margin-bottom: 48px; */
  height: 120px;
}
/* .footer_logo img:last-child {
  width: 248px;
  height: 66px;
} */
.footer_dt {
  /* max-width: 436px; */
  max-width: 740px;
}
.footer_dt .access {
  /* margin-left: -120px; */
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--wht);
  /* font-weight: 700; */
  /* line-height: 2; */
  font-family: var(--noto);
}
.footer_dt .access p:first-child {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
}
.footer_dt .access p:last-child {
  margin-left: 32px;
  position: relative;
  font-weight: 500;
  line-height: 2.1;
}
.footer_dt .access p:last-child::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/left.svg) no-repeat;
  width: 2px;
  height: 97px;
  left: -32px;
}
.access p:last-child span {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 2;
  margin-top: 8px;
}
.footer .list_note {
  margin-top: 43px;
  font-family: var(--noto);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--wht);
}
.footer nav {
  margin: 0 auto;
}
.footer nav {
  text-align: center;
}
.footer nav ul {
  display: flex;
  justify-content: center;
  gap: 0;
}
.footer nav ul li:first-child a {
  border-right: none;
}
.footer nav ul li a {
  color: var(--wht);
  padding: 0 24px;
  border-left: 1px solid var(--wht);
  border-right: 1px solid var(--wht);
  font-family: Inter;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
}
.footer nav ul li a::after {
  content: none;
}
.footer nav ul li a:hover {
  opacity: 0.7;
  transition: background 0.5s ease, color 0.5s ease;
}
/* .social {
  margin-top: 40px;
}
.social ul {
  display: flex;
  gap: 40px;
}
.social img {
  width: 66px;
  height: 66px;
} */

/* Copyright */
.copyright {
  background: #312f3e;
}
.copyright p {
  color: var(--wht);
  text-align: center;
  font-family: Montserrat;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.7;
  padding: 16px 0;
}
.pageTop a {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  background-color: var(--wht);
  filter: drop-shadow(0px 6px 3px #3d260440);
}
.pageTop a img {
  width: 26px;
}
.kr_center{
  left: 50% !important;
  transform: translate(-50%, 0);
  text-align: center;
}
.c-lang-button{
  border: 2px solid #CDB269;
  margin-left: auto;
  margin-right: 10px;
  border-radius: 10px;
  padding: 5px;
  background-color: #fff;
  cursor: pointer;
}
.c-lang-button:hover {
  opacity: 0.8;
  background-color: #ffffffcc;
}
.c-lang-button img{
  width: 30px;
  height: 30px;
}

#languages .c-nav--language {
  position: fixed;
  font-size: 16px;
  top: 0;
  right: 0;
  width: 250px;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 100;
  opacity: 0;
}

#languages .c-nav--language.is-active {
  transform: translateX(0);
  opacity: 1;
  flex-direction: column;
  padding-top: 20px;
}
#languages .c-nav__list-item > a {
  color: #CDB269;
  text-decoration: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}
#languages .c-nav__list-item > a:hover {
  border-bottom: 2px solid #8b8b8b;
  color:  #8b8b8b;
}
#languages .c-nav__list {
  display: flex;
  flex-direction: column;
  padding: 0 20px 100px;
  gap: 10px;
}
#languages .lang-name-active {
  padding: 100px 20px 20px;
  font-size: 20px;
  /* font-family: "Noto Sans JP"; */
  /* font-family: "YuMincho"; */
  font-family: "游明朝体", "Yu Mincho", YuMincho;
  color: #CDB269;
  letter-spacing: 0.6px;
  font-weight: 500;
}
#languages .c-nav-button-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  color: #CDB269;
  border: none;
  cursor: pointer;
  z-index: 4;
  font-size: 28px;
}
#languages .c-nav-button-close:hover {
  color: rgba(252, 202, 0, 0.8);
}

