@charset "utf-8";

/* HEADER */
header {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #000;
    padding: 0 0 0 20px;

    display: flex;
    flex-wrap: wrap;
    transition: all 0.5s linear;
}

@media screen and (max-width: 768px) {
    header {
        height: 70px;
        padding: 0 0 0 10px;
    }
}


/* HEADER LOGO */
header .logo {
    max-width: 221px;
    width: 26%;
}

header .logo a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

header .logo a img {
    width: 100%;
}

@media screen and (max-width: 768px) {
    header .logo {
        width: 191px;
    }
}

/* HEADER LANG JP */
header .langJp {
    position: relative;
    color: #D0B782;
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2%;
    line-height: 1;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
    
    position: absolute;
    right: 90px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

header .langJp::before {
    display: block;
    content: '';
    width: 20px;
    height: 14px;
    background: url(../img/common/flag.svg) no-repeat top left / cover;
}

header .langJp:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    header .langJp {
        display: none;
    }

    header .langJp::before {
        width: 22px;
        height: 15px;
        background-image: url(../img/common/flag-black.svg);
    }
}





/* HEADER MENU */
header .headWrap {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);

    border-radius: 0;
    box-shadow: none;
    border: 0;
    bottom: 0;
    right: 0;
    overflow-y: auto;
    background: #D0B782;
    transform: translateX(70%);
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    align-items: flex-start;
    transition: .8s;    
}

header .headWrap.is-show {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}

header .headWrap .menu {
    margin-top: 5rem;
    width: 100%;
}

header .headWrap .menu ul {
    display: block;
    padding: 2rem 0;
    height: 100%;
    width: 100%;
    text-align: center;
}

header .headWrap .menu ul li a {
    margin: 0 2rem;
    font-family: 'Roboto', sans-serif;
    position: relative;
    line-height: 1;
    letter-spacing: 0.05em;
    transition: all 0.3s;

    display: block;
    padding: 1.5rem 0;
    color: #111111;
    font-weight: bold;
    font-size: 1.8rem;
}
header .headWrap .menu ul li a:hover,
header .headWrap .menu ul li a.is-active {
    color: #ffffff;
}

@media screen and (max-width: 768px) {
    header .headWrap {
        top: 70px;
        height: calc(100vh - 70px);
    }

    header .headWrap .menu ul li .langJp {
        display: flex;
        position: static;
        transform: translateY(0);
        -webkit-transform: translateY(0);        
    }

}
/* END HEADER */





/* BTN MENU */
.btnMenu {
    width: 80px;
    height: 80px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.btnMenu a {
    width: 28px;
    height: 18px;
    display: block;
    position: relative;
}

.btnMenu span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #D0B782;
    transition: .4s;
}

.btnMenu span:nth-of-type(1) {
    top: 0;
}

.btnMenu span:nth-of-type(2) {
    top: 8px;
}

.btnMenu span:nth-of-type(3) {
    top: 16px;
}

.btnMenu.is-close span:nth-of-type(1) {
    top: 8px;
    transform: rotate(45deg);
}

.btnMenu.is-close span:nth-of-type(2) {
    opacity: 0;
}

.btnMenu.is-close span:nth-of-type(3) {
    top: 8px;
    transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
    .btnMenu {
        width: 70px;
        height: 70px;
    }
}

/* END BTN MENU */





/* footer */
footer {
    padding: 50px 0;
    background: #242424;
    text-align: center;
}

footer .fLogo {
    display: block;
    max-width: 197px;
    width: 100%;
    margin: 0 auto;
}

footer .fLogo img {
    width: 100%;
}

footer .btnContact {
    font-family: 'Roboto', sans-serif;
    width: 200px;
    height: 48px;
    border-radius: 60px;
    justify-content: center;
    align-items: center;
    margin: 2rem auto 1.5rem;
    background: #ffffff;
    color: #000000;
    transition: all 0.3s;
}

footer .btnContact:hover {
    background: #D0B782;
}

footer .footListBtn {
    justify-content: center;
    gap: 20px;
}

footer .footListBtn a {
    color: #ffffff;
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    line-height: 1;
}

footer .footListBtn a::after {
    content: '';
    width: 0;
    height: 2px;
    position: absolute;
    bottom: -5px;
    left: 0;
    background: #ffffff;
    transition: width 0.3s;
}

footer .footListBtn a:hover::after {
    width: 100%;
}

footer .copyRight {
    font-family: "Playfair Display", sans-serif;
    font-size: 1.1rem;
    text-align: center;
    color: #ffffff;
    margin: 5rem 0 0;
}
/* end footer */






/* PAGETOP */
#pageTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: #fff;
    text-align: center;
    cursor: pointer;
    z-index: 8;
    display: none;
    box-shadow: 0px 0px 2rem 0px rgba(0, 0, 0, .3);
}

#pageTop:after {
    content: '';
    background: #000;
    mask: url("../img/common/pagetop.svg") no-repeat top left/100% 100%;
    -webkit-mask: url("../img/common/pagetop.svg") no-repeat top left/100% 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    height: 18px;
    width: 34px;
    display: block;
}

#pageTop:hover {
    background: #D0B782;
}

#pageTop:hover:after {
    background: #fff;
}

@media screen and (max-width: 768px) {
    #pageTop {
        right: 10px;
        bottom: 20px;
    }
}

/* END PAGETOP */



/* Animate */
@media screen {
    .inview {
        opacity: 0;
        transition: 1.5s;
    }

    .inview.is-view {
        opacity: 1;
    }

    .fade-in {
        transition: opacity 2s;
    }
    
    .fade-up {
        transform: translateY(30px);
    }

    .fade-up.is-view {
        transform: translateY(0);
    }

    .fade-left {
        transform: translateX(30px);
    }

    .fade-left.is-view {
        transform: translateX(0);
    }

    .fade-right {
        transform: translateX(-30px);
    }

    .fade-right.is-view {
        transform: translateX(0);
    }

    .zoom-in {
        overflow: hidden;
    }

    .zoom-in img {
        transform: scale(1.1);
        opacity: 0;
        transform-origin: top;
        transition: 1.5s;
    }

    .zoom-in.is-view img {
        transform: scale(1);
        opacity: 1;
    }

    .slide-left {
        transition: -webkit-clip-path 3s cubic-bezier(.19, 1, .22, 1) .1s;
        transition: clip-path 3s cubic-bezier(.19, 1, .22, 1) .1s;
        transition: clip-path 3s cubic-bezier(.19, 1, .22, 1) .1s, -webkit-clip-path 3s cubic-bezier(.19, 1, .22, 1) .1s;
        transition-delay: 0.1s, 0.1s;
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 0 0 100%);
    }

    .slide-left.is-view {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }

    .slide-right {
        transition: -webkit-clip-path 3s cubic-bezier(.19, 1, .22, 1) .1s;
        transition: clip-path 3s cubic-bezier(.19, 1, .22, 1) .1s;
        transition: clip-path 3s cubic-bezier(.19, 1, .22, 1) .1s, -webkit-clip-path 3s cubic-bezier(.19, 1, .22, 1) .1s;
        transition-delay: 0.1s, 0.1s;
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
    }

    .slide-right.is-view {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
}


/* common */
main {
    overflow: hidden;
    margin-top: 80px;
    position: relative;
}

main::after {
    content: '';
    width: 1px;
    height: 0;
    background: #3D3D3D;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    top: 0;
    z-index: -1;
    transition: all 3s;
}

main.is-show::after {
    height: 100%;
}

.container {
    max-width: 1080px;
    width: calc(100% - 60px);
    margin: 0 auto;
}

.flexBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.fontPlayfair {
    font-family: 'Playfair Display', sans-serif;
}

.contents {
    padding: 5% 0;
}

.mvChild h2 {
    overflow: hidden;
    padding: 4% 2rem;    
    text-align: center;
}

.mvChild img {
    width: 100%;
}

.txt18 {
    font-size: 1.8rem;
}

.center {
    text-align: center;
}

.mTit {
    font-size: 5.6rem;
    line-height: 1.2;
}

.mTit02 {
    font-size: 4.8rem;
}

.mTit03 {
    font-size: 3.6rem;
}

.mTit04 {
    font-size: 2.8rem;
}

.mTit05 {
    font-size: 2.2rem;
}

@media screen and (max-width: 1080px) {
    .mTit {
        font-size: 4vw;
    }

    .mTit02 {
        font-size: 3vw;
    }

    .mTit03 {
        font-size: 2.8vw;
    }

    .mTit04 {
        font-size: 2.4vw;
    }

    .mTit04 {
        font-size: 2.2vw;
    }
}

@media screen and (max-width: 768px) {
    main {
        margin-top: 70px;
    }

    .mTit {
        font-size: min(8vw, 5.6rem);
    }

    .mTit02 {
        font-size: min(7vw, 4.8rem);
    }

    .mTit03 {
        font-size: min(5.2vw, 3.6rem);
    }

    .mTit04 {
        font-size: min(5vw, 2.8rem);
    }

    .mTit05 {
        font-size: min(4vw, 2.2rem);
    }

    .contents {
        padding: 6rem 0;
    }

    .mvChild h2 {
        padding: 4rem 2rem;
    }

    .mvChild img {
        height: 25vh;
        object-position: center;
        object-fit: cover;
    }

    .txt18 {
        font-size: 1.6rem;
    }

}

/* end common */

/* animate MV Tit */
.animateTit {
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
}

.animateTit span {
  display: block;
  transform: translate(100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
}

.animateTit.-visible,
.animateTit.-visible span {
  transform: translate(0, 0);
}
/* end animate MV Tit */

/* animate  tit content */
.animate {
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
}

.animate span {
  display: block;
  transform: translate(100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
}

.animate.is-view,
.animate.is-view span {
  transform: translate(0, 0);
}
/* end animate tit content */