@charset "utf-8";

.fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s, transform 1s;
}

.fade.active {
    opacity: 1;
    transform: translateY(0px);
}

.sp {
    display: none;
}

.pc {
    display: inline;
}

.sp_dono {
    display: none;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    display: none;
}

:root {
    /* font-family */
    --zen-old-min: "Zen Old Mincho", serif;
    --zen-maru: "Zen Maru Gothic", serif;
    --zen-ant: "Zen Kaku Gothic Antique", sans-serif;
    --murecho: "Murecho", sans-serif;
    --m-plus_2: "M PLUS 2", sans-serif;
    --alex-brush: "Alex Brush", cursive;
    --cabin: "Cabin", sans-serif;
    --m-plus_1c: "M PLUS Rounded 1c", sans-serif;
    --monst: "Montserrat", sans-serif;
    --shippori: "Shippori Mincho", serif;
    --hina: "Hina Mincho", serif;
    --noto: "Noto Sans JP", sans-serif;

    /* font-weight */
    --wt-thin: 100;
    --wt-exlt: 200;
    --wt-lt: 300;
    --wt-reg: 400;
    --wt-med: 500;
    --wt-semi: 600;
    --wt-bold: 700;
    --wt-exb: 800;
    --wt-bl: 900;

    /* murecho, cabin-optical */
    --optical: auto;

    /* cabinsettings */
    --cab-set: "wdth" 100;
}

:-webkit-any(article, aside, nav, section) :-webkit-any(article, aside, nav, section) h1 {
    margin-block: 0;
}

body {
    margin: 0;
    box-sizing: border-box;
    white-space: normal;
    font-family: var(--m-plus_2);
    overflow-x: hidden;
}

main {
    overflow-x: hidden;
    padding-top: 105px;
}

p {
    margin-block: 0;
    margin-inline: 0;
}

ul,
li {
    list-style: none;
    padding-inline-start: 0;
}

ul {
    margin-block: 0;
    margin-inline: 0;
}

dd {
    margin-inline-start: 0;
}

a {
    text-decoration: none;
}

/* ポップアップ */
.pop {
	position: fixed;
	bottom: 3%;
	right: 2vw;
	z-index: 10000;
    /* 最初非表示 */
    opacity: 0;
    transition: opacity 0.5s, visibility 0.5s;
    visibility: hidden;
}

/* スクロール出現 */
.pop.show {
    opacity: 1;
    visibility: visible;
  }

.pop_inner{
    position: relative;
}

.pop a.mail{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    aspect-ratio: 1/1;
    margin: 2px;
    padding: 20px;
    border-radius: 3px;
    border: 2px solid #004d98;
    background: url("/plabarrier/assets/img/btn_online_bg.png") center center;
    box-sizing: border-box;
    box-shadow: 4px 2px 5px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
    color: #004d98;
    text-align: center;
}
.pop a.shop{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    aspect-ratio: 1/1;
    margin: 2px;
    padding: 20px;
    border-radius: 3px;
    border: 2px solid #df364a;
    background: url("/plabarrier/assets/img/btn_online_bg.png") center center;
    box-sizing: border-box;
    box-shadow: 4px 2px 5px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
    color: #df364a;
    text-align: center;
}

.pop a p{
    margin-bottom: 10px;
    font-weight: 700;
}

.pop a p span{
    display: inline-block;
    padding: 1px 5px;
    background: #fff;
}

.pop a.mail p + i{
    color: #004d98;
    font-size: 1.75em;
}
.pop a.shop p + i{
    color: #df364a;
    font-size: 1.75em;
}

.pop a:hover {transform: scale(1.05); opacity: 1;}
.pop_delete {
	position: absolute;
	top: -10px;
	left: -10px;
	z-index: 10001;
	width: 24px;
	height: 24px;
    padding: 2px 4px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-weight: 700;
    line-height: 1;
    background: rgba(0,0,40,0.8);
    cursor: pointer;
}

.pop_delete:hover {background: rgba(120,0,0,0.8);}
/* .hidden_footer {
    transform: translateY(100%);
} */

@media screen and (max-width: 420px) {
    .pop a{
        padding: 10px;
    }

    .pop a p{
        margin-bottom: 0;
        font-size: 12px;
    }

    .pop a p + i{
        font-size: 1.25em;
    }
}


/* ヘッダー */
header {
    width: 100%;
    background: #fff;
    font-family: var(--m-plus_2);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
}

header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 95%;
    margin: auto;
    padding: 1.5em 0;
}

header h1,
header nav ul {
    display: flex;
}

header nav ul {
    justify-content: center;
    gap: 2em;
}

header h1 {
    width: 30%;
    /* justify-content: space-between; */
    align-items: center;
    gap: 20px;
}

header h1 .left {
    width: 40%;
    border-right: 1px solid #000;
}

header h1 .right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 50%;
    line-height: 1.2;
}

header img {
    display: block;
}

header h1 .left img {
    width: 80%;
    margin: auto;
}

header h1 .light {
    font-size: 16px;
    font-weight: var(--wt-reg);
}

header h1 .bold {
    font-size: 18px;
    font-weight: var(--wt-semi);
}

header nav {
    font-size: 16px;
}

header nav li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5em;
}

header nav img {
    width: 16px;
}

header nav li:last-child img {
    width: 30px;
}

header nav address {
    font-style: normal;
}

header nav a {
    color: #000;
    font-weight: var(--wt-med);
    pointer-events: none;
}

header nav .contact {
    display: flex;
    gap: .5em;
    pointer-events: all;
    align-items: center;
    cursor: pointer;
}

header input,
header label {
    display: none;
}

.underline {
    width: 100%;
    height: 12px;
    position: relative;
}

.underline::before {
    content: '';
    background: #004d98;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.underline::after {
    content: '';
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: #df364a;
}

.swiper-slide {
    cursor: grab;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.swiper-slide img {
    display: inline-block;
    width: 100%;
}

.swiper-slide .cover {
    display: grid;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 0 4em 2em;
}

.slide01 .jp_name .catch {
    display: none;
}

.en_name {
    font-family: var(--monst);
    font-size: 13vw;
    color: #fff;
    font-weight: var(--wt-semi);
    /* opacity: 0.5; */
    margin-left: -20px;
}

.en_name span {
    display: inline-block;
    animation: wordMoves 2s backwards;
    opacity: .2;
    height: 100%;
    overflow: hidden;
}

.en_name .el {
    padding-right: 12px;
}

.under {
    display: none;
}

@keyframes wordMoves {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: .2;
    }
}

.jp_name {
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    line-height: 1.2;
}

.sl_wrapper {
    display: flex;
    width: 40%;
    font-family: var(--m-plus_2);
    color: #fff;
    font-size: 46px;
    letter-spacing: .1em;
}

.lg_wrapper {
    display: flex;
    width: 40%;
    align-items: center;
}

.lg_wrapper img {
    display: block;
    width: 65%;
    animation: imgMoves 2s backwards;
    animation-delay: 2.5s;
}

@keyframes imgMoves {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    50% {
        transform: translateY(0%);
    }

    100% {
        opacity: 1;
    }
}

.sl_wrapper span {
    animation: wordMoves2 3s backwards;
}

@keyframes wordMoves2 {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
    }
}

.slide02 .catch {
    position: relative;
    top: -1.8em;
    font-family: var(--cabin);
    font-weight: var(--wt-med);
    font-size: 3.5vw;
    text-align: center;
    animation: catchMoves 2s backwards;
}

.slide02 .catch .inner {
    animation: catchMoves 2s backwards;
    transform: translateY(0);
    animation-delay: 1s;
}

@keyframes catchMoves {
    0% {
        opacity: 0;
        transform: translateY(-500%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide02 .cover {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.slide02 .en_name {
    padding-left: 7rem;
}

.slide02 .sl_wrapper {
    width: 100%;
    justify-content: center;
    text-align: center;
    align-items: center;
    color: #000;
    letter-spacing: normal;
    font-weight: var(--wt-exb);
    font-size: 48px;
}

.slide02 .sl_wrapper span {
    animation: wordMoves3 2s backwards;
}

@keyframes wordMoves3 {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
    }
}

.slide02 .logo_wrapper {
    margin-top: -4em;
}

.slide02 .logo_bl {
    width: 30%;
    margin: auto;
    animation: imgMoves 2s backwards;
    animation-delay: 6s;
    font-size: 26px;
    text-align: center;
    font-weight: var(--wt-semi);
}

.slide02 .logo_bl img {
    width: 100%;
    margin: 0 auto;
}

.slide02 .logo_bl div {
    border-top: 1px solid #000;
    margin-top: .6em;
    padding-top: .3em;
    font-family: var(--m-plus_2);
}

.slide02 .product_image {
    display: flex;
    width: 100%;
    justify-content: space-around;
    margin-top: -13em;
    position: relative;
}

@keyframes imgMoves2 {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }
}


.slide02 .product_image img {
    position: absolute;
    width: 18%;
    animation: imgMoves2 2s backwards;
}

.slide02 .product_image .left .product1 {
    display: inline-block;
    top: -12em;
    left: 9.5%;
    z-index: 0;
    animation-delay: 6s;
}

.slide02 .product_image .left .product2 {
    top: -.5em;
    left: 16%;
    animation-delay: 6.2s;
}

.slide02 .product_image .right .product3 {
    top: -3em;
    right: 10%;
    width: 24%;
    animation-delay: 6.4s;
}

.cover_bg {
    width: 100%;
    background: #fff;
    position: relative;
    top: -5px;
    z-index: 1;
    height: 50px;
}

.top_content .download_contents {
    background: url(../img/download_bg.jpg) no-repeat;
    background-position: 100% 0;
    margin: 1em 0 4em;
    background-size: cover;
}

.download_contents .content {
    background: none;
    color: #000;
    margin-top: 1.5em;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2em;
    align-items: end;
}

.top_content .download_contents .inner {
    display: grid;
    grid-template-columns: 1fr 2.35fr;
    gap: 5em;
    max-width: 1200px;
    padding: 2em 0;
    align-items: stretch;
}

.download_contents .inner h4 {
    font-family: var(--zen-maru);
    font-weight: var(--wt-med);
    font-size: 3em;
    line-height: 1;
}

.download_contents .inner h4 .triangle {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.download_contents .inner h4 .triangle div {
    width: 16px;
    height: 24px;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
}


.download_contents .download h4 {
    color: #ff0000;
}

.download_contents .download h4 .triangle div {
    background: #ff0000;
}

.download_contents .inner img {
    width: 100%;
}

.download_contents .download .content a {
    width: 100%;
    transition: all .3s ease-in-out;
}

.download_contents .inner .test {
    width: 100%;
    height: 100%;
    min-height: 243px;
    background: #D5D6D6;
}

.download_contents .movies h4 {
    color: #FFFF00;
}

.download_contents .movies h4 .triangle div {
    background: #FFFF00;
}

.download_contents .inner h4 span {
    margin-left: .5em;
    font-size: .4em;
}

.download_contents .inner h4 span,
.download_contents figure {
    color: #fff;
    font-family: var(--m-plus_2);
}

.content {
    background: url('../img/main_bg.jpg') center center no-repeat;
    background-size: cover;
    width: 100%;
}

.content .inner {
    width: 100%;
    max-width: 1550px;
    margin: auto;
}

.content .block {
    padding-top: 7em;
}

.content .block h2 {
    display: block;
    width: 100%;
    color: #231815;
    text-align: right;
    position: relative;
    line-height: 1.2;
}

.content .block .jp {
    font-size: 82px;
    display: inline-block;
    font-family: var(--shippori);
    font-weight: var(--wt-med);
}

.red {
    color: #ff0000;
    font-family: var(--zen-maru);
    font-weight: var(--wt-med);
}

.content h2 .back_en {
    display: block;
    font-family: var(--alex-brush);
    font-weight: var(--wt-reg);
    font-size: 77px;
    opacity: .4;
    position: absolute;
    top: 2em;
    right: 1.1em;
}

.top_content p {
    color: #fff;
}

.top_content .catch {
    display: block;
    width: 60%;
    margin: 1.5em 0 2.5em auto;
    text-align: right;
    font-size: 28px;
    font-family: var(--zen-ant);
    color: #23202A;
}

.top_content .catch.sp_catch {
    display: none;
}

.leader {
    font-family: var(--shippori);
}

figure {
    color: #fff;
    font-family: var(--m-plus_2);
    font-weight: var(--wt-reg);
}

.content .block2 {
    display: flex;
    padding-top: 10em;
    padding-bottom: 44em;
}

.content .block2 .left,
.content .block2 .right {
    position: relative;
    width: 48%;
}

/* .content .block2 .left{
    left: -5em;
} */

.content .block2 .right {
    right: -9em;
}

.content .block2 .left h2 {
    text-align: left;
    font-family: var(--zen-maru);
    font-weight: var(--reg);
    line-height: 1.2;
}

.content .block2 .left .bg {
    font-family: var(--zen-maru);
    font-weight: var(--wt-med);
    font-size: 50px;
}

.content .hd_btm {
    display: flex;
    margin-top: 0.5em;
    gap: 1em;
    align-items: flex-end;
    font-weight: var(--wt-med);
}

.content .block2 span {
    display: block;
}

.content .hd_btm .sl {
    font-size: 30px;
}

.content .hd_btm .md {
    font-size: 34px;
}

.content .hd_btm .rt {
    width: 48%;
}

.block2 .dis {
    font-size: 18px;
}

.block2 .dis1 {
    display: flex;
    align-items: center;
    gap: 2em;
}

.block2 .right .dis {
    margin-left: -2em;
}

.block2 .dis2 {
    position: absolute;
    right: 6em;
    top: 11em;
}

.block2 .dis3 {
    position: absolute;
    display: block;
    text-align: center;
    top: 20em;
}

.block2 .left {
    margin-top: 15em;
}

.block2 .left .imgs {
    margin-top: 5em;
    position: relative;
}


.block2 .left figure {
    margin-top: 13em;
}

.block2 .left .dis4 {
    display: block;
    position: absolute;
    top: 0;
    text-align: center;
    margin-right: auto;
}

.block2 .left .dis5 {
    position: absolute;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    top: 6em;
    right: 0;
    gap: .8em;
}

.block2 .left .dis6 {
    display: flex;
    align-items: center;
    gap: 1em;
    position: absolute;
    top: 22em;
    left: 6em;
    text-align: center;
}

.block2 .left .dis6 figcaption {
    margin: auto 0 3em;
}

.block2 .left .dis7 {
    margin-left: auto;
}

.block2 .right .dis8 {
    position: absolute;
    width: 75%;
    margin: auto;
    bottom: -20em;
}

.block2 .center {
    position: absolute;
    left: 45%;
    bottom: 13em;
}

.block2 .sp_stop {
    display: none;
}

.block3 {
    position: relative;
    top: -6em;
    right: -5em;
    font-family: var(--m-plus_2);
    font-weight: var(--wt-reg);
}

.block3 .wrapper {
    width: 52%;
    margin: auto;
}

.block3 p {
    display: block;
    font-size: 22px;
    margin-top: 3em;
    color: #231815;
}

.block3 .box {
    background: #fff7e7;
    border: 2px solid #828282;
    width: 90%;
    margin-top: 1em;
    padding: .5em 2em;
}

.block3 .box ul li {
    font-size: 16px;
    font-weight: var(--wt-med);
}

.block3 .box ul .head {
    font-size: 18px;
    font-weight: var(--wt-med);
}

.content2 .wrapper1 {
    position: relative;
    margin-top: -4em;
}

.content2 .wrapper1::before {
    content: '';
    display: block;
    width: 100%;
    height: 10px;
    background-color: #000;
    position: absolute;
    bottom: 6em;
    right: -40%;
    z-index: 0;
}

.content2 .inner {
    width: 100%;
    max-width: 1300px;
    margin: auto;
}

.content2 h3 {
    display: flex;
    align-items: center;
    gap: 4em;
    position: relative;
    z-index: 1;
}

.content2 h3 span {
    font-size: 2.5em;
    line-height: 1.2;
}

.content2 h3 .right {
    width: 50%;
    margin-bottom: 2em;
    line-height: 2;
    margin-left: -2em;
}

.content2 h3 .right img {
    width: 80%;
    margin-top: .5em;
}

.content2 .wrapper1 h3 .right div {
    display: flex;
    align-items: flex-end;
}

.content2 h4 {
    display: flex;
    align-items: center;
    gap: 2em;
    letter-spacing: .8em;
    position: relative;
    z-index: 1;
}

.content2 h4 img {
    display: inline;
}

.content2 h4 span {
    font-size: 2.8em;
    white-space: nowrap;
}

.content2 .wrapper2 {
    margin: 1em 0 0;
}

.content2 .wrapper2 .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4em;
}

.content2 .wrapper2 .flex .inner {
    max-width: 50%;
}

.content2 .wrapper2 .overview {
    position: relative;
}

.content2 .wrapper2 .overview::before {
    content: '';
    position: absolute;
    width: 95%;
    height: 100%;
    background: #DFE4EE;
    z-index: -1;
    padding: 2.7em 0 2.3em;
    top: -.9em;
    left: 0;
    border-top: 10px solid #000;
}

.content2 .wrapper2 .overview .inner {
    display: block;
    padding-left: .8em;
    margin: .5em auto;
}

.content2 .wrapper2 .images {
    position: relative;
}

.content2 .wrapper2 .inner .person1 {
    position: absolute;
    top: -21em;
    right: -15vw;
    width: 93%;
}

.content2 .wrapper .images .min_flex {
    display: flex;
    justify-content: center;
    gap: 2em;
    margin-top: 3em;
}

.content2 .wrapper .overview,
.content2 .wrapper .overview .red {
    font-weight: var(--wt-bold);
    font-family: var(--noto);
    font-size: 1.7em;
    line-height: 1.2;
}

.content2 .wrapper .overview .red {
    font-size: 1.8rem;
}

.content2 .wrapper .flex .left,
.content2 .wrapper .flex .right {
    width: 50%;
}

.content2 .wrapper .weight {
    display: flex;
    font-weight: var(--wt-med);
    font-size: 1.7em;
    width: 100%;
    gap: 1.2em;
    margin: 3em auto .5em;
}

.content2 .wrapper2 .bubble {
    position: relative;
}

.content2 .wrapper2 .bubble .red {
    font-family: var(--m-plus_2);
}

.content2 .wrapper2 .bubble::before {
    content: url(../img/bubble.png);
    position: absolute;
    top: 1.8em;
    right: -1.8em;
}

.content2 .wrapper2 .weights {
    display: flex;
    gap: 2em;
    align-items: flex-end;
    text-align: center;
}

.content2 .wrapper2 .weights figcaption {
    color: #000;
    font-weight: var(--wt-med);
}

.content2 .wrapper2 .advantages {
    display: block;
    margin: 1em 0 1em 6em;
}

.content2 .wrapper3 {
    background: #f2e2d9;
    margin: 4em 0;
    position: relative;
}

.content2 .wrapper3::before {
    content: '';
    width: 50%;
    height: 10px;
    background: #000;
    top: 0;
    right: 0;
    position: absolute;
}

.content2 .wrapper3 .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3em 0 21em;
}

.content2 .wrapper3 .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 11em;
    margin-bottom: -13em;
}

.content2 .wrapper3 .main_product{
    width: 56%;
}

.content2 .wrapper3 .left p {
    font-size: 1.1em;
    font-weight: var(--wt-med);
}

.content2 .wrapper3 .left p span {
    font-size: 1rem;
}

.content2 .wrapper3 .left img {
    display: inline-block;
}

.content2 .wrapper3 .right {
    position: relative;
    z-index: 1;
}

.content2 .wrapper3 .right h4 {
    margin-left: 2.5em;
}

.content2 .wrapper3 .right .overview {
    position: relative;
    padding: .8em 0 .8em 1.5em;
    top: -.3em;
}

.content2 .wrapper3 .right .overview::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    top: 0;
    left: 0;
    z-index: -1;
}

.content2 .wrapper3 .right .grid {
    display: flex;
    position: absolute;
    align-items: flex-end;
    gap: 0;
}

.content2 .wrapper3 .right .grid .person2 {
    position: absolute;
    width: 100%;
    right: -30em;
}

.stack {
    position: absolute;
    right: -9em;
    top: 3em;
}

.content2 .wrapper4 .left h4 {
    letter-spacing: initial;
}

.content2 .wrapper4 {
    margin: 1em 0 0;
}

.content2 .wrapper4 .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4em;
}

.content2 .wrapper4 .flex .inner {
    max-width: 50%;
}

.content2 .wrapper4 .overview {
    position: relative;
}

.content2 .wrapper4 .overview::before {
    content: '';
    position: absolute;
    width: 95%;
    height: 100%;
    background: #DFDFDF;
    z-index: -1;
    padding: 2.7em 0 1.3em;
    top: -.9em;
    left: 0;
    border-top: 10px solid #000;
}

.content2 .wrapper4 .overview .inner {
    display: block;
    padding-left: .8em;
    margin: .5em auto;
}

.content2 .wrapper4 .images {
    position: relative;
}

.content2 .wrapper4 .grid {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -.5em;
    gap: 2em;
}

.content2 .wrapper4 .left .flex {
    gap: 0;
    align-items: flex-start;
    gap: 3em;
    margin-top: -5em;
}

.content2 .wrapper4 .right {
    font-size: 1.1em;
}

.content2 .wrapper4 .right span {
    display: inline-block;
    margin-left: 4em;
}

.content2 .wrapper4 .line {
    width: 60%;
    border-bottom: 1px solid #000;
    padding-bottom: .3em;
    margin-bottom: .3em;
}

.content2 .wrapper4 .min_flex {
    display: flex;
    margin-top: 1.5em;
}

.content2 .wrapper4 .min_flex .left,
.content2 .wrapper4 .min_flex .right {
    width: initial;
}


.content3 {
    background: #e6e6e6;
    margin-top: 4em;
    position: relative;
    padding: 5em 0;
}

.content3 .cover {
    position: absolute;
    top: 0;
}

.content3 h3 {
    display: inline;
}

.content3 h3,
.content3 span,
.content3 .red {
    font-family: var(--shippori);
    font-weight: var(--wt-bold);
    font-size: 40px;
}

.content3 .lg,
.content3 .lg .red {
    font-size: 66px;
}

.content3 .lg {
    position: relative;
}

.content3 .lg .attention {
    display: inline-block;
    position: absolute;
    top: 2px;
    margin-left: -.2em;
    font-family: var(--hina);
    font-size: 66px;
}

.content3 .subheading {
    display: inline-block;
    font-family: var(--noto);
    font-size: 28px;
    font-weight: var(--wt-bold);
    text-align: center;
    border-top: 1px solid #000;
    margin-top: 1em;
    padding-top: .3em;
}

.content3 .subheading .red {
    font-family: var(--noto);
    font-weight: var(--wt-bold);
    font-size: 28px;
}

.content3 .left {
    margin-block: 0;
    margin-bottom: .2em;
    z-index: 10;
}

.content3 .left h3 {
    border-bottom: 2px solid #000;
}

.content3 .parts {
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    margin: 0 auto;
}

.content3 .parts .left,
.content3 .parts .right {
    width: 100%;
}

.content3 .parts img {
    display: inline;
    margin: 0;
}

.content3 .arrows {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* .content3 .left,
.content3 .right {
    width: 50%;
} */

/* .content3 .head{
    position: absolute;
    top: 8.5em;
    left: 18em;
    z-index: 10;
} */

.content3 .head .bottom {
    border-bottom: 2px solid #000;
}

.content3 .left .bottom {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.content3 .wrap .left .top {
    line-height: 1.8;
}

.content3 .wrap .left .bottom {
    align-items: flex-start;
}

.btm-swiper {
    cursor: grab;
    position: relative;
}

.btm-swiper .swiper-wrapper {
    width: 100%;
}

.btm-swiper .swiper-slide {
    display: flex;
    align-items: center;
}

.btm-swiper .swiper-slide .swipe-left,
.btm-swiper .swiper-slide .swipe-right {
    width: 50%;
}

.btm-swiper .swiper-slide .swipe-left {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5em 0 2.5em;
}

.swipe-left {
    white-space: nowrap;
    background: #e6e6e6;
}

.swipe-left .parts .low {
    margin-top: 2em;
}

.swipe-left .parts .low img {
    width: 49px;
}

.btm_carousel_item .arrows {
    font-size: 2vw;
}

.content3 .swiper-3d .swiper-slide-shadow {
    background: #e6e6e6;
}

.swipe-left strong {
    font-size: 3vw;
    font-family: var(--shippori);
    margin-top: 1em;
}

.btm-swiper .low strong {
    font-size: 44px;
    line-height: 1.3;
}

.content3 .swipe-right {
    position: relative;
}

.btm-swiper .swiper-slide .swipe-left {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5em 0 2.5em;
}

/* .swiper-slide3 .swipe-left .parts .low {
    margin-top: 1em;
} */

.btm_swiper .swi .content3 .swiper-slide img {
    display: block;
}

.content3 .swiper-button-prev,
.content3 .swiper-button-next {
    color: #000;
}

/* {
    color: #df364a;
} */

.content3 .swiper-button-prev,
.content3 .swiper-button-next {
    padding: .67em;
    /* background: #fff; */

}

.refrection {
    padding: 4em;
    text-align: center;
}

.refrection p {
    display: block;
    text-align: left;
    padding-left: 1.8em;
}

.refrection .inner {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 18px;
}

.refrection .inner img {
    width: 100%;
}

.suply {
    background: #000;
    color: #fff;
    text-align: center;
    font-family: var(--shippori);
    padding: 3em 0;
}

.suply h2 {
    font-size: 50px;
    font-weight: var(--wt-med);
}

.suply img {
    display: inline-block;
}

.suply .sl {
    font-size: 38px;
}

.suply .red {
    font-family: var(--shippori);
    font-weight: var(--wt-bl);
}

.suply .inner .images {
    justify-content: center;
    text-align: center;
    margin: 3em 0 0;
}

.car {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.car span {
    display: block;
    font-size: 1.5em;
    font-weight: 600;
    margin-top: -2em;
}

.phrase {
    margin: 4em auto 3em;
}

.phrase h2 {
    font-size: 2.6em;
    margin-bottom: .8em;
    position: relative;
    padding-left: .1em;
}

.active.phrase h2::before{
    content: '';
    position: absolute;
    display: inline-block;
    width: 70%;
    height: .3em;
    background: #FF0000;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: .2;
    animation: marker 1s forwards ease-in-out;
}

@keyframes marker{
    0%{
        width: 0;
    }

    100%{
        width:70%;
    }
}

.phrase p {
    font-size: 1.4em;
}

footer {
    margin-top: 3em;
}

footer img {
    width: 70%;
    margin-right: -1em;
}

footer h1 {
    display: flex;
}

footer p {
    margin-right: -1em;
}

footer .inner div {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    gap: 3em;
}

footer .inner {
    padding: 2em 0 1em;
    margin: auto;
    max-width: 1000px;
    font-weight: var(--wt-med);
}

footer small {
    display: block;
    margin-top: 2em;
    text-align: center;
    font-size: 16px;
}

.video-thumbnails {
    display: flex;
    gap: 10px;
    margin: 20px;
}

.thumbnail-container {
    position: relative;
    transition: all .3s ease-in-out;
}

.thumbnail {
    width: 150px;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal video {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1000px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.swipe-left {
    margin-top: -1.1em;
}

.refrection {
    padding: 2em 0;
}

.refrection p {
    max-width: 95%;
    margin: 0 auto;
    padding: 0;
}

footer {
    margin-top: 2em;
}

footer .inner .item,
footer .inner .right {
    max-width: 90%;
    margin: auto;
}

footer .inner .left {
    gap: 2em;
}

footer .left .flex {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    line-height: 1.5;
}

footer .left .flex div {
    justify-content: flex-start;
}

footer .left .light {
    font-size: 12px;
}

footer .left .bold {
    font-size: 16px;
}

@media screen and (max-width: 1620px) {
    header .inner {
        justify-content: center;
        gap: 1em;
    }

    header h1 {
        width: 35%;
        gap: 13px;
    }

    header h1 .left {
        padding: 0;
    }

    header h1 .left img {
        width: 90%;
    }

    header h1 .right {
        width: 60%;
    }

    header nav {
        width: 70%;
    }

    header nav ul {
        gap: 2%;
    }

    .swiper-slide .cover {
        padding: 0 3em;
    }

    .slide02 .logo_bl {
        width: 38%;
    }

    .slide02 .en_name {
        padding: 0;
    }

    .slide02 .product_image .left .product1 {
        top: -9em;
        left: 2.5%;
    }

    .slide02 .product_image .left .product2 {
        top: .5em;
        left: 7%;
    }

    .slide02 .product_image .right .product3 {
        right: 2%;
    }

    .content .hd_btm .md {
        font-size: 29px;
    }

    .content .block2 {
        max-width: 95%;
        margin: auto;
    }

    .block2 .left{
        margin-top: 23em;
    }

    .block2 .right .dis {
        text-align: right;
    }

    .content2 .wrapper2 .overview .inner {
        padding: 0;
    }

    .block2 .dis1 {
        position: absolute;
        margin: 0;
        top: 2em;
        display: block;
    }

    .block2 .dis2 {
        top: 20em;
        right: 7em;
    }

    .block2 .dis3 {
        top: 36em;
    }

    .block2 .left .dis4 {
        top: -1em;
    }

    .block2 .left .dis5 {
        top: 12em;
    }

    .block2 .left .dis6 {
        top: 30em;
        left: 0;
    }

    .block2 .right .dis8 {
        width: 60%;
        right: 8em;
        bottom: -32em;
    }

    .block3 p {
        margin-top: 8em;
    }

    .block3 .wrapper {
        width: 52%;
    }

    .content2 .wrapper2 .flex .inner {
        max-width: 75%;
    }

    .content2 .wrapper2 .inner .person1 {
        width: 68%;
        top: -18em;
        right: -9em;
        min-width: initial;
    }

    .content2 .wrapper2 .overview::before {
        width: 100%;
    }

    .content2 .wrapper3 .left {
        padding-left: 0;
    }

    .content2 .wrapper3 .right .grid {
        gap: 2em;
        top: 16em;
    }

    .content2 .wrapper3 .right .grid .person2 {
        width: 100%;
        margin-top: 1em;
        bottom: 0;
        right: -28em;
    }

    .content2 .wrapper4 .flex .inner {
        max-width: 80%;
    }

    .content2 .wrapper4 .overview::before {
        width: 100%;
    }

    .content2 .wrapper4 .right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .content2 .wrapper4 .line {
        width: 100%;
    }

    .btm-swiper .swiper-slide3 .swipe-left {
        padding: 1.25em 0;
    }
}

@media screen and (max-width: 1340px) {
    header h1 .right {
        white-space: nowrap;
    }

    header nav .tel {
        display: inline;
    }

    header nav ul {
        gap: 3%;
        justify-content: flex-end;
    }

    header nav li {
        gap: 1em;
    }

    .sl_wrapper {
        font-size: 1.8em;
    }

    .lg_wrapper img {
        width: 75%;
        margin-top: 0.5em;
    }

    .top_content .download_contents .inner {
        max-width: 95%;
    }

    .content .block2 .left .bg {
        font-size: 40px;
    }

    .content .hd_btm {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .content .hd_btm .rt {
        width: 88%;
    }

    .content2 h4 span {
        font-size: 2.7em;
    }

    .content2 .inner {
        max-width: 95%;
    }

    .phrase h2{
        font-size: 2.1em;
    }

    .active.phrase h2::before{
        width: 100%;
    }

    .phrase p {
        font-size: 1.2em;
    }

    .block2 .left .dis,
    .block2 .right .dis {
        width: 55%;
    }

    .block2 .left .dis7 {
        width: auto;
    }

    .block2 .dis1 {
        top: 6em;
    }

    .block2 .dis2 {
        top: 21em;
    }

    .block2 .left .dis4 {
        top: 5em;
    }

    .block2 .left .dis5 {
        top: 16em;
    }

    .block2 .left .dis6 {
        top: 27em;
    }

    .block2 .right .dis8 {
        width: 71%;
        right: 8em;
        bottom: -20em;
    }

    .content2 .wrapper2 .bubble::before {
        content: '';
        display: block;
        background: url(../img/bubble.png) center center no-repeat;
        width: 140px;
        height: 80px;
        background-size: contain;
        right: -2.6vw;
    }

    .content2 .wrapper2 .inner .person1 {
        position: initial;
        width: 85%;
        margin-left: auto;
    }

    .content2 .wrapper3 .right .grid .person2 {
        margin-top: 0;
        position: initial;
        width: 35%;
        margin-left: 3vw;
    }

    .content2 .wrapper .images .min_flex {
        justify-content: flex-start;
        margin: 0;
    }

    .stack{
        position: static;
    }

    .content2 .wrapper .weight {
        gap: .5em;
    }

    .content2 .wrapper .weight .equal {
        margin: 0 6px;
    }

    .content2 .wrapper2 .weights {
        width: 71%;
        gap: 0;
    }

    .content2 .wrapper2 .weights figcaption {
        font-size: 14px;
    }

    .content2 .wrapper3 .left .main_product{
        margin-left: 2em;
    }

    .content2 .wrapper3 .right .grid {
        position: initial;
        gap: 0;
    }

    .content2 .wrapper3 .flex {
        padding: 3em 0 6em;
    }

    .content2 .wrapper3 .left {
        margin-bottom: 0;
    }

    .content2 .wrapper4 .grid {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 1em;
    }

    .content2 .wrapper4 .left .flex {
        margin-top: 0;
    }

    .content3 {
        padding: 2em 0;
    }

    .content3 .parts {
        width: 80%;
    }

    .content3 h3,
    .content3 span,
    .content3 .red {
        font-size: 28px;
    }

    .content3 .lg .attention,
    .content3 .lg,
    .content3 .lg .red {
        font-size: 54px;
    }

    .content3 .subheading,
    .content3 .subheading .red {
        font-size: 22px;
    }

    .content3 .parts img,
    .swipe-left .parts .low img {
        width: 38px;
    }

    .btm-swiper .swiper-slide3 .swipe-left {
        padding: 1.6em 0;
    }

    .btm-swiper .swiper-button-next:after,
    .btm-swiper .swiper-button-prev:after {
        font-size: 32px;
    }

    .swipe-left .parts .low {
        width: 100%;
        max-width: 92%;
    }

    .refrection .inner {
        max-width: 95%;
    }

    .suply h2 {
        font-size: 46px;
    }

    .suply .inner .images {
        display: flex;
        max-width: 95%;
        margin: 1em auto;
    }

    .suply .inner .images img {
        display: block;
        width: calc(100% / 4);
    }

    .content3 .parts img,
    .swipe-left .parts .low img {
        width: 38px;
    }

    @keyframes marker{
        0%{
            width: 0;
        }

        100%{
            width: 100%;
        }
    }
}

@media screen and (max-width: 1080px) {
    header h1 .left {
        border: none;
    }

    header .inner {
        justify-content: space-between;
    }

    header nav {
        display: none;
    }

    header label {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 32px;
        height: 24px;
        position: relative;
        padding: 1em;
    }

    header label span {
        display: block;
        width: 100%;
        height: 2px;
        background: #004D97;
        position: absolute;
        transition: all .3s ease;
    }

    header label span::before,
    header label span::after {
        content: '';
        display: block;
        width: 32px;
        height: 2px;
        background: #004D97;
        position: absolute;
    }

    header label span::before {
        top: -7px;
    }

    header label span::after {
        top: 7px;
    }

    header input:checked + label span::before {
        display: none;
    }

    header input:checked + label span {
        display: flex;
        justify-content: center;
        align-items: center;
        transform-origin: center;
        transform: rotate(45deg);
        top: 1em;
    }

    header input:checked + label span::after {
        transform-origin: center;
        transform: rotate(-90deg);
        top: 0;
    }

    header nav {
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: absolute;
        width: 50%;
        height: 30vh;
        gap: 1em;
        top: 6.3em;
        right: 0;
        z-index: 999999999;
        transform: translateX(100%);
        transition: all .3s ease;
    }

    header input:checked ~ nav {
        transform: translateX(0);
    }

    header nav ul {
        flex-direction: column;
        justify-content: center;
        gap: 3em;
        width: 100%;
        height: 100%;
        flex-wrap: nowrap;
        background: #fff;
    }

    main {
        padding-top: 100px;
    }

    .content .inner {
        width: 85%;
    }

    .en_name {
        width: 15%;
        display: flex;
        font-size: 12.5vw;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: .3em;
        right: 0;
        text-align: right;
        line-height: 1;
    }

    .en_name span {
        display: block;
        height: auto;
        /* animation: none; */
        writing-mode: vertical-rl;
        text-orientation: sideways;
    }

    .en_name .el {
        padding-right: 0;
    }

    .swiper-slide .cover {
        padding: 0;
    }

    .jp_name {
        width: 100%;
        align-items: center;
    }

    .top_content .download_contents .inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1em;
    }

    .download_contents .content {
        gap: .5em;
    }

    .download_contents .inner h4 {
        font-size: 2.2em;
    }

    .download_contents .inner h4 span {
        font-size: 1.1rem;
    }

    .slide01 .jp_name .catch,
    .slide02 .jp_name .catch {
        display: inline;
        margin-bottom: .5em;
        font-size: 4vw;
        font-weight: var(--wt-reg);
        animation: wordMoves2 1s backwards;
    }

    .sl_wrapper {
        width: 100%;
        justify-content: center;
        padding-top: .3em;
    }

    .slide01 .lg_wrapper,
    .slide01 .sl_wrapper {
        background: rgba(0, 80, 255, 0.3);
    }

    .lg_wrapper {
        width: 100%;
        margin: 0 auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: .5em;
        padding-bottom: 1em;
    }

    .under {
        display: block;
        color: #fff;
        font-weight: var(--wt-reg);
        border-top: 1.5px solid #fff;
        margin-top: .4em;
        padding-top: .3em;
        font-size: 2.8vw;
        animation: imgMoves 2s backwards;
        animation-delay: 3.5s !important;
    }

    .lg_wrapper img {
        width: 48%;
        margin: 0 auto;
    }

    .slide02 .product_image .left .product1,
    .slide02 .product_image .left .product2,
    .slide02 .product_image .right .product3,
    .slide02 .catch .inner {
        position: static;
    }

    .slide02 .cover {
        justify-content: center;
    }

    .slide02 .catch {
        width: 100%;
        text-align: center;
        font-size: 5vw;
        top: -1.5em;
        margin: 0 auto;
    }

    .content h2 .back_en{
        font-size: 2em;
    }

    .slide02 .product_image .left .product2 {
        display: none;
    }

    .slide02 .product_image {
        margin: 0 auto;
        max-width: 63%;
        top: 2em;
    }

    .slide02 .product_image .right .product3 {
        width: 100%;
    }

    .slide02 .logo_wrapper {
        position: relative;
        margin: 0;
        top: -4.1em;
    }

    .slide02 .sl_wrapper {
        font-size: 5.5vw;
    }

    .slide02 .product_image .right {
        width: calc(100% - 40%);
    }

    .slide02 .product_image .left {
        width: 40%;
    }

    .slide02 .product_image img {
        width: 100%;
    }

    .slide02 .logo_bl {
        width: 55%;
    }

    .slide02 .logo_bl div {
        font-size: 3.1vw;
    }

    .sp {
        display: inline;
    }

    .content{
        background-position: 100% 100%;
    }


    .content .block h2 {
        text-align: left;
    }

    .content .block {
        padding-top: 4em;
    }

    .content .block .jp {
        font-size: 3em;
    }

    .content h2 .back_en {
        font-size: 2em;
        top: 3em;
        right: initial;
    }

    .content .block2 {
        max-width: 100%;
        flex-direction: column-reverse;
        padding-bottom: 0;
    }

    .top_content .catch,
    .block2 .center {
        display: none;
    }

    .top_content .catch.sp_catch {
        display: block;
        width: 45%;
        text-align: left;
    }

    .top_content .catch.sp_catch {
        margin: 0;
        font-size: 1.45em;
        margin-top: -8.3em;
    }

    .top_content .catch.sp_catch span {
        display: inline;
    }

    .top_content .catch.sp_catch .inside {
        display: inline-block;
    }

    .content .block2 .left,
    .content .block2 .right {
        width: 100%;
    }

    .block2 .left {
        margin: 0;
    }

    .content .block2 .right {
        position: initial;
    }

    .top_content .content .block2 .dis {
        width: 54%;
        position: initial;
        margin: 0;
    }

    .top_content .content .block2 .dis img {
        width: 100%;
    }

    .top_content .content .block2 .dis1 {
        display: flex;
        width: 100%;
        gap: 2%;
    }

    .top_content .content .block2 .dis1 img {
        width: 55%;
    }

    .top_content .content .block2 .dis2 {
        margin: -7em 0 -7em auto;
    }

    .top_content .content .block2 .dis8 {
        width: 100%;
        margin: 3em auto 5em;
    }

    .content .block2 .left .bg {
        font-size: 2em;
    }

    .content .block2 .lt {
        width: 100%;
    }

    .content .block2 .lt .sl {
        font-size: 2em;
        margin-top: .5em;
        color: crimson;
    }

    .content .hd_btm .md {
        font-size: 2em;
    }

    .content .hd_btm .rt {
        width: 90%;
    }

    .top_content .content .block2 .dis7 {
        width: 40%;
        margin-left: auto;
    }

    .top_content .content .block2 .dis4 {
        margin-top: -10em;
    }

    .top_content .content .block2 .dis5 {
        margin: -7em 0 -7em auto;
    }

    .top_content .content .block3 {
        position: static;
        padding-bottom: 3em;
    }

    .top_content .content .block3 .wrapper {
        width: 100%;
    }

    .top_content .content .block3 p {
        margin: 2em auto 2em;
    }

    .content2 .wrapper1::before {
        display: none;
    }

    .content2 .wrapper1 {
        margin: 0;
    }

    .content2 h3 {
        max-width: 95%;
        margin: 2em auto;
        flex-direction: column-reverse;
        gap: 0;
    }

    .content2 h3 .left {
        width: 60%;
        margin: -3em auto 0 0;
    }

    .content2 h3 .right {
        width: 60%;
        display: flex;
        flex-direction: column;
        align-items: start;
        margin: 0;
        line-height: 1;
        margin-left: auto;
    }

    .content2 h3 span {
        font-size: 2.8em;
        line-height: 1;
        white-space: nowrap;
    }

    .content2 .wrapper1 h3 .right div {
        align-items: baseline;
    }

    .content2 .wrapper1 .inner {
        margin-top: 4em;
        border-top: 15px solid #000;
        max-width: 100%;
    }

    .content2 .wrapper2 .flex {
        flex-direction: column;
    }

    .content2 .wrapper .flex .left {
        width: 75%;
        margin-right: auto;
    }

    .content2 .wrapper .flex .right {
        width: 100%;
        max-width: 95%;
        display: flex;
    }

    .content2 .wrapper .flex .right .first,
    .content2 .wrapper .flex .right .second {
        width: 50%;
    }

    .content2 .wrapper .weight {
        font-size: 1.25em;
        gap: .5em;
    }

    .content2 .wrapper2 .advantages {
        margin: 0 auto;
    }

    .content2 .wrapper2 .weights figcaption {
        font-size: 10px;
    }

    .content2 .wrapper2 .bubble::before {
        width: 96px;
        height: 57px;
    }

    .content2 .wrapper3 .flex {
        flex-direction: column-reverse;
        gap: 3em
    }

    .content2 .wrapper3 .right .grid {
        margin-top: -8em;
        justify-content: center;
    }

    .content2 .wrapper3 .flex .right {
        display: block;
        margin-left: auto;
    }

    .content2 .wrapper3 .right .grid .size{
        width: 40%;
    }

    .content2 .wrapper3 .right .grid .stack{
        width: 15%;
    }

    .content2 .wrapper3 .right .grid .person2 {
        width: 38%;
        margin-left: 3em;
    }

    .content2 .wrapper3 .flex .left {
        margin: 0 auto;
        width: 85%;
    }

    .content2 .wrapper3 .flex .left .wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 1em;
    }

    .content2 .wrapper3 .flex .left img {
        width: 50%;
        margin-left: 0;
    }

    .content2 .wrapper3 .flex .left img:last-child {
        width: 30%;
    }

    .content2 .wrapper4 .flex {
        flex-direction: column;
    }

    .car {
        margin-top: -3em;
    }

    .content2 .wrapper4 .left .flex {
        display: flex;
        flex-direction: row;
        margin-top: -2em;
        gap: 2em;
    }

    .content2 .wrapper4 .left .flex img {
        display: block;
        width: 30%;
    }

    .content2 .wrapper4 .right {
        flex-direction: row;
    }

    .slide02 .logo_bl {
        width: 47%;
    }

    .content3 {
        padding: 3em 0;
    }

    .content3 .parts {
        margin: 0;
        justify-content: space-between;
        width: 90%;
    }

    .content3 h3,
    .content3 span,
    .content3 .red,
    .btm-swiper .low strong {
        font-size: 3vw;
    }

    .content3 .lg,
    .content3 .lg .red,
    .content3 .lg .attention {
        font-size: 5vw;
    }

    .content3::before {
        width: 100%;
        top: 1em;
        z-index: 2;
    }

    .sl_section1 h2 {
        position: static;
        width: 100%;
    }

    .btm-swiper .swiper-wrapper {
        display: flex;
        align-items: center;
    }

    .btm-swiper .swiper-slide3 .swipe-left {
        padding: 2.1em 0;
    }

    .sl_section1 .right .item3 img {
        margin: auto;
        width: 60%;
    }

    .num1 {
        display: flex;
        flex-direction: column;
        padding-top: 5em;
    }

    .num1 .left {
        width: 100%;
        top: 0;
    }

    .btm_active {
        flex-direction: column;
    }

    .btm_carousel {
        min-height: 800px;
    }

    .btm_carousel_item__info {
        width: 100%;
        margin: 0;
    }

    .btm_carousel_item .wrap {
        margin-top: 0;
    }

    .content3 .subheading,
    .content3 .subheading .red {
        font-size: 2.5vw;
    }

    .btm-swiper .swiper-button-prev,
    .btm-swiper .swiper-rtl .swiper-button-next {
        left: 0;
    }

    .btm-swiper .swiper-button-next,
    .btm-swiper .swiper-rtl .swiper-button-prev {
        right: 0;
    }

    .content3 h3,
    .content3 span,
    .content3 .red,
    .btm-swiper .low strong {
        font-size: 3vw;
    }

    .suply h2 {
        font-size: 38px;
    }

    .suply .sl {
        font-size: 34px;
    }

    .suply .inner .images {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 3em;
        max-width: 80%;
        gap: 1em;
    }

    .suply .inner .images img {
        width: 100%;
    }
}

@media screen and (max-width: 730px) {
    .pc {
        display: none;
    }

    header h1 {
        width: 80%;
    }

    header h1 .light {
        font-size: 11px;
    }

    header h1 .bold {
        font-size: 12px;
    }

    header .inner {
        padding: 1em 0;
    }

    header nav {
        width: 100%;
        height: 50vh;
        top: 4.5em;
    }

    .swiper-slide .cover {
        padding: 1em 0 6em;
    }

    .jp_name {
        padding-bottom: 1em;
    }

    .slide01 .jp_name .catch,
    .slide02 .jp_name .catch {
        font-size: 4.5vw;
        font-weight: (var(--wt-med));
    }

    .slide02 .catch{
        top: 1em;
    }

    .slide02 .product_image{
        max-width: 72%;
        top: 1em;
    }

    .slide02 .logo_wrapper{
        top: 1.5em;
    }

    .slide02 .logo_bl{
        width: 68%;
    }

    .slide02 .logo_bl div{
        font-size: 4vw;
    }

    .sl_wrapper {
        font-size: 1.3em;
    }

    .last_sl {
        padding: 0;
    }

    .lg_wrapper img {
        width: 70%;
    }

    .under {
        margin-top: .8em;
        padding-top: .7em;
        font-size: 4.9vw;
    }

    .movies .content {
        display: flex;
        flex-direction: column;
        gap: 1em;
    }

    .content .block {
        padding-top: 2em;
    }

    .content .block .jp {
        font-size: 10.5vw;
    }

    .top_content .content .block2 .dis2 {
        margin: -4em 0 -4em auto;
    }

    .content .inner {
        width: 90%;
    }

    .top_content .catch.sp_catch {
        white-space: nowrap;
        margin-top: -4.3em;
        margin-left: -2px;
        font-size: 4vw;
        font-weight: var(--wt-med);
    }

    .top_content .content .block2 .dis8 {
        width: 100%;
        max-width: 92%;
        margin: 2em auto 3em;
    }

    .sp_dono {
        display: inline;
    }

    .content .block2{
        margin-top: 2em;
    }

    .content .block2 .left .bg {
        font-size: 8vw;
        letter-spacing: 1px;
    }

    .content .block2 .lt .sl {
        font-size: 7.5vw;
        margin-top: -0.6em;
        text-align: right;
        letter-spacing: 1px;
    }

    .content .block2 .left h2 {
        max-width: 90%;
        margin: auto;
    }

    .content .hd_btm .md {
        font-size: 7.8vw;
        letter-spacing: 1px;
    }

    .content .hd_btm .rt {
        width: 81%;
        margin-top: .5em;
    }

    .top_content .content .block2 .dis4 {
        margin-top: -8.4em;
    }

    .top_content .content .block2 .dis5 {
        margin: -1em 0 -2em auto;
    }

    .top_content .content .block3 p {
        font-size: 18px;
        white-space: pre-line;
        margin: 2em auto 0;
    }

    .content2 h3 {
        margin: 1em auto 0;
    }

    .content2 h3 span {
        font-size: 7.5vw;
    }

    .content2 h3 .right img {
        width: 65%;
        margin-top: .5em;
        margin-right: .2em;
    }

    .content2 h3 .left {
        width: 65%;
        margin: -2em auto 0 0;
    }

    .phrase {
        margin: 2em auto 3em;
    }

    .phrase h2 {
        font-size: 4.8vw;
    }

    .phrase p {
        font-size: 15px;
        word-break: auto-phrase;
    }

    .content2 .wrapper .flex .left {
        width: 100%;
        margin: 0;
    }

    .content2 .wrapper2 .flex .inner {
        max-width: 95%;
    }

    .content2 h4 img {
        width: 23%;
    }

    .content2 h4 span {
        font-size: 8vw;
    }

    .content2 .wrapper2 .overview::before {
        border-top: 6px solid #000;
    }

    .content2 .wrapper .overview,
    .content2 .wrapper .overview .red {
        font-size: 5vw;
    }

    .content2 .wrapper2 .flex .overview .inner {
        margin-right: -.2vw;
    }

    .content2 .wrapper2 .inner .person1 {
        width: 85%;
        margin-top: -1.5em;
    }

    .content2 .wrapper .images .min_flex {
        width: 15%;
    }

    .content2 .wrapper .flex .right {
        width: 100%;
        flex-direction: column;
        max-width: 95%;
        gap: 2em;
    }

    .content2 .wrapper .flex .right .first,
    .content2 .wrapper .flex .right .second {
        width: 100%;
    }

    .content2 .wrapper .weight {
        justify-content: center;
        font-size: 5.2vw;
        margin: 2.5em auto 1em;
    }

    .content2 .wrapper2 .bubble::before {
        width: 87px;
        height: 67px;
        right: -3.6vw;
    }

    .content2 .wrapper2 .advantages{
        width: 70%;
    }

    .content2 .wrapper2 .weights figcaption {
        font-size: 2.5vw;
    }

    .content2 .wrapper3 .right h4{
        margin-left: 0.5em;
    }

    .size {
        grid-area: size;
        width: 100%;
        margin-left: auto;
    }

    .stack {
        width: 41%;
        grid-area: stack;
        margin: auto;
    }

    .content2 .wrapper3 .right .grid .person2 {
        width: 100%;
        margin: 0;
        grid-area: person2;
    }

    .content2 .wrapper3 .right .grid {
        display: grid;
        width: 100%;
        max-width: 95%;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-template-areas:
            "size person2"
            "stack person2"
        ;
        margin: 0 2em 0 0;
        align-items: center;
    }

    .content2 .wrapper3 .flex .left .wrapper {
        justify-content: center;
        max-width: 85%;
    }

    .content2 .wrapper3 .left p {
        width: 95%;
        font-size: 3vw;
    }

    .content2 .wrapper3 .left p span {
        font-size: 3.1vw;
    }

    .content2 .wrapper3 .flex {
        padding: 3em 0 2em;
        gap: 1em;
    }

    .content2 .wrapper4 .flex .inner {
        max-width: 95%;
        padding-top: .6em;
    }

    .content2 .wrapper4 .overview::before {
        padding: 2.7em 0 1em;
    }

    .car {
        margin-top: -2em;
        justify-content: center;
    }

    .car span {
        font-size: 4vw;
    }

    .content2 .wrapper4 .grid {
        padding: 0;
        max-width: 95%;
        margin: auto auto -2em auto;
    }

    .content2 .wrapper4 .left .flex {
        width: 44%;
    }

    .content2 .wrapper4 .flex {
        gap: 0;
        padding-bottom: 3.5em;
    }

    .content2 .wrapper4 .flex .right {
        max-width: 78%;
        font-size: 2.8vw;
        font-weight: var(--wt-med);
        gap: 1em;
    }

    .content2 .wrapper4 .min_flex .left {
        width: 40%;
    }

    .content2 .wrapper4 .min_flex {
        padding-bottom: 19em;
    }

    .content2 .wrapper4 .min_flex .left .content2 .wrapper4 .min_flex .right {
        position: relative;
    }

    .content2 .wrapper4 .min_flex .left img,
    .content2 .wrapper4 .min_flex .right img {
        position: absolute;
        top: 0;
    }

    .content2 .wrapper4 .min_flex .left img {
        left: -2em;
        width: 45%;
    }

    .content2 .wrapper4 .min_flex .right img {
        right: -4em;
        width: 75%;
    }

    .content2 .wrapper4 .right span {
        font-size: 3.1vw;
        margin: 0;
    }

    .content3 {
        margin-top: 0;
        padding: 1em 0 2em;
    }

    .content3 h3,
    .content3 span,
    .content3 .red,
    .btm-swiper .low strong {
        font-size: 6vw;
    }

    .content3 .lg,
    .content3 .lg .red,
    .content3 .lg .attention {
        font-size: 11vw;
    }

    .content3 .subheading {
        border: none;
    }

    .content3 .subheading,
    .content3 .subheading .red {
        font-size: 4.5vw;
        text-align: left;
    }

    .content3 .parts {
        margin: 0;
        justify-content: space-between;
        width: 90%;
    }

    .content2 .wrapper3 .right .grid .size{
        width: 84%;
    }

    .content2 .wrapper3 .right .grid .stack{
        width: 35%;
    }

    .content h2 .back_en{
        top: 1.5em;
    }

    .btm-swiper {
        border-top: 10px solid #000;
    }

    .btm-swiper .swiper-wrapper {
        display: flex;
        align-items: center;
    }

    .btm-swiper .swiper-slide {
        flex-direction: column;
    }

    .btm-swiper .swiper-slide .swipe-left {
        padding: 2em 0 2.5em;
    }

    .btm-swiper .swiper-slide .swipe-left,
    .btm-swiper .swiper-slide .swipe-right {
        width: 100%;
    }

    .btm-swiper .swiper-button-prev,
    .btm-swiper .swiper-button-next {
        top: 48%;
    }

    .btm-swiper .swiper-button-prev,
    .btm-swiper .swiper-rtl .swiper-button-next {
        left: initial;
        bottom: 0;
    }

    .btm-swiper .swiper-button-prev,
    .btm-swiper .swiper-rtl .swiper-button-next {
        left: initial;
        bottom: 0;
    }

    .btm-swiper .swiper-button-next:after,
    .btm-swiper .swiper-button-prev:after {
        font-size: 24px;
    }

    .btm-swiper .swiper-button-prev {
        right: 1.33em;
    }

    .refrection p {
        font-size: 3.1vw;
        max-width: 91%;
        white-space: nowrap;
    }

    .suply h2 {
        max-width: 80%;
        margin: auto;
        font-size: 5.8vw;
        text-align: left;
    }

    .suply .sl {
        font-size: 4.2vw;
    }

    .suply .lg {
        display: block;
        font-size: 7vw;
    }

    .suply .inner .images {
        display: flex;
        flex-direction: column;
        margin-top: 2em;
        max-width: 75%;
    }

    footer h1 {
        flex-direction: column;
    }

    footer h1 .left .flex {
        display: flex;
    }

    footer .inner div {
        justify-content: flex-start;
    }

    footer .inner .right {
        margin: 0;
        max-width: 100%;
        font-size: 18px;
        line-height: 2;
    }

    footer img {
        width: 33%;
        margin-right: -1.3em;
    }

    footer small {
        margin-top: 1em;
        font-size: 12px;
    }

    .suply {
        padding-bottom: 2em;
    }
}

@media (orientation: landscape) and (max-width: 900px) {
    header nav {
        top: 0;
        height: 100vh;
        z-index: 50;
    }

    header label {
        z-index: 100;
    }
}



@media screen and (max-width: 300px) {
    .block2 .center img {
        top: 90vw;
    }

    .person1 {
        width: 50%;
    }

    .right .item3 {
        margin-top: 2em;
    }

    .num2 .parts {
        top: -3em;
    }

    .content2 .wrapper4 .flex .inner {
        max-width: 85%;
    }

    footer .left .light {
        font-size: 11px;
    }

    footer .left .bold {
        font-size: 12px;
    }

    footer .inner .right {
        font-size: 16px;
    }
}

@media (orientation: landscape) and (max-width: 900px) {
    header nav {
        top: 0;
        height: 100vh;
        z-index: 50;
    }

    header label {
        z-index: 100;
    }
}

.video-thumbnails {
    display: flex;
    gap: 10px;
    margin: 20px;
}

.thumbnail-container {
    position: relative;
}

.thumbnail {
    width: 150px;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    /* z-index: 1; */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal video {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1000px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.swipe-left {
    margin-top: -1.1em;
}

.refrection {
    padding: 2em 0;
}

.refrection p {
    max-width: 95%;
    margin: 0 auto;
    padding: 0;
}

.suply h2 {
    margin: auto;
}

@media screen and (max-width: 300px) {
    .block2 .center img {
        top: 90vw;
    }

    .person1 {
        width: 50%;
    }

    .right .item3 {
        margin-top: 2em;
    }

    .num2 .parts {
        top: -3em;
    }

    .content2 .wrapper4 .flex .inner {
        max-width: 85%;
    }

    footer .left .light {
        font-size: 11px;
    }

    footer .left .bold {
        font-size: 12px;
    }

    footer .inner .right {
        font-size: 16px;
    }
}

@media (orientation: landscape) and (max-width: 900px) {
    header nav {
        top: 0;
        height: 100vh;
        z-index: 50;
    }

    header label {
        z-index: 100;
    }
}

.video-thumbnails {
    display: flex;
    gap: 10px;
    margin: 20px;
}

.thumbnail-container {
    position: relative;
}

.thumbnail {
    width: 150px;
    cursor: pointer;
}


.modal {
    display: none;
    position: fixed;
    /* z-index: 1; */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal video {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1000px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}


footer .left .flex {
    display: none;
}

@media(hover:hover){
    .thumbnail-container:hover,
    .download_contents .download .content a:hover{
        opacity: .4;
    }
}

/* オンライン購入先 */
/* ------------------------------------------------------ */
.onlineshop{
    padding: 70px 0;
    background: #f5f5f5;
}

.onlineshop .inner{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.onlineshop .inner h1{
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 1em;
    color: #d90013;
    font-family: var(--noto);
    font-size: 42px;
    text-align: center;
}

.onlineshop .inner h1::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 1.5em);;
    display: block;
    width: 3em;
    height: 2px;
    border: 1px dashed #d90013;
}

.onlineshop ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.onlineshop ul li{
    width: 24%;
    margin: 20px;
    text-align: center;
}

.onlineshop ul a{
    display: inline-block;
    padding: 2em;
    background: #fff;
    border: 1px solid #ccc;
}

.onlineshop p{
    text-align: center;
    margin-top: 20px;
    font-size: 24px;
}

@media screen and (max-width: 767px) {
    .onlineshop{
        padding: 50px 0;
        background: #f5f5f5;
    }

    .onlineshop ul li{
        width: 46%;
        margin: 20px 2%;
    }
}
@media screen and (max-width: 575px) {
    .onlineshop .inner h1{
        font-size: 8vw;
    }

    .onlineshop ul li{
        width: 100%;
        margin: 10px;
    }

    .onlineshop ul a{
        padding: 1em 2em;
    }

    .onlineshop p{
        margin-top: 10px;
        font-size: 4vw;
    }
}

/* youtube対応 */
#videoModal iframe{
    display: block;
    width: 100%;
    max-width: 70%;
    height: auto;
    margin: auto;
    aspect-ratio: 16 / 9;
}

@media screen and (max-width: 760px){
    #videoModal iframe{
        max-width: 95%;
    }
}