@charset "UTF-8";

/*-------------------------------------------*/
/*	PC
/*-------------------------------------------*/

@media screen and (min-width:900px) {

  /* =====================
    fv
  ===================== */
  
  #fv {
    width: calc( 100% - 96px );
    height: calc( 100vh - 80px );
    margin: 0 auto;
    position: relative;
  }

  .fv_text {
    color: #fff;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-45%);
    z-index: 1;
  }

  #fv .fv_text h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.46;
    margin-bottom: 32px;
  }

  #fv .fv_text p {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.48;
  }

  .fv_slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: -1;
  }

  .fv_slide li {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: fv_slide 42s ease infinite;
  }

  .fv_slide li img {
    height: 100%;
    object-fit: cover;
  }

  .fv_slide li:nth-child(1) {
    animation-delay: 0s
  }

  .fv_slide li:nth-child(2) {
    animation-delay: 6s
  }

  .fv_slide li:nth-child(3) {
    animation-delay: 12s
  }

  .fv_slide li:nth-child(4) {
    animation-delay: 18s
  }

  .fv_slide li:nth-child(5) {
    animation-delay: 24s
  }

  .fv_slide li:nth-child(6) {
    animation-delay: 30s
  }

  .fv_slide li:nth-child(7) {
    animation-delay: 36s
  }

  .fv_slide li:nth-child(8) {
    animation-delay: 42s
  }

  @keyframes fv_slide {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    10% {
        opacity: 1;

    }
    15% {
        opacity: 1;

    }
    25% {
        opacity: 0;
        transform: scale(1.06);
    }
    100% {
        opacity: 0;
    }
  }

  /* =====================
    properties
  ===================== */
  
  #properties {
    padding: 60px 0 85px;
  }

  #properties .inner {
    width: 100%;
    max-width: 100%;
  }

  #properties .ttl {
    color: var(--color-main-glod);
  }

  .properties_list {
    counter-reset: number 0;
  }

  .properties_item {
    counter-increment: number 1;
    padding-top: 60px;
    margin-bottom: 97px;
    position: relative;
  }

  .properties_item:last-of-type {
    margin-bottom: 0;
  }

  .properties_item::before {
    content: '';
    width: 240px;
    height: 1px;
    display: block;
    background: var(--color-main-glod);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .properties_column {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
  }
  
  .properties_text,
  .properties_img {
    width: 50vw;
  }

  .properties_text {
    padding-left: 30px;
  }

  .properties_text_inner {
    width: 441px;
    max-width: 100%;
    margin: 0 auto;
    padding-right: 10px;
  }

  .properties_ttl {
    font-size: 32px;
    font-weight: 500;
    padding-top: 37px;
    padding-bottom: 10px;
    margin-bottom: 24px;
    position: relative;
  }

  .properties_ttl::before {
    content: 'Room #'counter(number);
    font-family: "Marcellus", serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--color-main-glod);
    position: absolute;
    top: 0;
    left: 0;
  }

  .properties_ttl::after {
    content: '';
    width: 120px;
    height: 1px;
    display: block;
    background: var(--color-main-glod);
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .properties_text .text {
    margin-bottom: 24px;
  }

  .properties_address {
    font-size: 16px;
  }

  .properties_text .btn {
    margin-top: 24px;
    justify-content: flex-start;
  }

  .properties_gallery {
    width: 100vw;
    margin: 0 auto 80px;
    position: relative;
  }
  
  .properties_gallery ul li {
    position: absolute;
  }
  
  /*  room1
  ------------------------*/
 
  #room1 .properties_gallery li:nth-child(1) {
    width: calc(702 / 1440 * 100vw); /* 元の幅を比率で計算 */
    top: calc(0 / 1440 * 100vw); /* 元の位置を比率で計算 */
    left: calc(54 / 1440 * 100vw);
  }
  
  #room1 .properties_gallery li:nth-child(2) {
    width: calc(339 / 1440 * 100vw);
    top: calc(47 / 1440 * 100vw);
    left: calc(810 / 1440 * 100vw);
  }
  
  #room1 .properties_gallery li:nth-child(3) {
    width: calc(448 / 1440 * 100vw);
    top: calc(526 / 1440 * 100vw);
    left: calc(150 / 1440 * 100vw);
  }
  
  #room1 .properties_gallery li:nth-child(4) {
    width: calc(466 / 1440 * 100vw);
    top: calc(396 / 1440 * 100vw);
    right: calc(97 / 1440 * 100vw);
  }
  
  #room1 .properties_gallery li:nth-child(5) {
    width: calc(399 / 1440 * 100vw);
    top: calc(813 / 1440 * 100vw);
    right: calc(387 / 1440 * 100vw);
  }
  
  #room1 .properties_gallery li:nth-child(6) {
    width: calc(1000 / 1440 * 100vw);
    top: calc(1162 / 1440 * 100vw);
    left: 50%;
    transform: translateX(-50%);
  }
  
  #room1 .properties_gallery li:nth-child(7) {
    width: calc(587 / 1440 * 100vw);
    top: calc(1889 / 1440 * 100vw);
    left: calc(130 / 1440 * 100vw);
  }
  
  #room1 .properties_gallery li:nth-child(8) {
    width: calc(483 / 1440 * 100vw);
    top: calc(2019 / 1440 * 100vw);
    right: calc(137 / 1440 * 100vw);
  }
  
  /*  room2
  ------------------------*/
 
  #room2 .properties_gallery li:nth-child(1) {
    width: calc(952 / 1440 * 100vw); /* 元の幅を比率で計算 */
    top: calc(0 / 1440 * 100vw); /* 元の位置を比率で計算 */
    left: calc(244 / 1440 * 100vw);
  }
  
  #room2 .properties_gallery li:nth-child(2) {
    width: calc(587 / 1440 * 100vw);
    top: calc(522 / 1440 * 100vw);
    left: calc(102 / 1440 * 100vw);
  }
  
  #room2 .properties_gallery li:nth-child(3) {
    width: calc(466 / 1440 * 100vw);
    top: calc(963 / 1440 * 100vw);
    left: calc(254 / 1440 * 100vw);
  }
  
  #room2 .properties_gallery li:nth-child(4) {
    width: calc(551 / 1440 * 100vw);
    top: calc(781 / 1440 * 100vw);
    right: calc(86 / 1440 * 100vw);
  }
  
  #room2 .properties_gallery li:nth-child(5) {
    width: calc(427 / 1440 * 100vw);
    top: calc(1382 / 1440 * 100vw);
    left: calc(124 / 1440 * 100vw);
  }
  
  #room2 .properties_gallery li:nth-child(6) {
    width: calc(345 / 1440 * 100vw);
    top: calc(1498 / 1440 * 100vw);
    right: calc(387 / 1440 * 100vw);
  }
  
  #room2 .properties_gallery li:nth-child(7) {
    width: calc(250 / 1440 * 100vw);
    top: calc(1195 / 1440 * 100vw);
    right: calc(187 / 1440 * 100vw);
  }
  
  #room2 .properties_gallery li:nth-child(8) {
    width: calc(636 / 1440 * 100vw);
    top: calc(1796 / 1440 * 100vw);
    right: calc(329 / 1440 * 100vw);
  }

  /* =====================
    experiences
  ===================== */
  
  #experiences {
    background: var(--color-sub-glod);
  }

  #experiences .inner {
    width: 100%;
    max-width: 100%;
    padding: 0 48px;
  }

  #experiences .ttl {
    color: #fff;
  }

  #experiences .lead {
    color: #fff;
  }

  .experiences_swiper {
    overflow: visible;
    height: 100%;
  }

  .experiences_item {
    display: flex;
    flex-direction: column;
    width: 420px;
    height: auto;
    min-height: 420px;
    background: #fff;
    padding: 40px;
  }

  .experiences_item .text {
    line-height: 1.45;
    margin-bottom: 20px;
  }

  .lang_en_US .experiences_item .text {
    font-size: 14px;
  }

  .experiences_prof {
    font-size: 14px;
    margin-top: auto;
    position: relative;
    padding-left: 35px;
    line-height: 1.4;
  }

  .experiences_prof::before {
    content: '';
    width: 30px;
    height: 30px;
    display: block;
    background: url(../img/home/experiences_icon.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 7px;
    left: -2px;
  }

  .experiences_prof .name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
  }
 
  .swiper-controller {
    margin-top: 32px;
    justify-content: center;
    align-items: center;
    gap: 0 16px;
  }

  .swiper_btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    position: relative;
    cursor: pointer;
  }

  .swiper_btn::before {
    content: '';
    width: 32px;
    height: 32px;
    display: block;
    background-repeat: no-repeat;
    background-size: 7px;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
  }

  .swiper-button-prev::before {
    background-image: url(../img/home/experiences_left.svg);
  }

  .swiper-button-next::before {
    background-image: url(../img/home/experiences_right.svg);
  }

  /* =====================
    faqs
  ===================== */

  #faqs .inner {
    width: 840px;
  }
  
  .faqs_item {
    border: 1px solid #ccc;
    padding: 48px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.45;
  }
  
  .faqs_item:last-of-type {
    margin-bottom: 0;
  }

  .faqs_q,
  .faqs_a {
    position: relative;
    padding-left: 20px;
  }

  .faqs_q {
    border-bottom: 1px solid #ccc;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .faqs_q::before,
  .faqs_a::before {
    position: absolute;
    top: 0;
    left: 0;
  }

  .faqs_q::before {
    content: 'Q: ';
  }

  .faqs_a::before {
    content: 'A: ';
  }
  
}

/*-------------------------------------------*/
/*	SP
/*-------------------------------------------*/

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

  /* =====================
    fv
  ===================== */
  
  #fv {
    height: 540px;
    position: relative;
  }

  .fv_text {
    width: 90%;
    color: #fff;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-43%);
    z-index: 1;
  }

  .lang_en .fv_text,
  .lang_zh .fv_text {
    width: 94%;
    left: 3%;
  }

  #fv .fv_text h2 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.46;
    margin-bottom: 32px;
  }

  .lang_en #fv .fv_text h2 {
    font-size: 22px;
    margin-top: 120px;
  }

  .lang_zh #fv .fv_text h2 {
    font-size: 5.3vw;
    margin-top: 160px;
  }

  #fv .fv_text p {
    display: none;
  }

  .fv_slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: -1;
  }

  .fv_slide li {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: fv_slide 42s ease infinite;
  }

  .fv_slide li img {
    height: 100%;
    object-fit: cover;
  }

  .fv_slide li:nth-child(1) {
    animation-delay: 0s
  }

  .fv_slide li:nth-child(2) {
    animation-delay: 6s
  }

  .fv_slide li:nth-child(3) {
    animation-delay: 12s
  }

  .fv_slide li:nth-child(4) {
    animation-delay: 18s
  }

  .fv_slide li:nth-child(5) {
    animation-delay: 24s
  }

  .fv_slide li:nth-child(6) {
    animation-delay: 30s
  }

  .fv_slide li:nth-child(7) {
    animation-delay: 36s
  }

  .fv_slide li:nth-child(8) {
    animation-delay: 42s
  }

  @keyframes fv_slide {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    10% {
        opacity: 1;

    }
    15% {
        opacity: 1;

    }
    25% {
        opacity: 0;
        transform: scale(1.06);
    }
    100% {
        opacity: 0;
    }
  }

  /* =====================
    properties
  ===================== */

  #properties .ttl {
    color: var(--color-main-glod);
  }

  .properties_list {
    counter-reset: number 0;
  }

  .properties_item {
    counter-increment: number 1;
    padding-top: 50px;
    margin-bottom: 72px;
    position: relative;
  }

  .properties_item:last-of-type {
    margin-bottom: 0;
  }

  .properties_item::before {
    content: '';
    width: 240px;
    height: 1px;
    display: block;
    background: var(--color-main-glod);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .properties_column {
    display: block;
    margin-bottom: 48px;
  }
  
  .properties_text {
    margin-bottom: 32px;
  }

  .properties_ttl {
    font-size: 24px;
    font-weight: 500;
    padding-top: 35px;
    padding-bottom: 18px;
    margin-bottom: 25px;
    position: relative;
  }

  .properties_ttl::before {
    content: 'Room #'counter(number);
    font-family: "Marcellus", serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-main-glod);
    position: absolute;
    top: 0;
    left: 0;
  }

  .properties_ttl::after {
    content: '';
    width: 120px;
    height: 1px;
    display: block;
    background: var(--color-main-glod);
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .properties_text .text {
    margin-bottom: 24px;
  }

  .properties_address {
    font-size: 14px;
  }

  .properties_text .btn {
    margin-top: 24px;
    justify-content: flex-start;
  }

  .properties_img {
    width: 100vw;
    margin: 0 calc( 50% - 50vw );
  }

  .properties_gallery {
    width: 100vw;
    margin: 0 calc( 50% - 50vw ) 59px;
    position: relative;
  }
  
  .properties_gallery ul li {
    position: absolute;
  }
  
  /*  room1
  ------------------------*/
 
  #room1 .properties_gallery li:nth-child(1) {
    width: calc(280 / 375 * 100vw); /* 元の幅を比率で計算 */
    top: calc(0 / 375 * 100vw); /* 元の位置を比率で計算 */
    left: calc(0 / 375 * 100vw);
  }
  
  #room1 .properties_gallery li:nth-child(2) {
    width: calc(135 / 375 * 100vw);
    top: calc(166 / 375 * 100vw);
    right: calc(23 / 375 * 100vw);
  }
  
  #room1 .properties_gallery li:nth-child(3) {
    width: calc(130 / 375 * 100vw);
    top: calc(251 / 375 * 100vw);
    left: calc(29 / 375 * 100vw);
  }
  
  #room1 .properties_gallery li:nth-child(4) {
    width: calc(180 / 375 * 100vw);
    top: calc(296 / 375 * 100vw);
    right: calc(0 / 375 * 100vw);
  }
  
  #room1 .properties_gallery li:nth-child(5) {
    width: calc(153 / 375 * 100vw);
    top: calc(398 / 375 * 100vw);
    left: calc(17 / 375 * 100vw);
  }
  
  #room1 .properties_gallery li:nth-child(6) {
    width: calc(290 / 375 * 100vw);
    top: calc(544 / 375 * 100vw);
    right: 36px;
  }
  
  #room1 .properties_gallery li:nth-child(7) {
    width: calc(170 / 375 * 100vw);
    top: calc(755 / 375 * 100vw);
    left: calc(23 / 375 * 100vw);
  }
  
  #room1 .properties_gallery li:nth-child(8) {
    width: calc(140 / 375 * 100vw);
    top: calc(793 / 375 * 100vw);
    right: calc(12 / 375 * 100vw);
  }
  
  /*  room2
  ------------------------*/
 
  #room2 .properties_gallery li:nth-child(1) {
    width: calc(252 / 375 * 100vw); /* 元の幅を比率で計算 */
    top: calc(0 / 375 * 100vw); /* 元の位置を比率で計算 */
    left: calc(60 / 375 * 100vw);
  }
  
  #room2 .properties_gallery li:nth-child(2) {
    width: calc(156 / 375 * 100vw);
    top: calc(138 / 375 * 100vw);
    left: calc(22 / 375 * 100vw);
  }
  
  #room2 .properties_gallery li:nth-child(3) {
    width: calc(166 / 375 * 100vw);
    top: calc(202 / 375 * 100vw);
    right: calc(15 / 375 * 100vw);
  }
  
  #room2 .properties_gallery li:nth-child(4) {
    width: calc(179 / 375 * 100vw);
    top: calc(321 / 375 * 100vw);
    left: calc(68 / 375 * 100vw);
  }
  
  #room2 .properties_gallery li:nth-child(5) {
    width: calc(165 / 375 * 100vw);
    top: calc(473 / 375 * 100vw);
    left: calc(14 / 375 * 100vw);
  }
  
  #room2 .properties_gallery li:nth-child(6) {
    width: calc(148 / 375 * 100vw);
    top: calc(601 / 375 * 100vw);
    right: calc(100 / 375 * 100vw);
  }
  
  #room2 .properties_gallery li:nth-child(7) {
    width: calc(106 / 375 * 100vw);
    top: calc(473 / 375 * 100vw);
    right: calc(15 / 375 * 100vw);
  }
  
  #room2 .properties_gallery li:nth-child(8) {
    width: calc(249 / 375 * 100vw);
    top: calc(719 / 375 * 100vw);
    right: calc(46 / 375 * 100vw);
  }

  /* =====================
    experiences
  ===================== */
  
  #experiences {
    background: var(--color-sub-glod);
  }

  #experiences .ttl {
    color: #fff;
  }

  #experiences .lead {
    color: #fff;
  }

  .experiences_swiper {
    overflow: visible;
    height: 100%;
  }

  .experiences_item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    min-height: 360px;
    background: #fff;
    padding: 24px;
  }

  .experiences_item .text {
    line-height: 1.45;
    margin-bottom: 20px;
  }

  .lang_en_US .experiences_item .text {
    font-size: 14px;
  }

  .experiences_prof {
    font-size: 14px;
    margin-top: auto;
    position: relative;
    padding-left: 35px;
    line-height: 1.4;
  }

  .experiences_prof::before {
    content: '';
    width: 30px;
    height: 30px;
    display: block;
    background: url(../img/home/experiences_icon.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 7px;
    left: -2px;
  }

  .experiences_prof .name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
  }
 
  .swiper-controller {
    margin-top: 32px;
    justify-content: center;
    align-items: center;
    gap: 0 16px;
  }

  .swiper_btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    position: relative;
    cursor: pointer;
  }

  .swiper_btn::before {
    content: '';
    width: 32px;
    height: 32px;
    display: block;
    background-repeat: no-repeat;
    background-size: 7px;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
  }

  .swiper-button-prev::before {
    background-image: url(../img/home/experiences_left.svg);
  }

  .swiper-button-next::before {
    background-image: url(../img/home/experiences_right.svg);
  }

  /* =====================
    faqs
  ===================== */
  
  .faqs_item {
    border: 1px solid #ccc;
    padding: 24px;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.45;
  }
  
  .faqs_item:last-of-type {
    margin-bottom: 0;
  }

  .faqs_q,
  .faqs_a {
    position: relative;
    padding-left: 20px;
  }

  .faqs_q {
    border-bottom: 1px solid #ccc;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .faqs_q::before,
  .faqs_a::before {
    position: absolute;
    top: 0;
    left: 0;
  }

  .faqs_q::before {
    content: 'Q: ';
  }

  .faqs_a::before {
    content: 'A: ';
  }

  

}