@charset "UTF-8";

body {
    background-color: #F9F9F9;
    margin: 0;
}

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

a {
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

a:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}



#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 24px;
    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);
}

.fv {
    position: relative;
}

.fv img {
    width: 100%;
}

.fv img {
    width: 100%;
    height: 600px;
    /* 高さを固定 */
    object-fit: cover;
    /* アスペクト比を保ったまま切り抜く */
}

.fv .pc {
    display: none;
}

.fv .catchcopy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #BA9C80;
    text-align: center;
}

.fv .ja {
    font-family: 'noto serif JP', serif;
    font-size: 24px;
    display: inline-block;
    background-color: #F9F9F9;
    margin-bottom: 12px;
    padding: 5px;
}

.fv .en {
    font-size: 24px;
    font-family: "MonteCarlo", cursive;
    display: inline-block;
    background-color: #F9F9F9;
    padding: 5px;
}

.fv .ja,
.fv .en {
    white-space: nowrap;
}


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

#works {
    position: relative;
    padding: 0 20px;
}


.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* アイテム間の余白 */
}

.item {
    width: calc(50% - 10px);
    /* スマホでは2列 */
    text-align: center;
    transition: transform 0.3s ease-out;
}


.gallery .item:hover {
    transform: translateY(-10px); /* 上に5pxずらす */
}

.item img {
    width: 100%;
    border-radius: 10px;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 20px;
}
.item p{
    font-size: 16px;
}

.section-title-one {
    font-family: "MonteCarlo", cursive;
    font-size: 60px;
    color: #BA9C80;
    transform: rotate(90deg);
    position: absolute;
    left: -40px;
    top: 40px;
    opacity: 40%;
}

.section-title-two {
    font-family: "MonteCarlo", cursive;
    font-size: 60px;
    color: #BA9C80;
    transform: rotate(90deg);
    position: absolute;
    left: -20px;
    top: 40px;
    opacity: 40%;
}

#works .title,
#flow .title {
    font-size: 24px;
    padding-top: 60px;
    padding-left: 60px;
    padding-bottom: 40px;
    font-family: 'Noto Serif JP', serif;
}



.section-title {
    font-family: 'MonteCarlo', cursive;
    font-size: 60px;
    color: #BA9C80;
    margin-bottom: 40px;
    margin-top: 40px;
    text-align: center;
}

#service {
    padding: 0 20px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    /* スマホは縦並び */
    gap: 40px;
    /* メニュー間の縦スペース */
}

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

.explain {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
}

.menu .topic {
    color: #BA9C80;
    margin-bottom: 16px;
    font-size: 16px;
    position: relative;
    padding-left: 10px;
}

.menu .topic::after {
    content: '';
    height: 0.5px;
    width: 100%;
    background-color: #BA9C80;
    bottom: -5px;
    left: 0;
    position: absolute;
    display: inline-block;
}

.menu .detail {
    font-size: 16px;
    margin-bottom: 20px;
    padding-left: 10px;
}

.menu .attention {
    font-size: 12px;
    margin-bottom: 40px;
    padding: 0 10px;
}

dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    font-family: 'Noto serif JP', serif;
    color: #333333;
    font-size: 16px;
    padding: 0 10px 20px;

}

dt {
    width: 65%;
    margin-bottom: 8px;
    font-weight: normal;
}

dd {
    width: 35%;
    text-align: right;
    font-weight: normal;
}

#flow {
    position: relative;
    padding: 0 40px;
}

#flow .flow-item .flow-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 10px;
}

#flow h3 {
    font-family: 'Noto serif JP', serif;
    font-size: 18px;
}

#flow .flow-item .flow-title::after {
    content: '';
    height: 0.5px;
    width: 100%;
    background-color: #BA9C80;
    bottom: -10px;
    left: 0;
    position: absolute;
    display: inline-block
}

#flow .flow-item {
    margin-bottom: 20px;
}

#flow img {
    width: 25px;
}


#flow .detail {
    padding: 15px 10px;
}

.btn a {
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #8C4257;
    font-weight: 400;
    border: 1px solid #8C4257;
    display: block;
    position: relative;
    box-sizing: border-box;
    max-width: 300px;
    text-align: center;
    padding: 16px 64px;
    margin: 24px;
    margin-inline: auto;
    text-decoration: none;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
}

.btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -30px;
    width: 60px;
    height: 1px;
    background: #BFAFB2;
    transition: all 0.3s ease;
}

.btn a:hover::after {
    animation: OutIn-Line 700ms;
    transition: all 0.3s;
}




@keyframes OutIn-Line {
    50% {
        -webkit-transform: scale3d(0, 1, 1);
        transform: scale3d(0, 1, 1);
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }
}

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ではハンバーガー非表示 */
    }

    .fv .sp {
        display: none;
    }

    .fv .pc {
        display: block;
    }

    .fv .ja {
        font-size: 32px;
    }

    .fv .en {
        font-size: 28px;
    }

    .section-title-one {
        font-size: 80px;
    }

    #works {
        padding: 0 80px;
    }

    #works .title {
        font-size: 28px;
        padding-top: 80px;
        padding-left: 100px;
    }

    .gallery .item{
        margin-bottom: 40px;
    }

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

    .item {
        width: calc(25% - 15px);
        /* 4列＋余白調整 */
    }

    #service {
        padding: 0 80px;
    }

    .menu-item {
        flex-direction: row;
        /* 横並び */
        justify-content: center;
        /* 中央寄せ */
        gap: 50px;
        /* メニュー間の横スペース */
    }

    .menu-item .menu {
        flex: 1;
        /* 均等幅 */
        min-width: 300px;
        /* 小さすぎないように */
    }

    #service .explain {
        font-size: 18px;
        margin-bottom: 40px;
    }

    #service .topic,
    #service .detail {
        font-size: 18px;
    }

    #service .detail {
        margin-bottom: 40px;
    }

    #service .attention {
        font-size: 14px;
        margin-bottom: 80px;
    }

    #flow {
        padding: 0 80px;
    }

    #flow .section-title-two {
        font-size: 80px;
    }

    #flow .title {
        font-size: 28px;
        padding-top: 80px;
    }

    #flow .flow-item {
        margin-bottom: 40px;
    }

    #flow .flow-item .flow-title {
        padding-left: 40px;
    }

    #flow .detail {
        font-size: 18px;
        padding-left: 40px;
    }

    #flow h3 {
        font-size: 20px;
    }

    #flow img {
        width: 30px;
    }

    .explain {
        font-size: 18px;
        margin-bottom: 80px;
    }

}