/* CSSリセットの基本 */
html {
    box-sizing: border-box;
    font-family: sans-serif;
    /* 好みや要件に応じてフォントを設定 */
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
    margin: 0;
    padding: 0;
    color:#4e4e4e;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    opacity: 1;
}

a:hover {
    opacity: 0.8;
}

button, input, textarea, select {
    font: inherit;
}

/* ブラウザで提供されるデフォルトのスタイルをリセット */
table {
    border-collapse: collapse;
    border-spacing: 0;

}

h2 {
    position: relative;
    display: flex;
    justify-content: center;
}

body {
    overflow-x: hidden;
    position: relative;
}

/* -------------------------------
inview
------------------------------- */

.inview {
    opacity: 0;
    transform: translateY(20px);
    transition: 1.2s;
    transition-delay: 0.1s;
}

.inview.show {
    opacity: 1;
    transform: translateY(0px);
}

.inview_slow {
    opacity: 0;
    transform: translateY(20px);
    transition: 1.2s;
    transition-delay: 0.5s;
}
.inview_slow.show {
    opacity: 1;
    transform: translateY(0px);
}

.inview.inview_delay {
    transition: 1s;
    transition-delay: 0.6s;
}

.inview_line {
    opacity: 0;
    transform: translateX(-90vw);
    transition: 1.0s ease-in-out;
    transition-delay: 0.8s;
}

.inview_line.show {
    opacity: 1;
    transform: translateX(0vw);
}

/* -------------------------------
Modal
------------------------------- */

.modaal-wrapper .modaal-container {
    border-radius: 10px;
}

.modaal-content-container>div {
    display: flex;
    justify-content: center;
    align-items: center;
}


.modal_open {
    color: #D84747;
    display: flex;
    font-weight: bold;
    gap: 10px;
    margin-top: 20px;
    border-bottom: 1px dashed #D84747;
    align-items: center;
    padding-bottom: 10px;
    padding: 10px 5px 10px;
}

.modal_open span {
    border-radius: 50px;
    background-color: white;
    color: #D84747;
    font-weight: bold;
    height: 25px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* line-height: 1; */
    padding-bottom: 3px;
    transition: 0.3s;
}

.modal_open:hover span {
    background-color: #D84747;
    color: white;
}

/* -------------------------------
Loading
------------------------------- */

.loading {
    width: 100vw;
    height: 100vh;
    background-color: #FCF2F4;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    text-align: center;
    overflow: hidden;
    z-index: 100;
}

.loading>div {
    position: relative;
    width: 100vw;
    padding: 35px 0;
}

.loading>div .line {
    position: absolute;
    width: 100vw;
    left: 0;
    height: 186px;
    background-image: url(img/img30.png);
    top: 0;
    background-size: contain;
    background-repeat: repeat-x;
    background-position-y: center;
}

.loading .logo {
    width: 250px;
}
.loading>div .line img {
    height: 100%;
}

.loading>div>div:first-child {
    margin-bottom: 10px;
}

.loading>div>div:first-child, .loading>div>div:nth-child(2) {
    z-index: 200;
    position: relative;
    color: #4e4e4e;
}

/* -------------------------------

------------------------------- */
.btn_cart {
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 190px;
    height: 190px;
    z-index: 10;
    color: white;
    transition: 1s;
}

.btn_cart.visible {
    opacity: 1;
}

.btn_cart::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 190px;
    height: 190px;
    background-image: url(img/img43.png);
    background-size: contain;
    animation: rotate-background 15s linear infinite;
    z-index: -1;
}


.btn_cart img {
    width: 37px;
}

.btn_cart>p:nth-child(2) {
    font-size: 15px;
    margin: 10px 0 5px;
    font-weight: bold;
    line-height: 1;
    color: white;
}

.btn_cart>p:nth-child(3) {
    font-size: 13px;
    line-height: 1;
    color: white;
}

@keyframes rotate-background {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.menu_btn {
    display: flex;
    flex-direction: column;
    color: white;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.menu_btn>div:last-child {
    margin-top: 9px;
}

.menu-trigger {
    position: relative;
    width: 50%;
    height: 30%;
    max-width: 36px;
    max-height: 27px;
}

.menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.5s;
    border-radius: 2px;
}

.menu-trigger.active span {
    background-color: #fff;
}

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

.menu_btn:hover span:nth-of-type(1) {
    width: 30%;
}

/* .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(12px) rotate(-45deg);
} */
.menu-trigger span:nth-of-type(2) {
    top: 33%;
    left: auto;
    right: 0;
    width: 55%;
}

.menu_btn:hover span:nth-of-type(2) {
    width: 20%;
}

/* .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
} */
.menu-trigger span:nth-of-type(3) {
    top: 66%;
}

.menu_btn:hover span:nth-of-type(3) {
    width: 30%;
}

/* .menu-trigger span:nth-of-type(3) {
    transform: translateY(-12px) rotate(45deg);
} */
.menu-trigger span:nth-of-type(4) {
    top: 98%;
    left: auto;
    right: 0;
    width: 55%;
}

.menu_btn:hover span:nth-of-type(4) {
    width: 20%;
}





/* -------------------------------

------------------------------- */
.containar {
    display: none;
}




section {
    max-width: 1300px;
    margin: 0 auto;
}



/* -------------------------------

------------------------------- */
.mv {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-top: 40px;
    background-image: url(img/img57.png);
    background-position: 1vw -14vw;
    background-size: 104vw;
    background-repeat: no-repeat;
}

.mv>div:first-child {
    /* max-width: 1300px; */
    margin: 0 auto 40px;
    padding: 0 40px;

}

.mv video {
    width: 100%;
    border-radius: 30px;
}

.mv .logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 285px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: white;
    border-bottom-right-radius: 20px;
}

.mv .logo img {
    width: 197px;
    height: auto;
}

.mv .logo>div {
    margin-top: 3px;
}
.mv .head_sns {
    position: absolute;
    top: 10px;
    right: 160px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.mv .head_sns  a {
    display: flex;
    background-color: #fff;
    border-radius: 60px;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    gap: 10px;
}



.mv .menu_btn {
    position: fixed;
    top: 0;
    right: 0;
    width: 110px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F397A4;
    border-bottom-left-radius: 20px;
    z-index: 99;
    margin-top: 0;
}

.mv .menu_btn img {
    width: 42px;
    height: auto;
}

.mv .video_wrap {
    position: relative;
    /* max-height: 100vh; */
}

.mv .catch {
    display: none;
    position: absolute;
    left: 41px;
    bottom: 160px;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 46px;
    font-weight: bold;
    padding: 7px 22px 12px;
    line-height: 1;
}

.mv .catch.catch1 {
    color: #2375BA;
}

.mv .catch.catch2 {
    bottom: 80px;
    color: #F397A4;
}



.menu_outer {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100;
    /* justify-content: center; */
    align-items: center;

}

.menu_outer .menu_box {
    max-width: 480px;
    width: auto;
    /* border-radius: 20px; */
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    background-color: #F397A4;
    /* height: 90vh; */
    justify-content: center;
    padding-top: 10vh;
    box-shadow: 0 0 10px #aaa;
    position: absolute;
    left: -480px;
    transition: 0.5s;
    opacity: 0;
}

.menu_outer .menu_box.active {
    left: 0;
    top: 15vh;
    transition: 0.3s;
    opacity: 1;
    padding: 30px 30px 70px 70px;
    width: 90vw;
}

.menu_outer .menu_box ul {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.menu_outer .menu_box ul li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    color: white;
}

.menu_outer .menu_box ul li a>span:first-child {
    font-size: 22px;
    font-weight: 400;
}

.menu_outer .menu_box ul li a>span:last-child {
    font-size: 14px;
    display: none;
}

.menu_outer .menu_box ul > li:last-child {
    text-align: center;
    border: 1px solid #FFF;
    margin-top: 15px;
    max-width: 340px;
}
.menu_outer .menu_box ul > li:last-child a {
    justify-content: center;
    padding: 10px 10px 12px;
    background-color: white;
    color: #d65162;
    border: 1px solid #d65162;
}

.menu_box .close_btn {
    text-align: right;
}
.menu_box .close_btn img {
    width: 30px;
    height: auto;
    cursor: pointer;
}


nav {
    margin-bottom: 40px;
}

nav ul {
    display: flex;
    max-width: 1300px;
    justify-content: space-between;
    margin: 0 auto;
    background-color: #F397A4;
    color: white;
    border-radius: 9px;
    padding: 10px;
    width: 95vw;
}

nav ul li {
    flex: 0 0 calc(100%/5);
    padding: 0 5px;
}

nav ul li:not(:last-child) {
    border-right: 1px solid #fff;
}

nav ul a {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px 0;
    border-radius: 6px;
    transition: 0.3s;
    color: white;
}

nav ul a:hover {
    background-color: white;
    color: #F397A4;
}

nav ul a span:first-child {
    font-size: 15px;
}

nav ul a span:last-child {
    font-size: 12px;
}



.sec1 {
    background-image: url(img/img6.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-bottom: 128px;
    padding-top: 100px;
    width: 95vw;
}

.sec1 h2 {
    margin-bottom: 50px;
    position: relative;
}

.sec1 h2.line_anime>div {
    background-image: url(img/img77.png);
}

h2.line_anime>div {
    background-repeat: no-repeat;
    background-position-x: -300px;
    background-position-y: 20px;
    animation: revealBackground 1.5s forwards;
    display: inline-block;
    min-width: 300px;
    text-align: center;
}


@keyframes revealBackground {
    from {
        background-position-x: -300px;
        /* 左から開始 */
    }

    to {
        background-position-x: 0;
        /* 右へ移動して背景画像が全体に表示されるように */
    }
}

.sec1>div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sec1>div>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.sec1>div>div picture:nth-child(1) {
    width: 720px;
    max-width: 100%;
}

.sec1>div>div picture img {
    width: 720px;
    max-width: 100%;
    z-index: 1;
}
.sec1>div>div img.liner {
    width: 580px;
    z-index: 1;
}
.sec1>div>div img:nth-child(3) {
    width: 920px;
    max-width: 100%;
    margin-top: -50px;
    z-index: 0;
}

.sec1 .ab1 {
    position: absolute;
    left: -259px;
    bottom: -189px;
}

.sec1 .ab2 {
    position: absolute;
    left: -222px;
    bottom: 370px;
}

.sec1 .ab3 {
    position: absolute;
    right: -215px;
    bottom: 600px;
}

.sec1 .ab4 {
    position: absolute;
    right: -107px;
    bottom: 210px;
}

.sec1 .ab5 {
    position: absolute;
    left: -202px;
    top: -117px;
}

.sec1 .ab6 {
    position: absolute;
    right: -194px;
    top: 54px;
}

.sec1 .ab7 {
    position: absolute;
    right: -228px;
    top: -73px;
}


.sec2 {
    background-image: url(img/img7.png);
    max-width: 100%;
    padding-top: 170px;
    padding-bottom: 110px;

}

.sec2 h2.line_anime>div {
    background-image: url(img/img83.png);
}

.sec2>div {
    position: relative;
}

.sec2 .ab5 {
    position: absolute;
    left: 54px;
    top: 100px;
}

.sec2 .ab6 {
    position: absolute;
    right: 100px;
    top: 256px;
}

.sec2 .ab7 {
    position: absolute;
    right: 60px;
    top: 112px;
}

.sec2 h2 {
    text-align: center;
}

.sec2>div>div:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sec2>div>div:nth-child(2) img:first-child {
    margin: 20px 0;
}

.sec2>div>div:nth-child(2) picture {
    margin: 40px 0 40px;
}


.sec2 .sec2_2>div {
    display: flex;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 140px auto 0;
    gap: 100px;
    align-items: center;
    position: relative;

}
.sec2 .sec2_2>div:first-child {
    margin-top: 100px;
}
.sec2 .sec2_2>div .ab8 {
    position: absolute;
    right: -27vw;
    width: 80vw;
    top: -3vw;
}

.sec2 .sec2_2>div .ab111 {
    position: absolute;
    left: 0;
    width: 104px;
    top: -60px;
}

.sec2 .sec2_2>div:nth-child(2) {
    flex-direction: row-reverse;
}

.sec2 .sec2_2>div:nth-child(2) .ab9 {
    position: absolute;
    left: -16vw;
    width: 66vw;
    top: -5vw;
}

.sec2 .sec2_2>div:nth-child(2) .ab112 {
    position: absolute;
    right: 335px;
    width: 104px;
    top: -57px;
}

.sec2 .sec2_2>div:nth-child(3) .ab113 {
    position: absolute;
    left: 0;
    width: 104px;
    top: -50px;
}

.sec2 .sec2_2>div>div {
    z-index: 9;
}

.sec2 .sec2_2>div>div:first-child {
    flex: 0 0 440px;
}

.sec2 .sec2_2>div>div:first-child>a.link {
    display: flex;
    border-bottom: 1px dashed #000;
    padding: 10px 0;
    max-width: 234px;
    background-image: url(img/img80.svg);
    background-repeat: no-repeat;
    background-position: 100% center;
}

.sec2 .sec2_2>div>div:last-child img {
    width: 745px;
    max-width: 100%;
    z-index: 9;
}

.sec2 .sec2_2>div>div:first-child>div:first-child {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 15px;
}

.sec2 .sec2_2>div>div:first-child>div:first-child span {
    color: #F397A4;
}

.sec2 .sec2_2>div>div:first-child>div:nth-child(2) {
    margin-bottom: 20px;
    font-size: 20px;
}

.sec2 .sec2_2>div>div:first-child>div:nth-child(3) {
    border: 1px solid #ABD5E8;
    background-color: white;
    border-radius: 14px;
    padding: 10px 15px 11px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.sec2 .sec2_2>div>div:first-child>div:nth-child(3)>div {
    font-size: 23px;
    font-weight: bold;
}

.sec2 .sec2_2>div>div:first-child>div:nth-child(3)>div:last-child>div>span:first-child {
    font-size: 16px;
    display: block;
}



.sec3 {
    background-color: #D7EEF8;
    padding: 50px 0;
    width: 100%;
    max-width: 100%;

}

.sec3_b {
    background-image: url(img/img64.png);
    height: 66px;
}

.sec3_a {
    background-image: url(img/img65.png);
    height: 42px;
}

.sec3>div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sec3>div>div:first-child {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sec3>div>div:last-child {
    background-color: white;
    border-radius: 14px;
    display: flex;
    max-width: 856px;
    padding: 35px 45px;
}

.sec3 .text {
    display: flex;
    gap: 20px;
    line-height: 1.7;
    position: relative;
}

.sec3 .text>div:first-child {
    /* flex: 0 0 75%; */
}

.sec3 .text>div:last-child {
    flex: 0 0 25%;
    text-align: center;
}

.sec3 h3 {
    margin-bottom: 40px;
    /* text-align: center; */
    font-size: 26px;
    letter-spacing: 1px;
}

.sec3 h3 span {
    display: block;
    font-size: 18px;
    margin-top: 6px;
}

.sec3 .text .name {
    margin-top: 0px;
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
}

.sec3 .text .name span {
    font-size: 18px;
    font-weight: normal;
}

.sec3 .text .link_info {
    font-size: 16px;
    font-weight: 400;
    padding-top: 30px;
    margin-top: 20px;
    border-top: 1px solid #f099a4;
}

.sec3 .text .link_info a {
    color: #f099a4;
}

.sec3 .text .link_info th {
    text-align: left;
    font-weight: 400;
    margin-right: 20px;
    padding-right: 20px;
}

.sec3 .text .f_wrap {
    display: flex;
    gap: 40px;
    align-items: flex-end;
}
.sec3 .text .f_wrap > div:first-child {
    flex: 0 0 70%;
}
.sec3 .text .f_wrap > div:last-child {
    flex: 0 0 22%;
}

.sec3 .ab5 {
    position: absolute;
    left: -200px;
    top: -560px;
}

.sec3 .ab6 {
    position: absolute;
    right: -200px;
    top: -286px;
}

.sec3 .ab7 {
    position: absolute;
    right: -300px;
    top: -412px;
}

.sec3 video {
    margin: 0 0 70px;
    width: 90vw;
    max-width: 660px;
}





.sec4 {
    padding: 100px 0 0;
}

.sec4 h2.line_anime>div {
    background-image: url(img/img77.png);
    background-repeat: no-repeat;
    background-position-x: -300px;
    background-position-y: 20px;
    animation: revealBackground 1.5s forwards;
    display: inline-block;
}

.sec4 h2 {
    text-align: center;
    margin-bottom: 70px;
}

.sec4 .sec4_1 {
    /* margin-right: calc(( 100vw - 1300px ) / 2 * -1); */
    margin-top: 80px;
}

.sec4 .sec4_1>div {

    display: flex;
    justify-content: space-between;
    margin-bottom: 90px;
}

.sec4 .sec4_1>div>div:first-child {
    border-radius: 11px;
    width: 720px;
    max-width: 100%;
    padding: 0 0 50px;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 19px;
    position: relative;
}

.sec4 .sec4_1>div>div:first-child .ab7 {
    position: absolute;
    top: -68px;
    left: 3%;
    width: 200px;
}

.sec4 .sec4_1>div>div:first-child .ab8 {
    position: absolute;
    top: 24px;
    right: -10%;
    /* width: 200px; */
}


.sec4 .sec4_1>div:first-child>div:first-child {
    background-color: #FCF2F4;
}

.sec4 .sec4_1>div.line_bg:first-child {
    background-image: url(img/img84.png);
    background-repeat: no-repeat;
    background-position-y: 100px;
    animation: revealBackground2 1s forwards;
}

@keyframes revealBackground2 {
    from {
        background-position-x: -300px;
        /* 左から開始 */
    }

    to {
        background-position-x: 600px;
        /* 右へ移動して背景画像が全体に表示されるように */
    }
}



.sec4 .sec4_1>div:nth-child(2)>div:first-child {
    background-color: #D7EEF8;
}

.sec4 .sec4_1>div:nth-child(2) {
    position: relative;
}

.sec4 .sec4_1>div.line_bg:nth-child(2) {

    flex-direction: row-reverse;
    background-image: url(img/img86.png);
    background-repeat: no-repeat;
    background-position-y: 100px;
    animation: revealBackground3 1s forwards;
}

@keyframes revealBackground3 {
    from {
        background-position-x: 600px;
        /* 左から開始 */
    }

    to {
        background-position-x: 0px;
        /* 右へ移動して背景画像が全体に表示されるように */
    }
}



.sec4 .sec4_1>div:nth-child(2)>div:last-child {
    position: absolute;
    width: 50%;
    left: -10vw;
    bottom: 22px;
    transition: 1.5s;
    opacity: 0;
}
.sec4 .sec4_1>div:nth-child(2)>div.slide:last-child {
opacity: 1;
    left: 0;
}

.sec4 .sec4_1>div:nth-child(2)>div:first-child .ab7 {
    position: absolute;
    top: -88px;
    left: 67%;
    width: 200px;
}

.sec4 .sec4_1>div:nth-child(2)>div:first-child .ab8 {
    position: absolute;
    top: 24px;
    left: -10%;
    /* width: 200px; */
}



.sec4 .sec4_1>div:nth-child(3) {
    position: relative;
}

.sec4 .sec4_1>div.line_bg:nth-child(3) {
    background-image: url(img/img87.png);
    background-repeat: no-repeat;
    background-position-y: 100px;
    animation: revealBackground2 1s forwards;
}

.sec4 .sec4_1>div:nth-child(3)>div:first-child {
    background-color: #F2F2F2;
}

.sec4 .sec4_1>div:nth-child(3)>div:first-child .ab7 {
    position: absolute;
    top: -65px;
    left: 4%;
    width: 200px;
}

.sec4 .sec4_1>div:nth-child(3)>div:first-child .ab8 {
    position: absolute;
    top: 24px;
    right: -10%;
    /* width: 200px; */
}

.sec4 .sec4_1>div:nth-child(3)>div:last-child {
    position: absolute;
    width: 28%;
    right: -10vw;
    bottom: 90px;
    opacity: 0;
    transition: 1s;
}
.sec4 .sec4_1>div:nth-child(3)>div.slide:last-child {
    right: 90px;
    opacity: 1;
}




.sec4 .sec4_1>div:first-child {
    position: relative;
}

.sec4 .sec4_1>div:first-child>div:last-child {
    position: absolute;
    width: 667px;
    right: -10vw;
    bottom: 50px;
    max-width: 50vw;
    transition: 1s;
    opacity: 0;
}
.sec4 .sec4_1>div:first-child>div.slide:last-child {
    right: 1vw;
    opacity: 1;
}

a.btn {
    background-color: #D84747;
    border: 1px solid #D84747;
    font-weight: bold;
    color: white;
    display: flex;
    max-width: 500px;
    justify-content: center;
    align-items: center;
    height: 75px;
    width: 100%;
    margin: 30px auto 0;
    gap: 10px;
    border-radius: 5px;
}

a.btn img {
    width: 24px;
    height: auto;
}

a.btn:hover {
    background-color: white;
    color: #D84747;
    transition: 0.3s;
}

.sec4 .sec4_1>div>div:first-child>div:nth-child(3) {
    display: flex;
    margin: 9px 0;
    flex-wrap: wrap;
}

.sec4 .sec4_1>div>div:first-child>div:nth-child(3) span {
    border-radius: 40px;
    margin-right: 10px;
    line-height: 1;
    padding: 3px 10px;
}

.sec4 .sec4_1>div>div:first-child>div:nth-child(3) span.en {
    background-color: #ABD5E8;
    color: white;
}

.sec4 .sec4_1>div>div:first-child>div:nth-child(3) span.mu {
    background-color: #F397A4;
    color: white;
}

.sec4 .sec4_1>div>div:first-child>div:nth-child(5) {
    margin: 15px 0 8px;
}

.sec5 {}

.sec5>div {
    background-image: url(img/img106.png);
    max-width: 1300px;
    margin: 70px auto 120px;
    padding: 60px 80px 90px;
    background-size: cover;
    border-radius: 14px;
    position: relative;
    width: 95vw;
}

.sec5>div h2 {
    margin-bottom: 40px;
}

.sec5 .f_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 25px;
}

.sec5 .f_wrap>div {
    flex: 0 0 31%;
}

.sec5 .ab5 {
    position: absolute;
    left: -50px;
    top: 0px;
}

.sec5 .ab6 {
    position: absolute;
    right: -15px;
    top: 170px;
}

.sec5 .ab7 {
    position: absolute;
    right: -44px;
    top: 14px;
}

.sec5 h2.line_anime>div {
    background-image: url(img/img107.png);
    background-repeat: no-repeat;
    background-position-x: -300px;
    background-position-y: 20px;
    animation: revealBackground 1.5s forwards;
    display: inline-block;
}
.sec5 .f_wrap > div > div:last-child {
    text-align: center;
} 
.sec5 .f_wrap > div > div:last-child img {
    width: 80%;
}



.sec6 {
    background-image: url(img/img71.png);
    max-width: 100%;
    margin: 70px auto;
    padding: 0 0 115px;
}

.sec6>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
}

.sec6>div .ab10 {
    position: absolute;
    top: 0;
    right: 0;
}

.sec6>div .ab11 {
    position: absolute;
    top: 0;
    left: 0;
}

.sec6 h2 {
    text-align: center;
    margin-top: 110px;
}

.sec6 .f_wrap {
    display: flex;
    justify-content: center;
    margin-top: 115px;
    gap: 20px;
}

.sec6 .f_wrap>div {
    flex: 0 0 30%;
}

.sec6 .f_wrap>div video {
    width: 100%;
}

.sec6 .f_wrap p {
    text-align: center;
    color: white;
}



.sec7 {
    text-align: center;
    padding: 50px 0;
}

.sec7 img {
    width: 1098px;
    max-width: 100%;
}


.sec8 {}

.sec8 h2.line_anime>div {
    background-image: url(img/img77.png);
    background-repeat: no-repeat;
    background-position-x: -300px;
    background-position-y: 20px;
    animation: revealBackground 1.5s forwards;
    display: inline-block;
}

.sec8>div>div {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 50px auto 70px;
}


footer {
    width: 100%;
    background-color: #EDE8E2;
}

footer>div {
    max-width: 1300px;
    margin: 0 auto;
}

footer .footer_body {
    display: flex;
    justify-content: space-between;
    padding: 50px 30px 30px;
}

footer .footer_body>div:first-child {
    display: flex;
    flex-direction: column;
}

footer .footer_body>div:first-child img {
    width: 228px;
    margin-bottom: 20px;
}

footer .footer_body>div:first-child>div>p:first-child {
    font-weight: bold;
}
footer .footer_body>div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}
footer .footer_body>div:last-child ul {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    margin-bottom: 20px;
    flex-wrap: wrap;
    row-gap: 5px;
}

footer .footer_body>div:last-child>div {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

footer .footer_body>div:last-child>div a {
    display: flex;
    background-color: #F7F5F2;
    border-radius: 60px;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    gap: 10px;
}

footer .footer_body>div:last-child>div a:nth-child(1) img {
    width: 25px;
    height: auto;
}

footer .footer_body>div:last-child>div a:nth-child(2) img {
    width: 29px;
    height: auto;
}

footer .footer_body>div:last-child>div a:nth-child(3) img {
    width: 25px;
    height: auto;
}

footer .footer_body>div:last-child>div a:nth-child(4) img {
    width: 25px;
    height: auto;
}



footer .footer_bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    border-top: 1px solid #E3DDD6;
}

footer .footer_bottom p {
    font-size: 14px;
}
footer .company_info {
    border: 1px solid #8b8b8b;
    padding: 2px 14px 5px;
    line-height: 1;
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
}

@media screen and (max-width: 1360px) {
    .mv {
        padding-right: 2vw;
        padding-left: 2vw;
    }

    .sec2 .sec2_2>div>div:last-child {
        width: 50%;
    }

    .sec2 .sec2_2>div {
        gap: 30px;
        padding: 0 20px;
        justify-content: center;
    }
    .sec2 .sec2_2>div .ab111 {
       top: -60px;
       left: 0px;
    }
    .sec2 .sec2_2>div:nth-child(2) .ab112 {
        right: 356px;
        top: -59px;
    }
    .sec2 .sec2_2>div:nth-child(3) .ab113 {
        left: 0px;
        top: -56px;
    }

    .sec4 .sec4_1>div {
        padding: 0 20px;
    }

    .sec4 .sec4_1>div>div:first-child {
        width: auto;
        padding: 0 50px 30px;
    }

    .sec4 .sec4_1>div>div:first-child .ab8 {
        right: -17%;
    }
    .sec4 .sec4_1>div:nth-child(2)>div:first-child .ab8 {
        left: -20%;
    }
    .sec4 .sec4_1>div:nth-child(3)>div:first-child .ab8 {
        right: -17%;
    }

    footer .footer_body {
        padding: 50px 30px 30px;
        /* flex-direction: column; */
        gap: 20px;
    }

    .sec1 .ab3 {
        right: -16vw;
        width: 24vw;
    }

    .sec1 .ab2 {
        position: absolute;
        left: -16vw;
        bottom: 370px;
        width: 22vw;
    }

}

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

    .sec2 .ab7 {
        right: 0;
    }

    .sec2 .ab5 {
        left: 0;
    }

    .sec2 .ab6 {
        right: 0;
    }
}

@media screen and (max-width: 1000px) {
    main {
        overflow-x: hidden;
    }

    nav {
        display: none;
    }

    .sec1 {
        background-size: 100% 100%;
    }

    .sec2 .sec2_2>div {
        justify-content: center;
        flex-direction: column-reverse;
    }

    .sec2 .sec2_2>div:nth-child(2) {
        flex-direction: column-reverse;
    }

    .sec2 .sec2_2>div>div:first-child {
        flex: 0 0 auto;
    }
    .sec2 .sec2_2>div:first-child {
        margin-top: 100px;
        margin-bottom: 108px;
    }
    .sec2 .sec2_2>div .ab111 {
        top: -64vw;
    }
    .sec2 .sec2_2>div:nth-child(2) .ab112 {
        right: auto;
        top: -62vw;
    }
    .sec2 .sec2_2>div:nth-child(3) .ab113 {
        top: -63vw;
    }
    .sec2 .sec2_2>div:nth-child(2) {
        margin-bottom: 104px;
    }

    .sec4 .sec4_1>div {
        justify-content: center;
        margin-bottom: 300px;
    }

    .sec4 .sec4_1>div:nth-child(1) {
        margin-bottom: 320px;
    }

    .sec4 .sec4_1>div:nth-child(2) {
        margin-bottom: 350px;
    }

    .sec4 .sec4_1>div:first-child>div:last-child {
        width: 500px;
        max-width: 90vw;
        bottom: -360px;
    }

    .sec4 .sec4_1>div:nth-child(2)>div:last-child {
        width: 500px;
        max-width: 90vw;
        left: 0;
        bottom: -360px;
    }

    .sec4 .sec4_1>div:nth-child(3)>div:last-child {
        width: 300px;
        max-width: 65vw;
        right: 18vw;
        bottom: -350px;
    }

    .sec5 .ab5 {
        left: -3vw;
        width: 18vw;
    }

    .sec5 .ab6 {
        right: -1vw;
        width: 7vw;
        top: 17vw;
    }

    .sec5 .ab7 {
        right: -3vw;
        width: 17vw;
    }

    .sec2 {
        padding-top: 16vw;
    }

    .sec2 .sec2_2>div>div:last-child {
        width: 80%;
    }

    .sec2 .ab5 {
        left: -3vw;
        width: 18vw;
        top: 0;
    }

    .sec2 .ab6 {
        right: -1vw;
        width: 7vw;
    }

    .sec2 .ab7 {
        right: -3vw;
        width: 17vw;
    }

    .sec2 .sec2_2>div .ab8 {
        right: 0;
        width: 80vw;
        top: -3vw;
    }

    .sec1 {
        padding-top: 50px;
        padding-bottom: 70px;
    }

    .sec1>div>div img:nth-child(1) {
        padding: 0 20px;
    }

    .sec1 .ab7 {
        right: -15vw;
        width: 20vw;
    }

    .sec1 .ab6 {
        right: -4vw;
        width: 10vw;
    }

    .sec1 .ab4 {
        right: -7vw;
        width: 26vw;
        display: none;
    }

    .sec1 .ab3 {
        right: -13vw;
        width: 31vw;
        top: 68vw;
    }

    .sec1 .ab2 {
        left: -12vw;
        width: 30vw;
        top: 34vw;
    }

    .sec1 .ab1 {
        left: -7vw;
        bottom: -13vw;
        width: 40vw;
    }
    .sec1>div>div picture:nth-child(1) {
        width: auto;
        max-width: 80vw;
    }

    .sec1>div>div img.liner {
        width: 58vw;
    }

    .sec2 {
        padding-bottom: 30px;
    }

    .sec2 .sec2_2>div {
        margin-top: 60px;
    }

    .sec2 .sec2_2>div>div:first-child>div:first-child {
        font-size: 22px;
    }

    .sec2 .sec2_2>div>div:first-child>div:nth-child(2) {
        font-size: 17px;
    }

    .sec2 .sec2_2>div>div:first-child>div:nth-child(3)>div {
        font-size: 20px;
    }

    .sec2 .sec2_2>div>div:first-child>div:nth-child(3) {
        margin-bottom: 10px;
    }

    .sec2>div>div:nth-child(2)>img:last-child {
        max-width: 70vw;
    }
    .sec2>div>div:nth-child(2) picture {
        max-width: 80vw;
    }

    .sec3 {
        padding-bottom: 0;
        padding-top: 0;
    }

    .sec3 video {
        margin-bottom: 20px;
    }

    .sec3>div>div:last-child {
        padding: 30px;
    }

    .sec3>div {
        padding: 20px;
    }

    .sec4 {
        padding: 50px 0;
        left: 20px;
    }

    .sec4 .sec4_1>div>div:first-child .ab7 {
        top: -6%;
        left: 3%;
        width: 29%;
    }

    .sec4 .sec4_1>div>div:first-child {
        padding: 0 25px 30px;
    }

    .sec4 .sec4_1>div>div:first-child .ab8 {
        top: -80px;
        right: -6%;
        max-width: 120px;
        
    }

    .sec4 .sec4_1>div:nth-child(2)>div:first-child .ab8 {
        top: -80px;
        right: -6%;
        max-width: 120px;
        left: auto;
    }

    .sec4 .sec4_1>div:nth-child(2)>div:first-child .ab7 {
        top: -49px;
        left: 67%;
        width: 30%;
    }

    .sec4 .sec4_1>div:nth-child(3)>div:first-child .ab8 {
        position: absolute;
        top: -83px;
        right: -6%;
        /* width: 200px; */
    }

    .sec4 .sec4_1>div:nth-child(3)>div:first-child .ab7 {
        top: -6%;
        left: 4%;
        width: 30%;
    }

    .sec4 .sec4_1>div>div:first-child>img:first-child {
        max-width: 365px;
    }

    .sec6 {
        padding-bottom: 35px;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .sec6 h2 {
        margin-top: 38%;
    }

    .sec6>div {
        padding: 20px;
    }

    .sec6>div .ab10 {
        width: 57%;
    }

    .sec6>div .ab11 {
        width: 53%;
    }

    .sec6 .f_wrap {
        margin-top: 35px;
    }

    .sec7 {
        padding: 50px 20px;
    }

    .sec8 blockquote {
        max-width: 90% !important;
    }

    .mv {
        padding-right: 0;
        padding-left: 0;
        padding-top: 40px;
    }

    .mv video {
        border-radius: 0px;
    }

    .mv .catch {
        bottom: 13vw;
        padding: 6px 17px 7px;
        left: 10px;
    }

    .mv .catch.catch2 {
        bottom: 4vw;
    }

    .mv .catch.catch1 {
        font-size: 4.8vw;
    }

    .mv .catch.catch2 {
        font-size: 4.8vw;
    }

    .mv .logo {
        width: 29vw;
        min-width: 200px;
        height: 11vw;
    }

    .mv .logo img {
        width: 20vw;
        min-width: 160px;
    }

    .mv>div:first-child {
        padding: 0;
    }

    .btn_cart {
        right: 0;
        bottom: 0;
        width: 150px;
        height: 150px;
    }

    .btn_cart::after {
        width: 150px;
        height: 150px;
    }

    .btn_cart img {
        width: 30px;
    }

    .btn_cart>p:nth-child(2) {
        font-size: 13px;
    }

    .btn_cart>p:nth-child(3) {
        font-size: 12px;
    }

    a.btn {
        height: 50px;
        margin-top: 20px;
    }

    .sec6 .f_wrap {
        flex-direction: column;
    }

    .modal_open {
        margin-top: 10px;
    }


    .loading {
        font-size: 20px;
    }

    .loading img {
        max-width: 50vw;
    }

    .loading>div .line {
        height: 120px;
        background-size: cover;
    }


    footer .footer_body>div:first-child img {
        width: 170px;
    }
}

@media screen and (min-width: 531px) {
    .sec1>div>div div:nth-child(4) {
        display: none;
    }
}

@media screen and (max-width: 530px) {
    .btn_cart>p:nth-child(2) {
        font-size: 11px;
    }
    .btn_cart {
        width: 120px;
        height: 120px;
    }
    
    .btn_cart::after {
        width: 120px;
        height: 120px;
    }
    .btn_cart>p:nth-child(3) {
        font-size: 10px;
    }
    .mv .head_sns {
        display: none;
    }
    .mv .menu_btn {
        width: 17vw;
        height: 16vw;
    }
    .mv .logo img {
        width: 13vw;
        min-width: 140px;
    }
    .mv .logo {
        height: 16vw;
    }

    .mv .logo>div {
        font-size: 12px;
    }
    .menu_outer .menu_box.active {
        top: 18vw;
        padding: 10vw;
        padding-bottom: 20vw;
        padding-right: 12vw;
    }
    .sec1 {
        padding-right: 15px;
        padding-left: 15px;
        width: 100vw;
    }

    .sec1>div>div img:nth-child(3) {
        display: none;
    }

    .sec1>div>div img:nth-child(2) {
        width: 80vw;
        margin-bottom: 20px;
    }

    .sec1>div>div div:nth-child(4) {
        display: block;
        background-color: white;
        border-radius: 20px;
        padding: 35px 10px;
        margin-top: 30px;
        line-height: 2;
    }

    .sec1>div>div div:nth-child(4)>div:first-child {
        text-align: center;
        margin-bottom: 20px;
    }

    .sec1>div>div div:nth-child(4) img {
        width: 80vw;
    }

    .sec1>div>div div:nth-child(4)>div:last-child {
        text-align: left;
        display: flex;
        flex-direction: column;
        margin-top: 10px;
    }

    .sec1>div>div div:nth-child(4)>div:last-child>span {
        line-height: 1;
    }

    .sec1>div>div div:nth-child(4)>div:last-child>span:first-child {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .sec1>div>div div:nth-child(4)>div:last-child>span:last-child {
        font-size: 24px;
    }

    .sec1 .ab1 {
        bottom: -25vw;
    }
    .sec1>div>div picture:nth-child(1) {
        width: auto;
    }

    .sec2>div>div:nth-child(2)>picture {
        width: 95vw;
        max-width: 95vw;
        margin-bottom: 20px;
    }

    .sec2 .sec2_2>div .ab111 {
        width: 23vw;
        left: 6vw;
        top: -70vw;
        z-index: 99;
    }

    .sec2 .sec2_2>div:nth-child(2) .ab112 {
        position: absolute;
        left: 6vw;
        width: 23vw;
        top: -68vw;
        z-index: 99;
    }

    .sec2 .sec2_2>div:nth-child(3) .ab113 {
        position: absolute;
        left: 6vw;
        width: 23vw;
        top: -70vw;
        z-index: 99;
    }

    .sec2 .sec2_2>div>div:first-child>div:nth-child(3)>div:first-child {
        flex: 0 0 26%;
    }

    .sec2 .sec2_2>div:not(:last-child) {
        margin-bottom: 100px;
    }
    .sec3>div>div:last-child {
        padding: 30px 20px;
    }
    .sec3 .text .f_wrap {
        flex-direction: column;
        gap: 10px;
    }
    
    .sec3 .text .f_wrap img {
        max-width: 200px;
    }
    .sec3 .text .f_wrap > div:last-child {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
    }
    .sec3 .text .f_wrap > div:last-child > img {
        flex: 0 0 40%;
        width: 54%;
    }

    .sec3 h3 {
        font-size: 20px;
    }

    .sec3 h3 span {
        font-size: 18px;
    }


    .sec3 table, .sec3 table tr, .sec3 table td {
        display: block;
    }

    .sec3 table {
        display: block;
    }
    .sec3>div>div:first-child {
        margin-bottom: 40px;
    }



    .sec4 .sec4_1>div>div:first-child>img:first-child {
        max-width: 300px;
    }

    .sec4 .sec4_1>div:nth-child(2)>div:last-child {
        bottom: -75vw;
    }

    .sec4 .sec4_1>div:first-child>div:last-child {
        bottom: -68vw;
    }
    .sec4 .sec4_1>div:nth-child(2)>div:first-child .ab7 {
        left: 0;
    }
    .sec4 .sec4_1>div:nth-child(1) {
        margin-bottom: 310px;
    }
    .sec4 .sec4_1>div {
        margin-bottom: 340px;
    }

    .sec5 {
        padding: 20px;
    }

    .sec5>div {
        padding: 30px 20px;
        margin-top: 0;
        margin-bottom: 0;
        max-width: 100%;
    }

    .sec5 .f_wrap>div {
        flex: 0 0 100%;
    }

    .sec7 {
        padding: 0 20px;
    }
    footer .footer_body {
        flex-direction: column;
    }
    footer .footer_body>div:last-child ul {
        gap:5px;
        justify-content: space-around;
    }
    footer .footer_body>div:last-child ul li {
        flex: 0 0 48%;
    }
}