@charset "utf-8";

/*-------------------------------------------------------------
///////////////////////////////////////////////////////////////
layout
///////////////////////////////////////////////////////////////
--------------------------------------------------------------*/

.main .main-body {
    width: 1920px;
    height: 1080px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row-reverse;
}

.contents {
    width: 100%;
}

/*リンク*/
a {
    color: #0000FF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/*-------------------------------------------------------------
///////////////////////////////////////////////////////////////
style
///////////////////////////////////////////////////////////////
--------------------------------------------------------------*/
/* 基本 */
:root {
	--key-color: #231815;
	--sub-color: #c9bc9c;
	box-sizing: border-box;
    --space-s: 0.5em;
    --space-m: 1em;
    --space-l: 2em;
}

/* @group メインエリア
------------------------------------------------------*/

.wrapper {
    background-color: #FFFFFF;
}

.contents {
    background-color: var(--sub-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

article {
    width: 1830px;
    height: 1000px;
    background-color: #FFFFFF;
    border-radius: 10px;
}

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

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

.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;
}

.btn_basic li a {
    min-width: 250px;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    padding: 0.7em 2em;
    border: 3px solid black;
    border-radius: 2px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
    color: black;
    text-decoration: none;
    transition: 0.3s ease all;
    z-index: 1;
}

.btn_basic li a:before {
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: '';
    background-color: black;
    z-index: -1;
}

.btn_basic li a:hover, .btn_basic li a:focus {
    color: white;
}

.btn_basic li a:hover:before, .btn_basic li a:focus:before {
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
}

.btn_basic li a:active {
    transform: scale(0.9);
}

.go-hotel {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, auto);
    justify-items: center;
}
