@charset "UTF-8";

/* -------------------------------
共通
------------------------------- */
body{
    font-family: futura-pt, futura-pt-bold, noto-sans, sans-serif;
    color: #452e13;
    font-feature-settings: "palt";
    background-color: #fffdf3;
}
img{
    width: 100%;
}
.wrapper{
    display: block;
    max-width: 1000px;
    margin: 0 auto;
}
.title{
    font-size: 48px;
    letter-spacing: 0.05rem;
    font-weight: bold;
    color: #452e13;
    -webkit-text-fill-color: #ffffff;
    -webkit-text-stroke: 1px #452e13;
}
.subtitle{
    font-size: 24px;
    letter-spacing: 0.15rem;
    line-height: 1.66;
    font-weight: bold;
}
.text{
    font-size: 16px;
    letter-spacing: 0.18rem;
    line-height: 2.5;
}
.ja-title{
    font-size: 20px;
    letter-spacing: 0.15rem;
    font-weight: bold;
    padding-top: 8px;
}
.pc-none{
    display: none;
}
.sp-none{
    display: block;
}
/* -------------------------------
header
------------------------------- */
#header{
    display: block;
    max-width: 1250px;
    margin: 0 auto;
}
.header__inner{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 48px 0 48px 0;
    margin-left: 56px;
    margin-right: 56px;
}
.logo{
    display: block;
    width: 150px;
}
.header__nav{
    display: block;
    padding-left: 38%;
    padding-right: 32px;
}
.header__nav ul{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}
.nav__btn{
    display: block;
    color: #452e13;
    font-size: 14px;
    font-weight: bold;
    width: 88px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    position: relative;
    margin: 0 auto;
}
.nav__btn .nav__bg{
    width: 8px;
    height: 8px;
    left: 50%;
    top: 140%;
}
.nav__btn span{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    transform-style: preserve-3d;
    transition: 0.5s;
}
.nav__btn .nav__default{
    text-align: center;
    transform-origin: 0 50% 15px;
    z-index: 9999;
}
.nav__btn:hover .nav__default{
    transform: rotateX(-90deg);
}
.nav__btn .nav__afterRotate{
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    transform: rotateX(90deg);
    transform-origin: 0 50% 15px;
    z-index: 9999;
}
.nav__btn:hover .nav__afterRotate{
    transform: rotateX(0deg);
}
.nav__btn:hover .nav__bg{
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e5e1da;
    top: 100%;
    left: 50%;
    z-index: 1;
    transform-style: none;
    transition: none;
}
.text__yellow{
    color: #d8bf77;
}
.nav-insta{
    display: block;
    width: 36px;
}
/* -------------------------------
btn-prev
------------------------------- */
.btn-prev__inner{
    display: flex;
    width: 200px;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
}
.btn{
    display: block;
    color: #452e13;
    font-size: 20px;
    font-weight: bold;
    width: 120px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: relative;
    margin: 0 auto;
}
.btn-prev__inner .btn{
    margin: 0 0 0 auto;
}
.btn span{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    transform-style: preserve-3d;
    transition: 0.5s;
}
.btn-prev__inner .btn__prev-text--default{
    text-align: right;
    transform-origin: 0 50% 15px;
}
.btn-prev__inner:hover .btn__prev-text--default{
    transform: rotateX(-90deg);
}
.btn-prev__inner .btn__prev-text--fterRotate{
    display: block;
    width: 100%;
    height: 100%;
    text-align: right;
    transform: rotateX(90deg);
    transform-origin: 0 50% 15px;
}
.btn-prev__inner:hover .btn__prev-text--fterRotate{
    transform: rotateX(0deg);
}
.arrow-left{
    z-index: auto;
    position: absolute;
    left: 0;
    overflow: hidden;
    width: 40px;
}
.arrow-left img{
    display: block;
    width: 40px;
    line-height: 40px;
    position: relative;
    top: 0;
}
.arrow-left .arrow-left__after{
    translate: 220% 0;
    opacity: 1;
    width: 40px;
    line-height: 40px;
    top: -8px;
}
.arrow-left__before,
.arrow-left__after{
    transition: translate 0.5s cubic-bezier(0, 0.55, 0.45, 1);
    opacity: 0.4s ease-out;
}
.btn-prev__inner:hover .arrow-left .arrow-left__after{
    translate: 0;
}
.btn-prev__inner:hover .arrow-left .arrow-left__before{
    translate: -220% 0;
}    
.line-left{
    width: 100%;
    height: 3px;
    background: #e5e1da;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    content: "";
    transform: rotate(180deg);
}
.line-left .line-left__inner{
    height: 100%;
    background: #452e13;
    position: absolute;
    animation: progress-left 3s normal;
    animation-fill-mode: backwards;
    animation-direction: reverse;
    animation-iteration-count: infinite;
}
@keyframes progress-left{
    0%{
        width: 100%;
    }
    100%{
        width: 0%;
    }
}
/* -------------------------------
btn-next
------------------------------- */
.btn-next__inner{
    display: flex;
    width: 200px;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.btn-next__inner--long{
    width: 285px;
}
.btn{
    display: block;
    color: #452e13;
    font-size: 20px;
    font-weight: bold;
    width: 120px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: relative;
    margin: 0 auto;
}
.btn-next__inner .btn{
    margin: 0 auto 0 0;
}
.btn span{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    transform-style: preserve-3d;
    transition: 0.5s;
}
.btn-next__inner .btn__next-text--default{
    text-align: left;
    transform-origin: 0 50% 15px;
}
.btn-next__inner:hover .btn__next-text--default{
    transform: rotateX(-90deg);
}
.btn-next__inner .btn__next-text--fterRotate{
    display: block;
    width: 100%;
    height: 100%;
    text-align: left;
    transform: rotateX(90deg);
    transform-origin: 0 50% 15px;
}
.btn-next__inner:hover .btn__next-text--fterRotate{
    transform: rotateX(0deg);
}
.arrow-right{
    z-index: auto;
    position: absolute;
    right: 0;
    overflow: hidden;
    width: 40px;
}
.arrow-right img{
    display: block;
    width: 40px;
    line-height: 40px;
    position: relative;
    top: 0;
}
.arrow-right .arrow-right__after{
    translate: -220% 0;
    opacity: 1;
    width: 40px;
    line-height: 40px;
    top: -8px;
}
.arrow-right__before,
.arrow-right__after{
    transition: translate 0.5s cubic-bezier(0, 0.55, 0.45, 1);
    opacity: 0.4s ease-out;
}
.btn-next__inner:hover .arrow-right .arrow-right__after{
    translate: 0;
}
.btn-next__inner:hover .arrow-right .arrow-right__before{
    translate: 220% 0;
}    
.line-right{
    width: 100%;
    height: 3px;
    background: #e5e1da;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    content: "";
}
.line-right .line-right__inner{
    height: 100%;
    background: #452e13;
    position: absolute;
    animation: progress 3s normal;
    animation-fill-mode: backwards;
    animation-iteration-count: infinite;
}
@keyframes progress{
    0%{
        width: 0;
    }
    100%{
        width: 100%;
    }
}
/* -------------------------------
btn-next__ja
------------------------------- */
.btn-text__ja{
    display: block;
    color: #452e13;
    font-size: 20px;
    font-weight: bold;
    width: 200px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: relative;
    margin: 0 auto;
}
/* -------------------------------
btn-bglist
------------------------------- */
.btn-bglist__inner{
    display: block;
}
.btn-bglist__inner .btn__bglist-text--default{
    text-align: center;
    transform-origin: 0 50% 15px;
}
.btn-bglist__inner:hover .btn__bglist-text--default{
    transform: rotateX(-90deg);
}
.btn-bglist__inner .btn__bglist-text--fterRotate{
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    transform: rotateX(90deg);
    transform-origin: 0 50% 15px;
}
.btn-bglist__inner:hover .btn__bglist-text--fterRotate{
    transform: rotateX(0deg);
}
.btn-bglist svg{
    display: block;
    width: 200px;
    position: relative;
    top: -70px;
    right: 30px;
    z-index: -1;
}
.btn-bglist__inner:hover .btn-bglist__img{
    fill:#cfd386;  
}
@keyframes loop-slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
/* -------------------------------
contact
------------------------------- */
#contact{
    background-color: #d8bf77;
    margin-top: 120px;
}
.contact-title{
    text-align: center;
    padding-top: 88px;
}
.contact-text{
    text-align: center;
    padding-top: 40px;
}
.contact-img svg{
    display: block;
    width: 300px;
    margin: 0 auto;
    padding-top: 40px;
}
.contact__btn{
    width: 200px;
    padding-top: 48px;
    padding-bottom: 80px;
    margin: 0 auto;
}
.contact-img01{
    animation: rotate_anime 30s linear infinite; 
    transform-origin: 50% 50%;
}
@keyframes rotate_anime {
    0%{
        transform: rotateX(0deg) rotate(0deg); 
    }
    100%{
        transform: rotateX(0deg) rotate(360deg);
    }
}
/* -------------------------------
footer
------------------------------- */
#footer{
    display: block;
    max-width: 1250px;
    margin: 0 auto;
}
.footer__wrapper{
    margin-left: 56px;
    margin-right: 56px;
}
.footer__logo{
    display: block;
    width: 150px;
    padding-top: 80px;
}
.footer__inner{
    padding-top: 40px;
}
.footer__list{
    display: flex;
    text-align: center;
    gap: 56px;
}
.footer__text{
    font-size: 14px;
    font-weight: bold;
}
.text__gray{
    color: #e0ded7;
}
.footer-insta{
    display: block;
    width: 39px;
    padding-top: 28px;
}
.copyright{
    font-size: 12px;
    font-weight: bold;
    padding-top: 80px;
    padding-bottom: 72px;
}
.top-btn{
    width: 120px;
    position: fixed;
    right: 20px;
    bottom: 20px;
}
/* -------------------------------
breadcrumb
------------------------------- */
.breadcrumb__wrapper{
    display: block;
    max-width: 1000px;
    margin: 72px auto 48px auto;
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    font-size: 14px;
    font-weight: bold;
}
.breadcrumb__line{
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
}
.breadcrumb li:not(:last-of-type)::after {
    content: "›";
    margin: 0 .6em;
    color: #452e13;
}
/* -------------------------------
nocontact-line
------------------------------- */
.nocontact-line{
    display: block;
    width: 100%;
    border-bottom: solid #d8bf77 5px;
}
.nocontact-line__inner{
    margin-top: 136px;
    margin-bottom: 48px;
}


/* -------------------------------
769px-1050px
------------------------------- */
@media screen and (max-width: 1050px) {
    .wrapper{
        padding-left: 16px;
        padding-right: 16px;
    }
    /* -------------------------------
    header
    ------------------------------- */
    #header{
        max-width: 1000px;
    }
    .header__inner{
        margin-left: 16px;
        margin-right: 16px;
    }
    .header__nav{
        padding-left: 20%;
    }
    /* -------------------------------
    breadcrumb
    ------------------------------- */
    .breadcrumb__wrapper{
        padding-left: 16px;
    }
}


/* -------------------------------
-768px
------------------------------- */
@media screen and (max-width: 768px) {
    /* -------------------------------
    共通
    ------------------------------- */
    .wrapper{
        max-width: 100%;
        margin: 0 auto;
        padding-right: 16px;
        padding-left: 16px;
    }
    .title{
        font-size: 32px;
        letter-spacing: 0.05rem;
    }
    .text{
        font-size: 14px;
        letter-spacing: 0.18rem;
        line-height: 2.5;
    }
    .ja-title{
        font-size: 16px;
        letter-spacing: 0.15rem;
        font-weight: bold;
        padding-top: 8px;
    }
    .pc-none{
        display: block;
    }
    .sp-none{
        display: none;
    }
    /* -------------------------------
    header
    ------------------------------- */
    #header{
        display: block;
        max-width: 100%;
        margin: 0 auto;
    }
    .header__inner{
        display: block;
        padding: 24px 0 24px 0;
        margin-left: 16px;
        margin-right: 0px;
    }
    .logo{
        display: block;
        width: 127px;
    }
    .header__nav{
        display: none;
        padding-left: 0;
        padding-right: 0;
    }
    .nav-insta{
        display: none;
        width: 0;
    }
    .sp-header{
        display: block;
        width: 100%;
    }
    .sp-header__btn{
        display: flex;
        width: 100%;
        height: 60px;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 0;
        border-top: solid 2px #fffdf3;
        z-index: 9999;
    }
    .sp-nav__insta,
    .sp-nav__hamburger,
    .sp-nav__top{
        display: block;
        width: calc(100% / 3);
        height: 60px;
        background-color: #d8bf77;
        text-align: center;
        cursor: pointer;
    }
    .sp-nav__line--left{
        height: 60px;
        border-right: solid 1px #fffdf3;
        position: absolute;
        top: -1px;
    }
    .sp-nav__line--right{
        height: 60px;
        border-right: solid 1px #fffdf3;
        position: absolute;
        top: -1px;
        right: 33%;
    }
    .sp-nav__insta img{
        display: block;
        width: 28px;
        margin: 16px auto;
    }
    .sp-header__text{
        font-size: 20px;
        color: #fffdf3;
        font-weight: bold;
        padding-top: 6px;
    }
    .sp-nav__hamburger .sp-header__text{
        display: inline-block;
        padding-left: 20%;
    }
    .sp-nav__hamburger span{
        width: 18px;
        height: 2px;
        background-color: #fffdf3;
        position: absolute;
        top: 29px;
        transition: .3s;
    }
    .sp-nav__hamburger span::before{
        width: 18px;
        height: 2px;
        background-color: #fffdf3;
        content: "";
        position: absolute;
        top: -8px;
        left: 0;
        transition: .3s;
    }
    .sp-nav__hamburger span::after{
        width: 18px;
        height: 2px;
        background-color: #fffdf3;
        content: "";
        position: absolute;
        top: 8px;
        left: 0;
        transition: .3s;
    }
    .sp-nav__top img{
        width: 17px;
        padding-top: 5px;
    }
    .sp-nav__top-inner{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }
    .sp-header__nav{
        display: none;
        width: 100%;
        height: 100vh;
        background-color: #fffdf3;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 9998;
        padding-top: 80px;
    }
    .sp-nav__logo{
        display: block;
        width: 150px;
        padding-left: 48px;
        padding-top: 32px;
    }
    .sp-nav__list{
        display: flex;
        width: 100%;
        height: 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 24px;
        padding-top: 24px;
    }
    .sp-nav__item{
        width: 60%;
        text-align: left;
        border-top: solid 1px #452e13;
    }
    .sp-nav__list li:last-child{
        border-bottom: solid 1px #452e13;
    }
    .sp-nav__text--en{
        font-size: 28px;
        letter-spacing: 0.05rem;
        line-height: 1;
        text-align: left;
        font-weight: bold;
        padding-left: 48px;
        padding-top: 16px;
    }
    .sp-nav__text--ja{
        font-size: 16px;
        letter-spacing: 0.15rem;
        line-height: 1;
        text-align: left;
        font-weight: bold;
        padding-left: 48px;
        padding-top: 8px;
    }
    .sp-nav__text--last{
        padding-bottom: 24px;
    }
    .open span{
        background-color: transparent;
    }
    .open span::before{
        transform: rotate(45deg);
        top: 0;
    }
    .open span::after{
        transform: rotate(-45deg);
        top: 0;
    }
    /* -------------------------------
    btn-prev
    ------------------------------- */
    .btn-prev__inner{
        width: 170px;
        gap: 24px;
    }
    .btn{
        font-size: 20px;
        width: 120px;
        height: 40px;
        line-height: 40px;
    }
    .arrow-left{
        width: 24px;
    }
    .arrow-left img{
        width: 24px;
        line-height: 40px;
    }
    .arrow-left .arrow-left__after{
        translate: 220% 0;
        opacity: 1;
        width: 24px;
        line-height: 40px;
        top: -8px;
    }
    .line-left{
        width: 100%;
        height: 2px;
    }
    /* -------------------------------
    btn-next
    ------------------------------- */
    .btn-next__inner{
        width: 170px;
    }
    .btn-next__inner--long{
        width: 220px;
    }
    .btn{
        font-size: 20px;
        width: 120px;
        height: 40px;
        line-height: 40px;
    }
    .arrow-right{
        width: 24px;
    }
    .arrow-right img{
        width: 24px;
        line-height: 40px;
    }
    .arrow-right .arrow-right__after{
        translate: -220% 0;
        opacity: 1;
        width: 24px;
        line-height: 40px;
        top: -8px;
    }
    .line-right{
        width: 100%;
        height: 2px;
    }
    /* -------------------------------
    btn-next__ja
    ------------------------------- */
    .btn-text__ja{
        font-size: 20px;
        width: 180px;
        height: 40px;
        line-height: 40px;
    }
    /* -------------------------------
    btn-bglist
    ------------------------------- */
    .btn-bglist svg{
        display: block;
        width: 150px;
        position: relative;
        top: -70px;
        right: 30px;
        z-index: -1;
    }
    /* -------------------------------
    contact
    ------------------------------- */
    #contact{
        margin-top: 96px;
    }
    .contact-title{
        padding-top: 40px;
    }
    .contact-text{
        padding-top: 32px;
    }
    .contact-img svg{
        display: block;
        width: 160px;
        margin: 0 auto;
        padding-top: 32px;
    }
    .contact__btn{
        width: 180px;
        padding-top: 32px;
        padding-bottom: 72px;
        margin: 0 auto;
    }
    /* -------------------------------
    footer
    ------------------------------- */
    #footer{
        display: block;
        max-width: 100%;
        margin: 0 auto;
    }
    .footer__wrapper{
        margin-left: 16px;
        margin-right: 16px;
    }
    .footer__logo{
        display: block;
        width: 127px;
        padding-top: 40px;
    }
    .footer__inner{
        display: block;
        width: 250px;
        padding-top: 40px;
    }
    .footer__list{
        display: flex;
        width: 100%;
        text-align: left;
        flex-wrap: wrap;
        gap: 16px;
    }
    .footer__item{
        display: block;
        width: calc((100% - 16px) / 2);
    }
    .footer__text{
        font-size: 16px;
        font-weight: bold;
    }
    .footer-insta{
        display: none;
    }
    .copyright{
        font-size: 12px;
        font-weight: bold;
        padding-top: 40px;
        padding-bottom: 88px;
    }
    .top-btn{
        display: none;
    }
    /* -------------------------------
    breadcrumb
    ------------------------------- */
    .breadcrumb__wrapper{
        display: block;
        max-width: 100%;
        margin: 40px auto 32px auto;
    }
    .breadcrumb {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        font-size: 16px;
        font-weight: bold;
    }
    /* -------------------------------
    nocontact-line
    ------------------------------- */
    .nocontact-line{
        display: block;
        width: 100%;
        border-bottom: solid #d8bf77 2px;
    }
    .nocontact-line__inner{
        margin-top: 96px;
        margin-bottom: 48px;
    }
    /* -------------------------------
    btn-bglist
    ------------------------------- */
    .work-post__btn--bglist-sp{
        display: block;
        margin: 106px auto 0 auto;
    }
    .btn-bglist__inner{
        display: block;
    }
    .btn-bglist svg{
        display: block;
        width: 150px;
        position: relative;
        top: -55px;
        right: 10px;
        z-index: -1;
    }
    .btn-bglist__inner:hover .btn-bglist__sp-img{
        fill:#cfd386;  
    }
    @keyframes loop-slide {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-100%);
        }
    }
}