@charset "UTF-8";

main {
    overflow-x: inherit !important;
}

.content {
    width: 100%;
}

/* Main Visual */
.mainVisual {
    position: relative;
    z-index: 1;
    width: 100%;
}

.mainVisual-wrap {
    width: 100%;
/*    pointer-events: none;*/
    position: relative;
    background: #000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    line-height: 1;
}

.mainVisual-wrap::after{
    content: "";
    display: block;
    padding-bottom: 56.25%;
}
.mainVisual-wrap video {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.mainVisual-tit {
    position: absolute;
    line-height: 1;
    z-index: 2;
}

@media screen and (min-width: 768px) {
    .mainVisual-tit {
        width: 28.5%;
        max-width: 547px;
        top: 34%;
        left: 10%;
    }

    .mainVisual-wrap .capIn {
        font-size: 12px;
    }
}

@media only screen and (max-width: 1440px) and (orientation: landscape) {
    .mainVisual-wrap::after {
        padding-bottom: 100vh;
    }

    .mainVisual-wrap video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

}

@media screen and (max-width: 768px) {
    .mainVisual-wrap::after {
        padding-bottom: 100vh;
    }

    .mainVisual-wrap video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mainVisual-tit {
        width: 65%;
        top: 35%;
        left: 5%;
    }
}

.btn-control{
    position: absolute;
    top: 120px;
    right: 10px;
    background: #222;
    color: #fff;
    width: 100px;
    font-size: 14px;
    line-height: 1.1;
    padding: 10px 0;
    z-index: 3;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.btn-control:hover{
    background: #000;
}

@media screen and (max-width: 768px) {
    .btn-control{top: 90px;}
}

/* Contents01 */
.contents01-trigger {
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    pointer-events: none;
}

.contents01-trigger_item {
    width: 1px;
    height: 200vh;
}

.contents01-body {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.contents01-pin {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
}

.contents01 {
    position: relative;
    z-index: 1;
    background: #d6d9d7;
}

.js-block01 {
    width: 100%;
    position: absolute;
    top: 0;
    opacity: 0;
    left: 0;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.js-block01.is-active {
    pointer-events: auto;
}

@media screen and (max-width: 768px) {
    .contents01-pin {
        height: 100vh;
        height: 100svh;
        height: calc(var(--vh, 1vh) * 100);
    }
}

/* Message */
.message {
    color: #a9845d;
    background: #d6d9d7;
}

.message-wrap {
    padding: 70px 0 0 0;
    height: 100vh;
    position: relative;
}

.message-tit {
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 0.15em;
    font-style: italic;
    font-weight: 500;
    font-family: "Crimson Text", serif;
    margin: 0 0 70px;
    text-align: center;
}

.message-tit span {
    opacity: 0;
    transition: 0.2s ease-out;
}

.message.is-show .message-tit span {
    opacity: 1;
}

.message-txt span,
.message-desc span {
    opacity: 0;
    transition: 0.2s ease-out;
}

.message.is-show .message-txt span,
.message.is-show .message-desc span {
    opacity: 1;
}

.message-desc span.prel {
    position: relative;
}

.message-desc sup {
    position: absolute;
    top: -1px;
    right: -1.1em;
    font-size: 0.7em;
    line-height: 1;
    letter-spacing: 0;
}

.message-cap {
    font-size: 14px;
    line-height: 1.6;
    text-align: right;
    position: absolute;
    bottom: 10px;
    right: 20px;
}

@media screen and (min-width: 768px) {
    .message-inner {
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .message-txt,
    .message-desc {
        height: 600px;
        -ms-writing-mode: tb-rl;
        -webkit-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
    }

    .message-txt {
        font-size: 36px;
        line-height: 2;
        letter-spacing: 0.25em;
        order: 1;
    }

    .message-txt span.marks {
        margin: 0 0 -0.5em 0;
    }

    .message-desc {
        font-size: 22px;
        line-height: 2.2;
        letter-spacing: 0.15em;
        margin: 0 2.3em 0 0;
    }

    .message-desc span.marks {
        margin: 0 0 -0.5em 0;
    }
}

@media screen and (max-width: 768px) {
    .message-wrap {
        padding: 60px 20px 0;
    }

    .message-tit {
        font-size: 20px;
        margin: 0 0 20px;
    }

    .message-txt {
        font-size: min(5.5vw, 22px);
        line-height: 1.5;
        letter-spacing: 0.1em;
    }

    .message-desc {
        font-size: min(4vw, 16px);
        line-height: 1.8;
        letter-spacing: 0.05em;
        margin: 10px 0 0 0;

        /* Reset data-sai */
        transition-delay: 0 !important;
        transition-duration: 0 !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .message-desc sup {
        top: -0.7em;
        right: -0.2em;
        font-size: 0.6em;
    }

    .message-cap {
        font-size: min(3vw, 10px);
        right: 5px;
    }

    .message-inner {
        transform: translateX(-20px);
        opacity: 0;
        transition: .6s ease-out 0.6s;
    }

    .message-txt,
    .message-desc {
        opacity: 1;
        transition: unset;
    }

    .message-txt span,
    .message-desc span {
        opacity: 1;
        transition: unset;
    }

    .message.is-show .message-inner {
        transform: translateX(0);
        opacity: 1;
    }
}

.message .scroll a {
    color: #a9845d;
}

.message .scroll::before {
    background: #a9845d;
}

/* Contents02 */
.contents02-trigger {
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    pointer-events: none;
}

.contents02-trigger_item {
    width: 1px;
    height: 200vh;
}

.contents02-body {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.contents02-pin {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
}

.contents02 {
    position: relative;
    z-index: 1;
    background: #d6d9d7;
}

.js-block02 {
    width: 100%;
    position: absolute;
    top: 0;
    opacity: 0;
    left: 0;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.js-block02.is-active {
    pointer-events: auto;
}

@media screen and (max-width: 768px) {
    .contents02-pin {
        height: 100vh;
        height: 100svh;
        height: calc(var(--vh, 1vh) * 100);
    }
}

/* Intro */
.intro {
    line-height: 1;
    background: #d6d9d7;
    color: #d6d9d7;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../imgs/img-intro.webp") no-repeat bottom center/cover;
    z-index: 0;
}

.intro-wrap {
    position: absolute;
    bottom: 2.4%;
    left: 0;
    width: 100%;
    z-index: 1;
}

.intro-tit {
    margin: 0 0 10vw 17.5%;
    position: relative;
}

.intro-tit:before {
    content: "";
    display: block;
    width: 270px;
    height: 270px;
    background: url("../common/imgs/circle.svg") no-repeat top left/100% 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-45%, -36%) scale(1.2);
    z-index: -1;
}

.intro-tit li {
    font-size: 50px;
    line-height: 1.75;
    letter-spacing: 0.5em;
    font-weight: 600;
}

.intro-tit li:last-of-type {
    display: flex;
    align-items: center;
}

.intro-tit figure {
    line-height: 0;
    margin: 0 0 0 0.15em;
}

.intro-txt {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1.5;
    margin-left: 4%;
}

.intro-txt .txtS {
    font-size: 0.653em;
    display: inline-block;
    margin-right: 0.3em;
}

.intro-txt .txtB {
    font-size: 1.631em;
    line-height: 1;
    display: inline-block;
    letter-spacing: 0.1em;
    position: relative;
    top: 0.05em;
}

.intro-tit:before {
    -webkit-filter: brightness(1.1) blur(3px);
    filter: brightness(1.1) blur(3px);
    -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(25%, rgba(0, 0, 0, 0)), color-stop(33%, black), color-stop(66%, black), color-stop(75%, rgba(0, 0, 0, 0)));
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 25%, black 33%, black 66%, rgba(0, 0, 0, 0) 75%);
    mask-image: -webkit-gradient(linear, left top, right top, color-stop(25%, rgba(0, 0, 0, 0)), color-stop(33%, black), color-stop(66%, black), color-stop(75%, rgba(0, 0, 0, 0)));
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 25%, black 33%, black 66%, rgba(0, 0, 0, 0) 75%);
    -webkit-mask-position: 100% 50%;
    mask-position: 100% 50%;
    -webkit-mask-size: 400% 100%;
    mask-size: 400% 100%;
    transition: .6s ease-out;
    will-change: filter, mask-image;
}

.intro.is-show .intro-tit:before {
    -webkit-filter: brightness(1) blur(0);
    filter: brightness(1) blur(0);
    -webkit-mask-position: 50% 50%;
    mask-position: 50% 50%;
    transform: translate(-45%, -36%) scale(1);
}

.intro-tit li span {
    opacity: 0;
    transition: 0.3s ease-out;
}

.intro-tit li span:nth-of-type(1) {
    transition-delay: .6s;
}

.intro-tit li span:nth-of-type(2) {
    transition-delay: .7s;
}

.intro-tit li span:nth-of-type(3) {
    transition-delay: .8s;
}

.intro-tit li span:nth-of-type(4) {
    transition-delay: .9s;
}

.intro-tit li span:nth-of-type(5) {
    transition-delay: 1s;
}

.intro-tit figure {
    opacity: 0;
    transform: scale(1.2);
    transition: 0.7s ease-out 1s;
}

.intro.is-show .intro-tit li span {
    opacity: 1;
}

.intro.is-show .intro-tit figure {
    opacity: 1;
    transform: scale(1);
}

.intro-txt {
    opacity: 0 !important;
    transition: 0.7s ease-out 1.8s !important;
    transform: translate(-50px, 0px) scale(1.1);
    -webkit-transform: translate(-50px, 0px) scale(1.1);
}

.intro.is-show .intro-txt {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1);
    -webkit-transform: translate(0, 0) scale(1);
}

@media screen and (max-width: 768px) {
    .intro-bg {
        background: #000 url("../imgs/img-intro_sp.webp") no-repeat center center/cover;
    }

    .intro-wrap {
        bottom: 6%;
        bottom: 18%;
    }

    .intro-tit {
        margin: 0 0 42vh 15vw;
        opacity: 0;
        transition: 0.7s ease-out 1s;
    }

    .intro-tit:before {
        width: 26vw;
        height: 26vw;
    }

    .intro-tit li {
        font-size: 5vw;
    }

    .intro-tit figure {
        width: 70px;
        margin: 6px 0 0 6px;
    }

    .intro-txt {
        font-size: 20px;
        text-align: right;
        margin: 0 10px 0 auto;
        text-shadow: 0px 0px 2px rgba(0, 0, 0, .4), 0px 0px 4px rgba(0, 0, 0, .4), 0px 0px 6px rgba(0, 0, 0, .4), 0px 0px 8px rgba(0, 0, 0, .4), 0px 0px 10px rgba(0, 0, 0, .4), 0px 0px 12px rgba(0, 0, 0, .4);
    }

    .intro.is-show .intro-tit {
        opacity: 1;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
    .intro-wrap {
        bottom: 15%;
    }
}

/* Contents03 */
.contents03-trigger {
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    pointer-events: none;
}

.contents03-trigger_item {
    width: 1px;
    height: 150vh;
}

.contents03-body {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.contents03-pin {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
}

.contents03 {
    background: linear-gradient(to right, #4e5354 0%, #4e5354 50%, #2d3032 100%);
    color: #d6d9d7;
    position: relative;
    z-index: 1;
}

.js-block03 {
    width: 100%;
    position: absolute;
    top: 0;
    opacity: 0;
    left: 0;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.js-block03.is-active {
    pointer-events: auto;
}

@media screen and (max-width: 768px) {
    .contents03-pin {
        height: 100vh;
        height: 100svh;
        height: calc(var(--vh, 1vh) * 100);
    }
}

.blockWrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 72%;
    height: 100%;
    margin: 0 auto;
}

.blockImg {
    position: absolute;
    top: 250px;
    bottom: 60px;
    left: 0;
    width: 100%;
    z-index: 0;
    opacity: 0;
    transform: translateY(5%);
    transition: .6s ease-out .9s;
}

.blockImg picture {
    display: block;
    height: 100%;
}

.blockImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blockImg .capOut {
    bottom: -20px;
}

.block.is-show .blockImg {
    opacity: 1;
    transform: translateY(0);
}

.blockCircle {
    position: absolute;
    top: 50px;
    right: 27%;
    max-width: 270px;
    width: 20%;
    z-index: 1;
}

.blockCircle:after {
    content: "";
    padding-bottom: 100%;
    display: block;
}

.blockCircle span {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: url("../common/imgs/circle.svg") no-repeat top left/100% 100%;
}

.blockCircle {
    -webkit-filter: brightness(1.1) blur(3px);
    opacity: 1;
    filter: brightness(1.1) blur(3px);
    -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(25%, rgba(0, 0, 0, 0)), color-stop(33%, black), color-stop(66%, black), color-stop(75%, rgba(0, 0, 0, 0)));
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 25%, black 33%, black 66%, rgba(0, 0, 0, 0) 75%);
    mask-image: -webkit-gradient(linear, left top, right top, color-stop(25%, rgba(0, 0, 0, 0)), color-stop(33%, black), color-stop(66%, black), color-stop(75%, rgba(0, 0, 0, 0)));
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 25%, black 33%, black 66%, rgba(0, 0, 0, 0) 75%);
    -webkit-mask-position: 100% 50%;
    mask-position: 100% 50%;
    -webkit-mask-size: 400% 100%;
    mask-size: 400% 100%;
    transition: .5s ease-out !important;
    will-change: filter, mask-image;
    transform: scale(1.1);
}

.block.is-show .blockCircle {
    opacity: 0.5;
    -webkit-filter: brightness(1) blur(0);
    filter: brightness(1) blur(0);
    -webkit-mask-position: 50% 50%;
    mask-position: 50% 50%;
    transform: scale(1);
}

.blockInner {
    position: absolute;
    right: 36%;
    top: 150px;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    font-size: clamp(16px, 1.15vw, 20px);
    line-height: 2.2;
    letter-spacing: 0.2em;
    opacity: 0;
    filter: blur(20px) brightness(0.5);
    transition: 1s ease-out .4s;
}

.block.is-show .blockInner {
    opacity: 1;
    filter: blur(0) brightness(1);
}

.blockTxtS,
.blockTxtM {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    text-shadow: 2px 2px 10px #00000073, -2px -2px 10px #00000073;
}

.blockTxtS {
    margin: 0 1.7em 0 0;
}

.blockTxtS span {
    display: inline-block;
    text-align: center;
    position: relative;
}

.blockTxtS .num {
    transform: rotate(-90deg);
    margin-bottom: 0.2em;
    line-height: 1;
    letter-spacing: 0.1em;
    top: -0.2em;
}

.blockTxtS .txt {
    transform: rotate(-90deg);
    margin-bottom: 0.2em;
    left: 0.1em;
}

.blockTxtS .txt2 {
    transform: rotate(-90deg);
    margin: -0.4em 0 0.2em;
    left: 0.25em;
}

.blockTxtS .dot {
    margin: -0.15em 0;
    left: -0.1em;
}

.blockTxtM {
    font-size: clamp(32px, 2.4vw, 42px);
    line-height: 1.5;
    letter-spacing: 0.3em;
}

.blockTxtB {
    font-size: clamp(34px, 2.75vw, 48px);
    line-height: 1.2;
    letter-spacing: 0.2em;
    position: absolute;
    bottom: 85px;
    left: -5.5%;
    width: 100%;
    z-index: 2;
    color: #ffffff;
    opacity: 0;
    transform: translateX(-20px);
    transition: .6s ease-out 1.3s;
}

.blockTxtB sup {
    font-size: 0.35em;
    display: inline-block;
    position: relative;
    top: -0.4em;
    letter-spacing: 0.2em;
    margin-left: -0.3em;
}

.block.is-show .blockTxtB {
    opacity: 1;
    transform: translateX(0);
}

.blockNote {
    font-size: 14px;
    line-height: 1.5;
    display: block;
    letter-spacing: 0.15em;
    position: absolute;
    bottom: 20px;
    left: 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: 1s ease-out 1.8s;
}

.blockNote span {
    display: inline-block;
}

.block.is-show .blockNote {
    opacity: 1;
    transform: translateX(0);
}

.blockHead {
    text-align: center;
    position: absolute;
    bottom: 90px;
    right: 0;
    transform: translateX(45%);
    z-index: 3;
    opacity: 0;
    transition: .6s ease-out 1.3s;
}

.blockTit {
    font-size: clamp(48px, 3.8vw, 66px);
    line-height: 1;
    letter-spacing: 0.15em;
    color: #a9845d;
    font-weight: 400;
    font-family: "Crimson Text", serif;
}

.blockTit span {
    display: inline-block;
    opacity: 0;
    transition: 0.2s ease-out;
}

.block.is-show .blockHead {
    opacity: 1;
}

.blockBtn {
    margin: 1em 0 0 0;
}

.blockBtn a {
    color: #ffffff;
    font-size: clamp(20px, 1.5vw, 26px);
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 400;
    font-family: "Crimson Text", serif;
    padding: 0.35em 0.5em 0.3em;
    position: relative;
    z-index: 1;
    transition: .5s ease-out;
}

.blockBtn a:after {
    content: "▶︎▶︎▶︎";
    font-size: 0.6em;
    display: inline-block;
    margin: 0 0 0 0.8em;
    position: relative;
    top: -0.2em;
}

.blockBtn a:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, .8);
    transition: .5s ease-out;
    z-index: -1;
}

.blockBtn a:hover {
    color: #000000;
}

.blockBtn a:hover:before {
    width: 100%;
}

@media screen and (max-width: 1500px) {
    .blockWrap {
        width: 80%;
    }

    .blockHead {
        transform: translateX(25%);
    }

    .blockImg {
        top: 23vw;
    }

    .blockImg .capOut {
        left: auto;
        right: 10px;
    }

    .blockInner {
        top: 17vw;
    }

    .blockCircle {
        top: 10vw;
        left: 41vw;
    }
}

@media screen and (max-width: 768px) {

    .blockWrap {
        width: 100%;
    }

    .blockImg {
        top: 48vw;
        bottom: 40vw;
    }

    .blockHead {
        top: auto;
        bottom: 20vw;
        right: auto;
        transform: translateX(-20px);
        opacity: 0;
        left: 20px;
        transition: .6s ease-out 1.3s;
    }

    .blockInner {
        top: 36vw;
        right: 22vw;
        height: calc(100% - 330px);
    }

    .blockTxtS {
        font-size: 14px;
    }

    .blockTxtM {
        font-size: 24px;
    }

    .blockTxtB {
        font-size: min(5.8vw, 24px);
        letter-spacing: 0.1em;
        line-height: 1.4;
        left: 20px;
        bottom: 42vw;
    }

    .blockNote {
        font-size: 10px;
        bottom: 10px;
        left: 20px;
        right: auto;
        min-height: unset;
    }

    .blockTit {
        font-size: 35px;
    }

    .blockBtn {
        margin-top: 5px;
    }

    .blockBtn a {
        font-size: 12px;
    }

    .blockCircle {
        width: 35vw;
        top: 22vw;
        left: auto;
        right: 20px;
    }

    .block.is-show .blockHead {
        transform: translateX(0);
        opacity: 1;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
    .blockHead {
        right: 12%;
        bottom: 12%;
    }
}

/* Entry Area */
.entryArea {
    background: #83815e;
    color: #ffffff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    z-index: 1;
}

.entryTit {
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 0.3em;
    margin-bottom: 20px;
}

.entryTxt {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.2em;
    margin-bottom: 40px;
}

.entryBtn a {
    font-size: 34px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: 0.14em;
    margin: 0 auto;
    width: 320px;
    padding: 10px 0 5px;
    background: linear-gradient(to right, #623d22, #aa7e54, #623d22);
    display: block;
    font-family: "Crimson Text", serif;
}

.entryBtn a:hover {
    background: #623d22;
}

@media screen and (max-width: 768px) {
    .entryArea {
        padding: 60px 20px;
    }

    .entryTit {
        font-size: 20px;
    }

    .entryBtn a {
        font-size: 18px;
        width: 200px;
        padding: 10px 0;
    }
}

/* Process */
.process {
    background: #d9d6cd;
    color: #000000;
    width: 960px;
    margin: 60px auto 0;
    padding: 40px 30px;
}

.process-tit {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.process-tit:after {
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.3);
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
}

.process-tit span {
    display: inline-block;
    background: #d9d6cd;
    padding: 0 1em;
}

.process-step {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.process-step .item {
    width: 32%;
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    padding: 15px;
}

.process-step .tit {
    background: #e7e2da;
    width: 100%;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 1.5;
    font-family: "Crimson Text", serif;
    padding-top: 2px;
}

.process-step .tit span {
    font-size: 1.5em;
    line-height: 1;
    display: inline-block;
    margin-left: 5px;
    position: relative;
    top: -2px;
}

.process-step .inner {
    padding: 15px 0 0 0;
    width: 100%;
}

.process-step .txt {
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: -0.001em;
}

.process-step .txtBig {
    font-size: 16px;
    margin-bottom: 15px;
}

.process-step .cap {
    font-size: 10px;
    line-height: 1.4;
    margin-top: 7px;
}

@media screen and (max-width: 768px) {
    .process {
        width: 100%;
        margin: 40px auto 0;
        padding: 30px 20px;
    }

    .process-step {
        margin-bottom: 0;
    }

    .process-step .item {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* Content Area */
.contentArea {
    background: #4e5353;
    color: #ffffff;
    position: relative;
    z-index: 1;
    padding: 100px 20px 0;
}

@media screen and (max-width: 768px) {
    .contentArea {
        padding: 60px 20px 0;
    }
}

.infoArea-tit {
    font-size: 24px;
    line-height: 1.3;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
    font-family: "Crimson Text", serif;
    font-weight: 400;
    letter-spacing: 0.2em;
}

.infoArea-list {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
}

.infoArea-list li {
    border-bottom: 1px solid rgba(255, 255, 255, .6);
    padding: 10px 0;
}

.infoArea-list .txt a {
    text-decoration: underline;
    text-underline-offset: 0.25em;
}

.infoArea-list .txt a:hover {
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    .infoArea-list li {
        display: flex;
    }

    .infoArea-list .time {
        width: 170px;
        margin-top: 5px;
        font-size: 14px;
        line-height: 1.6;
        letter-spacing: 0.1em;
    }

    .infoArea-list .txt {
        width: calc(100% - 170px);
        font-size: 18px;
        line-height: 1.6;
    }
}

@media screen and (max-width: 768px) {
    .infoArea-tit {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .infoArea-list .time {
        font-size: 12px;
        line-height: 1.8;
        letter-spacing: 0.1em;
    }

    .infoArea-list .txt {
        font-size: 14px;
        line-height: 1.8;
    }
}

.contentSlider {
    margin: 100px 0 0;
}

.contentSlider .slick-slide {
    width: 240px;
    margin: 0 15px;
}

.contentSlider .slick-arrow {
    width: 24px;
    height: 32px;
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -16px;
    border: none;
    text-indent: -9999px;
    z-index: 10;
    cursor: pointer;
}

.contentSlider .slick-next {
    background: url("../common/imgs/btn-next.svg") no-repeat top left/100% 100%;
    right: -55px;
}

.contentSlider .slick-prev {
    background: url("../common/imgs/btn-prev.svg") no-repeat top left/100% 100%;
    left: -55px;
}

.contentSlide a {
    display: block;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.contentSlide a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    z-index: 1;
}

.contentSlide p {
    font-size: 24px;
    line-height: 1;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    font-family: "Crimson Text", serif;
    font-weight: 400;
    letter-spacing: 0.2em;
    z-index: 2;
}

.contentSlide img {
    transition: 1s ease-out;
    will-change: transform;
    transform-origin: center;
}

.contentSlide a:hover img {
    transform: scale(1.1);
}

.bottomCap {
    margin-top: 70px;
    background: none;
    padding: 0;
}

@media screen and (max-width: 1160px) {
    .contentSlider {
        margin: 100px auto 0;
        width: calc(100vw - 90px);
    }

    .contentSlider .slick-next {
        right: -30px;
    }

    .contentSlider .slick-prev {
        left: -30px;
    }

    .contentSlider .slick-slide {
        width: 21vw;
        margin: 0 15px;
    }
}

@media screen and (max-width: 768px) {
    .contentSlider {
        margin: 60px 0 0;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    .contentSlide {
        width: 48%;
        margin: 0 4% 4% 0;
    }

    .contentSlide:nth-of-type(2n) {
        margin-right: 0;
    }

    .contentSlide img {
        width: 100%;
    }

    .contentSlide p {
        font-size: 18px;
    }

    .bottomCap {
        margin-top: 30px;
    }
}

/* topCV */
.topCV {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: #ffffff;
    bottom: 10px;
    height: 40px;
    position: fixed;
    right: 10px;
    -webkit-transform: translate(0, 200%);
    transform: translate(0, 200%);
    -webkit-transition: .6s;
    transition: .6s;
    width: 330px;
    z-index: 9;
}

@media screen and (max-width: 768px) {
    .topCV {
        display: none;
    }
}

.topCV__button {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    color: #333333;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: .3s;
    transition: .3s;
    width: 100%;
    /* stylelint-disable */
    /* stylelint-enable */
}

@media screen and (min-width: 768px) {
    .topCV__button {
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 13px 3px rgba(8, 1, 3, 0.3);
        box-shadow: 0 0 13px 3px rgba(8, 1, 3, 0.3);
        padding: 0;
    }

    .topCV__button:hover {
        opacity: .7;
    }
}

.topCV__button:focus:not(:focus-visible) {
    outline: 0;
}

.topCV__button:after {
    color: #333333;
    content: '＞';
    font-size: 10px;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translate(0, -50%) scale(0.6, 1);
    transform: translate(0, -50%) scale(0.6, 1);
}

.topCV .topCV-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: relative;
    text-align: left;
}

.topCV .topCV-title:before {
    background-color: #eb6877;
    border-radius: 50%;
    content: '';
    height: 6px;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    -webkit-transform: translate(-10px, 0);
    transform: translate(-10px, 0);
    width: 6px;
}

.topCV .topCV-title__txt {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
}

.topCV .topCV-title__txt:not(:last-of-type) {
    margin-right: 5px;
}

.topCV .topCV-title__txt:not(:last-of-type):after {
    content: ' / ';
}

.topCV__logo {
    margin-left: 12px;
    width: 98px;
}

.topCV.is-new .topCV-title:before {
    opacity: 1;
}

.topCV.is-visible {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

@media screen and (min-width: 768px) {
    .site-theme-black .topCV__button {
        background-color: #333333;
    }
}

@media screen and (max-width: 768px) {
    .site-theme-black .topCV__button {
        background-color: #333333;
    }
}

.site-theme-black .topCV .topCV-title__txt {
    color: #ffffff;
}

/* infoBox */
.infoBox {
    background-color: #ffffff;
    position: relative;
}

@media screen and (min-width: 768px) {
    .infoBox {
        bottom: 0;
        height: 40px;
        max-width: 700px;
        position: absolute;
    }
}

@media screen and (max-width: 768px) {
    .infoBox {
        height: 40px;
        width: 100%;
    }
}

.infoBox__link {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #333333;
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-transition: .3s;
    transition: .3s;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .infoBox__link {
        padding: 10px 65px;
    }

    .infoBox__link:hover {
        opacity: .7;
    }
}

@media screen and (max-width: 768px) {
    .infoBox__link {
        padding: 5px 20px;
    }
}

.infoBox__link:after {
    color: #ffffff;
    content: '＞';
    font-size: 12px;
    line-height: 1;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translate(0, -50%) scale(0.6, 1);
    transform: translate(0, -50%) scale(0.6, 1);
}

.infoBox__icon {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

@media screen and (min-width: 768px) {
    .infoBox__icon {
        left: 15px;
    }
}

@media screen and (max-width: 768px) {
    .infoBox__icon {
        font-size: 20px;
        height: 25px;
        left: 20px;
        width: 25px;
    }
}

.infoBox__txt {
    -webkit-box-orient: vertical;
    color: #eeeeee;
    display: -webkit-box;
    letter-spacing: .15em;
    -webkit-line-clamp: 1;
    overflow: hidden;
    position: relative;
}

@media screen and (min-width: 768px) {
    .infoBox__txt {
        font-size: 14px;
        padding-left: 0;
    }
}

@media screen and (max-width: 768px) {
    .infoBox__txt {
        font-size: 12px;
        line-height: calc(36 / 24);
        padding-left: 40px;
    }
}

.bottomArea {
    background: #4e5353;
    color: #fff;
}


/* Loading */
.currentPage--top {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out;
}

.no-scroll {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;

    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#loading .loadingBlock {
    position: relative;
}

#loading .loadingTxt {
    opacity: 0;
    transition: all 1s ease-out 1s;
}

#loading .loadingCircle {
    position: absolute;
    top: -45%;
    left: -45%;
    z-index: -1;
    width: 73%;

    -webkit-filter: brightness(1.1) blur(3px);
    filter: brightness(1.1) blur(3px);
    -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(25%, rgba(0, 0, 0, 0)), color-stop(33%, black), color-stop(66%, black), color-stop(75%, rgba(0, 0, 0, 0)));
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 25%, black 33%, black 66%, rgba(0, 0, 0, 0) 75%);
    mask-image: -webkit-gradient(linear, left top, right top, color-stop(25%, rgba(0, 0, 0, 0)), color-stop(33%, black), color-stop(66%, black), color-stop(75%, rgba(0, 0, 0, 0)));
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 25%, black 33%, black 66%, rgba(0, 0, 0, 0) 75%);
    -webkit-mask-position: 100% 50%;
    mask-position: 100% 50%;
    -webkit-mask-size: 400% 100%;
    mask-size: 400% 100%;
    transition: .6s ease-out;
    will-change: filter, mask-image;
    transform: scale(1.2);
}

#loading.active .loadingCircle {
    -webkit-filter: brightness(1) blur(0);
    filter: brightness(1) blur(0);
    -webkit-mask-position: 50% 50%;
    mask-position: 50% 50%;
    transform: scale(1);
}

#loading.active .loadingTxt {
    opacity: 1;
}

@media screen and (max-width: 768px) {

    #loading .loadingBlock {
        margin-left: 16%;
    }

    #loading .loadingTxt img {
        width: 150px;
    }

}
/* End Loading */

/* Scroll Down */
.scroll a {
    position: relative;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    height: 100px;
    width: 20px;
    display: block;
}

.scroll a.is-disabled {
    pointer-events: none;
    cursor: default;
}

.scroll a .text-reading,
.scroll a .text-scroll {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-in-out, filter 0.5s ease-in-out;
}

.scroll a .text-reading {
    opacity: 1;
    filter: blur(0px);
}

.scroll a .text-scroll {
    opacity: 0;
    filter: blur(8px);
}

.scroll a.is-ready .text-reading {
    opacity: 0;
    filter: blur(8px);
}

.scroll a.is-ready .text-scroll {
    opacity: 1;
    filter: blur(0px);
}

@media screen and (max-width: 768px) {
    .scroll a {
        height: 70px;
    }
}
/* End Scroll Down  */

/* Campaign */
.campaign {
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .campaign {
    padding-top: 45px;
    width: 1000px;
  }
}

@media screen and (max-width: 768px) {
  .campaign {
    padding-top: 45px;
    text-align: center;
    width: 300px;
  }
}

.campaign__heading {
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .campaign__heading {
    text-align: center;
  }
}

.campaign__heading .en {
  color: #ffffff;
  font-family: "Cormorant Infant", serif;
  letter-spacing: .08em;
}

@media screen and (min-width: 768px) {
  .campaign__heading .en {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .campaign__heading .en {
    font-size: 13px;
  }
}

.campaign__heading .jp {
  color: #333333;
  font-size: 12px;
  letter-spacing: .15em;
  padding-right: 21px;
  position: relative;
}

.campaign__heading .jp:after {
  content: '＞';
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scale(0.6, 1);
          transform: scale(0.6, 1);
}

@media screen and (min-width: 768px) {
  .campaign__inner {
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .campaign__inner {
    margin: 16px calc(50% - 50vw) 0;
    overflow: scroll;
    width: 100vw;
  }
  .campaign__inner::-webkit-scrollbar {
    display: none;
  }
}

.campaignGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .campaignGroup {
    padding: 0 37.5px;
  }
}

.campaignCard {
  position: relative;
}

@media screen and (min-width: 768px) {
  .campaignCard {
    margin: 0 auto;
    width: 330px;
  }
  .campaignCard:nth-of-type(n + 2) {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .campaignCard {
    width: 275px;
  }
  .campaignCard:last-of-type {
    margin-right: 0;
  }
}

.campaignCard__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (min-width: 768px) {
  .campaignCard__link:hover {
    opacity: .7;
  }
}

.campaignCard__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.campaignCard--mod {
  width: 100%;
}

.campaignCard--mod:first-of-type {
  background: none;
}
/* End Campaign */