@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
    font-size: 100%;
}

body {
    font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul, li {
    list-style: none;
}

:root {
    --main-color: #f5f5f5;
    --border-color: #cccbcb;
    --bg-color: #fbfbfb;
}

.wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4%;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

/* HEADER
------------------------------- */
header {
    display: flex;
    margin: 0 auto;
    padding: 0 5%;
    align-items: center;
    height: 90px;
}

.logo {
    width: 100%;
    height: 50px;
}

.logo img {
    max-width: 100%;
    height: 55px;
}

.page-title {
    font-size: 1rem;
    width: calc(100% - 50px);
    text-align: center;
}

/* Hero画像
------------------------------- */
.hero-img {
    overflow: hidden;
}

.hero-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* メインコンテンツ
------------------------------- */
.content {
    /*
    padding-top: 40px;
    padding-bottom: 50px;
    */
}

.category {
    margin-top: 20px;
}

.category ul li {
    display: inline-block;
    background-color: var(--main-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-left: 3px;
    line-height: 1.3;
}

.category ul li a {
    color: gray;
    padding: 3px 8px;
    font-size: 12px;
    display: block;
}

.main-title {
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.sub-title {
    margin-top: 30px;
    margin-bottom: 20px;
}

.main-text {
    margin-top: 4vh;
}

.item-list {
    border: 1px solid rgb(203 203 203 / 50%);
}

.item-list div {
    display: flex;
    border-bottom: 1px solid rgb(203 203 203 / 50%);
    line-height: 1;
}

.item-list dt {
    width: 20%;
    font-weight: bold;
    background-color: var(--main-color);
    border-right: 1px solid rgb(203 203 203 / 50%);
    padding: 20px;
}

.item-list dd {
    width: 80%;
    padding: 20px;

}

.item-list dt:last-child {
    border-bottom: none;
}

.commingsoon {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    height: 60vh;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.commingsoon p {
    font-size: 45px;
}

.map {
    margin-top: 4vh;
}

.map iframe {
    width: 100%;
    aspect-ratio: 1;
}


/* 背景画像 */
.bottom-bg {
    width: 100%;
    height: 200px;
    background-color: var(--bg-color-02);
}

.bottom-bg .bg {
    content: "";
    background-image: url(../img/main_bg.png);
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center bottom;
    height: 200px;
}

/* リダイレクト */
.redirect {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    height: 60vh;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.redirect p {
    font-size: 23px;
}

.redirect p a {
    text-wrap: nowrap;
}

/* モバイル版
------------------------------- */
@media (max-width: 600px) {
    body {
        font-size: 15px;
    }

    .page-header {
        width: 95%;
        flex-direction: row;
        top: 10px;
        height: 70px;
    }

    .page-header a {
        width: 100%;
    }

    .logo img {
        height: 45px;
    }

    .wrapper {
        padding: 0 20px;
    }

    .main-title {
        font-size: 2rem;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .hero-img img {
        height: 200px;
    }

    .item-list {
        font-size: 14px;
    }

    .item-list dt {
        width: 25%;
        padding: 10px;
    }

    .item-list dd {
        padding: 10px;
    }

    .commingsoon p {
        font-size: 30px;
    }

    .bottom-bg .bg {
        height: 100px;
    }

    .bottom-bg {
        height: 100px;
    }

    .redirect p {
        font-size: 18px;
    }

}