@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');

/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html[lang="ja"] {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 16px;
    color: #242424;
    line-height: 32px;
}

/* sp/pc */
.sp {
    display: none;
}

.pc {
    display: block;
}

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


/* h */
h1 {
    font-size: 2.027rem;
    font-weight: bold;
}

.h1-subtitle {
    font-size: 0.889rem;
    color: #00AA94;
    font-weight: bold;
}

h4 {
    font-size: 1.424rem;
    color: #00AA94;
    font-weight: bold;
}

h6 {
    font-size: 1.125rem;
    color: #242424;
    font-weight: bold;
}


/* section */
section {
    max-width: 1200px; /* 任意の最大幅を設定 */
    margin: 0 auto; /* 左右のマージンを自動調整して中央揃え */
    padding: 20px; /* 必要に応じて余白を設定 */
}

/* Nav Bar Styling */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    background-color: #FFFFFF;
    height: 80px;
}

.nav-links {
    list-style-type: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    position: relative;
    margin-right: 65px;
}

.nav-links li:last-child {
    margin-right: 0;
}

.nav-links li a {
    position: relative;
    text-decoration: none;
    color: #000000;
    display: flex;
    align-items: center;
    padding-bottom: 5px; /* 下線のスペースを確保 */
}

/* リンクの下線アニメーション */
.nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #00AA94;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a img {
    width: 24px;
    margin-right: 10px;
}

/* お問い合わせボタンにはアニメーションを適用しない */
.nav-links li:last-child a::after {
    content: none;
}

/* Space and Circle */
.nav-links li:not(:last-child)::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #00AA94;
    position: absolute;
    top: 50%;
    right: -32px;
    transform: translateY(-50%);
}

.nav-links li:nth-child(4)::after {
    display: none;
}

/* Contact Button */
.nav-links li:last-child a.button {
    display: inline-block;
    width: 175px;
    height: 46px;
    text-align: center;
    padding: 10px; /* 必要に応じて調整 */
    border-radius: 23px;
    background-color: #00AA94;
    color: #FFF;
    text-decoration: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.3s, background-color 0.3s;
    line-height: 26px; /* テキストの行の高さを調整 */
}

.nav-links li:last-child a.button::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #FFF00A;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 23px;
}

.nav-links li:last-child a.button:hover {
    color: #232323;
    background-color: #FFF00A;
    border: 2px solid #00AA94;
    line-height: 23px; /* ホバー時も同じ line-height を維持 */
}

.nav-links li:last-child a.button:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}

/* ロゴ画像のホバー効果 */
.logo img:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Hamburger Menu Styling */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 27px;
    cursor: pointer;
}

.hamburger-menu .bar {
    height: 3px;
    width: 100%;
    background-color: #000;
    border-radius: 10px;
    transition: all 0.3s ease;
}

#menu-toggle {
    display: none;
}

#menu-toggle:checked + .hamburger-menu .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

#menu-toggle:checked + .hamburger-menu .bar:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked + .hamburger-menu .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

#menu-toggle:checked ~ .nav-links {
    display: flex;
}

/* Media queries for responsive navigation */
@media screen and (max-width: 1320px) {
    nav {
        padding: 0 20px;
        position: relative;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #00AA94;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1;
    }

    .nav-links li a:hover::after {
        width: 0%;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .nav-links li::after {
        display: none;
    }

    .nav-links li a {
        padding: 15px 20px;
        display: flex;
        justify-content: center;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-links li:last-child {
        padding: 20px;
    }

    .nav-links li:last-child a.button {
        display: inline-block;
        width: 175px;
        height: 46px;
        text-align: center;
        padding: 10px; /* 必要に応じて調整 */
        border-radius: 23px;
        background-color: #FFF00A;
        color: #232323;
        text-decoration: none;
        position: relative;
        z-index: 1;
        overflow: hidden;
        transition: color 0.3s, background-color 0.3s;
        line-height: 26px; /* テキストの行の高さを調整 */
    }
}


/* footer */
footer {
    background-color: #00AA94;
    text-align: center;
    padding-top: 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 282px;
}

.footer-logo img {
    width: 206px; 
    height: auto;
    margin-bottom: 60px;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.footer-links li {
    position: relative;
}

.footer-links li a {
    text-decoration: none;
    color: #FFF;
    display: flex;
    align-items: center;
}

.footer-links li a:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-links li a:hover::after {
    width: 100%;
}

.footer-links li a img {
    width: 20px;
    margin-right: 10px;
}

.footer-links .separator {
    height: 30px;
    width: 1px;
    background-color: #FFF;
    margin: 0 40px;
}

.privacy-policy {
    font-size: 0.889rem;
    margin-bottom: 40px;
}

.privacy-policy a {
    text-decoration: none;
    color: #FFF;
}

.privacy-policy a:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-circle {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background-color: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-circle:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-circle .arrow {
    transform: rotate(225deg);
    content: "";
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-bottom: #00AA94 2px solid;
    border-right: #00AA94 2px solid;
}

.footer-bottom {
    background-color: #005147;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom p {
    color: #fff;
    font-size: 9px;
}



/* Main Section Styling */
.main-section {
    text-align: center;
    padding: 20px;
}

.main-image {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 20px;
}

.main-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

/* Hide mobile image by default */
.main-image .mobile-img {
    display: none;
}

@media screen and (max-width: 768px) {
    .main-image .desktop-img {
        display: none;
    }

    .main-image .mobile-img {
        display: block;
    }

    .footer-content {
        height: 400px;
    }

    .footer-links li a {
        padding: 10px 0;
    }
}


/* top-info */
#top-info {
    padding: 85px 0 0 0;
    text-align: center;
    position: relative;
    background: linear-gradient(to bottom, #FFFFFF, #E3F4F2);
    padding: 85px 0;
    text-align: center;
    overflow: hidden; /* 背景を画面幅いっぱいにするために必要なオーバーフロー */
    max-width: 100%;
}

.sub-caption-info {
    padding: 20px 0;
}

.benefits-section {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 90px 0 110px 0;
}

.benefit-box {
    width: 296px;
    background-color: #FFF;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    border-radius: 6px;
    line-height: 32px;
}

.benefit-box h4 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.benefit-box h6 {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #555;
    height: 50px;
}

.benefit-box img {
    width: auto;
    height: 70px;
    margin-bottom: 20px;
}

.benefit-box p {
    font-size: 0.875rem;
    color: #666;
    text-align: left;
}

@media screen and (max-width: 1092px) {
    .benefits-section {
        display: block;
        justify-content: center;
        gap: 60px;
        padding: 90px 0 110px 0;
    }

    .sub-caption-info-sp {
        width: 80%;
        margin: 0 auto;
    }
    
    .benefit-box {
        width: 80%;
        margin: 30px auto;
        background-color: #FFF;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        padding: 20px;
        border-radius: 6px;
        line-height: 32px;
    }
    
    .benefit-box h4 {
        margin-bottom: 10px;
        font-size: 1.25rem;
    }
    
    .benefit-box h6 {
        margin-bottom: 20px;
        font-size: 1rem;
        color: #555;
    }
    
    .benefit-box img {
        width: auto;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .benefit-box p {
        font-size: 0.875rem;
        color: #666;
        text-align: left;
    }
}


.triangle-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    background-color: #FFFFFF; /* triangle-section の背景色を白色に設定 */
}

.triangle {
    margin: 0 auto;
    border-top: 68px solid #E3F4F2;
    border-left: 94px solid transparent;
    border-right: 94px solid transparent;
    border-top: 68px solid #E3F4F2; /* 下向き三角形のサイズと色を設定 */
}

/* top-scene */

#top-scene {
    padding: 85px 0 0 0;
    text-align: center;
}

.scene-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 90px 0 0 0;
}

.scene-content-box {
    width: 1190px;
    background-color: #FFF;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 66px 180px 66px 50px;
    display: flex;
    align-items: center;
}

.scene-img {
    position: absolute;
}

.img-left {
    width: 592px;
    left: -105px;
    top: -50px;
}

.img-right {
    width: 286px;
    right: -144px;
    bottom: -40px;
}

.scene-text-content {
    margin-left: 510px; 
    flex: 1;
    text-align: left;
}

.scene-text-content h4 {
    margin: 0;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.scene-text-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 32px;
}

@media screen and (max-width: 1500px) {
    .scene-content {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 90px 0 0 0;
    }
    
    .scene-content-box {
        width: 80%;
        background-color: #FFF;
        border-radius: 6px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
        position: relative;
        padding: 66px 180px 66px 50px;
        display: flex;
        align-items: center;
    }
    
    .img-left {
        width: 432px;
        left: -105px;
        top: -50px;
    }
    
    .scene-text-content {
       margin-left: 360px;
        flex: 1;
        text-align: left;
    }
}

@media screen and (max-width: 1300px) {
    .scene-content-box {
        flex-direction: column;
        padding: 20px;
    }

    .img-right {
        position: absolute;
        right: 8%;
        top: -4%;
        bottom: auto;
        width: 30%;
        max-width: none;
    }

    .img-left {
        margin-bottom: 20px;
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 50%;
        max-width: none;
    }

    .scene-text-content {
        margin-left: 0; 
        text-align: center;
    }
}

/* roomtype */
#top-roomtype {
    padding: 185px 0 0 0;
    text-align: center;
}

.top-roomtype {
    text-align: center;
    padding: 50px 0;
}

.roomtype-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0 20px 0;
}

.roomtype {
    width: 100%;
    margin: 0 30px;
    text-align: left;
    position: relative;
}

.roomtype-img-container {
    position: relative;
}

.roomtype-img {
    width: 100%;
}

.roomtype-badge {
    width: 54px;
    height: 54px;
    background-color: #00AA94;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
}

.badge-content {
    color: #FFF;
    font-size: 2.027rem;
}

.roomtype h4 {
    margin-top: 32px;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
}

.roomtype p {
    margin-top: 22px;
    font-size: 1rem;
    text-align: center;
}

.yellow-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 360px;
    height: 80px;
    background-color: #FFF00A;
    color: #232323;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: padding-right 0.3s ease;
    box-sizing: border-box;
    font-weight: bold;
}

.yellow-btn .btn-icon {
    width: 34px;
    height: auto;
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.yellow-btn .btn-text {
    max-width: calc(100% - 54px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.yellow-btn:hover .btn-icon {
    transform: translateX(10px);
}

.yellow-btn-spacer {
    padding-bottom: 140px;
}

.roomtype-image-container {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.roomtype-image-container img {
    width: 100%;
    max-width: 25%;
    height: auto;
    object-fit: cover;
}

.roomtype-image-container img:not(:first-child) {
    margin-left: -1px;
}

.top-roomtype-padding {
    padding: 0px 20px 60px 20px;
}

@media screen and (max-width: 1015px) {
    .roomtype-container {
        display: block;
    }

    .roomtype {
        width: 300px;
        margin: 0 auto;
        text-align: left;
        position: relative;
    }

    .roomtype p {
        margin: 22px 0 60px 0;
        font-size: 1rem;
    }
}



/* price */
.pricing-cenering-div {
    text-align: center;
    margin: 10px 0 50px 0;
}

#top-price {
    padding: 85px 0 0 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.top-price-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/img/top-price-back.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.top-price-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}


.top-price-table {
    width: 40%;
    border-collapse: separate; /* セルのボーダーを分離 */
    border-spacing: 0; /* セル間のスペースをなくす */
    margin: 40px auto 0px auto;
    font-weight: bold;
}

.top-price-table td {
    text-align: center;
    padding: 20px;
    position: relative;
}

.top-price-row {
    background-color: #FFF;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1); /* ドロップシャドウ */
}

.top-price-row .left-rounded {
    border-radius: 6px 0 0 6px; /* 左上と左下に border-radius を適用 */
}

.top-price-row .right-rounded {
    border-radius: 0 6px 6px 0; /* 右上と右下に border-radius を適用 */
}

.larger-cell {
    width: 20%; /* 左側のセルの幅を大きくする */
}

.smaller-cell {
    width: 20%; /* 他のセルの幅を小さくする */
}

.vertical-line-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertical-line {
    height: 64px;
    width: 2px;
    background-color: #DDDDDD;
    position: absolute;
    left: 0;
}

.thin-vertical-line {
    height: 64px;
    width: 2px;
    background-color: #00AA94;
    right: 0;
    position: absolute;
}

.spacer-row td {
    padding: 15px 0;
    background: transparent; /* スペーサ行の背景を透明に */
}

.not-flex {
    display: block!important;
}

@media screen and (max-width: 1200px) {
    .top-price-table {
        width: 95%;
    }
    .top-price-table td {
        padding: 5px;
    }
    table.top-price-table h4 {
        font-size: 0.8rem;
    }
    .top-price-row {
        font-size: 0.8rem;
        line-height: 20px;
    }
    .yellow-btn {
        width: 290px;
        height: 60px;
    }
    .thin-vertical-line {
        height: 50%;
    }
    .vertical-line {
        height: 50%;
    }
}



/* contact */

#top-contact {
    text-align: center;
    margin: 40px auto;
}

#top-contact .top-h1-subtitle {
    font-size: 20px;
    color: #333;
}

#top-contact h1 {
    font-size: 36px;
    margin: 10px 0;
}

.top-contact-container {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 60px;
}

.top-contact-box {
    width: 472px;
    height: 223px;
    border-radius: 6px;
    background-color: #00AA94;
    padding: 55px 20px;
    color: white;
    margin: auto 0;
}

.top-contact-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-contact-icon {
    width: 52px;
    height: 52px;
    margin-right: 20px;
}

.top-contact-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.top-contact-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.top-contact-text p {
    margin: 0;
    font-size: 0.889rem;
}

.top-contact-number {
    font-size: 2.027rem;
    color: #FFF00A;
    margin-top: 15px;
    font-weight: bold;
    line-height: 35px;
    letter-spacing: 5px;
}

.top-contact-number a {
    text-decoration: none;
    color: #FFF00A;
}

.top-contact-number a:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.top-contact-text span {
    margin: 0;
    font-size: 1.266rem;
    color: #FFF;
    font-weight: bold;
}

.yellow-btn02 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 246px;
    height: 50px;
    background-color: #FFF00A;
    color: #232323;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: padding-right 0.3s ease;
    box-sizing: border-box;
    font-weight: bold;
    border-radius: 32px;
    margin-top: 15px;
}

.yellow-btn02 .btn-icon {
    width: 27px;
    height: auto;
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.yellow-btn02 .btn-text {
    max-width: calc(100% - 54px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.yellow-btn02:hover .btn-icon {
    transform: translateX(10px);
}

@media screen and (max-width: 982px) {
    .top-contact-container {
        display: block;
    }
    .top-contact-box {
        width: 100%;
        height: auto;
        border-radius: 6px;
        background-color: #00AA94;
        padding: 55px 20px;
        color: white;
        margin: 20px 0;
    }
    .footer-links .separator {
        height: 0;
        width: 0;
        background-color: #FFF;
        margin: 0 auto;
    }
    .footer-links {
        list-style: none;
        display: block;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

    .footer-links li {
        position: relative;
        display: flex;
        justify-content: center;
    }

    .footer-logo img {
        margin-bottom: 5px;
    }
}

.top-contact-illust img {
    width: 100%;
}

.top-contact-illust {
    padding: 0 0 20px 0;
}

/* top-map */
#top-map {
    max-width: 100%;
    padding: 0;
}

.wrap {
	position: relative;
	width: 100%;
	padding-top: 35%; /* = height ÷ width × 100 */
}
.wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 768px) {
    .wrap {
        padding-top: 85%; 
    }

    .top-roomtype-padding {
        text-align: left!important;
    }
}

/* page-brad */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    font-size: 0.8rem;
    color: #00AA94;
}
  
.breadcrumb li:not(:last-of-type)::after {
    content: "-";
    margin: 0 .6em; /* 記号の左右の余白 */
    color: #00AA94; /* 記号の色 */
}

ol.breadcrumb a {
    text-decoration: none;
    color: #c7c7c7;
}

/* page-terms */

.page-terms {
    background: linear-gradient(to bottom, #f6fcfb, #E3F4F2);
    padding: 100px 0;
    margin: 0 auto;
    text-align: center;
}

.terms-top-number {
    padding: 20px 0 50px 0;
    font-size: 0.9rem;
}

.terms-sub-number {
    padding: 20px 0;
}

.terms-sub-number02 {
    padding: 20px 0 0 0;
}

.terms-last-number {
    display: flex;
    justify-content: right;
    padding: 50px 0;
}

.sub-title-terms {
    font-size: 1.5rem;
    margin: 30px 0 0 0;
    color: #005147;
    padding: 20px 20px;
    font-weight: bold;
    background: #e3f4f2;
    border-left: solid 5px #00aa94;
}

/* page-contact */

.tel-main-content {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.page-contact-contact {
    text-align: center;
    padding: 50px 0;
}

.contact-tel {
    font-size: 2rem;
    font-weight: bold;
    padding: 20px 0 10px 0;
}

.tel-text-massage {
    padding: 0 0 0 20px;
}

.contact-tel a {
    text-decoration: none;
    color: #005147;
    transition: 0.3s;
}

.contact-tel a:hover {
    color: #00AA94;
    transition: 0.3s;
}

#mail-contact {
    padding: 0 0 150px 0;
}

.contact-mail-text {
    text-align: center;
    padding: 20px 20px 20px;
}

.contact-btn-spacer {
    padding: 20px 0 0 0;
}

.yellow-btn03 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 60px;
    background-color: #FFF00A;
    color: #232323;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: padding-right 0.3s ease;
    box-sizing: border-box;
    font-weight: bold;
}

.yellow-btn03 .btn-icon {
    width: 34px;
    height: auto;
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.yellow-btn03 .btn-text {
    max-width: calc(100% - 54px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.yellow-btn03:hover .btn-icon {
    transform: translateX(10px);
}

.yellow-btn-spacer {
    padding-bottom: 140px;
}

@media screen and (max-width: 768px) {
    .tel-main-content {
        display: block;
    }
    .tel-text-massage {
        padding: 0 0 0 0px;
    }
}

/* page-pricing */
span.roomtype-padding-toptext  {
    color: #00AA94;
    font-weight: 800;
}

.design10 {
    max-width: 700px;
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    border-spacing: 0;
   }
   .design10 th {
    padding: 10px;
    border-bottom: solid 4px #778ca3;
    color: #778ca3
   }
   .design10 td {
    padding: 10px;
    border-bottom: solid 1px #778ca3;
   }

.table_design01 {
    border-collapse: collapse;
    width: 100%;
    max-width: 700px;
}

.table_design01 th, .table_design01 td {
    border: 2px solid #fff;
    background-color: #e6f1f6;
    padding: 1em;
    text-align: center;
}

.table_design01 th {
    background-color: #00AA94;
    color: #fff;
    font-weight: normal;
    text-align: center;
    width: 60%;
    min-width: 4em;
}

.table-pricing-cont {
    margin: 30px 0 0px 0;
    justify-content: center;
    display: flex;
}

.price-float-contents {
    display: flex;
    justify-content: center;
}

.price-float-img img {
    margin: 60px 40px 0 0;
    width: 300px;
}

.page-price-table table {
    width: 100%;
}

.page-price-imagesitem img {
    width: 380px;
    padding: 80px 10px;
}

.page-price-imagesitem {
    display: flex;
    justify-content: center;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .page-price-imagesitem {
        display: block !important;
        width: 100%;
    }
    .page-price-imagesitem img {
        width: 100%;
        padding: 0;
    }
    .price-float-img img {
        margin: 60px 00px 0 0;
        width: 100%;
    }

    .price-float-contents {
        display: block !important;
    }

    .page-pricing-room {
        display: block!important;
        padding: 20px 0;
    }

    .page-pricing-room-taxt {
        margin: auto 0;
        width: 100%!important;
    }

    .gallery {
        margin: 10px 0!important;
    }

    .gallery img {
        width: 100%!important;
        height: auto!important;
    }

    .furniture-images {
        text-align: left!important;
        padding: 20px 10px!important;
    }
}

.page-pricing-room {
    display: flex;
    justify-content: center;
}

.page-pricing-room img {
    width: 100%;
}

.page-pricing-room-taxt {
    margin: auto 0;
    width: 60%;
}

.sub-title-terms02 {
    display: flex;
    justify-content: center;
    font-weight: bold;
    color: #00AA94;
    position: relative;
}

.sub-title-terms02::before {
    content: '';
    width: 36px;
    height: 3px;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: -8px;
    background-color: #00AA94;
    border-radius: 20px;
}

.gallery {
    margin: 10px 50px;
    text-align: center;
}

.gallery img {
    width: 260px;
    height: 180px;
    object-fit: cover;
    padding: 5px;
    transition: 0.7s;
}

.gallery img:hover {
    transform: scale(1.1);
}

.gallery a {
    text-decoration: none;
}

.roomb-spacer {
    padding-top: 120px;
}

.furniture-images {
    text-align: center;
    margin: 30px 0 0 0;
    padding: 20px;
    background-color: #efefef;
}

.table_design01 td {
    font-weight: bold;
}