:root {
  --txt-primary: #000;
  --wht: #fff;
  font-size: 10px;
  --gara: "adobe-garamond-pro";
  --noto: "Noto Serif JP";
}
/*================= Header ===================*/
@media (max-width: 1079.98px) {
  /* .header {
    margin-top: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  } */
  .header .header_logo {
    margin-left: 10px;
  }
  .c-lang-button{
    margin-left: 20px;
  }
  .top_image {
    background: url(../img/top_kv_sp.webp) lightgray 50% / cover no-repeat;
    height: 740px;
  }
  .top_image .img_tt {
    padding: 152px 0 421px;
    margin-top: 0px;
    left: 100px;
    top: 0;
  }
  .img_tt span {
    font-size: 2.4rem;
    margin-bottom: 0;
    line-height: 1;
  }
  .img_tt h1 {
    font-size: 4rem;
  }
  @media (max-width: 767.98px) {
    .top_image {
      height: 526px;
    }
    .top_image .img_tt {
      margin-top: -80px;
      left: 25px;
    }
  }
}
/* Nav */
@media (max-width: 1079.98px) {
  .nav_sp .c-nav-button {
    border: 1px solid var(--Wh, #fff);
    font-family: "Noto Sans JP";
    width: 32px;
    height: 16px;
    transition: background 0.3s ease, opacity 0.3s ease;
    background: var(--wht);
    margin-right: 10px;
  }
  .nav_sp .c-nav-button:hover {
    opacity: 0.8;
  }
  .nav_sp .c-nav--cta {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 410px;
    background: var(--wht);
    transform: translateX(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 3;
    opacity: 0;
    margin-top: 90px;
    visibility: hidden;
  }

  .nav_sp .c-nav--cta.is-active {
    visibility: visible;
    transform: translateX(0);
    opacity: 1;
    margin-top: 90px;
  }
  .nav_sp .c-nav__list-item > a {
    position: relative;
    color: var(--txt-primary);
    text-decoration: none;
    transition: color 0.3s ease, border-bottom 0.3s ease;
  }
  .nav_sp .c-nav__list-item > 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_sp .c-nav__list-item > a:hover::after {
    width: 90px;
  }
  .nav_sp .c-nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px 100px;
    gap: 40px;
  }
  .nav_sp .lang-name-active {
    padding: 100px 20px 20px;
    font-size: 20px;
    font-family: "Noto Sans JP";
    color: #d7a23c;
    letter-spacing: 0.6px;
    font-weight: 500;
  }
  .nav_sp .c-nav-button-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    color: #d7a23c;
    border: none;
    cursor: pointer;
    z-index: 4;
    font-size: 28px;
  }
  .nav_sp .c-nav-button-close:hover {
    color: #fcc800;
  }
}
/*================= Main ===================*/
@media (max-width: 1079.98px) {
  .mt80 {
    margin-top: 57px;
  }
  /* Hero */
  .hero_tt {
    font-size: 2rem;
    margin: 24px auto 80px;
  }
  .grid-container {
    display: grid;
    grid-template-areas:
      "top"
      "text"
      "left"
      "right";
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 80px;
  }
  .text-section {
    gap: 24px;
    /* align-items: center; */
    padding: 0 24px;
  }
  .text-section .text_tt h2 {
    font-size: 2rem;
    font-weight: 700;
  }
  .text-section h2::after {
    background: url(../img/hero_bt.svg) no-repeat;
    width: 327px;
    height: 2px;
  }
  .main-image {
    width: 100%;
    min-width: 375px;
    max-width: 563px;
    height: auto;
    margin: 0 auto;
  }
  .image-1 {
    width: 100%;
    min-width: 220px;
    max-width: 330px;
    height: auto;
    margin-top: 0;
    margin-left: 24px;
    transition: width 0.5s ease;
  }
  .image-2 {
    width: 100%;
    min-width: 161px;
    max-height: 242px;
    height: auto;
    margin-left: auto;
    margin: -10px 24px 0 auto;
    transition: width 0.5s ease;
  }
  @media (max-width: 767.98px) {
    .main-image {
      width: 375px;
    }
    .image-1 {
      width: 220px;
    }
    .image-2 {
      width: 161px;
    }
  }
  .content {
    max-width: 600px;
  }
  /* Content01 */
  .content_title {
    margin-top: 120px;
    padding: 0 24px;
  }
  .content_title h2 {
    font-size: 4rem;
  }
  .content_title h2::after {
    width: 100%;
    min-width: 327px;
    max-width: 600px;
    transition: width 1s ease;
  }
  @media (max-width: 767.98px) {
    .content_title h2::after {
      width: 327px;
    }
  }
  .content_title p {
    margin-top: 16px;
    font-size: 2rem;
  }
  .dt_top .img-section img {
    width: 600px;
    max-height: 180px;
    object-fit: cover;
    transition: width 1s ease;
  }
  .cnt01_detail,
  .cnt02_detail,
  .cnt03_detail,
  .cnt04_detail {
    margin-top: 20px;
  }
  .cnt01_detail .dt_top,
  .cnt03_detail .dt_top {
    flex-direction: column-reverse;
    gap: 24px;
    align-items: center;
  }
  .cnt01_detail .dt_bottom {
    flex-direction: column;
    gap: 24px;
    padding: 16px 0;
  }
  .cnt01_detail .dt_bottom .text-section h2::after {
    width: 327px;
  }
  .dt_bottom .img-section {
    justify-content: center;
    padding: 0 24px;
    gap: 9px;
    max-height: 237px;
  }
  .dt_bottom .img-section img {
    width: 100%;
    min-width: 158px;
    max-width: 237px;
    height: 100%;
    min-height: 158px;
    max-height: 237px;
    transition: width 0.5s ease;
  }
  .text-section .text_list {
    flex-direction: row;
    gap: 20px;
  }
  @media (max-width: 767.98px) {
    .dt_bottom .img-section img {
      width: 158px;
    }
    .text-section .text_list {
      flex-direction: column;
      gap: 0;
      margin-right: auto;
    }
    .dt_top .img-section img {
      width: 375px;
    }
  }
  .dt_bottom .text-section h2::after {
    width: 327px;
  }
  /* Content02 */
  .text_list_grid {
    grid-template-areas: 
    "left" 
    "center_left" 
    "center_right"
    "right";
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
  .cnt02_detail .grid-container,
  .cnt03_detail .grid-container {
    gap: 0;
    grid-template-areas:
      "top"
      "center"
      "bottom";
    justify-content: center;
  }
  .cnt02_detail .grid-container .main-image,
  .cnt03_detail .grid-container .main-image {
    grid-area: top;
    /* width: 375px; */
    max-width: 100%;
    max-height: 180px;
    transition: width 1s ease;
  }
  @media (max-width: 767.98px) {
    .cnt02_detail .grid-container .image-1,
    .cnt03_detail .grid-container .image-1 {
      width: 375px !important;
    }
  }
  .cnt02_detail .grid-container .main-image img,
  .cnt02_detail .grid-container .image-1 img,
  .cnt03_detail .grid-container .main-image img,
  .cnt03_detail .grid-container .image-1 img {
    object-fit: cover;
  }
  .cnt02_detail .grid-container .image-1,
  .cnt03_detail .grid-container .image-1 {
    grid-area: center;
    width: 600px;
    max-height: 141px;
    /* margin-left: 0; */
    margin: 0 auto;
    max-width: 100%;
  }
  .cnt02_detail .grid-container .text-section,
  .cnt03_detail .grid-container .text-section {
    grid-area: bottom;
    justify-content: center;
    /* margin-top: 40px; */
    margin: 40px auto 0;
    max-width: 375px;
  }
  .cnt02_detail .img-section {
    flex-direction: column;
    align-items: center;
  }
  .img-section .left {
    width: 100%;
    min-width: 375px;
    max-width: 563px;
    height: 100%;
    min-height: 180px;
    max-height: 270px;
    transition: width 0.5s ease;
  }
  .img-section .left img {
    height: 100%;
    min-height: 180px;
    max-height: 270px;
    object-fit: cover;
  }
  .img-section .right {
    flex-direction: row;
    width: 100%;
    min-width: 375px;
    max-width: 563px;
    transition: width 0.5s ease;
  }
  .img-section .right img {
    object-fit: cover;
  }
  @media (max-width: 767.98px) {
    .img-section .left {
      width: 375px;
      height: 180px;
    }
    .img-section .right {
      width: 375px;
    }
  }
  /* Content03 */
  .cnt03_detail .dt_bottom .img-section {
    max-height: 237px;
  }
  .cnt03_detail .dt_bottom .img-section img {
    max-width: 526px;
    object-fit: cover;
  }
  @media (max-width: 767.98px) {
    .cnt03_detail .dt_bottom .img-section img {
      width: 158px;
      height: 158px;
    }
  }
  .cnt03_detail .dt_top .text-section {
    text-align: center;
  }
  /* Fee content */
  .fee_info {
    margin-top: 96px;
  }
  .fee_top .fee_top_detail {
    padding: 24px 24px 32px;
    gap: 48px;
    flex-direction: column;
  }
  .fee_top_detail .dt_left::after {
    background: url(../img/bottom.svg) no-repeat;
    width: 327px;
    height: 2px;
    bottom: -27px;
    left: 11px;
  }
  .tb_tt {
    padding-right: 50px;
  }
  th {
    font-weight: 400;
  }
  .fee_bottom {
    margin: 90px auto 0;
    max-width: 600px;
    padding: 0 24px;
  }
  .btn_cta {
    margin-top: 90px;
  }
  .btn_cta a {
    background: url(../img/btn_sp.webp) no-repeat;
    background-size: cover;
    width: 327px;
    height: 200px;
    margin: auto;
  }
  .btn_cta a p {
    font-size: 2rem;
    font-weight: 700;
    padding: 16px 0 0 16px;
    margin-left: 0;
  }
  .btn_cta a p::after {
    width: 280px;
    bottom: -5px;
    left: 20px;
  }
  /* Content04 */
  .cnt04_detail {
    margin-top: 40px;
  }
  .cnt04_detail .room_name {
    padding: 0 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .room_name h4 {
    font-size: 2.4rem;
  }
  .dt_top_tp01 .tp01_row {
    flex-direction: column;
    gap: 33px;
    padding: 0 24px;
  }
  .dt_top_tp02 .tpy_room {
    flex-direction: column;
    padding: 0 24px;
  }
  .dt_top_tp02 .tpy_room .room_dt {
    max-width: 600px;
    min-width: 327px;
    width: 100%;
  }
  /* Content05 */
  @media (max-width: 767.98px) {
    .fitness:last-child {
      background: url(../img/fitness_bg_sp.webp) no-repeat;
      margin-top: 80px;
    }
  }
  #content05 .content_title {
    padding-top: 56px;
  }
  .fitness::before {
    content: none;
  }
  .fit_img {
    max-width: 600px;
    margin: 0 auto;
  }
  .cnt05_detail {
    padding: 0 24px 89px;
    max-width: 600px;
  }
  .cnt05_top .dt_right {
    margin: 24px auto 40px;
  }
  .cnt05_top .dt_right table {
    margin: 0 auto;
  }
  .cnt05_bottom {
    margin: 0 auto;
  }
  .cnt05_bottom::after {
    content: none;
  }
  .fitness .fit_img_bt {
    position: absolute;
    width: 100%;
    min-width: 220px;
    max-width: 419px;
    height: 120px;
    bottom: -60px;
    transition: width 0.5s ease;
  }
  @media (max-width: 767.98px) {
    .fitness .fit_img_bt {
      width: 220px;
    }
  }
}
/*================= Footer ===================*/
@media (max-width: 1079.98px) {
  .footer {
    max-width: 600px;
    flex-direction: column;
    padding: 50px 24px 40px;
    gap: 32px;
    align-items: center;
  }
  /* @media (max-width: 767.98px) {
    .footer {
      padding: 176px 0 40px;
    }
  } */
  .footer_logo {
    max-width: 254px;
  }
  .footer_dt .access {
    flex-direction: column;
    align-items: start;
    gap: 8px;
  }
  .footer_dt .access p {
    text-align: start;
  }
  .footer_dt .access p:last-child::before {
    background: none;
    border-left: 2px solid #cdb269;
    height: 135px;
  }
  .access p:last-child span {
    margin-top: 32px;
  }
  .social {
    margin-top: 56px;
  }
  .social ul {
    gap: 64px;
  }
  .social img {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 991px) {
  .pageTop a {
    width: 50px;
    height: 50px;
    bottom: 10px;
    right: 10px;
  }
  .pageTop a img {
    width: 18px;
  }
}
