@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #000000;
}

html {
    font-size: 67.5%;
}

body {
    font-family: 'Shippori Mincho', serif;
    font-weight: 400;
    letter-spacing: 0.1rem;
    line-height: 2;
    animation: fadeIn .6s ease-in 0s 1 normal;
    background-color: #f6f5f3;
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    transition: .6s ease-in-out;
}

a:hover {
    opacity: 0.6;
    color: #a7c7c7;
}

img {
    max-width: 100%;
}

.text {
    line-height: 2;
    font-size: 1.3rem;
}

.more {
    margin-top: 24px;
    width: 70px;
}

.more a {
    font-weight: 700;
    font-family: 'Cormorant Upright', serif;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.more a::after {
    content: '';
    display: inline-block;
    margin-left: 10px;
    width: 40px;
    height: 1px;
    background-color: #000;
    transition: .6s ease-in-out;
}

.more a:hover::after {
    background-color: #a7c7c7;
}

.wrapper-top {
    padding-left: 15%;
    padding-right: 15%;
    margin-top: 200px;
    margin-bottom: 200px;
}

.section-title {
    font-weight: 500;
    font-family: 'Cormorant Upright', serif;
    font-size: 2.5rem;
    max-width: 300px;
    border-bottom: 1px solid #000;
}

.page-title {
    font-weight: 500;
    font-family: 'Cormorant Upright', serif;
    font-size: 2.5rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.content img {
    width: 250px;
    border-radius: 50%;
    margin-bottom: 48px;
    margin-left: auto;
    margin-right: auto;
    transition: .6s;
}

.content img:hover {
    transform: scale(1.1);
    transition: .6s;
}

/* ヘッダー */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    /* max-width: 1060px; */
    z-index: 100;
    background-color: #f6f5f3;
    border-bottom: 1px solid #000;
}

.header-rogo {
    position: fixed;
    width: 200px;
    height: auto;
    margin-left: 7%;
    margin-top: 30px;
    z-index: 280;
}

header ul li img {
    display: none;
}

header nav {
    display: flex;
    justify-content: right;
    padding: 0 7% 0 0;
    width: 100%;
    height: 90px;
    position: fixed;
    z-index: 250;
}

header nav ul {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

header li {
    margin-left: 24px;
}

header li a {
    font-family: 'Cormorant Upright', serif;
    font-weight: 500;
    font-size: 1.6rem;
    opacity: 1;
}

header .page-this {
    color: #a7c7c7;
}

.site-header-navbtn {
    display: none;
    position: fixed;
    top: 25px;
    right: 7%;
    width: 55px;
    height: 40px;
    background: none;
    border: none;
    z-index: 300;
}

.site-header-navbtn span,
.site-header-navbtn::before,
.site-header-navbtn::after {
    width: 45px;
    height: 1.5px;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 5px;
    transition: transform .6s;
}

.site-header-navbtn::before,
.site-header-navbtn::after {
    content: '';
}

.site-header-navbtn::before {
    transform: translateY(-8px);
}

.site-header-navbtn::after {
    transform: translateY(8px);
}

body.is-nav-open .site-header-navbtn span {
    transform: scaleX(0);
}

body.is-nav-open .site-header-navbtn::before {
    transform: translateY(0) rotate(45deg);
}

body.is-nav-open .site-header-navbtn::after {
    transform: translateY(0) rotate(-45deg);
}

@media screen and (max-width:768px) {
    header ul li img {
        display: block;
    }

    header nav {
        position: fixed;
        justify-content: center;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        transform: translateX(200%);
        transition: transform .7s;
        background-color: #f6f5f3;
        z-index: 290;
    }

    header nav ul {
        height: 100%;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    header nav ul li a {
        font-size: 1.6rem;
    }

    header nav ul li {
        margin-bottom: 3rem;
    }

    header nav ul li img {
        width: 150px;
        height: 100%;
        padding-bottom: 16px;
    }

    .site-header-navbtn {
        display: block;
    }

    body.is-nav-open header nav {
        transform: translateX(0);
    }

}


/* キービジュアル */
.key {
    margin-top: 200px;
    margin-bottom: 200px;
    display: block;
    padding-left: 15%;
    padding-right: 15%;
}

.slider {
    width: 100%;
    height: calc(100vh - 200px);
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
    /* border: #fff solid 4px; */
}

@media screen and (max-width:768px) {
    .key {
        padding-left: 0;
        padding-right: 0;
    }
}

/* フッター */
#footer {
    padding-bottom: 24px;
    background-color: #fff;
}

.instg {
    margin-right: auto;
    margin-left: auto;
    padding-top: 24px;
    padding-bottom: 8px;
    width: 24px;
}

.footer-copy {
    font-size: 1.2rem;
    text-align: center;
    padding-bottom: 0;
}


/* Top */
#gallery .section-title,
#about .section-title,
#note .section-title,
#shop .section-title,
#contact .section-title {
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}

#gallery .text,
#gallery h2,
#about .text,
#about h2,
#note .text,
#note h2,
#shop .text,
#shop h2,
#contact .text,
#contact h2 {
    text-align: center;
}

#gallery .more,
#about .more,
#note .more,
#shop .more,
#contact .more {
    margin-left: auto;
    margin-right: auto;
}


/* Gallery */
.page-content {
    display: flex;
    justify-content: space-between;
}