@charset "UTF-8";

/* FIX CTA */
/* CTA */

#sticky_cta_container.is-fadeout{
  opacity: 0;
  pointer-events: none; /* 消えてる時にクリック無効化（任意） */
}
#sticky_cta_container {
	transition-duration: 0.28s;
	opacity: 1;
	transform: translateX(-50%);
	/* 既存のposition/bottomはJSで上書きされる想定 */
	position: fixed;
	bottom: 20px;
	left: 50%;
	z-index: 10;

  .sticky_cta_btn {
    display: inline-block;
    width: 350px;
    height: 50px;
    line-height: 48px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    color: #fff;
    background-color: var(--primary-color);
    border: 2px solid #fff;
    border-radius: 30px;
    transition: all 0.2s ease;

    &:hover {
      color: var(--primary-color);
      border: 2px solid var(--primary-color);
      background-color: #fff;
    }
  }
}
#sticky_cta_container.is-fadeout{
  opacity: 0;
  pointer-events: none; /* 消えてる時にクリック無効化（任意） */
}
/* MV  */
.mv {
  img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%!important;
    height: 100%!important;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
  }

  .black_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s linear;
  }

  .hero {
    position: relative;
    height: 140vh;

    .hero_inner {
      position: absolute;
      top: 63vh;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      text-align: center;
      color: #fff;

      .hero_subtitle {
        line-height: 1.5;
        font-size: 16px;
        font-weight: bold;
      }

      .hero_title {
        font-family: "Bebas Neue", sans-serif;
        font-weight: normal;
        line-height: 1.5;
        font-size: 80px;
      }

      .hero_desc {
        line-height: 1.5;
        font-size: 24px;
        font-weight: bold;
      }
    }
  }

  .desc {
    height: 115vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: transparent;
    text-align: center;

    .desc_inner {
      display: flex;
      flex-direction: column;
      gap: 30px;
      width: 600px;
      margin: 0 auto;

      p {
        padding-bottom: 100px;
        font-size: 15px;
        font-weight: bold;
        line-height: 2;
        text-align: left;

        span {
          display: block;
          padding-bottom: 40px;
          font-size: 20px;
        }
      }

      iframe {
                margin: 0 auto;
                width: 460px;
                height: 258px;
      }
    }
  }
}

/* INFO */
.info {
  background-color: #fff;

  .info_inner {
    width: 1000px;
    max-width: 90%;
    margin: 0 auto;
    padding-top: 160px;

    .info_card {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid #cfcfcf;
      border-radius: 10px;
      overflow: hidden;

      .info_item {
        position: relative;
        padding: 20px 27px 27px;
        font-weight: normal;
        line-height: 2;

        &:not(:last-child)::after {
          content: "";
          position: absolute;
          top: 12px;
          bottom: 12px;
          right: 0;
          width: 1px;
          background: #d6d6d6;
        }

        .info_label {
          display: block;
          font-size: 13px;
          letter-spacing: 0.04em;
          color: #444;
          margin-bottom: 3px;
        }

        .info_value {
          font-size: 18px;
          color: #000;

          sup {
            font-size: 60%;
            vertical-align: super;
          }
        }
      }
    }

  }
}

/* STAFF-ROLES */
.staff-roles {
  width: 100%;
  padding: 83px 0 0;
  background-color: #fff;

  .staff-roles_inner {
    width: 990px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;

    .staff-role {
      .staff-role_heading {
        margin: 0 0 18px;
        font-size: 14px;
        font-weight: bold;
        letter-spacing: 0.06em;
        color: #000;
        border-bottom: 2px solid #000;
        padding-bottom: 6px;
      }

      .staff-role_card {
        display: flex;
        gap: 18px;
        align-items: flex-start;

        .staff-role_thumb {
          img {
            width: 100%;
max-width: 127px;
max-height: 127px;
            height: 100%;
            display: block;
          }
        }

        .staff-role_body {
          flex: 1;
          min-width: 0;

          .staff-role_label {
            margin: 0 0 5px;
            font-size: 10px;
            font-weight: 700;
            color: #333;
          }

          .staff-role_name {
            margin: 0 0 12px;
            font-size: 16px;
            font-weight: bold;
            color: #333;
          }

          .staff-role_desc {
            margin: 0;
            font-size: 12px;
            color: #000;
          }
        }
      }
    }
  }
}

/* ROOM-GALLERY */
.room-gallery {
  position: relative;
  margin: 0 auto;
  padding-bottom: 154px;
  background-color: #fff;

  .room-gallery_swiper {
    position: relative;
    width: 100%;
	height: auto;
	max-width: 1000px;
    /*height: clamp(60vh, 35em, 75vh);*/
    overflow: hidden;

    .swiper-wrapper,
    .swiper-slide {
      height: 100%;
    }

    img {
      display: block;
      width: 100%!important;
      height: 100%!important;
      max-height: 35em;
      object-fit: cover;
    }
  }

  .room-gallery_pager {
    position: absolute;
    z-index: 2;
    display: flex;
    gap: 10px;
    justify-content: center;
    padding-bottom: 17px;

    .gallery-bullet {
	width: 0.7em;
	height: 0.7em;
      border-radius: 50%;
      background: #fff;
      opacity: 0.9;
      cursor: pointer;

      &.is-active {
        background: #529abc;
      }
    }
  }

  .room-gallery_meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 4vw, 60px);
    padding-top: 22px;
    margin: 0 auto;
    width: 90%;
	max-width: 1000px;
    color: #000;
    line-height: 2;

    .room-gallery_title {
      font-size: 24px;
    }

    .room-gallery_desc {
      width: 620px;
      padding-top: 12px;
      font-size: 15px;
    }
  }
}

/* LIVING-DINING */
.living-dining {
  padding-bottom: 238px;
  padding-top:125px;

}

/* GALLERY_LIST */
.gallery_list {
  background-color: #222;

  .gallery_list_bg {
    width: 1000px;
    max-width: 90%;
    margin: 0 auto;
    padding: 118px 0 122px;

    .gallery_list_title {
      margin-bottom: 23px;
      font-size: 24px;
      font-weight: bold;
      color: #fff;
    }

    .gallery_list_inner {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      width: 100%;
      justify-content: center;
      gap: 50px;
      margin: 0 auto;

      .gallery_list_item {
        position: relative;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
        cursor: pointer;
        color: #000;
        width: 100%;
        max-width: 100%;
        min-width: 200px;
        aspect-ratio: 1 / 1;

        img {
          width: 100%!important;
          height: 100%!important;
          max-width: 100%!important;
          max-height: 100%!important;
          border-radius: 10px;
          object-fit: cover;
          vertical-align: bottom;
        }
      }
    }
  }
}

/* MODAL */
#gallery_modal {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 10;

  .modal_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
  }

  .modal_content {
    position: relative;
    z-index: 10;
    width: 1300px;
    max-width: 90%;
    max-height: 90%;
  }

  .modal_close {
    position: absolute;
    top: 0;
    right: 30px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 40px;
    color: #fff;
    z-index: 2;
  }

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

  .gallery_slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;

    .swiper-slide {
      text-align: center;
    }

    img {
      width: 100%;
      height: auto;
      display: block;
    }

    .modal_image_wrap {
      img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 80vh;
	object-fit: cover;
	padding: 50px 50px 0;
	display: block;
	margin: auto;
      }

      .modal_image_desc {
        color: #fff;
        font-size: 16px;
        margin-top: 15px;
      }
    }
  }

  .swiper-button-prev,
  .swiper-button-next {
    color: #fff !important;
    font-size: 24px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
  }
}

/* ACCESS */
.access {
  background-color: #222;

  .access_bg {
    width: 1000px;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 0 150px;
  }
  .access_title {
    margin-bottom: 34px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
  }

  .access_inner {
    margin: 0 auto;
width: 100%;
/*
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
*/
    align-items: start;
  }

  /* Map box */
  .access_map {
    border-radius: 16px;
    overflow: hidden;
    background: #0f0f10;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  }
  /* アスペクト比を安定させる（Safari含む） */
  .access_map>div {
	display: block;
	width: 100%;
	height: 30em;
	border: 0;
  }

  .access_info {
    line-height: 2;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
text-align: center;

    span {
      padding-top: 30px;
      display: block;
      font-weight: normal;
    }
  }

  .access_btn {
    width: 100%;
    margin: 35px auto 0;

    a {
      display: inline-block;
      width: 140px;
      height: 33px;
      line-height: 33px;
      padding: 0 10px;
      border-radius: 50px;
      border: 1px solid var(--primary-color);
      background-color: var(--primary-color);
      color: #fff;
      text-align: center;
      text-decoration: none;
      font-size: 14px;
      transition: all 0.2s ease;

      &:hover {
        background-color: #fff;
        color: var(--primary-color);
      }
    }
  }
}

/* OTHER WORKS */
.other-contents.other_works {
  padding: 14px 0 70px;

  .showcase_slider {
    .slick-prev,
    .slick-next {
      top: 50%;
      color: #222;
    }
  }
  .other-contents_img img {
	filter: brightness(80%);
  }
  .other-contents_item_desc {
                margin-bottom: 8px;
  }
  .other-contents_item {
    .other-contents_item_text {
            width: 90%;
            margin: auto;
            box-sizing: border-box;
            padding: 0;
    }
  }
}

/* SECTION */
.section {
  background-color: #fff;

  .section_header {
    position: relative;

    img {
      width: 100%;
    }

    .section_header_title {
      position: absolute;
      top: 60px;
      left: 130px;
      list-style: 1.5em;
      font-size: 80px;
      font-weight: bold;
      color: #fff;
    }
  }

  .section_inner {
    width: 1000px;
    max-width: 90%;
    margin: 0 auto;

    .section_text {
      padding-top: 36px;
      font-size: 18px;
      font-weight: bold;
      line-height: 2;
    }

    .section_list {
      margin-top: 75px;
      background-color: #fff;

      .gallery_list_inner {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
        width: 100%;
        justify-content: center;
        gap: 24px 20px;

        .gallery_list_item {
          position: relative;
          display: flex;
          flex-direction: column;
          box-sizing: border-box;
          cursor: pointer;
          color: #000;
          width: 100%;
          max-width: 100%;
          min-width: 200px;
          aspect-ratio: 1 / 1;

          img {
            width: 100%;
            height: 100%;
            border-radius: 10px;
            object-fit: cover;
            vertical-align: bottom;
          }

          .gallery_list_desc {
            margin-top: 13px;
            line-height: 2;
            font-size: 15px;
          }
        }
      }
    }
  }
}

.madori{
	display: block;
	background: white;
	width: 100%;
	padding: 3em 0 6em 0;
	box-sizing: border-box;
	a img{
			width: 90% !important;
			max-width: 600px;
			display: block;
			margin: auto;
	}
}

@media screen and (max-width: 768px) {

.sp_detailmain_img{
	background: white;
	width: 100%;
	padding: 1em;
	box-sizing: border-box;
	img{
		width: 100% !important;
		height: auto;
		border-radius: 10px;
	}
}
  .sticky_cta_btn {
    width: 70%;
}

  /* MV */
  .mv {
    max-width: 90%;
    margin: 0 auto 100px;

    img {
      height: 100vh;
    }

    .hero {
      height: 100vh;

      .hero_inner {
        top: 30vh;

        .hero_subtitle {
          font-size: clamp(16px, 4.6vw, 18px);
        }

        .hero_title {
	padding: 10px 0 20px;
	font-size: clamp(40px, 13vw, 50px);
	line-height: 1.1;
        }

        .hero_desc {
	font-size: clamp(17px, 4vw, 20px);
	width: 80%;
	margin: auto;
        }
      }
    }

    .desc {
      height: max-content;

      .desc_inner {
        p {
          margin: 0;
          padding: 50px 0;
          font-size: clamp(12px, 3.6vw, 14px);
          font-weight: normal;

          span {
            font-size: clamp(13px, 5vw, 20px);
            font-weight: bold;
            line-height: 1.6;
          }
        }

        iframe {
		width: 100%;
		height: 14em;
        }
      }
    }
  }

  /* INFO */
  .info {
    .info_inner {
	padding-top: 20px;
	width: 80%;

      .info_card {
        /*grid-template-columns: 1fr;*/
	display: flex;
	flex-wrap: wrap;
        .info_item {
		padding: 15px 20px;
		width: 49%;
          &:not(:last-child)::after {
            content: none;
          }

          .info_label {
	        margin-bottom: 0;
	        font-size: clamp(11px, 3vw, 12px);
	        font-weight: bold;
	        color: #999999;
          }

          .info_value {
            font-size: clamp(12px, 4vw, 14px);
          }
        }

        .info_item + .info_item {
          border-top: 1px solid #e9e9e9;
        }
      }


    }
  }

  /* STAFF-ROLES */
  .staff-roles {
    padding: 90px 0;

    .staff-roles_inner {
      width: 100%;
      max-width: 90%;
      gap: 60px;
      grid-template-columns: 1fr;

      .staff-role {
        .staff-role_heading {
          margin: 0 0 13px;
          font-size: clamp(13px, 4vw, 16px);
        }

        .staff-role_card {
          .staff-role_body {
            flex: 1 70%;

            .staff-role_label {
              margin: 0 0 2px;
              font-size: clamp(10px, 2.6vw, 11px);
            }

            .staff-role_name {
              margin: 0 0 7px;
              font-size: clamp(14px, 4.5vw, 18px);
            }

            .staff-role_desc {
              font-size: clamp(10px, 3vw, 12px);
            }
          }
        }
      }
    }
  }

  /* ROOM-GALLERY */
  .room-gallery {
    padding-bottom: 48px;

    .room-gallery_swiper {
      height: 40vh;
    }

    .room-gallery_pager {
      padding-bottom: 10px;

      .gallery-bullet {
        width: 15px;
        height: 15px;
      }
    }

    .room-gallery_meta {
      grid-template-columns: 1fr;
      gap: 5px;
      padding-top: 17px;

      .room-gallery_title {
        font-size: clamp(20px, 5.8vw, 24px);
      }

      .room-gallery_desc {
        width: 100%;
        padding-top: 0;
        font-size: clamp(12px, 3.5vw, 14px);
      }
    }
  }

  /* SECTION */
  .section {
    padding-bottom: 100px;

    .section_header {
      height: 35vh;

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

      .section_header_title {
        top: 10%;
        left: 5%;
        font-size: clamp(30px, 10vw, 40px);
      }
    }

    .section_inner {
      .section_text {
        padding-top: 30px;
        font-size: clamp(12px, 3.6vw, 15px);
        line-height: 1.9;
      }

      .section_list {
        margin-top: 50px;

        .gallery_list_inner {
          grid-template-columns: repeat(2, 1fr) !important;
          gap: 30px 15px;

          .gallery_list_item {
            min-width: 50% !important;

            .gallery_list_desc {
              margin-top: 10px;
              line-height: 1.5;
              font-size: clamp(12px, 3.5vw, 14px);
            }
          }
        }
      }
    }
  }

  /* GALLERY_LIST */
  .gallery_list {
    .gallery_list_bg {
      padding: 80px 0;

      .gallery_list_title {
        font-size: clamp(18px, 5.3vw, 20px);
      }

      .gallery_list_inner {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;

        .gallery_list_item {
          min-width: 50% !important;
        }
      }
    }
  }

  /* MODAL */
  #gallery_modal {
    .modal_close {
      top: -60px;
      right: 0;
    }

    .gallery_slider {
      .modal_image_wrap {
        img {
          padding: 0;
        }

        .modal_image_desc {
          font-size: clamp(14px, 4.2vw, 16px);
          text-align: left;
        }
      }
    }
  }

  /* ACCESS */
  .access {
    .access_bg {
      padding: 0 0 80px;

      .access_title {
        font-size: clamp(18px, 5.3vw, 20px);
      }

      .access_inner {
        grid-template-columns: 1fr;
        gap: 15px !important;
      }

      .access_btn {
        width: 100%;
        margin: 50px auto 0;
        text-align: center;

        a {
          width: 50%;
          height: 45px;
          line-height: 45px;
          font-size: clamp(14px, 4.2vw, 16px);
        }
      }
    }
  }

  /* OTHER WORKS */
  .other-contents.other_works {
    padding: 50px 0 70px;

    .other-contents_header {
      .other-contents_desc {
        font-size: clamp(20px, 6.2vw, 24px);
      }
    }
  }
}
