@charset "utf-8";

/* @group トップページ
------------------------------------------------------*/

.top_body {
    display:grid;
	place-content:center;
	place-items:center;
	text-align:center;
    gap: 150px;
}

.top-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 1.7;
}

.logo img {
    width: 470px;
    height: auto;
}

/* @group 他ページ
------------------------------------------------------*/

/* 客室別情報ページ */
.room_wrap {
    padding: 60px 80px 60px 80px;
}

.room-title {
    margin-bottom: 30px;
    font-size: 54px;
    font-weight: bold;
    color: var(--key-color);
    text-align: center;
}

.room-body {
    display: grid;
    grid-template-columns: 433px 326px 577px;
    justify-content: space-between;
}

.room-top-img {
    margin-bottom: 15px;
}

.room-top-img img {
    width: 433px;
    height: 289px;
    object-fit: cover;
}

.facility-title {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--key-color);
}

.facility-title span {
    font-size: 17px;
    font-weight: bold;
}

.facility-list {
    font-size: 12px;
    font-weight: bold;
}

.facility-list.common {
    display: flex;
}

.facility-list.common dt {
    width: 200px;
}

.facility-list.common dd ul {
    display: flex;
    flex-wrap: wrap;
    list-style: disc;
    
}

.facility-list.common dd li {
    margin-left: 1.5em;
}


.facility-list.exclusive {
    display: flex;
    flex-wrap: wrap;
    list-style: disc;
    margin-bottom: 80px;
    color: red;
    
}

.facility-list.exclusive li {
    margin-left: 1.5em;
}

.facility-subtitle {
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: bold;
}

.facility-subtitle > span::before {
    font-family: "Font Awesome 5 Free";
    content: "\f14a";
    font-weight: 900;
    font-size: 0.85em;
    position: relative;
    bottom: 1px;
    right: 4px;
    color: var(--sub-color);
}

.lighting-switch-img img {
    width: 433px;
    height: 190px;
    object-fit: cover;
}

.facility-img-list ul {
    display: grid;
    grid-template-columns: 160px 160px;
    justify-content: space-between;
    row-gap: 5px;
    margin-bottom: 10px;
}

.facility-img-list ul li a {
    transition: all .5s;
}

.facility-img-list ul li a:hover {
	filter: brightness(90%) contrast(120%);
}

.facility-img-list .gallery img {
    width: 160px;
    height: 160px;
    object-fit: cover;
}

.position-img img {
    width: 577px;
    height: auto;
}

.facility-img-list > p {
    font-size: 11px;
    font-weight: bold;
    text-align: center;
}

.facility-img-list > p::before {
    font-family: "Font Awesome 5 Free";
    content: "\f0d8";
    font-weight: 900;
    font-size: 0.85em;
    position: relative;
    bottom: 1px;
    right: 4px;
    color: var(--key-color);
}

/* レストランメニュー */
.restaurant_wrap {
    padding: 60px 50px 60px 50px;
}

.restaurant-title {
    margin-bottom: 50px;
    font-size: 54px;
    font-weight: bold;
    color: var(--key-color);
    text-align: center;
}

.restaurant-menu-list {
    display: grid;
    grid-template-columns: repeat(5, auto);
    grid-template-rows: repeat(7, auto);
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}


.restaurant-menu-list li a {
    display: block;
    box-shadow: 5px 5px 10px #bcbcbc,
                -5px -5px 10px #ffffff;
    transition: all .5s;
}

.restaurant-menu-list li a:hover {
	filter: brightness(90%) contrast(120%);
    box-shadow: 2px 2px 7px #bcbcbc,
                -2px -2px 7px #ffffff;
}

.restaurant-body p {
    font-size: 20px;
    text-align: right;
}


/* 画像貼り付け共通 */

.img-wrap {
	display: flex;
	justify-content: center;
    align-items: center;
}

.img-wrap figcaption {
    font-size: 54px;
    font-weight: bold;
    font-feature-settings: "palt";
    color: var(--key-color);
    text-align: center;
    line-height: 1.7;
}

.img-wrap figure img {
    width: 1200px;
    height: auto;
    object-fit: cover;
}

/* 外部ページ貼り付け */

.iframe-wrap {
	display: flex;
	justify-content: center;
    align-items: center;
}

.iframe h1 {
    font-size: 54px;
    font-weight: bold;
    font-feature-settings: "palt";
    color: var(--key-color);
    text-align: center;
    line-height: 1.7;
}

.iframe h1 a {
    text-decoration: none;
    transition: all .5s;
    color: var(--key-color);
}

.iframe h1 a:hover {
	filter: brightness(90%) contrast(120%);
}


/*flexbox*/

.flex {
    display: -webkit-flex;
    /* Safari */
    display: flex;
    -webkit-flex-direction: row;
    /* Safari */
    flex-direction: row;
}

.flex-row-reverse {
    display: -webkit-flex;
    /* Safari */
    display: flex;
    -webkit-flex-direction: row-reverse;
    /* Safari */
    flex-direction: row-reverse;
}

.flex-column {
    display: -webkit-flex;
    /* Safari */
    display: flex;
    -webkit-flex-direction: column;
    /* Safari */
    flex-direction: column;
}

.flex-column-reverse {
    display: -webkit-flex;
    /* Safari */
    display: flex;
    -webkit-flex-direction: column-reverse;
    /* Safari */
    flex-direction: column-reverse;
}

.inline-flex {
    display: -webkit-inline-flex;
    /* Safari */
    display: inline-flex;
    -webkit-flex-direction: row;
    /* Safari */
    flex-direction: row;
}

.flex-start {
    -webkit-justify-content: flex-start;
    /* Safari */
    justify-content: flex-start;
}

.flex-center {
    -webkit-justify-content: center;
    /* Safari */
    justify-content: center;
}

.flex-end {
    -webkit-justify-content: flex-end;
    /* Safari */
    justify-content: flex-end;
}

.flex-space-around {
    -webkit-justify-content: space-around;
    /* Safari */
    justify-content: space-around;
}

.flex-space-between {
    -webkit-justify-content: space-between;
    /* Safari */
    justify-content: space-between;
}

.flex-align-center {
    -webkit-align-items: center;
    /* Safari */
    align-items: center;
}

.flex-align-end {
    -webkit-align-items: flex-end;
    /* Safari */
    align-items: flex-end;
}


