@charset "UTF-8";

/* アバウト */
.aboutread {
    width: fit-content;
    margin: 0 auto 200px;
    text-align: right;
}

.aboutread h1 {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(0.875rem, 0.42rem + 1.94vw, 1.875rem);
    letter-spacing: 0.2em;
    line-height: 2.3em;
    text-align: left;
    white-space: nowrap;
}

.aboutread h1 span {
    color: #6f96a5;
}

.aboutread a {
    position: relative;
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(0.75rem, 0.568rem + 0.91vw, 1.25rem);
    color: #6f96a5;
    letter-spacing: 0.15em;
    text-decoration: none;
}

.aboutread a::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #6f96a5;
    position: absolute;
    left: 0;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}

.aboutread a:hover::after {
    transform: scale(1, 1);
}

@media screen and (max-width:500px) {
    .aboutread {
        margin: 100px auto;
    }
    .aboutread a::after {
        height: 0;
    }
    .aboutread a:hover::after {
        transform: none;
    }
}

/* ここまでアバウト */


/* メニューボタン */
.menu_btn_ {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)), url(../img/manu.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: clamp(18.75rem, 7.386rem + 56.82vw, 50rem);
    height: 180px;
    margin: 0 auto 200px;
    border-radius: 30px;
    transition-duration: .2s;
}

.menu_btn_:hover {
    transform: scale(1.05);
}

.menu_btn_ a {
    position: absolute;
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(1.563rem, 1.335rem + 1.14vw, 2.188rem);
    letter-spacing: 0.2em;
    color: #fff;
    text-align: center;
    line-height: 180px;
    width: 100%;
    height: 100%;
}


@media screen and (max-width:500px) {
    .menu_btn_ {
        height: 80px;
        margin: 0 auto 120px;
    }

    .menu_btn_:hover {
        transform: none;
    }

    .menu_btn_ a {
        line-height: 80px;
    }
}

/* ここまでメニューボタン */

/* ショップ */

.shop {
    max-width: 1200px;
    margin: 0 auto;
}

.shop h1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(1.563rem, 1.222rem + 1.7vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 0.2em;
    color: #6f96a5;
    text-align: center;
}

.shop_info_ {
    width: fit-content;
    margin: 50px auto 100px;
    line-height: 30px;
    white-space: nowrap;
}

.shop_info_ dl {
    display: flex;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(0.75rem, 0.58rem + 0.73vw, 1.125rem);
    letter-spacing: 0.1em;
}

.shop_info_ dt {
    min-width: 250px;
}

.shop_info_ dd {
    margin: 0 ;
}

.shop_info_ a {
    color: #6f96a5;
    text-decoration: underline;
}

@media screen and (max-width:500px) {
    .shop_info_ {
        margin: 0 auto 100px;
    }
    .shop_info_ dt {
        min-width: 150px;
    }
}


/* ここまでショップ */

/* インスタ */
.inst {
    width: clamp(18.75rem, 7.386rem + 56.82vw, 50rem);
    height: auto;
    margin: 0 auto 100px;
    transition-duration: .2s;
}

.inst:hover {
    transform: scale(1.05);
}

@media screen and (max-width:500px) {
    .inst {
        margin: 0 auto 80px;
    }
    .inst:hover {
        transform: none;
    }
}

/* ここまでインスタ */

/* フォーム */
.form {
    width: clamp(18.75rem, 7.386rem + 56.82vw, 50rem);
    margin: 0 auto 200px;
    height: auto;
    border: 2px solid #6f96a5;
    border-radius: 30px;
    line-height: 3em;
}

.form p {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(0.75rem, 0.58rem + 0.73vw, 1.125rem);
    letter-spacing: 0.1em;
    color: #6f96a5;
    text-align: center;
    margin-block-start: 0;
    padding-top: 30px;
}

.form p span {
    font-size: clamp(1.25rem, 0.966rem + 1.21vw, 1.875rem);
    border-bottom: solid 1px #6f96a5;
}

.form a {
    font-size: clamp(1.125rem, 0.784rem + 1.45vw, 1.875rem);
    letter-spacing: 0.15em;
}

@media screen and (max-width:500px) {
    .form {
        margin: 0 auto 100px;
    }
}

/* ここまでフォーム */