@charset "UTF-8";
/* ======================
common
====================== */

:root {
    --primary-white: #FFFFFF;
    --primary-black: #333;
    --primary-paleBlack: rgba(51, 51, 51, 0.50);
    --primary-green: #8F9C88;
    --primary-paleGreen: rgba(143, 156, 136, 0.70);
    --primary-yellow: #E0B34D;
    --primary-gray: #F4F4F4;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 
        "Zen Maru Gothic", sans-serif;
    font-style: normal;
    color: var(--primary-black);
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

.wrap,
.gallery-wrap {
    max-width: 91.4%;
    margin: 0 auto;
}

.space {
    display: inline-block;
    height: 0.8em; 
}

/* common pc */
@media screen and (min-width: 769px){
    .wrap {
        max-width: 1000px;
    }

    .gallery-wrap {
        max-width: 1280px;
    }
}

/* ======================
header
====================== */
.header-wrap {
    padding: 2px 4.2%;
    display: flex;
    justify-content: space-between;
}

.header-logo img {
    width: 50px;
    cursor: pointer;
}

/* header pc */
@media screen and (min-width: 769px){
    .header{
        width: 100%;
        height: 70px;
        background-color:  rgba(255, 255, 255, 0.50);
        z-index: 10;
    }

    body.is-top .header {
        position: fixed;
    }

    body:not(.is-top) .header {
        position: relative;
        background: var(--primary-white);
    }   

    .header-wrap {
        align-items: center;        
        max-width: 1000px;            
        margin: 0 auto;  
        padding: 0;             
    }

    .header-logo img {
        display: block;
        width: 53px;
    }
}

/* nav初期表示 */
.nav {
    background-color: var(--primary-white);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav-header {
    padding: 2px 4.2%;
    display: flex;
    justify-content: space-between;
}

.nav-logo img {
    width: 50px;
    cursor: pointer;
}

.nav-btn {
    cursor: pointer;
}

.nav-wrap {
    padding: 64px 4.2% 0 4.2%;
}

.nav-item {
    font-size: 1.4rem;
    letter-spacing: 0.14rem;
    text-align: center;
    margin-top: 36px;
}

.nav-item:first-of-type {
    margin-top: 0;
}

.nav-item:last-of-type {
    position: relative;
    padding-bottom: 40px;
}

.nav-item:last-of-type::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 55.5%;
    height: 1px;
    background-color:var(--primary-paleBlack) ;
}

.item-en {
    font-family: "Jost", sans-serif;
    font-size: 1.0rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
}

@media screen and (min-width: 769px) {
    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translateX(0);
    }

    .nav-header {
        display: none;
    }
    
    .nav-logo img {
        display: none;
    }

    .nav-wrap {
        padding: 0;
        display: flex;
        align-items: center;
    }

    .nav-item {
        margin-top: 0;
        margin-left: 42px;
        font-size: 1.6rem;
        letter-spacing: 0.16rem;
        line-height: 1.2;
    }

    .nav-item:last-of-type {
        padding: 0;
        position: static;
    }

    .nav-item:last-of-type::after {
        display: none;
    }

    .item-en {
        font-size: 1.2rem;
        line-height: 1;
    }
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}

.header-btn {
    display: block;
    cursor: pointer;
}

@media screen and (min-width: 769px) {
    .header-btn{
        display: none;
    } 
}

/* title */
.title-ja {
    font-size: 2.2rem;
    line-height: 1; 
    letter-spacing: 0.4rem;
    order: 1;
    position: relative;
}

.title-ja::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 53%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background-color:var(--primary-green);
}

.title-en {
    font-family: "Jost", sans-serif;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.4rem;
    text-orientation: upright;
    padding-top: 6px;
}

/* title pc */
@media screen and (min-width: 769px){
    .title-ja {
        font-size: 2.8rem;
        letter-spacing: 0.6rem;
    }

    .title-ja::before {
        width: 35px;
    }

    .title-en {
        font-size: 1.4rem;
        padding-top: 10px;
    }
}

/* btn */
.detail-btn {
    padding: 170px 28px 0 0;
    text-align: right;
}

.link{
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.link-circle {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    overflow: hidden;
}

.link-circle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--primary-white);
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.link:hover .link-circle::after {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
}

.link-label {
    position: relative;
    display: block;
    font-size: 1.4rem;
    line-height: 1; 
    margin-left: -28px;
}

/* btn pc */
@media screen and (min-width: 769px){
    .detail-btn {
        padding: 194px 80px 0 0;
    }

    .link-circle {
        width: 60px;
        height: 60px;
    }

    .link-label {
        font-size: 1.6rem;
        margin-left: -20px;
    }
}

/* page top */
.top-title {
    padding: 90px 0 90px 0;
}

.top-ja {
    color: var(--primary-white);
    text-align: center;
    font-size: 2.4rem;
    line-height: 1; 
    letter-spacing: 0.24rem;
    padding-top: 24px;
    border-top: 1px solid var(--primary-white);
}

.top-en {
    font-family: "Jost", sans-serif;
    color: var(--primary-white);
    text-align: center;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1; 
    letter-spacing: 0.36rem;
    padding: 16px 0 24px 0;
    border-bottom: 1px solid var(--primary-white);
}

/* page top pc */
@media screen and (min-width: 769px){
    .top-ja {
        font-size: 3.2rem;
        padding-top: 13px;
    }

    .top-en {
        font-size: 2.0rem;
        padding: 20px 0 15px 0;
    }
}

/* ======================
footer
====================== */
.footer {
    background-image: url(../images/footer-sp.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.site-map {
    padding-top: 72px;
}

.footer-logo {
    width: 5.8vh;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 56px;
}

.footer-contact {
    color: var(--primary-white);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1; 
    letter-spacing: 0.11rem;
    position: relative;
}

.footer-contact address {
    line-height: 1.5;
    padding-top: 16px;
}

.sp-none {
    display: none;
}

.pc-none {
    display: inline;
    white-space: pre;
}

.footer-info {
    color: var(--primary-white);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.11rem;
}

.footer-info dd {
    padding-top: 8px;
}

.time {
    padding-top: 20px;
}

.date {
   padding-top: 24px; 
}

.footer-sns {
    width: 2.8vh;
    margin-top: 29px;
    cursor: pointer;
    position: absolute;
    left: 17px;
}

.copy {
    color: var(--primary-white);
    font-family: "Jost", sans-serif;
    font-size: 1.0rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    margin-top: 109px;
    padding-bottom: 12px;
    position: relative;
}

.copy::before {
    content: "";
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    width: 94.7%;
    height: 1px;
    background-color:var(--primary-white);
}

/* footer pc */
@media screen and (min-width: 769px) {
    .footer {
        background-image: url(../images/footer.jpg);
    }

    .site-map {
        padding-top: 144px;
    }

    .footer .wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1000px;
        margin: 0 auto;
    }

    .footer-logo {
        flex: 0 0 auto;
        display: flex;
        margin: 0 20px;
        width: 8.6vh
    }

    .footer-content {
        display: flex;
        margin: 0; 
    }

    .footer-contact {
        font-size: 1.4rem;
        margin-right: 90px;
    }

    .footer-info {
        display: flex;
        flex: 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        font-size: 1.4rem;
    }

    .spBr {
        display: none;
    }

    .sp-none {
        display: inline;
    }

    .pc-none {
        display: none;
    }

    .time {
        display: flex;
        gap: 20px;
        padding: 0;
    }

    .date {
        display: flex;
        gap: 36px;
        padding-top: 8px;
    }

    .footer-info dd {
        padding: 0;
    }

    .footer-sns {
        order: 2;
        position: static;
        margin-top: 35px;
    }

    .copy {
        margin-top: 119px;
        padding-bottom: 24px;
    }

    .copy::before {
        bottom: 58px;
        width: 97.3%;
    }
}

/* fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    visibility: hidden;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
    


















