.header,
.menu-btn-wrp,
.pagetop {
    transform: translateZ(2px);
}

.toggle-menu-wrp.on {
    transform: translateY(0) translateZ(2px);
}

/*==============================================================
base
==============================================================*/
main {
    background-color: #fff;
}

.min {
    font-family: serif !important;
}

.enserif {
    font-family: 'Times New Roman', Times, serif !important;
}

ul.note {
    text-align: left !important;
}

ul.note.right {
    width: fit-content;
    margin-left: auto;
}

.inner {
    padding: 6em 1.5em;
}

.inner980 {
    max-width: 980px;
    margin: 0 auto;
    padding: 6em 1.5em;
}

@media screen and (max-width:767px) {

    .inner,
    .inner980 {
        padding: 3em 1.5em;
    }
}

.en-contents-title {
    font-size: min(1.4em, 5.5vw);
    font-weight: 500;
}

.title-wrp .title-underline::after {
    margin: .75rem auto 3rem !important;
}

.objectfit-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.objectfit-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* scrl item */
.sclstart {
    opacity: 0;
    transform: translateY(1em) scale(1) !important;
    transition: all 1s ease-out;
}

.sclstart.on {
    transform: translateY(0) scale(1) !important;
    opacity: 1;
}


/*==============================================================
main header
==============================================================*/
.main-header {
    width: 100%;
    height: calc(100vh - 58px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width:767px),
(orientation: portrait) {
    .main-header {
        height: auto;
        max-height: unset;
        padding: 0;
        justify-content: flex-start;
    }
}

.main-header .main-img {
    width: min(1200px, 90%);
    height: 100%;
    position: absolute;
    right: 40%;
    bottom: 0;
    opacity: 0;
    filter: blur(10px);
    animation: opfadein .6s ease-in .4s both;
    transition: transform .3s;
}

@keyframes opfadein {
    0% {
        opacity: 0;
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        filter: blur(0);
    }
}

@media screen and (max-width:900px) {
    .main-header .main-img {
        width: min(1200px, 85%);
        right: 51%;
    }
}

@media screen and (max-width:767px),
(orientation: portrait) {
    .main-header .main-img {
        width: 120%;
        height: auto;
        right: 5%;
    }
}


.main-header .main-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

.main-header .main-title-wrp {
    width: min(980px, 90%);
    padding: 0 0 100px;
    text-align: right;
}

@media screen and (max-width:767px),
(orientation: portrait) {
    .main-header .main-title-wrp {
        padding: min(6em, 24vw) 0 86vw;
        text-align: center;
    }
}

.main-header .main-title-wrp .main-title {
    font-size: min(3em, 7.4vw);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: .01em;
}

.main-header .main-title-wrp .date-tag {
    display: block;
    width: fit-content;
    color: var(--main_red);
    border: 2px solid;
    font-size: min(1.2rem, 4vw);
    letter-spacing: .02em;
    padding: .25em 1em;
    margin-left: auto;
    margin-bottom: 1.5em;
}

@media screen and (max-width: 767px),
(orientation: portrait) {
    .main-header .main-title-wrp .date-tag {
        margin: 0 auto 1em;
    }
}

.main-header .main-title-wrp .main-title .tag {
    display: inline-block;
    margin-bottom: .75em;
    padding-bottom: .2em;
    font-size: .45em;
    letter-spacing: .02em;
    border-bottom: solid 1px #aaa;
}

@media screen and (max-width: 767px) {
    .main-header .main-title-wrp .main-title .tag {
        font-size: .5em;
    }
}

.main-header .main-title-wrp .main-title em {
    display: block;
    font-style: unset;
    font-size: 1.4em;
    line-height: 1.3;
}

.main-header .main-title-wrp .copy {
    margin-top: 2em;
    font-size: min(1.45em, 4vw);
    font-weight: 300;
    letter-spacing: .02em;
}

.main-header .main-title-wrp .copy span {
    display: inline-block;
    transform: translateX(.5em);
}

/*==============================================================
contents
==============================================================*/
.contents-wrp {
    padding: 0;
}

/* texture wrp
------------------------------------------*/
.texture-wrp {
    position: relative;
}

.texture-wrp .type-box {
    position: relative;
    box-shadow: 0 0 12px 0 rgb(0 0 0 /.8);
}

.texture-wrp .type-box:not(first-child) {
    color: #fff;
}

.texture-wrp .type-box:nth-child(1) {
    z-index: 1;
    box-shadow: 0 0 10px 0 rgba(83, 77, 71, 0.8);
}

.texture-wrp .type-box:nth-child(2) {
    z-index: 2;
}

.texture-wrp .type-box:nth-child(3) {
    z-index: 3;
}

.texture-wrp .type-box .type-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.texture-wrp .type-box .type-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.texture-wrp .type-box .type-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: .5em 2em;
    position: relative;
    z-index: 1;
}

@media screen and (max-width:767px) {
    .texture-wrp .type-box .type-inner {
        display: block;
    }
}

.texture-wrp .type-box .text-box {
    width: 45%;
    order: 1;
}

@media screen and (max-width:767px) {
    .texture-wrp .type-box .text-box {
        width: 100%;
    }
}

.texture-wrp .type-box:nth-child(even) .text-box {
    order: 2;
}

.texture-wrp .type-box .type-title {
    margin-bottom: 1em;
    border-bottom: solid 1px;
    font-size: min(2.5em, 8vw);
}

.texture-wrp .type-box .type-title .sml {
    margin-left: 1em;
    font-size: .4em !important;
}

.texture-wrp .type-box .text-box .copy {
    margin-bottom: 1em;
    font-size: min(1.8em, 5vw);
}

.texture-wrp .type-box .text-box p:not(.copy) {
    font-size: min(1em, 3.8vw);
    line-height: 2;
}

.texture-wrp .type-box .img-box {
    width: 50%;
    order: 2;
}

@media screen and (max-width:767px) {
    .texture-wrp .type-box .img-box {
        width: min(500px, 100%);
        margin: 2em auto 0;
    }
}

.texture-wrp .type-box:nth-child(even) .img-box {
    order: 1;
}


/* item
------------------------------------------*/

/* section_img */
.section_img-wrp {
    width: min(1200px, 100%);
    height: min(600px, 90vw);
    margin: 0 auto;
    padding: min(3em, 5vw);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
}

.section_img-wrp .section_img-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background-color: #ccc;
}

@media screen and (max-width:767px) {
    .section_img-wrp>*:not(.section_img-bg) {
        text-shadow: 0 0 2px rgb(0 0 0/1), 0 0 8px rgb(0 0 0/.5);
    }
}

@media screen and (max-width:767px) {
    .section_img-wrp .section_img-bg {
        filter: brightness(.8);
    }
}

.section_img-wrp .section_img-title {
    font-size: min(3.7em, 8vw);
    line-height: 1.4;
}

.section_img-wrp .section_img-title .sml {
    display: block;
    font-size: .3em !important;
    line-height: 1;
}

.section_img-wrp .title-underline::after {
    width: 2em;
    margin-bottom: .75em;
    background-color: currentColor;
}

.section_img-wrp p.section_img-copy {
    margin-bottom: .75em;
    font-size: min(1.7em, 4.4vw);
}

.section_img-wrp p:not(.section_img-copy) {
    font-size: min(1.5em, 4.2vw);
}

.gallery-slide {
    background-color: inherit;
    padding-bottom: min(5em, 10vw);
    position: relative;
    z-index: 3;
}


/* features
------------------------------------------*/
.features-wrp .features-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0 7%;
}

.features-wrp .feature2 {
    margin-top: 5em;
}

.features-wrp .img-box {
    width: 40%;
    flex-grow: 1;
    position: relative;
}

@media screen and (max-width:767px) {
    .features-wrp .img-box {
        width: 100%;
        margin-top: 3em;
        order: 2;
    }
}

.features-wrp .img-box figure {
    width: 100%;
    position: sticky;
    top: 1em;
}

.features-wrp .text-box {
    width: min(500px, 50%);
    text-align: center;
}

@media screen and (max-width:767px) {
    .features-wrp .text-box {
        width: 100%;
        order: 1;
    }
}

.features-wrp .text-box .tag {
    font-size: min(1.2em, 3.8vw);
    text-align: right;
    font-weight: bold;
    line-height: 1 !important;

}

@media screen and (max-width:767px) {
    .features-wrp .text-box .tag {
        text-align: center;
    }
}

.features-wrp .text-box .title {
    margin-top: 2em;
    line-height: 1.6;
    font-size: min(1.8em, 6.2vw);
    font-weight: 300;

}

.features-wrp .text-box .title-underline::after {
    width: 4.5em;
    margin: 1rem auto 2rem;
    background-color: currentColor;

}

.features-wrp .text-box p:not(.lead) {
    line-height: 1.8;
}

.features-wrp .text-box .lead {
    margin-top: 2em;
    font-size: min(1.15em, 4vw);
    /*     line-height: 2; */
}

.features-wrp .sub-box {
    margin-top: 3em;
}

.features-wrp .sub-box .sub-title {
    margin-bottom: 1em;
}

.features-wrp .sub-box .texture-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5em 1em;
}

@media screen and (max-width:767px) {
    .features-wrp .sub-box .texture-list {
        gap: min(1.5em, 5vw) min(1em, 3vw);
    }
}

.features-wrp .sub-box .texture-list figcaption {
    margin-top: .75em;
    font-size: min(.75em, 3vw);
}

.features-wrp .feature2 .sub-box figure {
    width: min(420px, 100%);
    margin: 0 auto;
}

/* performance wrp
------------------------------------------*/
.performance-wrp {
    background-color: #f9efe4;
}

.performance-wrp .performance-title {
    font-size: min(2.4em, 6vw);
    font-weight: 300;

}

.performance-wrp .lead {
    margin: 2em 0 1.5em;
    font-size: min(1em, 4vw);
    font-weight: 300;
    line-height: 2;

}

.performance-wrp .performance-list {
    margin: min(5em, 15vw) auto 3em;
}

.performance-wrp .performance-box {
    background-color: #fff;
    padding: min(3em, 10vw) min(3em, 5vw) min(3em, 5vw);
}

.performance-wrp .performance-box .orange {
    color: #bb5400;
}

.performance-wrp .performance-box+.performance-box {
    margin-top: 2em;
}

.performance-wrp .performance-box .performance-hd {
    margin: 0 auto;
    text-indent: .2em;
    font-size: min(3.1em, 6.8vw);
    letter-spacing: .02em;
    color: #bb5400;

}

.performance-wrp .performance-box .title-underline::after {
    width: 2em;
    margin-bottom: .75em;
    background-color: currentColor;

}

.performance-wrp .performance-box .copy {
    margin: 2em 0 1.5em;
    font-size: min(1.4em, 4.2vw);
    line-height: 1.6;

}

.performance-wrp .performance-box .copy~p {
    font-size: min(1em, 3.6vw);
    line-height: 1.8;
    text-align: justify;

}

.performance-wrp .performance-box .performance-fig {
    margin: 3em auto 0;

}

@media screen and (max-width:767px) {
    .performance-wrp .performance-box .performance-fig figure img {
        display: block;
        max-width: 450px;
        margin: 0 auto;
    }

    .performance-wrp .performance-box .performance-fig figure+figure {
        margin-top: min(3.5em, 10vw);
    }
}

.performance-wrp .performance-box .performance-fig figcaption {
    margin-bottom: 1.5em;
    font-size: min(1.15em, 4.2vw);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 5px;
    letter-spacing: .02em;
}

.performance-wrp .performance-box .performance-fig .test-box {
    margin-top: 2.5em;
    text-align: left;
}

.performance-wrp .performance-box .performance-fig .test-box .test-hd {
    /* width: 12em; */
    padding-bottom: .3em;
    margin-bottom: 1em;
    border-bottom: solid 1px;
    font-size: min(.9rem, 3.6vw);
}

.performance-wrp .performance-box .performance-fig .test-box p,
.performance-wrp .performance-box .performance-fig .test-box table {
    font-size: min(.85rem, 3.6vw);
    line-height: 1.6;
}

.performance-wrp .performance-box .performance-fig .test-box table {
    width: 100%;
    margin-top: 1.5em;
}

.performance-wrp .performance-box .performance-fig .test-box tr+tr {
    border-top: dotted 1px #aaa;
}

.performance-wrp .performance-box .performance-fig .test-box th {
    padding: .5em 0;
    font-weight: normal;
}

.performance-wrp .performance-box .performance-fig .test-box td {
    width: 35%;
    padding: .5em 0;
    text-align: center;
    font-weight: normal;
}

@media screen and (max-width:767px) and (min-width:600px) {
    .performance-wrp .performance-box .performance-fig .test-box td br {
        display: none;
    }
}

/* performance1 */
.performance-wrp .performance1 .performance-fig figure {
    margin: 0 auto;
}

@media screen and (min-width:768px) {
    .performance-wrp .performance1 .performance-fig figure img {
        width: 50%;
    }
}

@media screen and (max-width:767px) {
    .performance-wrp .performance1 .performance-fig figure img {
        max-width: min(380px, 100%);
    }
}

/* performance2 */
@media screen and (min-width:768px) {
    .performance-wrp .performance2 .performance-fig {
        display: grid;
        justify-content: center;
        grid-auto-flow: column;
        grid-template-columns: 35% 50%;
        gap: 4em;
    }

    .performance-wrp .performance2 .performance-fig .fig1 {
        grid-row: span 2;
    }
}

/* .performance-wrp .performance2 .performance-fig figure {
    max-width: 36%;
}

.performance-wrp .performance2 .performance-fig .fig2 {
    max-width: 24%;
} */

@media screen and (max-width:767px) {
    .performance-wrp .performance2 .performance-fig .fig1 img {
        max-width: min(300px, 70%);
    }
}

/* performance3 */
@media screen and (min-width:768px) {
    .performance-wrp .performance3 .performance-fig {
        display: flex;
        justify-content: space-between;
    }

    .performance-wrp .performance3 .performance-fig .fig2 {
        width: 50%;
    }
}

@media screen and (min-width:768px) {
    .performance-wrp .performance3 .performance-fig .fig1 {
        max-width: min(320px, 45%);
        margin: 0 auto;
    }
}

.performance-wrp .performance3 .performance-fig .scope {
    width: 60px;
    margin: .5em auto 0;
}


/* performance4 */
.performance-wrp .performance4 .performance-fig figcaption+p {
    margin-top: 1em;
    font-size: min(.9rem, 3.6vw);
}

@media screen and (min-width:768px) {
    .performance-wrp .performance4 .performance-fig .flex {
        display: flex;
        justify-content: space-between;
    }

    .performance-wrp .performance4 .performance-fig .test-box {
        width: 47%;
        display: flex;
        flex-direction: column;
    }
}

.performance-wrp .performance4 .performance-fig .test-box p {
    margin-bottom: 2em;
}

.performance-wrp .performance4 .performance-fig .test-box img {
    margin-top: auto;
}


/* movie */
.movie-wrp {
    width: 100%;
    margin-top: 6em;
}

.movie-wrp iframe {
    width: 100%;
    aspect-ratio: 1/.5625;
}


/* table wrp
------------------------------------------*/
.table-wrp {
    /* background-color: #fff; */
}

.table-wrp .inner-box {
    background-color: #fff;
    padding: min(3em, 10vw) min(3em, 5vw) min(3em, 5vw);
    /*     background-color: #f9efe4; */
    border: solid 2px #bb5400;
}

.table-wrp .table-title {
    font-size: min(2em, 5.2vw);
    font-weight: 300;
    text-align: center;
    color: #bb5400;
}

.table-wrp .flex {
    margin-top: min(5em, 10vw);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.table-wrp .flex .text-box {
    width: 45%;
}

@media screen and (max-width:767px) {
    .table-wrp .flex .text-box {
        width: 100%;
    }
}

.table-wrp .flex .text-box p {
    margin-bottom: 2em;
    font-size: min(1em, 3.8vw);
    line-height: 1.8;
}

@media screen and (max-width:767px) {
    .table-wrp .flex .text-box p br {
        display: none;
    }
}

.table-wrp .flex .table-img {
    width: 85%;
}

@media screen and (max-width:767px) {
    .table-wrp .flex .table-img {
        margin: 0 auto;
    }
}

.table-wrp .flex .img-box {
    width: 50%;
}

@media screen and (max-width:767px) {
    .table-wrp .flex .img-box {
        width: 100%;
        margin-top: 1em;
    }
}


/* styling wrp
------------------------------------------*/
.styling-wrp {
    background-color: #f9f9f9;
    overflow: hidden;
}

.styling-wrp .section_img-wrp {
    padding: 0 1em 4em 4em;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

@media screen and (max-width:767px) {
    .styling-wrp .section_img-wrp {
        padding: 0 1em 7vw 7vw;
    }
}

.styling-wrp .section_img-wrp .section_img-title {
    text-align: left;
}

.section_img-wrp .title-underline::after {
    width: 120%;
    margin-left: -10%;
}

.styling-wrp .style-box {
    max-width: 980px;
    margin: 5em auto 0;
    padding: 0 1.5em;
    display: grid;
    grid-template-areas: 'item title' 'item txt' 'item img';
    grid-template-columns: 50% 1fr;
    gap: 2em 5%;
    align-items: center;
}

.styling-wrp .style-box:nth-child(odd) {
    grid-template-areas: 'title item' 'txt item' 'img item';
    grid-template-columns: 1fr 50%;
}

@media screen and (max-width:767px) {
    .styling-wrp .style-box {
        display: block;
        padding: 0;
    }
}

.styling-wrp .style-box .style-title {
    grid-area: title;
    padding-bottom: .3em;
    font-size: min(1.8em, 5.6vw);
    border-bottom: solid 1px;
}

.styling-wrp .style-box .style-title .tag {
    display: block;
    margin-bottom: .3em;
    color: var(--main_red);
    font-size: min(1rem, 3.8vw);
}

.styling-wrp .style-box .style-item {
    grid-area: item;
    align-self: end;
    position: relative;
}

.styling-wrp .style-box .style-item figure {
    width: min(130%, 50vw);
    position: absolute;
    bottom: 0;
    left: 0;
}

.styling-wrp .style-box:nth-child(even) .style-item figure {
    left: auto;
    right: 0;
}

@media screen and (max-width:767px) {
    .styling-wrp .style-box .style-item figure {
        width: min(400px, 100%);
        margin: 0 auto 2em;
        position: static;
        translate: unset;
    }
}

.styling-wrp .style-box .style-text {
    grid-area: txt;
    font-size: min(1em, 3.8vw);
    line-height: 2;
}

@media screen and (max-width:767px) {
    .styling-wrp .style-box .style-text {
        margin: 1em auto 2em;
        line-height: 1.8;

    }

    .styling-wrp .style-box .style-text br {
        display: none;
    }
}

.styling-wrp .style-box .style-item .style-img {
    grid-area: img;
}