@charset "UTF-8";


* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    background-color: #dfdfdf;
    color: #000;
    line-height: 1.75;
}

p {
    font-size: 1rem;
    line-height: 1.75;
}

h1 {
    font-size: 6rem;
    line-height: 1;
}

h2 {
    font-size: 2.25rem;
    line-height: 1;
    display: inline-block;
    border-bottom: 6px dotted black;
    padding-bottom: 7px;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 35px;
    text-align: center;
}

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

.inner {
    width: 1000px;
    max-width: 90%;
    margin-inline: auto;
}

#header {
    background-color: #fff;
}

#header .inner {
    position: relative;
    width: 1386px;
}

.menu-trigger {
    display: none;
    /*PCの時は消しておく*/
    -webkit-appearance: none;
    /* Crome用　フォ-ム要素の初期化*/
    appearance: none;
    /*フォ-ム要素の初期化*/
    border: none;
    background: transparent;
    /* Firefox用 背景を透過させる設定*/
}

.menu-trigger,
.menu-trigger span {
    display: inline-block;
    transition: all .4s;
}

#nav {
    display: flex;
    justify-content: flex-end;
    padding: 22px 20px;
    align-items: center;
    gap: 74px;
}

#nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    font-size: 1.25rem;
    font-weight: bold;
}

#nav a {
    text-decoration: none;
    color: black;
}

#nav a.reserveBtn {
    background-color: black;
    font-size: 1.68rem;
    font-weight: bold;
    color: white;
    padding: 18px 57px;
    border-radius: 15px;
    transition: background-color 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#nav a.reserveBtn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.hero {
    position: relative;
    background-image: url('image/hero.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    aspect-ratio: 1.78 / 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 1;
}

.heroTxt {
    position: relative;
    color: white;
    padding: 120px;
    z-index: 2;
    height: 224px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.heroTxt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: -1;
}

.heroTxt p {
    font-size: 2.12rem;
    line-height: 1;
}

#feature {
    padding-top: 138px;
    margin-bottom: 100px;
}

.featureList {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-inline: auto;
}

.featureItem {
    display: flex;
    flex-direction: row;
    gap: 23px;
    background-color: white;
    width: 1000px;
    max-width: 90%;
    margin-inline: auto;
}

.featureItem.reverse {
    flex-direction: row-reverse;
    justify-content: space-between;
    padding-left: 23px;
}

.featureItem div {
    padding-top: 23px;
    width: 268px;
}

.featureList .featureItem img {
    max-width: 300px;
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.bFnt {
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1;
    padding-bottom: 27px;
}

#price {
    margin-bottom: 119px;
}

.priceList {
    display: flex;
    gap: 40px;
    width: 1000px;
    max-width: 90%;
    margin-inline: auto;
    margin-bottom: 30px;
}

.priceItem {
    background-color: white;
    padding: 23px 30px;
    width: 100%;
}

.priceItem p {
    min-height: 365px;
}

.regiBtn {
    text-align: center;
}

a.registerBtn {
    display: inline-block;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: bold;
    padding: 22px;
    width: 800px;
    background-color: black;
    color: white;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

a.registerBtn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.news {
    padding-left: 96px;
    border-bottom: 1px dashed black;
    margin-bottom: 57px;
}

.news3 {
    margin-bottom: 30px;
}

.news a {
    color: black;
    text-decoration: none;
    margin-bottom: 46px;
    display: inline-block;
}

#information {
    margin-bottom: 180px;
}

.infoContent {
    display: flex;
    gap: 59px;
    margin-left: 112px;
}

.access p {
    max-width: 400px;
    width: 100%;
    height: 300px;
    line-height: 1;
}

.infoContent dl {
    line-height: 1.2;
}

dt {
    font-size: 1.25rem;
    font-weight: bold;
}

dd {
    font-size: 1.25rem;
    margin-bottom: 29px;
}

dd:last-of-type {
    margin-bottom: 0;
}

#footer {
    background-color: white;
    padding-bottom: 34px;
    margin-inline: auto;
}

.ftInner {
    padding-inline: 100px;
    margin-inline: auto;
}

.footerTxt {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 5px;
    padding-top: 45px;
}

#footer a {
    color: black;
    text-decoration: none;
    font-size: 1.125rem;
    margin-right: 20px;
    margin-bottom: 27px;
}

#footer a:last-child {
    margin-right: 0;
}

.copylight {
    font-size: 1.125rem;
    text-align: center;
}

@media screen and (max-width:790px) {
    a.registerBtn {
        font-size: 1.5rem;
        padding: 22px;
        width: 80%;
    }

    .menu-trigger {
        width: 56px;
        height: 60px;
        position: absolute;
        /*positionで画面左上に絶対配置*/
        top: 10px;
        left: 0;
        z-index: 10;
        /*要素の重なり、上のレイヤーと同じ考えかた*/
        outline: none;
        /*クリックした際のボタン周りの線を消す*/
    }

    .menu-trigger span {
        position: absolute;
        left: 50%;
        width: 32px;
        height: 2px;
        background-color: #011d0e;
        /*menu-trigger内のspan全体を中心位置に揃える設定*/
        transform: translate(-50%, -50%);
    }

    .menu-trigger span:nth-of-type(1) {
        top: 16px;
    }

    .menu-trigger span:nth-of-type(2) {
        top: 50%;
    }

    .menu-trigger span:nth-of-type(3) {
        bottom: 14px;
    }

    .menu-trigger.active span:nth-of-type(1) {
        top: 49%;
        /* 変形の設定　右側の軸は変えずに左側を傾けている */
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
        /*透過の指定で消してる*/
    }

    .menu-trigger.active span:nth-of-type(3) {
        bottom: 49%;
        /* 変形の設定　右側の軸は変えずに左側を上に傾けている */
        transform: translate(-50%, -50%) rotate(45deg);
    }

    #nav {
        display: none;
        /* クリックする前は消えてほしい*/
        width: 50vw;
        /*画面横幅めいいっぱい広げる*/
        height: 50vh;
        background: rgba(255, 255, 255, .95);
        margin: 0;
        padding: 90px 5% 0;
        /*positionと組み合わせページをスクロールした場合も同じ位置に常に置く設定　transrateXと合わせてど真ん中に位置を合わせる設定*/
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
        /* 何かしらの要素の背面に設置*/
        text-align: center;
    }

    #nav.active {
        display: block;
        /* クリックした時に表示*/
        z-index: 20;
        /* 何かしらの要素の全面に設置*/
    }

    #nav ul {
        /* display:flex;を解除して縦並びにしている*/
        display: block;
        margin-bottom: 24px;
    }

    #nav li {
        /*画面横にめいいっぱい伸ばしている設定*/
        width: 100%;
    }

    #nav li a {
        font-size: 1.14rem;
        border-bottom: 1px solid #ccc;
        padding-top: 12px;
        padding-bottom: 12px;
        display: block;
    }

    #nav a.reserveBtn {
        background-color: black;
        font-size: 1.14rem;
        color: white;
        padding: 12px;
        border-radius: 15px;
    }

    .heroTxt p {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    .heroTxt {
        padding: 80px;
        height: 160px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .heroTxt::before {
        top: 30%;
        left: 50%;
        width: 100vw;
        height: 70%;
    }

    html {
        font-size: 12px;
    }


.infoContent {
    display: flex;
    flex-direction: column-reverse;
    margin-left: auto;
    margin-right: auto;
}

.news {
    padding-left: 10px;
}

.ftInner {
    padding-inline: 20px;
}

.priceItem {
    padding: 10px;
}
.priceList {
    gap: 10px;
}

#information {
    margin-bottom: 50px;
}

#feature {
    padding-top: 50px;
}

#footer a {
    font-size: 1rem;
    margin-right: 10px;
}

.copylight {
    font-size: 1rem;
}



    




}