@charset "UTF-8";

body {
    background-color: #F9F9F9;
    padding: 0 20px;
}

p,
dl {
    color: #333333;
    font-family: 'Noto serif JP', serif;
    letter-spacing: 0.1em;
    line-height: 150%;
}

a:hover {
    opacity: 0.7;
}


#header {
    background-color: #F9F9F9;
    opacity: 0.7;
    position: relative;
    z-index: 1000;
    /* ヘッダー全体を前面に */
}

#header h1 {
    font-family: 'Noto serif JP', serif;
    font-size: 24px;
    padding: 16px 0;
    color: #BA9C80;
}

/* hamburger */

#header .navi .menu li {
    font-size: 20px;
    color: #333;
    font-family: 'Noto serif JP', serif;
    align-items: center;
}

#header .hamburger {
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: fixed;
    top: 5px;
    right: 24px;
    z-index: 30;
}

#header .hamburger span {
    width: 35px;
    height: 2px;
    background-color: #BA9C80;
    display: inline-block;
    position: absolute;
    left: 10px;
    transition: all 0.4s;
}

#header .hamburger span:nth-of-type(1) {
    top: 16px;
}

#header .hamburger span:nth-of-type(2) {
    top: 25px;
}

#header .hamburger span:nth-of-type(3) {
    top: 34px;
}

#header .navi {
    width: 50%;
    height: 100vh;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    right: -80%;
    z-index: 20;
    transition: all 0.6s;
}

#header .navi .menu {
    width: 100%;
    height: 100vh;
    flex-direction: column;
    padding: 60px 0;
    overflow: auto;
    z-index: 20;
}

#header .navi .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 左右中央寄せ */
    height: 100vh;
    padding-top: 40px;
    margin: 0;
    list-style: none;
}

#header .navi .menu li {
    padding: 10px 0;
    margin-left: 0;
}

#header .navi.active {
    right: 0;
}

#header .hamburger.active span:nth-of-type(1) {
    top: 24px;
    transform: rotate(-45deg);
}

#header .hamburger.active span:nth-of-type(2) {
    opacity: 0;
}

#header .hamburger.active span:nth-of-type(3) {
    top: 24px;
    transform: rotate(45deg);
}

.bar {
    display: block;
    display: flex;
    padding: 10px 80px;
    justify-content: center;
    gap: 180px;
    background-color: #F9F9F9;
    height: 60px;
    position: fixed;
    width: 100%;
    bottom: 0px;
    left: 0;
    z-index: 90;
}

.bar .menu {
    width: 40px;
}

.bar .contact {
    width: 60px;
}

h2 {
    font-family: 'Noto serif JP', serif;
    margin-bottom: 20px;
    margin-top: 40px;
    cursor: pointer;
    letter-spacing: 0.1em;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    align-items: center;
}

h2::after {
    content: '';
    display: block;
    height: 10px;
    width: 10px;
    border-top: 2px solid #BA9C80;
    border-right: 2px solid #BA9C80;
    rotate: 135deg;
    transition: 0.2s;
    padding-right: 5px;
}

h2:hover {
    opacity: 0.7;
}

/* 基本スタイル */
.content {
    margin-bottom: 40px;
}

.menu-title {
    font-family: 'Noto serif JP', serif;
    font-size: 24px;
    text-align: center;
    background-color: #BFAFB2;
    padding: 10px;
    color: #F9F9F9;
    margin-bottom: 36px;
    display: none;
}

.text {
    display: none;
    /* 初期は非表示（スマホ） */
    padding: 20px;

    /* 任意 */
    border-radius: 8px;
    /* 任意 */
}

.image img {
    max-width: 100%;
    display: block;
    margin-top: 20px;
}

/* underlineの透け感 */


.about {
    margin-bottom: 20px;
}

.underline {
    background: linear-gradient(to right, rgba(255, 192, 203, 0.4), rgba(255, 255, 255, 0));
    padding: 0 4px;
    border-radius: 3px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

img {
    max-width: 100%;
}

dl {
    margin-bottom: 16px;
}

dt {
    font-weight: normal;
    color: #BA9C80;
    position: relative;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

dt::after {
    content: '';
    height: 0.5px;
    width: 100%;
    background-color: #BA9C80;
    margin-top: 4px;
    left: 0;
    display: block;
}

dd {
    letter-spacing: 0.1em;
}

dl:last-child {
    margin-bottom: 0;
}


.url {
    color: #8C4257;
    padding-bottom: 40px;
    text-align: center;
}

footer {
    background-color: #F9F9F9;
    height: 150px;
}

footer .icon {
    display: flex;
    padding: 20px 100px;
    justify-content: center;
    gap: 100px;
}

footer .icon img {
    width: 25px;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: #BA9C80;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .bar {
        display: none;
    }

    #header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #header .logo {
        width: 100%;
        font-family: "Noto serif JP", serif;
        font-size: 28px;
        padding-left: 36px;
    }

    #header .logo a {
        display: block;
    }

    #header .navi .menu {
        display: flex;
        align-items: center;
        font-family: 'sans-serif';
    }

    #header .navi .menu li {
        font-size: 20px;
        padding-right: 36px;
        align-items: center;
        font-family: 'Libre Caslon Display';
        color: #333333;
    }

    #header .navi .menu .contact {
        display: inline-block;
        background-color: #8C4257;
        color: #F9F9F9;
        padding: 20px 40px;
    }

    #header .navi {
        position: static;
        /* 固定位置を解除 */
        width: auto;
        height: auto;
        background-color: transparent;
        right: auto;
        /* right指定をリセット */
        transition: none;
        /* アニメーション不要 */
        display: flex;
        /* 横並び */
        justify-content: flex-end;
        /* ナビを右寄せ */
    }

    #header .navi .menu {
        flex-direction: row;
        /* 横並び */
        height: auto;
        padding: 0;
        gap: 36px;
        /* メニュー間の横スペース */
        align-items: center;
    }

    #header .hamburger {
        display: none;
        /* PCではハンバーガー非表示 */
    }

    body {
        padding: 0 80px;
    }

    h2 {
        padding-top: 120px;
        font-size: 24px;
        justify-content: center;
    }

    h2::after {
        display: none;
    }

    h2:hover {
        opacity: 1;
    }

    .content {
        display: flex;
        gap: 80px;
        flex-direction: row-reverse;
    }

    .menu-title{
        display: block;
        /* PCで表示 */
    }

    .text {
        display: block !important;
        /* 常に表示 */
        flex: 1;
        /* 横幅調整 */
        font-size: 18px;
    }

    .image {
        flex: 1;
        /* 横幅調整 */
    }

    dl{
        font-size: 18px;
    }


}