@charset "utf-8";

@font-face {
    font-family: Zen Old Mincho;
    src: url("../fonts/Zen Old MinchoN_v2.ttf");
}

@font-face {
	font-family: "anzu-moji";
	src: url("../fonts/APJapanesefontT.ttf");
}

html {
    overflow-x: hidden;
    height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 5em;
}

body {
    list-style: none;
    background-color: #FFFFFF;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    height: 100%;
    /* overflow-x: hidden; */
}

ul {
    list-style: none;
}

img {
    width: 100%;
}

.sl-sp {
    image-rendering: -webkit-optimize-contrast;

}

header {
    width: 100%;
    height: 5em;
    background: #F8F8F8;
    opacity: 0.9;
    position: fixed;
    top: 0;
    z-index: 999;
}

footer {
    position: relative;
    z-index: 60;
    margin-top: 10em;
    color: #fff;
}

.header {
    display: flex;
    height: 100%;
    align-items: center;
    position: relative;
}

.header_left {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    margin-left: 2.6%;
}

.header_logo {
    transition: .3s;
}

.header_Instagram {
    position: relative;
    width: 44px;
    height: 44px;
    margin: 22px;
    background: url(../../assets/images/header/Instagram_Glyph_Gradient.svg) center center no-repeat;
    -webkit-mask: url(../../assets/images/header/Instagram_Glyph_Gradient.svg) center center no-repeat;
    transition: .3s;
}

.header_Instagram::before {
    position: absolute;
    width: 44px;
    height: 44px;
    background: url(../../assets/images/header/Instagram_logo.svg) center center no-repeat;
    -webkit-mask: url(../../assets/images/header/Instagram_logo.svg) center center no-repeat;
    top: 0;
    left: 0;
    background: #37241E;
    background-size: contain;
    content: "";
    transition: .3s;
}

.header_left .nav-li ul{
    display: flex;
}
.header_left .nav-li ul li{
    position: relative;
    margin-right: 20px;
    transition: all .3s;
}
/* .header_left .nav-li ul li:hover{
    opacity: .7;
    transition: all .3s;
    text-decoration: underline;
} */
.header_left .nav-li ul li a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #37241E;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
    transition: transform 0.3s;  /*変形の時間*/
    }

.header_left .nav-li ul li a:hover::after {
    transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
    transform-origin: left top; /*左から右に向かう*/
    }

.header_right {
    display: flex;
    /* width: 50%; */
    justify-content: right;
    align-items: center;
    margin-right: 2.6%;
}

.header_button-shiryou {
    text-decoration: none;
    position: relative;
    display: block;
    width: 196px;
    height: 56px;
    padding: 0.6em 1em;
    background: #C1A37D;
    text-align: center;
    color: #ffffff;
    text-align: center;
    font: normal normal normal 18px/36px 'Zen Old Mincho', serif;
    transition: all .3s;
}

.header_button-yoyaku {
    text-decoration: none;
    position: relative;
    display: block;
    width: 196px;
    height: 56px;
    padding: 0.6em 1em;
    background: #E98585;
    text-align: center;
    color: #ffffff;
    text-align: center;
    font: normal normal normal 18px/36px 'Zen Old Mincho', serif;
    transition: all .3s;
}

.header_right div {
    position: relative;
}
.header_right div:first-child {
    margin-right: 1em;
}

.header_button-deco {
    color: #ffffff;
    z-index: 2;
}
@media screen and (max-width:1300px) {
.header_left .nav-li ul li{
    margin-right: 1em;
    font-size: 14px;
}
}
@media screen and (max-width:1090px) {
    .header_left .nav-li ul li{
        display: none;
    }
}

@media screen and (max-width:1024px) {
    .header_right {
        margin-right: 0;
        /* width: 60%; */
    }

    .header_left {
        margin-left: 2%;
        /* width: 40%; */
    }

    .header_right div {
        margin-right: 1em;
    }
}

@media screen and (max-width:834px) {
    header {
        height: 4em;
    }
    .header_button-shiryou,
    .header_button-yoyaku {
        width: 21vw;
        height: 3.5em;
        /* padding: 1em 1.2em; */
        text-align: center;
        font: normal normal normal 18px/36px 'Zen Old Mincho', serif;
    }
}
@media screen and (max-width:834px) {

    .header_right {
        width: 60%;
    }

    .header_left {
        width: 40%;
    }
    }

.shiryou {
    position: relative;
    display: block;
    z-index: 2;
    transition: all .3s;
}


.shiryou::before {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 23px;
    transform: translateY(-50%);
    background: url(../../assets/images/header/shiryo-icon.svg) center center no-repeat;
    -webkit-mask: url(../../assets/images/header/shiryo-icon.svg) center center no-repeat;
    background: #fdeff2;
    background-size: contain;
    content: "";
    z-index: 2;
    transition: all .3s;
}

.shiryou::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 30px;
    height: 15px;
    transform: translateY(-50%);
    background: url(../../assets/images/header/arrow.svg) center center no-repeat;
    -webkit-mask: url(../../assets/images/header/arrow.svg) center center no-repeat;
    background: #fdeff2;
    background-size: contain;
    content: "";
    z-index: 2;
    transition: all .3s;
}

.yoyaku {
    position: relative;
    display: block;
    z-index: 2;
    transition: all .3s;
}

.yoyaku::before {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 23px;
    transform: translateY(-50%);
    background: url(../../assets/images/header/yoyaku-icon.svg) center center no-repeat;
    -webkit-mask: url(../../assets/images/header/yoyaku-icon.svg) center center no-repeat;
    background: #fdeff2;
    background-size: contain;
    content: "";
    transition: all .3s;
}

.yoyaku::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 0px;
    width: 30px;
    height: 15px;
    transform: translateY(-50%);
    background: url(../../assets/images/header/arrow.svg) center center no-repeat;
    -webkit-mask: url(../../assets/images/header/arrow.svg) center center no-repeat;
    background: #fdeff2;
    background-size: contain;
    content: "";
    transition: all .3s;
}

.header_button-shiryou:hover,.shiryou:hover,.shiryou:hover.shiryou::before,.shiryou:hover.shiryou::after,.header_button-yoyaku:hover,.yoyaku:hover,.yoyaku:hover.yoyaku::before,.shiryou:hover.shiryou::after {
    opacity: .7;
    transition: all .3s;
}


@media screen and (max-width:1216px) {
.header_button-shiryou {
    width: 150px;
    height: 50px;
    font: normal normal normal 14px/36px 'Zen Old Mincho', serif;
}

.header_button-yoyaku {
    width: 150px;
    height: 50px;
    font: normal normal normal 14px/36px 'Zen Old Mincho', serif;
}
.yoyaku::before{
    width: 20px;
    height: 23px;
}
.shiryou::before{
    width: 25px;
    height: 23px;
}
.yoyaku::after,.shiryou::after{
    width: 10px;
    height: 10px;
}
.header_Instagram {
    width: 30px;
    height: 30px;
    margin: 15px;
    background-size: cover;
    background: url(../../assets/images/header/Instagram_Glyph_White.svg.svg) center center no-repeat;
    -webkit-mask: url(../../assets/images/header/Instagram_Glyph_White.svg) center center no-repeat;
    background: #37241E;
}
}

.main-visual {
    position: relative;
    top: 5em;
    margin-bottom: 5em;
}
.main-visual .sp {
    display: none;
}
@media screen and (max-width:834px) {
    .main-visual {
        position: relative;
        top: 4em;
        margin-bottom: 4em;
    }
    .main-visual .pc {
        display: none;
    }
    .main-visual .sp {
        display: block;
    }
}


#event-slider {
    position: relative;
    background: none;
}

.eve-bgimg {
    z-index: 10;
    padding-top: 5%;
    padding-bottom: 5%;
}

@media screen and (max-width:834px) {
    .eve-bgimg {
        background-color: #fff;
    }
    .event-slider-wave .pc {
        display: none;
    }
    .event-slider-wave img {
        display: block;
        position: relative;
        width: 100%;
    }
}


/*==================================================
スライダーのためのcss
===================================*/
.ev-slider {
    width: 100%;
    margin: 0 auto;
}

.ev-slider img {
    width: 60vw;
    height: auto;
}

.ev-slider .slick-slide {
    transform: scale(0.7);
    transition: all .5s;
    opacity: 0.5;
}

.ev-slider .slick-slide.slick-center {
    transform: scale(1);
    opacity: 1;
}

/*ドットナビゲーションの設定*/
.event-slider .slick-dots {
    text-align: center;
    margin: 20px 0 0 0;
}
.event-slider .slick-dots li {
    display: inline-block;
    margin: 0 5px;
}
.event-slider .slick-dots button {
    color: transparent;
    outline: none;
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    background: #ACAFA8;
}
.event-slider .slick-next {
    display: none;
}
.event-slider .slick-dots .slick-active button {
    background: #37241e;
}


.event-text {
    font: normal normal normal 30px/33px 'Zen Old Mincho', serif;
    letter-spacing: -1.04px;
    color: #37241E;
    text-align: center;
    margin: 0 auto 2.7%;
    width: 50%;
    position: relative;
}

@media screen and (max-width:834px) {
    .event-text {
        font-size: 30px;
        width: 59%;
        margin-bottom: 2em;
    }
}

.event-text h2::before,
.event-text h2::after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 30%;
    height: 1px;
    background-color: black;
}

.event-text h2::after {
    right: 0;
}

.event-text h2::before {
    left: 0;
}


.text1 {
    font: normal normal normal 22px/26px 'Zen Old Mincho', serif;
    letter-spacing: 0px;
    color: #37241E;
    text-align: center;
    position: relative;
    width: 40%;
    padding: 1em 1em 0 1em;
    margin: 0 auto 1em;
}

@media screen and (max-width:1536px) {
    .text1 {
        width: 50%;
    }
}

@media screen and (max-width:1366px) {
    .text1 {
        font-size: 20px;
    }
}

@media screen and (max-width:1024px) {
    .text1 {
        width: 60%;
    }
}

.font-s {
    font-size: 18px;
}

.text1::before,
.text1::after {
    content: '';
    position: absolute;
    bottom: 13%;
    display: inline-block;
    width: 31px;
    height: 1px;
    background-color: #E98585;
}

.text1::after {
    transform: matrix(0.71, -0.71, 0.71, 0.71, 0, 0);
    right: 0;
}

.text1::before {
    transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
    left: 0;
}

.kakaku-img {
    display: block;
    width: 57%;
    margin: 3em auto 0;
}


.plus {
    padding: 1em;
}

.set-fx {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 6.3em;
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width:1536px) {
    .set-fx {
        width: 80%;
    }
}

@media screen and (max-width:1536px) {
    .title-fx {
        font-size: 24px;
    }
    /* .isshiki h4,
    .tokuten h4 {
        font-size: 20px;
    } */
    .bottom-fx p {
        font-size: 14px;
    }
}

@media screen and (max-width:1280px) {
    .set-fx {
        width: 90%;
    }

    .title-fx {
        width: 90%;
    }
}

@media screen and (max-width:666px) {
    .title-fx {
        width: 80%;
    }

    .title-fx img {
        width: 30%;
    }

    .title-fx h3 {
        width: 40%;
    }
}

.tokuten-fx {
    display: flex;
    padding-top: 3%;
    position: relative;
}

.maedori {
    width: 65%;
}

.toujitsu {
    width: 36%;
    /* border-left: 1px dotted #c1a37d; */
}
span.border {
    border-left: 1px dotted #c1a37d;
}
.maedori-text {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    font: normal normal normal 18px 'Zen Old Mincho', serif;
    text-align: center;
    color: #37241E;
}

.toujitsu-text {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    font: normal normal normal 18px 'Zen Old Mincho', serif;
    text-align: center;
    color: #37241E;
}

.maedori-text::before {
    display: block;
    width: 5%;
    height: 20px;
    content: "";
    background: url(../images/contents/dia.png) no-repeat center center;
}

.toujitsu-text::before {
    display: block;
    width: 5%;
    height: 20px;
    content: "";
    background: url(../images/contents/dia.png) no-repeat center center;
}

.maedori-fx {
    display: flex;
    width: 81%;
    flex-wrap: wrap;
    margin: 5% auto 0;
    justify-content: space-between;
}

.maedori-fx li {
    display: flex;
    width: 47%;
    align-items: center;
    margin-bottom: 6%;
}

.maedori-fx img {
    width: 50%;
    margin-right: 10px;
}

.maedori-fx p {
    color: #37241e;
    text-align: left;
    font: normal normal normal 16px/22px 'Zen Old Mincho', serif;
    color: #37241E;
}

.toujitsu-fx {
    display: flex;
    width: 70%;
    flex-direction: column;
    margin: 7% auto 0;
    justify-content: space-around;
}

.toujitsu-fx li {
    display: flex;
    width: 100%;
    align-items: center;
    margin-bottom: 14%;
}

.toujitsu-fx img {
    width: 50%;
    margin-right: 10px;
}

.toujitsu-fx p {
    color: #37241e;
    text-align: left;
    font: normal normal normal 16px/22px 'Zen Old Mincho', serif;
    color: #37241E;
}

.bottom-fx {
    display: flex;
    width: 95%;
    margin: 0 auto;
    justify-content: flex-end;
    align-items: stretch;
}

.bottom-fx p {
    padding-top: 2em;
    font: normal normal normal 16px/22px 'Zen Old Mincho', serif;
    color: #37241E;
}

@media screen and (max-width:1404px) {
    .bottom-fx p {
        font-size: 14px;
    }

}


@media screen and (max-width:1144px) {
    /* .maedori-btn p {
        width: 95%;
    } */
    .bottom-fx p {
        padding-top: 1em;
    }
    .tokuten-fx {
        padding-top: 1%;
    }
    .bottom-fx {
        margin: 0 auto;
    }
    .maedori-fx p {
        font-size: 14px;
    }
    .maedori-fx li {
        width: 48%;
    }
    .maedori-fx {
        width: 90%;
    }
    .maedori-fx img {
        width: 45%;
    }
    .toujitsu-fx {
        width: 78%;
    }
    .toujitsu-fx img {
        width: 45%;
        margin-right: 10px;
    }
    .toujitsu-fx p {
        font-size: 14px;
    }
    .maedori-text {
        font: normal normal normal 16px 'Zen Old Mincho', serif;
    }
    .toujitsu-text {
        font: normal normal normal 16px 'Zen Old Mincho', serif;
    }
    .tokuten h4 {
        left: 50%;
        transform: translateX(-50%);
    }
    .isshiki h4 {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* @media screen and (max-width: 979px) {
    .maedori-btn {
        width: 40%;
    }
} */

@media screen and (max-width: 375px) {
    .maedori-fx {
        width: 100%;
    }
}

.torikae-aria {
    background: url(../images/contents/torikae/torikae-bg.svg) center center no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
}

@media screen and (max-width:1024px) {
    .torikae-aria {
        background: url(../images/contents/torikae/torikae-bg-md.svg) center center no-repeat;
        background-size: cover;
        position: relative;
        width: 100%;
    }
}

.torikae-aria .ab-txt {
    position: absolute;
    bottom: 9%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color: #37241E;
    text-align: left;
    font: normal normal normal 16px/24px 'Zen Old Mincho', serif;
}

@media screen and (min-width:521px) {
    .ab-txt .sp {
        display: none;
    }
}

.w80 {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:1366px) {
    .w80 {
        width: 90%;
    }
}

@media screen and (max-width:1280px) {
    .w80 {
        width: 95%;
    }
}

.torikae-text {
    width: 40%;
}

@media screen and (max-width:1313px) {
    .torikae-text {
        width: 50%;
    }
}

@media screen and (max-width:1093px) {
    .torikae-text {
        width: 57%;
    }
}

.konomi {
    width: 80%;
    margin: 0 auto;
}

@media screen and (max-width:1600px) {
    .konomi {
        width: 100%;
    }
}

.torikae-text h4 {
    text-align: center;
    font: normal normal normal 26px 'Zen Old Mincho', serif;
}

.torikae-text .red {
    color: #A62800;
}

.torikae-text .f36 {
    font-size: 36px;
}

.torikae-img {
    position: relative;
    width: 60%;
    display: flex;
    align-items: flex-start;
    margin-left: 5%;
    padding: 10% 0;
    justify-content: space-between;
}

.torikae-img .before {
    width: 45%;
}

.torikae-img .after {
    width: 50%;
}

@media screen and (max-width:1366px) {
    .torikae-img .before,
    .torikae-img .after {
        width: 40%;
    }
}

@media screen and (max-width: 1024px) {
    .torikae-img .before,
    .torikae-img .after {
        width: 45%;
    }
}

.torikae-img .arrow {
    margin-top: 20%;
    width: 12%;
    position: absolute;
    left: 43%;
}

.torikae-kikan p {
    display: flex;
    font: normal normal normal 22px 'Zen Old Mincho', serif;
    justify-content: center;
    align-items: center;
    padding-top: 1em;
}

.f29 {
    font-size: 29px;
    color: #A62800;
    padding-bottom: 1%;
}

.torikae-kikan p::before {
    content: "";
    background: url(../images/contents/torikae/left.png) center center no-repeat;
    width: 23px;
    height: 23px;
    padding: 0 3em 0 0;
    margin-bottom: 1em;
}

.torikae-kikan p::after {
    content: "";
    background: url(../images/contents/torikae/right.png) center center no-repeat;
    width: 23px;
    height: 23px;
    padding: 0 0 0 3em;
    margin-top: 1em;
}

@media screen and (max-width:1600px) {
    .torikae-kikan p {
        font-size: 20px;
    }

    .torikae-kikan p::before {
        padding: 0 1em 0 0;
    }

    .torikae-kikan p::after {
        padding: 0 0 0 1em;
    }
}

@media screen and (max-width:1024px) {
    .w80 {
        flex-direction: column;
        padding-top: 10%;
        padding-bottom: 10%;
    }

    .torikae-text,
    .torikae-img {
        width: 80%;

    }

    .torikae-img {
        justify-content: space-around;
        margin: 0 auto;
        padding: 7% 0;
    }

    .konomi {
        width: 85%;
    }

    .torikae-aria .ab-txt {
        bottom: 5%;
        width: 100%;
        text-align: center;
    }

    .torikae-kikan p {
        font-size: 22px;
        width: 65%;
        margin: 0 auto;
    }
}

#btn-area {
    width: 44%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-top: 5%;
}
@media screen and (max-width:1600px) {
    #btn-area {
        width: 50%;
    }
}
@media screen and (max-width:1536px) {
    #btn-area {
        width: 55%;
    }
}
@media screen and (max-width:1366px) {
    #btn-area {
        width: 60%;
    }
}
@media screen and (max-width:1079px) {
    #btn-area {
        width: 75%;
    }
}
@media screen and (max-width:1024px) {
    #btn-area {
        width: 80%;
    }
}

.moushikomi-btn {
    display: flex;
    justify-content: center;
    width: 43%;
    transition: all .3s;
}

.moushikomi-btn p {
    font: normal normal normal 16px/32px 'Zen Old Mincho', serif;
    letter-spacing: 0px;
    color: #F8F8F8;
    transition: all .3s;
}

.moushikomi-btn h4 {
    font: normal normal normal 26px 'Zen Old Mincho', serif;
    color: #F8F8F8;
    display: flex;
    width: 90%;
    margin: 0 auto;
    justify-content: center;
    align-items: baseline;
    align-items: center;
    transition: all .3s;
}

@media screen and (max-width:1280px) {
    .moushikomi-btn h4 {
        font-size: 20px;
        align-items: center;
    }
}

.moushikomi_button-shiryou {
    text-decoration: none;
    position: relative;
    display: block;
    width: 100%;
    border-radius: 5px;
    padding: 20px 17px;
    background: #C1A37D 0% 0% no-repeat padding-box;
    box-shadow: inset 0px -3px 6px #FFFFFF29, 4px 4px 10px #00000038;
    text-align: center;
    color: #fdeff2;
}

.moushikomi_button-yoyaku {
    text-decoration: none;
    position: relative;
    width: 100%;
    display: block;
    padding: 20px 17px;
    background: #E98585 0% 0% no-repeat padding-box;
    border-radius: 5px;
    box-shadow: inset 0px -3px 6px #FFFFFF29, 4px 4px 10px #00000038;
    text-align: center;
    color: #fdeff2;
}

.sp-button-deco {
    color: #fff;
    z-index: 2;
    width: 80%;
    margin: 0 auto;
}

.m-shiryou {
    position: relative;
    display: block;
    z-index: 2;
    transition: all .3s;

}

.m-shiryou h4::before {
    display: block;
    width: 30px;
    height: 23px;
    margin-right: 0.5em;
    background: url(../../assets/images/moushikomi/shiryo.svg) center center no-repeat;
    -webkit-mask: url(../../assets/images/moushikomi/shiryo.svg) center center no-repeat;
    background: #fdeff2;
    background-size: contain;
    content: "";
    z-index: 2;
    transition: all .3s;

}

.m-shiryou::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 30px;
    height: 23px;
    transform: translateY(-50%);
    background: url(../../assets/images/header/arrow.svg) center center no-repeat;
    -webkit-mask: url(../../assets/images/header/arrow.svg) center center no-repeat;
    background: #fdeff2;
    background-size: contain;
    content: "";
    z-index: 2;
    transition: all .3s;

}

.m-yoyaku {
    position: relative;
    display: block;
    z-index: 2;
    transition: all .3s;

}

.m-yoyaku h4::before {
    display: block;
    width: 30px;
    height: 28px;
    margin-right: 0.5em;
    background: url(../../assets/images/moushikomi/yoyaku.svg) center center no-repeat;
    -webkit-mask: url(../../assets/images/moushikomi/yoyaku.svg) center center no-repeat;
    background: #fdeff2;
    background-size: contain;
    content: "";
    transition: all .3s;

}

.m-yoyaku::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 0px;
    width: 30px;
    height: 28px;
    transform: translateY(-50%);
    background: url(../../assets/images/header/arrow.svg) center center no-repeat;
    -webkit-mask: url(../../assets/images/header/arrow.svg) center center no-repeat;
    background: #fdeff2;
    background-size: contain;
    content: "";
    transition: all .3s;

}

/*== 背景が流れる（左から右） */
.moushikomi_button-shiryou:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: #fff;
    border-radius: 5px;
    width: 100%;
    height: 100%;

    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
}

.moushikomi_button-yoyaku:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: #fff;
    border-radius: 5px;
    width: 100%;
    height: 100%;

    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
}

#shop {
    width: 100%;
    margin: 0 auto;
    background-color: #F8F8F8;
}

.shop-cont {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 7%;
    padding-top: 3%;
    position: relative;
}

@media screen and (max-width:1366px) {
    .shop-cont {
        width: 90%;
    }
}

@media screen and (max-width:1280px) {
    .shop-cont {
        width: 95%;
    }
}

/* #shop h2 {
    font: normal normal normal 30px/26px Zen Old Mincho;
    letter-spacing: 0px;
    color: #37241E;
    text-align: center;
} */

/* .shop-txt {
    margin-top: 2em;
} */

.eigyojikan {
    display: flex;
    justify-content: center;
    margin-top: 1em;
}

.eigyojikan p {
    text-align: center;
}

.eigyojikan .txt1 {
    font: normal normal normal 22px/37px 'Zen Old Mincho', serif;
    letter-spacing: 0px;
    color: #37241E;
}

.eigyojikan .txt2 {
    font: normal normal normal 22px/36px 'Zen Old Mincho', sans-serif;
    letter-spacing: -0.44px;
    color: #37241E;
    font-weight: bold;
    margin: 0 1em 0 .5em;
}

.eigyojikan .txt3 {
    text-align: left;
    font: normal normal normal 20px/37px 'Zen Old Mincho', serif;
    letter-spacing: 0px;
    color: #A62800;
}

.shop-area {
    display: flex;
    justify-content: space-evenly;
    margin-top: 3%;
}



.shop {
    width: 30%;
}

@media screen and (max-width:1536px) {
    .shop {
        width: 32%;
    }
}
@media screen and (max-width:834px) {
    .shop-area {
    flex-direction: column;
    }
    .shop{
        display: flex;
        width: 100%;
        margin-bottom: 1%;
        align-items: center;
        justify-content: flex-start;
    }
    .shop>img{
        width: 40%;
        height: 100%;
        margin-right: 1%;
    }
    .shop>div {
        margin-left: 5%;
    }

}
.tenpo-fx {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 1em;
    padding: 0 2em;
}

.tenpo-fx h4 {
    font: normal normal normal 26px/54px 'Zen Old Mincho', serif;
    letter-spacing: 0px;
    /* color: #A62800; */
    margin-right: 1em;
}

@media screen and (max-width:1600px) {
    .tenpo-fx h4 {
        font-size: 24px;
    }
}



.tenpo-fx p {
    font: normal normal normal 16px/26px "Noto Sans JP", sans-serif;
    letter-spacing: 0px;
    color: #37241E;
}
@media screen and (max-width:1024px) {
    .tenpo-fx p {
        font-size: 14px;
    }
}
.tenpo-shosai {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    margin: .5em 0;
    padding: 0 2em;
}

.tenpo-shosai p {
    font: normal normal normal 18px/26px "Noto Sans JP", sans-serif;
    letter-spacing: 0px;
    color: #37241E;
}

.tenpo-shosai p:nth-child(1) {
    font-weight: bold;
    margin-right: 30px;
    width: 5em;
}

.tenpo-shosai:last-child p:last-child {
    color: #E98585;
}

.tenpo-shosai span {
    width: 2em;
    height: 1px;
    background: #707070;
    margin: 0 .5em;
}

@media screen and (max-width:1366px) {
    .tenpo-shosai p {
        font-size: 16px;
    }
    .tenpo-shosai span {
        width: 1em;
    }
}
@media screen and (max-width:1440px) {
    .tenpo-shosai,
    .tenpo-fx {
        padding: 0;
    }
}

@media screen and (max-width:1024px) {
    .tenpo-fx {
        flex-wrap: wrap;
        padding: 0 1em;
    }
    .tenpo-shosai {
        flex-wrap: wrap;
        padding: 0 1em;
    }
}


.tel a {
    text-decoration: none;
    color: #37241E;
}
@media screen and (max-width:834px) {
    .tenpo-shosai a {
text-decoration: underline;
    }
}
.shop-btn {
    transition: .3s;
}

.shop-btn-deco {
    background: #37241E;
    /* border-radius: 5px; */
    padding: 1.8em 1.2em;
    width: 21%;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    bottom: -4.5%;
    transform: translate(-50%, -0%);
    -webkit-transform: translate(-50%, -0%);
    -ms-transform: translate(-50%, -0%);
    transition: .3s;
}

.shop-btn-deco:hover {
    opacity: .7;
    transition: .3s;
}

/* @media screen and (max-width:1600px) {
    .shop-btn-deco {
        bottom: 0;
    }
} */

@media screen and (max-width:1536px) {
    .shop-btn {
        bottom: 0;
    }
}

@media screen and (max-width:1024px) {
    .shop-btn-deco {
        width: 30%;
        /* bottom: -2%; */
    }
}

@media screen and (max-width:680px) {
    .shop-btn-deco {
        width: 40%;
    }
}

.shop-btn p {
    position: relative;
    font: normal normal normal 18px/26px 'Zen Old Mincho', serif;
    letter-spacing: 0px;
    color: #fff;
    text-align: center;
    margin: 0 auto;
    padding-right: 1em;
    width: 50%;
    z-index: 2;
    transition: .3s;
}

.shop-btn p::after {
    position: absolute;
    right: -20%;
    bottom: 18%;
    content: "";
    background: url(../images/header/arrow.svg) center center no-repeat;
    -webkit-mask: url(../images/header/arrow.svg) center center no-repeat;
    background: #fff;
    width: 14px;
    height: 11px;
    transition: .3s;
}

/*== 背景が流れる（左から右） */
/* .shop-btn-deco:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: #fff;
    width: 100%;
    height: 100%;

    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
}

.shop-btn-deco:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: #fff;
    width: 100%;
    height: 100%;
    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
} */

.shop-btn a {
    text-decoration: none;
    z-index: 2;
}

@media screen and (max-width:1600px) {
    .shop-btn p {
        width: 60%;
    }
}

.footer-cont {
    position: relative;
    background: #37241E 0% 0% no-repeat padding-box;
    padding: 3%;
    display: flex;
}

@media screen and (max-width:1600px) {
    .footer-cont {
        padding: 3% 2%;
    }
}
@media screen and (max-width:1232px) {
    .footer-cont {
        padding: 3% 10px;
    }
}

.f-left {
    width: 65%;
}

.f-right {
    width: 35%;
}

.f-left .top {
    display: flex;
    align-items: center;
    margin-bottom: 2em;
}

.logo-area {
    display: flex;
    width: 35%;
    margin-right: 2em;
    align-items: center;
}

.footer-logo {
    display: block;
    transition: .3s;
    width: 100%;
}

.footer-logo img {
    width: 100%;
}

.footer_Instagram {
    position: relative;
    width: 27%;
    height: 44px;
    margin: 22px;
    background: url(../../assets/images/header/Instagram_Glyph_Gradient.svg) center center no-repeat;
    -webkit-mask: url(../../assets/images/header/Instagram_Glyph_Gradient.svg) center center no-repeat;
    transition: .3s;
}

.footer_Instagram::before {
    position: absolute;
    width: 100%;
    height: 44px;
    background: url(../../assets/images/header/Instagram_logo.svg) center center no-repeat;
    -webkit-mask: url(../../assets/images/header/Instagram_logo.svg) center center no-repeat;
    top: 0;
    left: 0;
    background: #fdeff2;
    background-size: contain;
    content: "";
    transition: .3s;
}

.logo-area img:nth-child(1) {
    margin-right: 2em;
}

@media screen and (max-width:1600px) {
    .f-left {
        width: 60%;
    }
    .f-right {
        width: 40%;
    }
}

@media screen and (max-width:1366px) {
    .f-right {
        width: 50%;
    }
    .logo-area {
        width: 45%;
        margin-right: 0;
    }
}

@media screen and (max-width:1280px) {
    .f-right {
        width: 53%;
    }
}

.logo-area img:nth-child(2) {
    width: 44px;
    height: 44px;
}

.jikan {
    width: 75%;
}

.f-left .bottom {
    display: flex;
    align-items: center;
    width: 100%;
}

.f-left .bottom p {
    text-align: left;
    font: normal normal normal 15px/22px "Noto Sans JP", sans-serif;
    letter-spacing: 0px;
    color: #FFFFFF;
    margin-right: 1em;
    display: flex;
    align-items: center;
}

.f-left .bottom a {
    text-decoration: underline;
    font: normal normal normal 16px/22px "Noto Sans JP", sans-serif;
    letter-spacing: 0px;
    color: #FFFFFF;
    letter-spacing: 3px;
    transition: 0.3s;
}

@media screen and (max-width:1280px) {
    .f-left .bottom a {
        letter-spacing: 1px;
    }
}

.f-left .bottom p::before {
    content: "";
    width: 1px;
    height: 30px;
    background-color: #fff;
    margin: 0 1em;
}

.line-none::after {
    display: none;
}

.f-line-none::before {
    display: none;
}

.f-eigyojikan {
    display: flex;
    align-items: baseline;
    margin-bottom: .5em;
}

.f-eigyojikan .txt1 {
    font: normal normal normal 20px/22px "Noto Sans JP", sans-serif;
    letter-spacing: 0px;
    color: #FFFFFF;
}

.f-eigyojikan .txt2 {
    font: normal normal normal 20px/22px "Noto Sans JP", sans-serif;
    letter-spacing: -0.4px;
    color: #FFFFFF;
    margin: 0 1em;
}

.f-eigyojikan .txt3 {
    font: normal normal normal 14px/22px "Noto Sans JP", sans-serif;
    letter-spacing: 0px;
    color: #FFFFFF;
}

.jikan p {
    font: normal normal normal 14px/16px "Noto Sans JP", sans-serif;
    letter-spacing: 0px;
    color: #fff;
}

.f-right .top ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.f-right li {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.f-right a {
    position: relative;
    font: normal normal normal 16px/26px "Noto Sans JP", sans-serif;
    letter-spacing: 0px;
    color: #F8F8F8;
    text-decoration: none;
}

.f-right a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #F8F8F8;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}

.f-right li::before {
    content: "";
    width: 1px;
    height: 30px;
    background-color: #fff;
    margin: 10px;
}

.f-right p {
    text-align: right;
    font: normal normal normal 13px/16px "Noto Sans JP", sans-serif;
    letter-spacing: 0px;
    color: #FFFFFF;
}

.f-right .bottom {
    padding-top: 6%;
}
.f-eigyojikan-popup {
    margin: 0 0 1em;
}
header .h-eigyojikan-popup {
    margin: 1em auto ;
    width: 90%;
    text-align: center;
    font-size: 13px;
}
footer .popup-open {
    cursor: pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
    padding: 0;
    margin-bottom: 1em;
    color: #fff;
    font-size: 14px;
    transition:  0.3s;
}
@media screen and (max-width:834px) {
    footer .popup-open {
        display: block;
        text-align: center;
    }
    .f-eigyojikan-popup {
        margin: 0 0 1.5em;
    }
}
footer .popup-open:hover {
    opacity: .7;
}

@media screen and (max-width:1203px) {
    .f-right a {
font-size: 14px;
    }
    .footer-logo{
        width: 50%;
    }
}

@media screen and (max-width:1536px) {
    .f-right .bottom {
        padding-top: 9%;
    }
}

@media screen and (max-width:1024px) {
    .footer-cont {
        padding: 3% 1%;
    }
    .f-right {
        width: 40%;
    }
    .f-left {
        width: 80%;
    }
    .jikan {
        width: 54%;
    }
    .f-eigyojikan .txt1 {
        font: normal normal normal 14px/9px "Noto Sans JP", sans-serif;
    }
    .f-eigyojikan .txt2 {
        font: normal normal normal 15px/22px "Noto Sans JP", sans-serif;
    }
    .f-right a {
        font: normal normal normal 14px/26px "Noto Sans JP", sans-serif;
    }
    .f-right p {
        font: normal normal normal 10px/16px "Noto Sans JP", sans-serif;
    }
    .f-right .bottom {
        padding-top: 8%;
    }
    .f-left .bottom p {
        font: normal normal normal 13px/22px "Noto Sans JP", sans-serif;
    }
    .logo-area {
        width: 50%;
    }
    .f-right .top ul {
        flex-wrap: wrap;
    }
    .f-right li:last-child::before {
        display: none;
    }
}

/*========= ページトップのためのCSS ===============*/
#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #E98585;
    opacity: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.6rem;
    transition: all 0.3s;
    font: normal normal normal 14px/26px 'Zen Old Mincho', serif;
    color: #E98585;
}

#page-top a::before {
    content: url(../images/header/arrow.png);
    height: 30%;
}

#page-top {
    position: fixed;
    right: 1em;
    bottom: 0;
    /* z-index: -1; */
    opacity: 1;
    /* cursor: pointer; */
}

@media screen and (max-width:834px) {
    #page-top {
        bottom: 4em !important;
    }
}

/*　上に上がる動き　*/
#page-top.UpMove {
    animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*　下に下がる動き　*/
#page-top.DownMove {
    animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        transform: translateY(100px);
    }
}

#moushikomi {
    display: flex;
    flex-direction: row;
    bottom: 0;
    position: relative;
    right: 0;
}



/* ここからプラチナ館が選ばれる理由ページ */
#about-contents {
    /* overflow-x: hidden; */
}
#about-contents .sp-button-deco {
    color: #fff;
}

.about-main {
    background: transparent linear-gradient(180deg, #FFF3F3 0%, #E8E7F9 21%, #F7EDF8 47%, #E8E9D5 77%, #F5E3E6 100%) 0% 0% no-repeat padding-box;
}

#about-mv-area {
    position: relative;
    top: 5em;
    background: url(../images/about-cont/mv.jpg) center center no-repeat;
    background-size: cover;
    /* height: 34em; */
    z-index: 1;
    padding-top: 29%;
}



@media screen and (max-width:1024px) {
    #about-mv-area {
        /* height: 20em; */
    }
}

@media screen and (max-width:834px) {
    #about-mv-area {
        top: 4em;
    }
}

@media screen and (max-width:720px) {
    #about-mv-area {
        background: url(../images/about-cont/sp-mv.jpg) center center no-repeat;
        padding-top: 56%;
    }
}

#about-mv-area h1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5.5%;
    display: flex;
    flex-direction: column;
    text-align: left;
    font: normal normal normal 50px/18px 'Zen Old Mincho', serif;
    text-align: right;
    letter-spacing: 0px;
    color: #37241E;
}

@media screen and (max-width:1200px) {
    #about-mv-area h1 {
        font-size: 40px;
    }
}

@media screen and (max-width:980px) {
    #about-mv-area h1 {
        font-size: 35px;
    }
}

@media screen and (max-width:840px) {
    #about-mv-area h1 {
        font-size: 30px;
    }
}
#about-mv-area h1::after {
    content: "";
    background: url(../images/about-cont/title-line.png);
    margin-top: 5%;
    height: 3px;
}

.reason-area {
    position: relative;
}
.reason-area {
    position: relative;
    top: 5em;
    margin-top: 100px;
    z-index: 5;
}

#reason1 {
    display: flex;
    position: relative;
    width: 100%;
    margin-top: 4em;
}

.reason-text-area {
    display: table;
    position: absolute;
    background: #fff;
    opacity: 0.9;
    box-shadow: 0px 3px 6px #00000029;
    height: 100%;
    width: 55%;
    top: 5em;
}

@media screen and (max-width:1366px) {
    .reason-text-area {
        width: 60%;
    }

}

.reason-img-area {
    margin-left: 51%;
    height: 46%;
}

@media screen and (max-width:1600px) {
    .reason-img-area {
        margin-left: 45%;
    }
}

.reason-text {
    position: relative;
    margin: 0 5%;
    top: 50%;
    transform: translateY(-50%);
}

.reason-text h2 {
    display: flex;
    align-items: center;
    text-align: left;
    font: normal normal normal 26px/30px 'Zen Old Mincho', serif;
    font-weight: bold;
    position: relative;
}

@media screen and (max-width:1600px) {
    .reason-text h2 {
        font-size: 22px;
    }
}

@media screen and (max-width:1536px) {
    .reason-text h2 {
        font-size: 21px;
    }
}

.fz-36 {
    font-size: 36px;
}

@media screen and (max-width:1536px) {
    .fz-36 {
        font-size: 30px;
    }
}

#reason1 .reason-text h2::before {
    content: " 1.";
    font: normal normal normal 50px/23px FOT-Chiaro Std;
    letter-spacing: -1.4px;
    color: #37241E;
    margin-right: 2%;
}

#reason2 .reason-text h2::before {
    content: " 2.";
    font: normal normal normal 50px/23px FOT-Chiaro Std;
    letter-spacing: -1.4px;
    color: #37241E;
    margin-right: 2%;
}

#reason3 .reason-text h2::before {
    content: " 3.";
    font: normal normal normal 50px/23px FOT-Chiaro Std;
    letter-spacing: -1.4px;
    color: #37241E;
    margin-right: 2%;
}

#reason4 .reason-text h2::before {
    content: " 4.";
    font: normal normal normal 50px/23px FOT-Chiaro Std;
    letter-spacing: -1.4px;
    color: #37241E;
    margin-right: 2%;
}

#reason5 .reason-text h2::before {
    content: " 5.";
    font: normal normal normal 50px/23px FOT-Chiaro Std;
    letter-spacing: -1.4px;
    color: #37241E;
    margin-right: 2%;
}

#reason6 .reason-text h2::before {
    content: " 6.";
    font: normal normal normal 50px/23px FOT-Chiaro Std;
    letter-spacing: -1.4px;
    color: #37241E;
    margin-right: 2%;
}

.reason-text h2::after {
    content: '';
    width: 100%;
    height: 1px;
    left: 0;
    display: inline-block;
    background-color: #37241E;
    position: absolute;
    bottom: -15px;
}

.no-title {
    font: normal normal normal 50px/23px FOT-Chiaro Std;
    letter-spacing: -1.4px;
    color: #37241E;
    margin-right: 2%;
}

.txtc-red {
    color: #C31820;
    display: contents;
}

.reason-text p {
    text-align: left;
    font: normal normal normal 18px/27px 'Zen Old Mincho', serif;
    letter-spacing: 0px;
    color: #37241E;
    margin-top: 3.7%;
}

@media screen and (max-width:1600px) {
    .reason-text p {
        font-size: 16px;
    }
}

#reason2,
#reason3,
#reason4,
#reason5,
#reason6 {
    position: relative;
    margin-top: 20%;
}

#reason1,
#reason2,
#reason3,
#reason4,
#reason5,
#reason6 {
    z-index: 3;
}



.img-left {
    margin-left: 0;
    margin-right: 45%;
}

@media screen and (max-width:1600px) {
    .img-left {
        margin-left: 0;
        margin-right: 40%;
    }
}

@media screen and (max-width:1366px) {
    .reason-text-area {
        width: 60%;
    }
    .img-left {
        margin-right: 35%;
    }
}

.hukaku-img {
    width: 73%;
    margin: 5% auto;
}

#a-btn-area {
    width: 44%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-top: 18%;
}

@media screen and (max-width:1600px) {
    #a-btn-area {
        width: 50%;
    }
}

@media screen and (max-width:1536px) {
    #a-btn-area {
        width: 55%;
    }
}

@media screen and (max-width:1366px) {
    #a-btn-area {
        width: 60%;
    }
}
@media screen and (max-width:1061px) {
    #a-btn-area {
        width: 80%;
    }
}

@media screen and (max-width:1280px) {
    #a-btn-area {
        margin-top: 25%;
    }
    #reason2,
    #reason3,
    #reason4,
    #reason5,
    #reason6 {
        position: relative;
        margin-top: 25em;
    }
    .reason-text-area {
        width: 80%;
        top: 15em;
    }
    .img-left {
        margin-right: 25%;
    }
    #reason1 .reason-img-area,
    #reason3 .reason-img-area,
    #reason5 .reason-img-area {
        margin-left: 25%;
    }
    .kazari6 {
        bottom: 13%;
    }
}

@media screen and (max-width:1100px) {
    #a-btn-area {
        margin-top: 35%;
    }
}

@media screen and (max-width:1066px) {
    .img-left {
        margin-right: 20%;
    }
}

@media screen and (max-width:1024px) {
    #a-btn-area {
        margin-top: 60%;
        width: 80%;
    }
}

@media screen and (max-width:834px) {
    #a-btn-area {
        margin-top: 20%;
        width: 80%;
    }
}

.set-btn {
    transition: .3s;
}

.set-btn-deco {
    position: relative;
    background: #E98585 0% 0% no-repeat padding-box;
    border-radius: 5px;
    padding: 3% 1.2em;
    display: block;
    width: 35%;
    margin-top: 5%;
    margin-right: 5%;
    margin-left: auto;
    margin-bottom: 2%;
    transition: .3s;
}

#reason5 .set-btn-deco {
    right: 0;
    bottom: 9%;
}

.set-btn p {
    position: relative;
    text-align: left;
    font: normal normal normal 16px/22px 'Zen Old Mincho', serif;
    letter-spacing: 0.48px;
    color: #FFFFFF;
    margin: 0 auto;
    padding-right: 1em;
    width: 50%;
    z-index: 2;
    transition: .3s;
}

@media screen and (max-width:1600px) {
    .set-btn p {
        width: 60%;
    }
}

#reason5 .set-btn p {
    width: 60%;
}

@media screen and (max-width:1600px) {
    #reason5 .set-btn p {
        width: 77%;
    }
}
@media screen and (max-width:1280px) {
    .set-btn-deco {
        width: 30%;
    }
}
@media screen and (max-width:927px) {
    .set-btn-deco {
        width: 35%;
    }
}

.set-btn p::after {
    position: absolute;
    right: -40%;
    bottom: 18%;
    content: "";
    background: url(../images/header/arrow.svg) center center no-repeat;
    -webkit-mask: url(../images/header/arrow.svg) center center no-repeat;
    background: #FFFFFF;
    width: 14px;
    height: 11px;
    transition: .3s;
}

#reason5 .set-btn p::after {
    right: -30%;
}

@media screen and (max-width:1600px) {
    #reason5 .set-btn p::after {
        right: -20%;
    }
}

/*== 背景が流れる（左から右） */
.set-btn-deco:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: #fff;
    border-radius: 5px;
    width: 100%;
    height: 100%;

    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
}

.set-btn-deco:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: #fff;
    border-radius: 5px;
    width: 100%;
    height: 100%;

    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
}

.set-btn a {
    text-decoration: none;
    z-index: 2;
}

.kazari-area {
    position: absolute;
    overflow-x: hidden;
    z-index: -1;
}

.kazari1 {
    width: 15%;
    top: -2.5%;
    left: 1%;
}

.kazari2 {
    width: 20%;
    right: 0;
    transform: translate(28%, 50%);
    overflow-x: hidden
}

.kazari3 {
    width: 35%;
    left: 0;
    transform: translate(-58%, 28%);
}

.kazari4 {
    width: 18%;
    right: 0;
    transform: translate(13%, 15%);
    overflow-x: hidden
}

.kazari5 {
    width: 25%;
    left: 0;
    transform: translate(-28%, 23%);
}

.kazari6 {
    width: 54%;
    right: 0;
    transform: translate(11%, 44%);
    overflow-x: hidden;
    bottom: 19%;
}
@media screen and (max-width:1600px){
    .kazari6{
        bottom: 18%;
    }
}
@media screen and (max-width:1280px){
    .kazari6{
        bottom: 12%;
    }
}
@media screen and (max-width:1024px) {
    #reason2,
    #reason3,
    #reason4,
    #reason5,
    #reason6 {
        position: relative;
        margin-top: 50%;
    }
    #reason1 .reason-img-area,
    #reason3 .reason-img-area,
    #reason5 .reason-img-area {
        margin-left: 0;
    }
    .reason-text-area {
        top: 80%;
        right: 0;
        transform: none;
    }
    .reason-img-area {
        width: 80%;
        margin-left: 0;
        margin-right: auto;
    }
}

@media screen and (max-width: 983px) {
    .reason-img-area {
        width: 85%;
    }
}

@media screen and (max-width: 890px) {
    .reason-img-area {
        width: 90%;
    }
}

@media screen and (max-width:834px) {
    .shiryou::before {
        background: #C1A37D;
    }
    .yoyaku::before {
        background: #E98585;
    }
    .shiryou::after,
    .yoyaku::after {
        background: #37241E;
    }
    .sp-eigyo-jikan p {
        display: flex;
        width: 90%;
        margin: 3em auto 0;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }
    .sp-eigyo-jikan .txt1 {
        font: normal normal normal 14px/9px "Noto Sans JP", sans-serif;
        letter-spacing: 0px;
        color: #37241E;
        padding-bottom: 1em;
    }
    .sp-eigyo-jikan .txt2 {
        text-align: center;
        font: normal normal normal 16px/9px "Noto Sans JP", sans-serif;
        font-weight: bold;
        color: #E98585;
        padding-bottom: 1em;
    }
    .sp-eigyo-jikan .txt3 {
        font: normal normal normal 13px/9px "Noto Sans JP", sans-serif;
        letter-spacing: 0px;
        color: #37241E;
    }
    .sp-tenpo li {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .sp-tenpo p {
        font: normal normal normal 18px/10px "Noto Sans JP", sans-serif;
        font-weight: bold;
        letter-spacing: 0px;
        margin-top: 1em;
        color: #37241E;
    }
    .menu-content .sp-tenpo ul li a {
        width: 90%;
        text-decoration: underline;
        font: normal normal normal 20px/7px "Noto Sans JP", sans-serif;
        margin: 0.5em auto;
        letter-spacing: 6px;
        color: #E98585;
    }
    .menu_Instagram {
        width: 30px;
        height: 30px;
        margin: 4em auto;
        background: url(../../assets/images/header/Instagram_Glyph_White.svg) center center no-repeat;
        -webkit-mask: url(../../assets/images/header/Instagram_Glyph_White.svg) center center no-repeat;
        background: #37241E;
        background-size: cover;
        content: "";
    }
    .menu_button-shiryou .menu_button-deco {
        color: #C1A37D;
    }
    .menu_button-yoyaku .menu_button-deco {
        color: #E98585;
    }
}
/* 
@media screen and (max-width:820px) {
    #main .pc {
        display: none;
    }
    .pc {
        display: none;
    }
} */

@media screen and (max-width: 751px) {
    #main .event-slider-wave .wave-pc {
        display: none;
    }
}

@media screen and (min-width:1024px) {
    .sp-manu-area {
        display: none;
    }
    #main.sp {
        display: none;
    }
    #menu,
    .hamburger-menu {
        display: none;
    }
}

@media screen and (min-width:835px) {
    #menu,
    .hamburger-menu {
        display: none;
    }
}

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

@media screen and (min-width:835px) {
    .event-slider-wave .sp {
        display: none;
    }
}

@media screen and (min-width:1025px) {
    #about .sp {
        display: none;
    }
    .collection-bottom {
        display: none;
    }
}

@media screen and (max-width:834px) {
    .header_right {
        margin-right: 0;
    }
    .header_left {
        margin-left: 10px;
    }
    .header_Instagram {
        width: 30px;
        height: 30px;
        margin: 15px;
        background-size: cover;
        background: url(../../assets/images/header/Instagram_Glyph_White.svg.svg) center center no-repeat;
        -webkit-mask: url(../../assets/images/header/Instagram_Glyph_White.svg) center center no-repeat;
        background: #37241E;
    }
    .header_Instagram::before {
        display: none;
    }
    .header_logo {
        width: 50%;
    }
    .header_logo a img {
        width: 100%;
        height: auto;
    }
    .header_Instagram-link {
        width: 30%;
    }
    .event-text {
        width: 73%;
        text-align: center;
        font: normal normal normal 13px/24px 'Zen Old Mincho', serif;
        letter-spacing: -0.52px;
        color: #37241E;
        margin: 0 auto 2em;
    }
    .event-text h2::before,
    .event-text h2::after {
        width: 21%;
    }
    .event-slider .slick-dots button {
        width: 7px;
        height: 7px;
    }
    .event-slider .slick-dots li {
        margin: 0 4px;
    }
    .ev-slider .slick-slide {
        transform: scale(0.8);
    }
    .ev-slider img {
        width: 80vw;
    }
    .header_button-yoyaku,
    .header_button-shiryou {
        font-size: 13px;
    }
}

@media screen and (max-width: 430px) {
    .ev-slider img {
        width: 100vw;
    }
    .event-text {
        margin: 0 auto 1em;
    }
    .eve-bgimg{
        padding-bottom: 10%;
    }
}

@media screen and (max-width: 920px) {
    .set-fx {
        flex-direction: column;
    }
}

@media screen and (max-width: 975px) {
    .torikae-kikan p {
        font-size: 22px;
        width: 83%;
        margin: 0 auto;
    }
}

@media screen and (min-width:835px) {
    .reason-text {
        display: table-cell;
        vertical-align: middle;
        position: relative;
        padding: 3%;
        margin: 0;
        top: 0;
        transform: none;
    }
}

@media screen and (max-width:834px) {
    .event-text {
        font-size: 26px;
    }
    /* .hurisode-btn p,
    .hairstyle-btn p,
    .coordinate-btn p {
        font-size: 28px;
        bottom: -3%;
    }
    .hurisode-btn::after,
    .coordinate-btn::after,
    .hairstyle-btn::after {
        top: 79%;
        height: 32px;
    } */
    /* .collection-btn {
        width: 80%;
    } */
    .about h2 {
        font-size: 18px;
    }
    .about p {
        font-size: 16px;
    }
    .kakaku {
        padding-bottom: 10em;
    }
    .kakaku-area {
        background: url(../images/contents/bg-md.svg) no-repeat center bottom;
        background-size: cover;
    }
    .kakaku-img {
        width: 100%;
        margin: 2em auto 0;
    }
    .torikae-kikan p {
        font-size: 22px;
        width: 83%;
        margin: 0 auto;
    }
    #btn-area {
        width: 100%;
        justify-content: space-evenly;
    }
    #Instagram-area h3 {
        width: 70%;
    }
    .shop-cont {
        padding-bottom: 15%;
        padding-top: 10%;
    }
    .footer-cont {
        flex-direction: column;
    }
    .f-left,
    .f-right {
        width: 100%;
    }
    .f-left .bottom {
        width: 100%;
        justify-content: space-evenly;
    }
    .f-left .top {
        margin-bottom: 4em;
        flex-direction: column;
    }
    .f-eigyojikan {
        margin-top: 2em;
        margin-bottom: 1em;
        justify-content: center;
        align-items: center;
    }
    .jikan {
        width: 80%;
    }
    .f-eigyojikan .txt1 {
        font-size: 20px;
    }
    .f-eigyojikan .txt2 {
        font-size: 22px;
    }
    .f-eigyojikan .txt3 {
        font-size: 18px;
    }
    .jikan p {
        font: normal normal normal 14px/24px "Noto Sans JP", sans-serif;
        text-align: center;
    }
    .f-right li::before {
        display: none;
    }
    .f-right .top ul {
        justify-content: space-around;
        width: 80%;
        margin: 10% auto 0;
    }
    .f-left .bottom a {
        font-size: 18px;
    }
    .f-right p {
        text-align: center;
        font-size: 13px;
    }
    .f-right a {
        font: normal normal normal 16px/26px "Noto Sans JP", sans-serif;
    }
    #about-mv-area {
        /* height: 30em; */
    }
    #about-mv-area h1 {
        /* font-size: 36px; */
        font-weight: normal;
    }
    #reason3 .reason-text,
    #reason5 .reason-text {
        padding: 0;
    }
    .reason-text-area {
        width: 100%;
        top: 90%;
        position: relative;
        background: #ffffffd1;
        box-shadow: none;
    }
    .reason-img-area {
        width: 100%;
    }
    .set-btn-deco,
    #reason5 .set-btn-deco {
        width: 30%;
        bottom: -5%;
        transform: translateX(50%);
    }
    .reason-text {
        width: 90%;
        margin: 5em auto;
        padding: 0;
        top: 0;
        transform: none;
    }
    #reason2 .txt-right .reason-text,
    #reason4 .reason-text,
    #reason6 .reason-text {
        padding: 0;
    }
    .reason-text h2 {
        font-weight: normal;
        font-size: 24px;
    }
    .reason-text p {
        font-size: 18px;
    }
    .hukaku-img {
        width: 80%;
        margin: -4% auto 1%;
    }
    #a-btn-area {
        width: 100%;
        justify-content: space-evenly;
    }
    .kazari-area {
        display: none;
    }
    #reason1 {
        width: 100%;
        /* margin-top: 16vh; */
    }
    .reason-text-area {
        width: 100%;
        box-shadow: none;
    }
    .reason-text-area {
        background: #ffffffd1;
    }
    .set-btn-deco,
    #reason5 .set-btn-deco {
        width: 35%;
        margin: 5% auto 0;
        transform: none;
    }
    .hukaku-img {
        width: 80%;
        margin: 5% auto 1%;
    }
    #reason1 {
        width: 100%;
        /* margin-top: 16vh; */
    }
    .reason-text-area {
        width: 100%;
        box-shadow: none;
    }
    .reason-text-area {
        background: #ffffffd1;
    }
    .set-btn-deco,
    #reason5 .set-btn-deco {
        width: 40%;
        padding: 4% 1.2em;
        margin: 5% auto 0;
        transform: none;
    }
    .hukaku-img {
        width: 80%;
        margin: 5% auto 1%;
    }
    #reason1,
    #reason2,
    #reason3,
    #reason4,
    #reason5,
    #reason6 {
        display: flex;
        flex-direction: column-reverse;
    }
    #reason2,
    #reason3,
    #reason4,
    #reason5,
    #reason6 {
        margin-top: 10%;
    }
}

/* @media screen and (max-width: 750px) {
    .collection-btn {
        padding: 5%;
    }
    .collection-btn div {
        margin-bottom: 3%;
    }
}

@media screen and (max-width:630px) {
    .collection-btn {
        padding-right: 0;
        padding-left: 0;
    }
} */

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

    #about-mv-area {
        background: url(../images/about-cont/sp-mv.jpg)center center no-repeat;
        background-size: cover;
        /* height: 400px; */
    }
    #about-mv-area h1 {
        font-size: 30px;
        text-align: center;
        top: 72%;
        right: 50%;
        transform: translate(50%, 0%);
        width: 80%;
    }
}
@media screen and (max-width:520px) {
    #about-contents .pc {
        display: none;
    }
    .reason-text {
        margin: -7% auto 10%;
    }
    #reason1 .reason-text h2::before {
        content: "1";
        margin: 0;
        font-size: 35px;
        margin-bottom: 1em;
    }
    #reason2 .reason-text h2::before {
        content: "2";
        margin: 0;
        font-size: 35px;
        margin-bottom: 1em;
    }
    #reason3 .reason-text h2::before {
        content: "3";
        margin: 0;
        font-size: 35px;
        margin-bottom: 1em;
    }
    #reason4 .reason-text h2::before {
        content: "4";
        margin: 0;
        font-size: 35px;
        margin-bottom: 1em;
    }
    #reason5 .reason-text h2::before {
        content: "5";
        margin: 0;
        font-size: 35px;
        margin-bottom: 1em;
    }
    #reason6 .reason-text h2::before {
        content: "6";
        margin: 0;
        font-size: 35px;
        margin-bottom: 1em;
    }
    .reason-text h2 {
        flex-direction: column;
        text-align: center;
        line-height: 1.25;
    }
    .reason-text h2::before {
        content: "";
        text-align: center;
        background: #fff;
        border-radius: 50%;
        padding: 0.5em;
    }
    .reason-text h2::after {
        content: "";
        background: url(../images/about-cont/about-balloon.svg) center center no-repeat;
        background-size: contain;
        height: 30%;
    }
    #reason1,
    #reason2,
    #reason3,
    #reason4,
    #reason5,
    #reason6 {
        display: flex;
        position: relative;
        width: 100%;
        flex-direction: column-reverse;
        margin-top: 12%;
    }
    .h2-span {
        margin-bottom: 2em;
    }
    .reason-text-area {
        position: relative;
        background: none;
    }
    .set-btn-deco,
    #reason5 .set-btn-deco {
        display: block;
        background: #E98585 0% 0% no-repeat padding-box;
        border-radius: 5px;
        padding: 5% 1.2em;
        margin: 5% auto;
        position: relative;
        width: 50%;
        left: 0;
        transform: none;
    }
    .set-btn p::after {
        right: -25%;
        bottom: 50%;
        transform: translateY(50%);
        width: 13px;
        height: 23px;
    }
    .set-btn p {
        text-align: center;
    }
    .min-w-429 {
        display: none;
    }
    .hukaku-img {
        width: 100%;
    }
}

@media screen and (min-width:835px) {
    .max-w-428,
    .reason-text .sp {
        display: none;
    }
    .about-main .sp {
        display: none;
    }
    #menu,
    .hamburger-menu {
        display: none;
    }
}

@media screen and (min-width:521px) {
    .max-w-428,
    .reason-text .sp {
        display: none;
    }
}

@media screen and (min-width:1161px) {
    #slider .sl-sp {
        display: none;
    }
}

@media screen and (max-width:1160px) {
    #slider .sl-pc {
        display: none;
    }
}

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

    .set-btn-deco,
    #reason5 .set-btn-deco {
        width: 50%;
    }
}

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

    .set-btn-deco,
    #reason5 .set-btn-deco {
        width: 60%;
    }
}
@media screen and (max-width:449px){
    #about-mv-area h1 {
        font-size: 24px;
    }
} 
@media screen and (max-width:430px) {

    #about-mv-area h1::after {
        content: "";
        background: url(../images/sp/sp-title-line.png) no-repeat center;
    }
    #reason2,
    #reason3,
    #reason4,
    #reason5,
    #reason6 {
        margin-top: 5vh;
    }
    #reason1 .reason-text h2::before,
    #reason2 .reason-text h2::before,
    #reason3 .reason-text h2::before,
    #reason4 .reason-text h2::before,
    #reason5 .reason-text h2::before,
    #reason6 .reason-text h2::before {
        margin-bottom: 0.5em;
    }
    .reason-text h2::after {
        height: 35%;
    }
    .reason-text h2 {
        font-size: 20px;
    }
    .fz-36 {
        font-size: 25px;
    }
    .reason-text p {
        margin-top: 5%;
        font-size: 16px;
    }
    .set-btn-deco p,
    #reason5 .set-btn-deco p {
        margin-top: 0;
    }
}

@media screen and (max-width: 764px) {
    .torikae-kikan p {
        font-size: 20px;
        width: 100%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 736px) {
    #btn-area {
        flex-direction: column;
        align-items: center;
    }
    .moushikomi-btn {
        margin-bottom: 2em;
        width: 50%;
    }
}

@media screen and (max-width: 736px) {
    #a-btn-area {
        margin-top: 10%;
        flex-direction: column;
        align-items: center;
    }
    .moushikomi-btn {
        margin-bottom: 2em;
        width: 50%;
    }
}

@media screen and (max-width: 630px) {
    .moushikomi-btn {
        width: 60%;
    }
}

@media screen and (max-width: 540px) {
    .moushikomi-btn {
        width: 85%;
    }
}



@media screen and (max-width: 495px) {
    .text .sp {
        height: 2.8vh;
    }
}


@media screen and (min-width:1024px) {
    @media(hover: hover) {
        .about-jumpbtn:hover {
            background: #c1a37d;
            clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0% 100%);
            width: 25%;
            height: 15%;
            transition: .3s;
            box-sizing: border-box;
        }
        .about-jumpbtn:hover p {
            color: #c1a37d;
        }
        .about-jumpbtn:hover a {
            background: #fff;
            clip-path: polygon(10% 1px, 100% 1px, 100% 100%, 1px 100%);
            transition: .3s;
        }
        .about-jumpbtn:hover p::after {
            background: #c1a37d;
            left: 0;
            bottom: 0;
            transition: .3s;
        }
    }
}
.gallery{
    display: flex;
    width: 80%;
    flex-wrap: wrap;
    margin: 5% auto;
    padding: 0;
}
@media screen and (max-width:834px) {
    .gallery{
        width: 100%;
    }
}
.gallery-item{
    flex: 1 1 33.333%;
    -ms-flex: 1 1 33.333%;
    padding: .2%;
}

.gallery img{
    max-width: 100%;
    height: auto;
    transition: .3s;
}

@media screen and (max-width:430px) {
    .gallery{
        width: 100%;
    }
}

@media screen and (min-width:751px) {
    @media(hover: hover) {
        .header_logo:hover {
            opacity: .7;
            transition: .3s;
        }
        /* .header_button-shiryou:hover .shiryou {
            color: #647058;
        }
        .header_button-shiryou:hover .shiryou::before {
            background: #647058;
        }
        .header_button-shiryou:hover .shiryou::after {
            background: #647058;
        }
        .header_button-yoyaku:hover .yoyaku {
            color: #A62800;
        }
        .header_button-yoyaku:hover .yoyaku::before {
            background: #A62800;
        }
        .header_button-yoyaku:hover .yoyaku::after {
            background: #A62800;
        }
        .header_button-shiryou:hover:before {
            transform-origin: left top;
            transform: scale(1, 1);
        }
        .header_button-yoyaku:hover:before {
            transform-origin: left top;
            transform: scale(1, 1);
        }
        .bgh:hover:before {
            transform-origin: left top;
            transform: scale(1, 1);
            color: #fff;
        } */
        .bgh:hover p {
            color: #fff;
        }
        .btn06:hover {
            background: #fff;
        }
        .bgh:hover .hurisode-btn::after {
            background-color: #c1a37d;
            background-color: #fff;
        }
        .bgh:hover .hairstyle-btn::after {
            background-color: #c1a37d;
            background-color: #fff;
        }
        .bgh:hover .coordinate-btn::after {
            background-color: #c1a37d;
            background-color: #fff;
        }
        .btnarrow1:hover::after {
            right: 5px;
        }
        /* .maedori-btn:hover {
            background-color: #fff;
            color: #E98585;
            translate: 3px 3px;
            border: 1px solid #E98585;
        }
        .maedori-btn:hover p::after {
            background: #E98585;
        }
        .maedori-btn:hover p {
            color: #E98585;
        } */
        .moushikomi_button-shiryou:hover .m-shiryou {
            color: #C1A37D;
        }
        .moushikomi_button-shiryou:hover .m-shiryou h4::before {
            background: #C1A37D;
        }
        .moushikomi_button-shiryou:hover .m-shiryou h4 {
            color: #C1A37D;
        }
        .moushikomi_button-shiryou:hover .m-shiryou p {
            color: #C1A37D;
        }
        .moushikomi_button-shiryou:hover .m-shiryou::after {
            background: #C1A37D;
            right: -2%;
            transition: .3s;
        }
        .moushikomi_button-yoyaku:hover .m-yoyaku {
            color: #E98585;
        }
        .moushikomi_button-yoyaku:hover .m-yoyaku h4::before {
            background: #E98585;
        }
        .moushikomi_button-yoyaku:hover .m-yoyaku h4 {
            color: #E98585;
        }
        .moushikomi_button-yoyaku:hover .m-yoyaku p {
            color: #E98585;
        }
        .moushikomi_button-yoyaku:hover .m-yoyaku::after {
            background: #E98585;
            right: -2%;
            transition: .3s;
        }
        .moushikomi_button-shiryou:hover:before {
            transform-origin: left top;
            transform: scale(1, 1);
            border: 1px solid #C1A37D;
        }
        .moushikomi_button-yoyaku:hover:before {
            transform-origin: left top;
            transform: scale(1, 1);
            border: 1px solid #E98585;
        }
        .tel a:hover {
            text-decoration: solid;
        }
        /* .shop-btn-deco:hover:before {
            transform-origin: left top;
            transform: scale(1, 1);
            border: 1px solid #37241E;
        }
        .shop-btn:hover p {
            position: relative;
            color: #37241E;
            z-index: 3;
        } */
        .shop-btn:hover p::after {
            right: -23%;
            transition: .3s;
        }
        .footer-logo:hover {
            opacity: .7;
            transition: .3s;
        }
        .f-left .bottom a:hover {
            text-decoration: none;
            opacity: .7;
            transition: 0.3s;
        }
        .f-right a:hover::after {
            transform: scale(1, 1);
        }
        #page-top a:hover {
            transform: scale(1.1)
        }
        .set-btn-deco:hover:before {
            transform-origin: left top;
            transform: scale(1, 1);
            border: 1px solid #E98585;
            border-radius: 5px;
        }
        .set-btn:hover p {
            position: relative;
            color: #E98585;
            z-index: 3;
        }
        .set-btn:hover p::after {
            right: -43%;
            transition: .3s;
            background: #E98585;
        }
        #reason5 .set-btn:hover p::after {
            right: -33%;
        }
        .footer_Instagram:hover::before {
            opacity: 0;
        }
        .header_Instagram:hover::before {
            opacity: 0;
        }
        .gallery img:hover{
            opacity: 0.7;
            transition: .3s;
        }
        @media screen and (max-width:1600px) {
            #reason5 .set-btn:hover p::after {
                right: -23%;
            }
        }
    }
}



/* スマホデザイン */


/****メニュー全体****/
#menu {
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 80;
}

/****メニュー開閉ボタン****/
#menu div {
    width: 35px;
    height: 35px;
    background: url(../images/sp/sp-tel-icon.svg) center center no-repeat;
    overflow: hidden;
    position: absolute;
    border-radius: 5px;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
}

#menu .menuopen {
    color: rgba(255, 255, 255, 1);
    font-size: 0px;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: auto;
}

#menu .menuclose {
    color: rgba(255, 255, 255, 1);
    font-size: 0px;
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: auto;
}

/****メニュー一覧****/
#menu ul {
    background: #fff;
    width: 50%;
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
}

#menu li {
    position: relative;
    padding: 10px;
    color: rgba(0, 0, 0, 1);
    border-bottom: 1px #37241E solid;
    pointer-events: auto;
    font: normal normal normal 15px/30px "Noto Sans JP", sans-serif;
    letter-spacing: 0px;
    color: #37241E;
}

.tel-arrow {
    position: relative;
    display: block;
    padding: 0 0 0 16px;
    color: #37241e;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
}

.tel-arrow::before,
.tel-arrow::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

#menu li:last-child {
    border-bottom: 0px solid #000;
}

.btn-tel::after {
    content: "";
    left: 90%;
    width: 10px;
    height: 10px;
    border-top: 1px solid #37241e;
    border-right: 1px solid #37241e;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/****メニューオープン時****/
#menu:target .menuopen {
    display: none;
}

#menu:target .menuclose {
    display: block;
}

#menu:target ul {
    display: block;
}

/*** 以下ハンバーガーメニュー ***/
.hamburger-menu{
    position: relative;
}
.menu-btn {
    position: fixed;
    top: 0;
    right: 0%;
    display: flex;
    height: 4em;
    width: 4em;
    justify-content: center;
    align-items: center;
    z-index: 90;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #37241E;
    position: absolute;
}

.menu-btn span:before {
    bottom: 8px;
}

.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked~.menu-btn span {
    background-color: rgba(255, 255, 255, 0);
}

#menu-btn-check:checked~.menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #F8F8F8;
}

.menu-content ul {
    padding: 15% 1% 0;
}

.menu-content .sp-menu-tenpo {
    padding-top: 1em;
}

.menu-content ul li {

    list-style: none;
}

.menu-content ul li a {
    display: block;
    width: 60%;
    margin: 0 auto;
    font-size: 15px;
    box-sizing: border-box;
    color: #37241E;
    text-decoration: none;
    padding: 1em 0;
    text-align: center;
    font: normal normal normal 16px/26px "Noto Sans JP", sans-serif;
    position: relative;
}

@media screen and (max-width: 679px) {
    .menu-content ul li a {
        width: 80%;
    }
}

.menu-content {
    width: 50%;
    height: 96vh;
    position: fixed;
    overflow: auto;
    margin-top: 4em;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: #F8F8F8;
    transition: all 0.5s;
}

#menu-btn-check:checked~.menu-content {
    left: 50%;
}

@media screen and (min-width:521px) {
    #about .sp,
    #contents .sp {
        display: none;
    }
}

/* @media screen and (min-width:751px) {
    #moushikomi {
        display: none;
    }
} */

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

@media screen and (max-width:500px) {
    #menu div {
        right: 15%;
    }
}

/* @media screen and (max-width:819px) {
    .tokuten .pc,
    .isshiki .pc {
        display: none;
    }
} */

/* @media screen and (max-width:560px) {
    .hurisode-btn p,
    .hairstyle-btn p,
    .coordinate-btn p {
        font-size: 19px;
        bottom: 0;
    }
    .hurisode-btn::after,
    .coordinate-btn::after,
    .hairstyle-btn::after {
        top: 82%;
        height: 20px;
    }
    .collection-btn {
        padding: 3em 2%;
    }
} */

@media screen and (max-width:834px) {
    .sp-button-shiryou {
        text-decoration: none;
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        padding: 0.6em 0.8em;
        background: #C1A37D;
        text-align: center;
        color: #fdeff2;
        text-align: center;
        font: normal normal normal 18px/36px 'Zen Old Mincho', serif;
    }
    .sp-button-shiryou::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: transparent linear-gradient(180deg, #FFFFFF00 0%, #FFFFFF33 100%) 0% 0% no-repeat padding-box;
    }
    .sp-button-yoyaku {
        text-decoration: none;
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        padding: 0.6em 0.8em;
        background: #E98585;
        text-align: center;
        color: #fdeff2;
        text-align: center;
        font: normal normal normal 18px/36px 'Zen Old Mincho', serif;
    }
    .sp-button-yoyaku::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: transparent linear-gradient(180deg, #FFFFFF00 0%, #FFFFFF33 100%) 0% 0% no-repeat padding-box;
    }
    .sp-shiryou {
        position: relative;
        display: block;
        z-index: 2;
    }
    .sp-shiryou::before {
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        width: 30px;
        height: 23px;
        transform: translateY(-50%);
        background: url(../../assets/images/header/shiryo-icon.svg) center center no-repeat;
        -webkit-mask: url(../../assets/images/header/shiryo-icon.svg) center center no-repeat;
        background: #fdeff2;
        background-size: contain;
        content: "";
        z-index: 2;
    }
    .sp-shiryou::after {
        display: block;
        position: absolute;
        top: 50%;
        right: -4%;
        width: 30px;
        height: 23px;
        transform: translateY(-50%);
        background: url(../../assets/images/header/arrow.svg) center center no-repeat;
        -webkit-mask: url(../../assets/images/header/arrow.svg) center center no-repeat;
        background: #fdeff2;
        background-size: contain;
        content: "";
        z-index: 2;
    }
    .sp-yoyaku {
        position: relative;
        display: block;
        z-index: 2;
    }
    .sp-yoyaku::before {
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        width: 30px;
        height: 23px;
        transform: translateY(-50%);
        background: url(../../assets/images/header/yoyaku-icon.svg) center center no-repeat;
        -webkit-mask: url(../../assets/images/header/yoyaku-icon.svg) center center no-repeat;
        background: #fdeff2;
        background-size: contain;
        content: "";
    }
    .sp-yoyaku::after {
        display: block;
        position: absolute;
        top: 50%;
        right: 0px;
        width: 30px;
        height: 23px;
        transform: translateY(-50%);
        background: url(../../assets/images/header/arrow.svg) center center no-repeat;
        -webkit-mask: url(../../assets/images/header/arrow.svg) center center no-repeat;
        background: #fdeff2;
        background-size: contain;
        content: "";
    }
    .sp-yoyaku::before,
    .sp-shiryou::before {
        background: #fdeff2;
    }
    .sp-mousikomi-btn {
        /* bottom: 0vh; */
        /* position: fixed; */
        width: 100%;
        display: flex;
        /* z-index: -1; */
    }
    .sp-mousikomi-btn div {
        width: 50%;
    }
}
@media screen and (min-width:835px) {
    #moushikomi{
        display: none;
    }
}
@media screen and (max-width:713px) {
    .text h3 {
        font-size: 23px;
    }
}

@media screen and (max-width:586px) {
    .text h3 {
        font-size: 17px;
    }
}

/* @media screen and (min-width:521px) and (max-width:590px) {
    #about {
        width: 98%;
    }
    .about h2 {
        font-size: 16px;
    }
    .about p {
        font-size: 14px;
    }
    .about-jumpbtn p {
        font-size: 13px;
    }
    .konomi {
        width: 100%;
    }
    
    .torikae-text, .torikae-img {
        width: 100%;
    }
    
    .kakaku {
        width: 100%;
    }
    
    .title-fx {
        width: 96%;
    }
    
    .set-fx {
        width: 96%;
    }
    
    .f-left .bottom p {
        font-size: 12px;
    }
    
    .f-left .bottom a {
        font-size: 13px;
    }
    
    .f-right .top ul {
        width: 100%;
    }
} */

@media screen and (max-width:520px) {
    /* .menu-btn {
        right: 5px;
    } */
    .bottom-fx p {
        padding-top: 1em;
        margin: 0 auto;
    }
    .sp-tenpo p {
        font-weight: normal;
    }
    .menu-content ul li a {
        width: 90%;
        font-size: 14px;
        padding: 0.5em 0;
    }
    .menu-content .sp-tenpo ul li a {
        font-size: 16px;
    }
    .header_left {
        position: relative;
        display: flex;
        height: 100%;
        width: 50%;
        align-items: center;
        margin-left: 10px;
    }
    .sp-button-deco {
        width: 100%;
    }
    .set-fx {
        padding-top: 5%;
        padding-bottom: 10%;
    }
    .title-fx img {
        display: none;
    }
    .title-fx h3 {
        margin: 0 auto;
    }
    .sp-kazari1 {
        bottom: -6%;
    }
    .sp-kazari2 {
        bottom: -20%;
    }
    .torikae-text,
    .torikae-img {
        width: 98%;
    }
    .ab-txt .sp {
        padding-left: 5%;
    }
    .konomi {
        width: 100%;
    }
    .torikae-text h4 {
        font-size: 20px;
    }
    .torikae-text .f36 {
        font-size: 28px;
    }
    .torikae-kikan p {
        font-size: 15px;
        width: 100%;
    }
    .torikae-aria .ab-txt {
        bottom: 0;
        text-align: left;
        font-size: 14px;
    }
    .f29 {
        font-size: 17px;
    }
    .torikae-img {
        flex-direction: column
    }
    .torikae-img .before {
        width: 60%;
        margin-right: 40%;
    }
    .torikae-img .after {
        width: 70%;
        margin-left: 30%;
    }
    .torikae-img .arrow {
        margin-top: 15%;
        width: 25%;
        position: absolute;
        left: 10%;
    }
    section#torikae {
        top: -15vh;
    }
    .isshiki h4 {
        top: 2%;
    }
    .isshiki,
    .tokuten {
        width: 100%;
    }
    .tokuten h4 {
        font-size: 20px;
        top: 1%;
    }
    .maedori-fx p,
    .toujitsu-fx p {
        font-size: 14px;
        padding-top: 0.5em;
    }
    .maedori-fx li {
        margin-bottom: 10%;
    }
    .event-text {
        font-size: 20px;
    }
    .new-collection-text h2 {
        width: 80%;
        font-size: 20px;
    }
    /* .collection-btn {
        width: 95%;
    }
    .hurisode-btn p,
    .hairstyle-btn p,
    .coordinate-btn p {
        font-size: 26px;
        bottom: 0;
    } */
    #about .md {
        display: none;
    }
    .about {
        width: 90%;
        top: 70%;
        transform: translate(50%, -50%);
        right: 50%;
    }
    .about h2 {
        font-size: 16px;
    }
    .about p {
        font-size: 15px;
    }
    .about-jumpbtn {
        width: 60%;
    }
    .about-jumpbtn p {
        font-size: 13px;
    }
    .kakaku-area {
        background: url(../images/sp/bg-sp.svg) no-repeat center top;
        background-size: cover;
    }
    .kazari {
        width: 7.8%;
        padding-top: 3%;
    }
    .kakaku h2 {
        font-size: 20px;
    }
    .text1 {
        width: 90%;
        font-size: 16px;
    }
    .text2 {
        font-size: 20px;
    }
    .fz-27 {
        font-size: 18px;
    }
    .fz-39 {
        font-size: 24px;
    }
    .kakaku {
        padding-bottom: 0em;
    }
    .set {
        position: relative;
        background: transparent linear-gradient(180deg, #FFFDFB 0%, #FFE8CE 100%) 0% 0% no-repeat padding-box;
        border-radius: 0px 30px 0px 0px;
        margin-top: 5em;
    }
    .set::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: #FDEFF2 0% 0% no-repeat padding-box;
        border-radius: 0px 30px 0px 0px;
        background-blend-mode: multiply;
        mix-blend-mode: multiply;
    }
    .title-fx {
        width: 90%;
        font-size: 20px;
        justify-content: space-between;
    }
    .title-fx h3,
    .title-fx img {
        width: 30%;
    }
    .tokuten-fx {
        display: block;
    }
    .tokuten-text {
        top: 6%;
    }
    .maedori,
    .toujitsu {
        width: 100%;
    }
    .maedori-fx li,
    .toujitsu-fx li {
        flex-direction: column;
    }
    .maedori-text,
    .toujitsu-text {
        font-size: 18px;
    }
    .maedori-fx img,
    .toujitsu-fx img {
        width: 50%;
        margin-right: 0;
    }
    .toujitsu {
        /* border-left: none; */
        /* border-top: 1px dotted #E98585; */
        padding-top: 10%;
        margin-top: 20%;
    }
    span.border {
        position: absolute;
        display: inline-block;
        border-top: 1px dotted #c1a37d;
        width: 80%;
        right: 50%;
        transform: translateX(50%);
        bottom: 40%;
    }
    .toujitsu-fx {
        width: 90%;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    .toujitsu-fx li {
        display: flex;
        width: 50%;
        align-items: center;
        margin-bottom: 14%;
        flex-direction: column;
    }
    /* .maedori-btn {
        position: relative;
        height: 60px;
        width: 53%;
        left: 50%;
        transform: translateX(-50%);
        bottom: -2em;
        margin-right: 0;
    } */
    #Instagram-area {
        padding-bottom: 0;
    }
    #Instagram-area span {
        width: 85%;
    }
    .insta-cont {
        position: relative;
        width: 100%;
    }
    .insta-cont::before {
        content: "";
        top: 0;
        left: 0;
        border-bottom: 4em solid transparent;
        border-left: 4em solid #EAC4B7;
        position: absolute;
        z-index: 100;
    }
    .insta-fx ul {
        flex-wrap: wrap;
    }
    #Instagram-area p {
        width: 85%;
        margin: 0 auto;
    }
    .insta-fx ul li {
        width: calc(100% / 3);
    }
    /* .shop-area {
        flex-direction: column;
    }
    .shop {
        width: 100%;
        padding-bottom: 4%;
    }
    .funabashi {
        border-top: 1px dotted #E98585;
        border-bottom: 1px dotted #E98585;
    }
    .shop img {
        display: none;
    } */
    .shop-btn-deco {
        bottom: -2%;
    }
    /* .shop-txt {
        margin-top: 3em;
    } */
        #shop {
        margin-top: 20%;
        /* background: url(../images/sp/sp-shop-bg.svg) center top no-repeat;
        background-size: cover; */
    }
    #btn-area {
        margin-top: 15%;
    }
    .logo-area {
        width: 60%;
    }
    .jikan {
        width: 95%;
    }
    footer {
        margin-top: 50%;
    }
    .f-eigyojikan .txt1 {
        font-size: 18px;
    }
    .f-eigyojikan .txt2 {
        font-size: 18px;
    }
    .f-eigyojikan .txt3 {
        font-size: 14px;
    }
    .f-left .bottom {
        flex-direction: column;
    }
    .f-left .bottom p::before {
        display: none;
    }
    .f-left .bottom p {
        margin-right: 0;
        font-size: 16px;
    }
    .f-left .bottom a {
        padding-bottom: 2em;
        padding-top: 0.5em;
        letter-spacing: 4px;
    }
    .f-left .top {
        margin-bottom: 2em;
        flex-direction: column;
    }
    .f-right .top ul {
        margin: 0% auto;
    }
}

@media screen and (max-width: 500px){
.shop {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 10%;
}

.shop>img {
    width: 80%;
    display: block;
    margin: 0 auto;
}

.shop>div {
    width: 80%;
    margin: 0 auto;
}

.shop-btn-deco {
    width: 50%;
}

.shop-cont {
    padding-bottom: 15%;
}

/* .shop-btn-deco {
    bottom: 1%;
} */
.kazari {
    padding-top: 8%;
}
.tenpo-fx,.tenpo-shosai{
padding:0;
}
}
@media screen and (max-width:430px) {
    #new-collection {
        top: 0;
        margin-bottom: 2em;
    }
    .shop>img {
    width: 90%;
    display: block;
    margin: 0 auto;
}

.shop>div {
    width: 90%;
    margin: 0 auto;
    background-image: linear-gradient(to right, #E98585 2px, transparent 2px);
    background-size: 6px 1px;
    background-repeat: repeat-x;
    background-position: right bottom;
    padding-bottom: 10%;
}
}
@media screen and (max-width:390px) {
    .new-collection-text h2 {
        width: 90%;
    }
    .shop-btn-deco {
    width: 60%;
    bottom: -3%;
}
.kazari {
    padding-top: 10%;
}
}
@media screen and (max-width:520px) {
    .menu-content .sp-tenpo ul li a {
        font-size: 15px;
        font-weight: bold;
        letter-spacing: 3px;
    }
    .footer-cont {
        padding: 3% 0%;
    }
    .f-right .top ul {
        width: 100%;
        flex-direction: column;
    }
    .f-right li {
        width: 100%;
        padding: 5% 0;
        border-top: 1px solid #fff;
        justify-content: center;
    }
    #f-top {
        width: 100%;
        color: #E98585;
    }
    .f-right li:last-child {
        position: relative;
        border-bottom: 1px solid #fff;
        background-color: #fff;
    }
    .f-right li:nth-child(2) {
        background: #C1A37D;
    }

    .f-right li:nth-child(3) {
        background: #E98585;
    }
    .arrow1 {
        position: absolute;
        width: 20px;
        height: 20px;
        right: 5%;
        top: 50%;
        border: 2px solid;
        border-radius: 3px;
        border-color: transparent transparent #E98585 #E98585;
        transform: rotate(135deg) translate(-0%, 10%);
    }
}
@media screen and (min-width:521px) {
    .f-right .top .sp {
        display: none;
    }
}
@media screen and (min-width:429px) {
    #shop .dn-429 {
        display: none;
    }
}
@media screen and (max-width:430px) {
    .text2 {
        font-size: 18px;
    }
    .eigyojikan .txt1 {
        font-size: 18px;
    }
    .eigyojikan .txt2 {
        font-size: 20px;
    }
    .eigyojikan .txt3 {
        font-size: 16px;
    }
    .eigyojikan {
        width: 90%;
        margin: 0 auto;
        justify-content: left;
    }
    .text h3 {
        font-size: 14px;
    }
    /* .shop .dn-428,.b-line.dn-428,.eigyojikan.dn-428{
        display: none;
    } */
    .s-w-428{
        display: flex;
        align-items: center;
        padding-top: 5%;
    }
    .s-w-428 img{
        width: 50%;
        height: 100%;
        margin-left: auto;
        margin-right: 0;
    }
    .s-w-428>.kazari{
        width: 10%;
        height: 100%;
        margin: 0 2% 0 1%;
        padding: 0;
    }
    .shop-cont {
        width: 100%;
    }
    .shop-cont>.kazari{
        display: none;
    }
    #shop{
        margin-top: 0;
    }
    .shop-cont {
        margin-top: 0;
    }
}
@media screen and (max-width:420px) {
    .sp-button-shiryou, .sp-button-yoyaku {
        font-size: 16px;
        padding: 1em 0.3em;
    }
    .sp-shiryou::after,.sp-yoyaku::after {
        width: 30px;
        height: 15px;
    }
}
@media screen and (max-width:409px) {
    .sp-eigyo-jikan .txt2{
        font-size: 14px;
    }
}

@media screen and (max-width:375px) {
    .menu-btn {
        top: 0;
        right: 0px;
        height: 4em;
        width: 53px;
    }
    .menu-content ul li a {
        width: 95%;
        font-size: 13px;
        padding: 0.5em 0;
    }
    .sp-eigyo-jikan p {
        margin: 2em auto 0;
    }
    .menu_Instagram {
        margin: 1.5em auto 1em;
    }
    .text .sp {
        height: 3.3%;
    }
    .new-collection-text h2 {
        font-size: 16px;
    }
    .event-text {
        width: 95%;
        font-size: 20px;
    }
    .event-text h2::before,
    .event-text h2::after {
        width: 20%;
    }
    /* .collection-btn {
        width: 99%;
        padding: 4em 2% 1em 0;
    }
    .collection-btn div {
        width: 100%;
        height: 7em;
    }
    .hurisode-btn p,
    .hairstyle-btn p,
    .coordinate-btn p {
        font-size: 19px;
    }
    .hurisode-btn::after,
    .coordinate-btn::after,
    .hairstyle-btn::after {
        top: 79%;
    } */
    .sp-kazari1 {
        bottom: -7%;
    }
    .sp-kazari2 {
        bottom: -20%;
    }
    .logo-area {
        width: 70%;
    }
    .set-btn-deco,
    #reason5 .set-btn-deco {
        width: 60%;
    }
    .reason-text {
        width: 98%;
    }
    .reason-text h2 {
        font-size: 18px;
        line-height: 1.5;
    }
    #page-top {
        bottom: 5em;
    }
    .bottom-fx p {
        padding-top: 0;
    }

}

@media screen and (max-width:320px) {
    .text h3 {
        font-size: 12px;
    }
}

.summer {
    display: none;
}

.wrapper {
    overflow: hidden;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
    opacity: 0;
}
.delay-time02 {
    animation-delay: 0.2s;
}
.delay-time04 {
    animation-delay: 0.4s;
}
.delay-time05 {
    animation-delay: 0.5s;
}

/* ぼかしから出現 */
.blur {
    animation-name: blurAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
@keyframes blurAnime {
    from {
        filter: blur(10px);
        transform: scale(1.02);
        opacity: 0;
    }
    to {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger {
    opacity: 0;
}


@media screen and (max-width: 360px){
.torikae-text h4 {
    font-size: 16px;
}
.torikae-kikan p {
    font-size: 12px;
    width: 100%;
}
.torikae-aria .ab-txt {
    bottom: 0;
    text-align: left;
    font-size: 12px;
}
.torikae-text .f36 {
    font-size: 24px;
}
.about h2 {
    font-size: 14px;
}
.about p {
    font-size: 12px;
}
.about-jumpbtn p {
    font-size: 11px;
}
.kakaku h2 {
    font-size: 18px;
}
.text1 {
    width: 100%;
    font-size: 16px;
}
.font-s {
    font-size: 14px;
}
.text2 {
    font-size: 16px;
}
.fz-27 {
    font-size: 14px;
}
.fz-39 {
    font-size: 20px;
}
.title-fx h3, .title-fx img {
    width: 40%;
}
.title-fx{
    padding-top: 30px;
}
.tokuten h4 {
    font-size: 18px;
    top: 0.5%;
}
.maedori-text, .toujitsu-text {
    font-size: 16px;

}
.maedori-fx li {
    width: 49%;
}
.maedori-fx p, .toujitsu-fx p {
    font-size: 12px;
}
/* .maedori-btn {
    height: 50px;
    width: 62%;
    bottom: -1em;
} */
.toujitsu-fx li {
    margin-bottom: 10%;
}
.bottom-fx p {
    font-size: 12px;
}
.moushikomi-btn p{
    font-size: 14px;
}
.m-shiryou::after,.m-yoyaku::after{
right: -5%;
    padding: 10px;
}
.moushikomi-btn h4{
    font-size: 18px;
}
#shop h2{
    font-size: 20px;
}
.eigyojikan .txt1 {
    font-size: 16px;
}
.eigyojikan .txt2 {
    font-size: 18px;
}
.eigyojikan .txt3 {
    font-size: 14px;
}
.shop-btn-deco{
    padding: 0.8em 1.2em;
}
.shop-btn p{
    font-size: 16px;
}
.shop-btn-deco {
    bottom: -3%;
}
.logo-area {
    width: 80%;
}
.f-eigyojikan .txt1 {
    font-size: 14px;
}
.f-eigyojikan .txt2 {
    font-size: 16px;
}

.menu-content ul li a{
    font-size: 12px;
}
.menu-content {
    height: 100vmax;
}
#menu div{
    right: 20%
}
}
@media screen and (max-width:350px) {
    .sp-button-shiryou, .sp-button-yoyaku {
        font-size: 13px;
    }
    .sp-shiryou::after,.sp-yoyaku::after {
        width: 30px;
        height: 15px;
    }
}
@media screen and (max-width:320px) {
    .menu-content {
        height: 88vh;
    }
#about-mv-area h1 {
    font-size: 20px;
}
.reason-text h2 {
    font-size: 16px;
}
.reason-text {
    margin-top: -9%;
}
#reason1 .reason-text h2::before {
    font-size: 25px;
    padding: 0.6em 0.7em;
}
.set-btn-deco, #reason5 .set-btn-deco {
    width: 70%;
}
.eigyojikan .txt2 {
    font-size: 17px;
}

}


.eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-out forwards; }
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}


#reason1 {
    display: block;
    position: relative;
    width: 100%;
    height: 46%;
    margin-top: 15em;
}

.reason-text-area {
    display: block;
    position: absolute;
    background: #fff;
    opacity: 0.9;
    box-shadow: 0px 3px 6px #00000029;
    height: 100%;
    width: 54%;
    top: 10%;
    left: 0%;
    box-sizing: border-box;
}

.reason-text-area {
    display: block;
    position: absolute;
    background: #fff;
    opacity: 1;
    box-shadow: 0px 3px 6px #00000029;
    height: 100%;
    width: 54%;
    top: 10%;
    left: 0%;
    box-sizing: border-box;
}


.reason-text-area::before {
    content: "";
    display: block;
    height: 100%;
    padding-top: 46%;
    background-color: #fff;
    box-sizing: border-box;
}

.reason-text {
    position: absolute;
    margin: 0 auto;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.reason-text {
    position: absolute;
    margin-right: 9%;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}
.txt-right {
    right: 0;
}
/* #page-top .hide {
    display:none;
  }
#moushikomi .hide {
    display:none;
  } */

.about-sp{
    display: none;
}
.about-kazari{
    display: block;
    height: 200px;
    width: auto;
}
.kazari-right{
    margin-right: 0;
    margin-left: auto;
}
#a-btn-area{
    margin-top: 200px;
}
.reason-area{
    margin-top: 0;
}
.pc-setbtn{
    width: 20%;
    position: absolute;
    bottom: 9%;
    left: 30%;
}
.set-btn:hover{
    opacity: .7;
}
.sp-setbtn{
    display: none;
}
@media screen and (max-width:1024px){
    .about-pc,.about-kazari{
        display: none;
    }
    .about-sp{
        display: block;
        width: 60%;
        margin: 0 auto;
    }
    .kazari-area{
        display: none;
    }
    .pc-setbtn{
        display: none;
    }
    .sp-setbtn{
        display: block;
        width: 30%;
        margin: 0 auto;
        margin-bottom: 50px;
    }
}
@media screen and (max-width:500px){
    .about-sp{
        width: 100%;
    }
    .reason-area{
        top: 64px;
        margin-top: 0;
    }
    .sp-setbtn{
        width: 50%;
    }
}

.tab-4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1520px;
    margin: 0 auto;
    margin: 0 auto;
}

.tab-4 > label {
    flex: 1 1;
    order: -1;
    position: relative;
    min-width: 70px;
    max-width: 250px;
    width: 90%;
    padding: 2em 1em;
    background-color: #a8aaaf;
    color: #ffffff;
            font-weight: 600;
    font-size: .9em;
    text-align: center;
    cursor: pointer;
}

.tab-4 > label:hover,
.tab-4 label:has(:checked) {
    background-color: #e98585;
    color: #fff;
}

.tab-4 label:has(:checked)::before {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 15px;
    background-color: #e98585;
    content: '';
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.tab-4 input {
    display: none;
}

.tab-4 > div {
    display: none;
    width: 100%;
    padding: 1.5em 1em;
}

.tab-4 label:has(:checked) + div {
    display: block;
}

#collection .content-container .wrapper{
  height: auto;
  /* display: flex;
  align-items: center;
  justify-content: center; */
}
#collection .content-container .inner{
  width: calc(100% - 100px);
  max-width: 1520px;
  margin: 0 auto;
}
#collection .content-container .slide>span{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  background: #fff;
  color: #3498db;
  font-size: 36px;
  font-weight: bold;
  margin: 0 10px; /*★*/
}

/* arrow */
#collection .content-container .slick-arrow{
  position: absolute;
  z-index: 2;
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  border-top: 3px solid #37241E;
  border-right: 3px solid #37241E;
  opacity: .8;
}
#collection .content-container .slick-arrow::before{
  content: '';
}
#collection .content-container .slick-prev{
  /* left: 0px; */
  transform: rotate(-135deg);
}
#collection .content-container .slick-next{
  /* right: 0px; */
  transform: rotate(45deg);
}

/* dots */
#collection .content-container .slick-dots{
    bottom: -25px;
    position: relative;
    display: flex;
    justify-content: center;
}
#collection .content-container .slick-dots li,
#collection .content-container .slick-dots li button,
#collection .content-container .slick-dots li button::before{
  width: 10px;
  height: 10px;
}
#collection .content-container .slick-dots li{
  margin: 0 7px;
}
#collection .content-container .slick-dots li button{
  background-color: #ACAFA8;
  opacity: .8;
  border-radius: 100%;
}
#collection .content-container .slick-dots li.slick-active button{
  background-color: #37241E;
}
#collection .content-container .slick-dots li button::before{
  content: '';
}
@media screen and (max-width:1160px) {
#collection .event-text{
    width: 80%;
}
}


.slick-dots li button:before{
    color: unset;
}
.slick-dots li.slick-active button:before{
    color: unset;
}


.content_area {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 30px 20px;
}

.tab-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.tab-container {
    margin: 0 0 15px;
}
.tab {
  position: relative;
  font-weight: 500;
  text-align:center;
  width: calc(98% / 5);
  padding: 20px;
  background-color: #A8AAAF;
  color: #FFFFFF;
  cursor: pointer;
  transition: all .3s;
}

.tab:hover {
    opacity: .7;
    transition: all .3s;
}

.tab.active {
  background-color: #E98585;
  color: #37241E;
}
.tab.active:hover {
    opacity: 1;
}
.tab.active::before {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 15px;
  background-color: #e98585;
  content: '';
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: all .3s;
}
.content-container .content.show .slick-list{
    height: fit-content;
}
.content-container .content.show img{
    padding: 0 5px;
}
.content {
  display: none; /*必須*/
}
.content.show {
  display: block; /*必須*/
  height: fit-content;
}

.slick-dots {
    bottom: -30px;
}


/* パネル切り替えのアニメーション */
@keyframes panel-show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @media screen and (max-width:720px) {
    .tab-container {
        justify-content: center;
    }
    .tab {
        width: calc(98% / 3);
        margin: 10px 1px;
    }
  }
  @media screen and (max-width:603px) {
    .content_area {
        padding: 0 10px;
    }
    #collection .content-container .inner {
        width: calc(100% - 70px);
    }
  }
  @media screen and (max-width:480px) {
    #collection .content-container .inner {
        width: calc(100% - 10px);
    }
    #collection .content-container .slick-prev{
        left: 0;
    }
    #collection .content-container .slick-next{
        right: 0;
    }
    .tab{
        padding: 20px .5em;
        font-size: 14px;
    }
  }
  @media screen and (max-width:375px) {
    .tab{
        font-size: 10px;
    }
  }
  @media screen and (max-width:360px) {
    #collection .event-text {
        width: 95%;
    }
  }
  @media screen and (max-width:360px) {
    .content_area {
        padding: 0 5px;
    }
  }



#torikae,#about,#maedori,#instagram{
    margin-top: 5em;
}
#torikae .torikae-bg{
    position: relative;
    height: 1100px;
    background-image: url(../images/torikae/torikae-bg.png);
    background-size: contain;
    background-position: center;
    max-height: 1100px;
}
#torikae .torikae-bg .sp{
    display: none;
}

#torikae .torikae-bg .txt-fukidashi{
    font: normal normal normal 31px 'anzu-moji';
    color: #37241E;
    position: absolute;
    right: 4%;
    top: 4%;
    transform: rotate(8deg);
}

#torikae .torikae-bg .txt-fukidashi>p{
    text-align: center;
}

/* #torikae .torikae-bg .txt-area{
    width: 100%;
    height: 100%;
    background-image: url(../images/torikae/text-bg.png);
    background-size: contain;
    background-position: center;
    max-width: 604px;
    max-height: 254px;
    font: normal normal normal 18px/36px 'Zen Old Mincho', serif;
    box-shadow: 23px 12px 0px 0px rgba(83, 83, 83, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */
#torikae .torikae-bg .txt-area{
    position: relative;
    max-width: 600px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
}
#torikae .torikae-bg .txt-area>div{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
}

#torikae .torikae-bg .txt-area>div::before,#torikae .torikae-bg .txt-area>div::after{
    content: "";
    display: block;
    background-image: url(../images/torikae/kazari-02.png);
    max-height: 10px;
    max-width: 543px;
    height: 10px;
    width: 100%;
    margin: 10% auto;
}

#torikae .torikae-bg .txt-area>div::before{
    margin: 0 auto 8%;
}

#torikae .torikae-bg .txt-area>div::after{
    margin: 8% auto 0;
}

#torikae .torikae-bg .txt-area>div>img{
    display: block;
    width: 15%;
    margin: 0 auto .5em;
}
#torikae .torikae-bg .txt-area>div>div p{
    text-align: center;
    font-family: 'Zen Old Mincho', serif;
}
#torikae .torikae-bg .txt-area>div>div p:first-child{
    color: #37241E;
    font-size: 30px;
    margin-bottom: .5em;
}

#torikae .txt-area div p span{
    color: #E98585;
    font-size: 40px;
}

/* #torikae .txt-area img{
    width: 80px;
    display: block;
    margin: 8% auto 0;
} */

/* #torikae .txt-area div{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
} */

/* #torikae .txt-area div::before,#torikae .txt-area div::after{
    content: "";
    display: block;
    background-image: url(../images/torikae/kazari-02.png);
    max-height: 10px;
    max-width: 543px;
    height: 10px;
    width: 100%;
    margin: 10% auto;
}

#torikae .txt-area div::before{
    margin: 0 auto 10%;
}

#torikae .txt-area div::after{
    margin: 10% auto 0;
} */

#torikae .txt-area div p:first-child{
    color: #37241E;
    font-size: 30px;
}

#torikae .txt-area div p span{
    color: #E98585;
    font-size: 40px;
}

#torikae .txt-area div p{
    color: #37241E;
    font-size: 18px;
}
@media screen and (max-width:1024px) {
    #torikae .torikae-bg{
        background: none;
        height: 950px;
    }
    #torikae .torikae-bg .sp{
        display: block;
    }
    #torikae .torikae-bg .txt-area{
        top: 10%;
    }
    /* #torikae .torikae-bg .txt-area{
        position: relative;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0%);
    }
    #torikae .txt-area img {
        width: 80px;
        margin: 0 auto;
        padding-top: 6%;
    } */
    #torikae .torikae-bg .txt-fukidashi{
        font-size:max(2.3vw,16px);
        text-align: right;
        width: 50%;
        top: 0;
    }
    #torikae .torikae-bg .txt-fukidashi img{
        font-size: 20px;
        text-align: right;
    }
}
@media screen and (max-width: 834px) {
    #torikae .torikae-bg .txt-area {
        top: 15%;
    }
}
@media screen and (max-width: 800px) {
    #torikae .torikae-bg{
        height: 900px;
    }
}
@media screen and (max-width: 700px) {
    #torikae .torikae-bg{
        height: 800px;
    }
}
@media screen and (max-width: 672px) {
    #torikae .torikae-bg .txt-fukidashi {
        width: 60%;
    }
}
@media screen and (max-width: 560px) {
    #torikae .torikae-bg .txt-fukidashi {
        width: 70%;
        top: -3%;
    }
    #torikae .txt-area div p{
        font-size: 16px;
    }
    #torikae .torikae-bg .txt-area>div>div p:first-child{
        font-size: 20px;
    }
    #torikae .txt-area div p span{
        font-size: 28px;
    }
}
@media screen and (max-width: 480px) {
    #torikae .torikae-bg .txt-fukidashi {
        width: 80%;
    }
}
@media screen and (max-width: 360px) {
    #torikae .torikae-bg .txt-area>div {
        width: 95%;
    }
    #torikae .torikae-bg .txt-area>div::before, #torikae .torikae-bg .txt-area>div::after {
        height: 3px;
    }
    #torikae .torikae-bg .txt-area>div::before {
        margin: 0 auto 3%;
    }
}

@media screen and (max-width: 430px) {
    #torikae .torikae-bg .txt-fukidashi {
        width: 90%;
        top: -10%;
    }
    #torikae .torikae-bg .sp {
        margin-top: 30%;
    }
    #torikae .torikae-bg .txt-area>div>div p:first-child {
        font-size: 18px;
    }
    #torikae .txt-area div p span {
        font-size: 24px;
    }
    #torikae .txt-area div p{
        font-size: 14px;
    }
    #torikae .torikae-bg .txt-area {
        top: 20%;
    }
    #torikae .torikae-bg .txt-area>div::before {
        margin: 0 auto 5%;
    }
    #torikae .torikae-bg .txt-area>div::after {
        margin: 5% auto 0;
    }
    #torikae .torikae-bg {
        height: 500px;
    }
}
@media screen and (max-width: 375px) {
    #torikae .torikae-bg .txt-fukidashi {
        width: 90%;
        font-size: 14px;
    }
    #torikae .torikae-bg .txt-area {
        top: 15%;
    }
}
@media screen and (max-width: 320px) {
        #torikae .torikae-bg {
            height: 400px;
        }
}

#about{
    position: relative;
}

/* #about .about-txt-area{
    position: absolute;
    max-width: 1020px;
    max-height: 500px;
    width: 53%;
    height: 55%;
    background-color: #fff;
    font-family: 'Zen Old Mincho', serif;
    left: 0;
    bottom: 10%;
} */

#about .about-txt-area .about-txt {
    position: absolute;
    left: 0%;
    top: 50%;
    transform: translateY(-50%);
    padding: 10% 5% 10% 10%;
    background-color: #fff;
    box-shadow: 10px 10px 10px 0px rgba(55, 36, 30, 0.16);
    font-family: 'Zen Old Mincho', serif;
}
#about .about-txt-area .about-txt .sp {
    display: none;
}
#about .about-txt-area h2{
    font-size:max(2vw,20px);
    margin-bottom: 1em;
}

#about .about-txt-area p{
    font-size:max(1vw,14px);
}

#about .about-txt-area .about-btn{
    max-width: 250px;
    max-height: 50px;
    width: 40%;
    height: 3em;
    background-color: #37241E;
    color: #fff;
    line-height: 3em;
    font-size:max(0.9vw,10px);
    transition: .3s;
}

#about .about-txt-area .about-btn:hover{
    opacity: .7;
    transition: .3s;
}

#about .about-txt-area .about-btn p{
    /* font-size: 0.9vw; */
    font-size:max(0.9vw,10px);
    position: relative;
    margin-left: .5em;
    margin-top: 2em;
}

#about .about-txt-area .about-btn p::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
    background: url(../../assets/images/header/arrow.svg) center center no-repeat;
    -webkit-mask: url(../../assets/images/header/arrow.svg) center center no-repeat;
    background: #fdeff2;
    background-size: contain;
    content: "";
    z-index: 2;
    transition: all .3s;
}

#about .about-img{
    max-width: 1600px;
    max-height: 900px;
    width: 83%;
    margin-right: 0;
    margin-left: auto;
}

@media screen and (max-width: 834px) {
    #about {
        display: flex;
        flex-direction: column-reverse;
        margin-bottom: 10em;
    }
    #about .about-txt-area {
        position: relative;
        width: 100%;
        height: 200px;
        bottom: 0%;
    }
    #about .about-img{
        width: 100%;
    }
    #about .about-txt-area h2{
        font-size: 24px;
    }
    
    #about .about-txt-area p{
        font-size: 16px;
    }
    #about .about-txt-area .about-txt{
        padding: 10%;
        top: 0;
    }
    #about .about-txt-area .about-btn {
        width: 45%;
        height: 5em;
        line-height: 5em;
    }
    #about .about-txt-area .about-btn p {
        font-size: 14px;
    }
}
@media screen and (max-width: 633px) {
    #about .about-txt-area .about-txt {
        top: 80%;
        box-shadow: none
    }
    #about {
        margin-top: 0;
    }
}
@media screen and (max-width: 590px) {

    #about .about-txt-area h2{
        font-size: 20px;
    }
    
    #about .about-txt-area p{
        font-size: 16px;
    }
    #about .about-txt-area .about-txt{
        padding: 10%;
        width: 100%;
        top: 69%;
    }
    #about .about-txt-area .about-btn {
        width: 50%;
        height: 5em;
        line-height: 5em;
    }
}
@media screen and (max-width: 430px) {
    #about{
        margin-bottom: 5em;
        margin-top: 5em;
    }
    #about .about-txt-area .about-txt {
        padding: 3%;
        top: 50%;
        box-shadow: none;
    }
    #about .about-txt-area h2 {
        font-size: 24px;
        text-align: center;
        line-height: 1.5;
    }
    #about .about-txt-area .about-txt .pc {
        display: none;
    }
    #about .about-txt-area .about-txt .sp {
        display: block;
    }
    #about .about-txt-area .about-btn {
        width: 50%;
        margin: 0 auto;
    }
    #about .about-img img {
        height: 350px;
        object-fit: cover;
    }
}
@media screen and (max-width: 414px) {
    #about .about-txt-area .about-btn {
        width: 55%;
    }
}
@media screen and (max-width: 375px) {
    #about {
        margin-top: 0;
    }
    #about .about-txt-area {
        height: 250px;
    }
}
@media screen and (max-width: 360px) {
    #about .about-txt-area .about-btn {
        width: 70%;
    }
    #about .about-txt-area h2 {
        font-size: 20px;
        text-align: center;
        line-height: 1.5;
    }
}


#plan{
    margin: 5em auto 0;
}
#plan .event-text{
    margin-bottom: 20px;
}

#plan .plan-area{
    max-width: 1340px;
    margin: 0 auto;
}

#plan .plan-area>p {
    text-align: center;
    font-family: 'Zen Old Mincho', serif;
    margin-bottom: 2em;
}

#plan .event-text h2::before, #plan .event-text h2::after {
    width: 10%;
}
@media screen and (max-width: 1100px) {
    #plan .event-text {
        width: 60%;
    }
}
@media screen and (max-width: 920px) {
    #plan .event-text {
        width: 80%;
    }
}

@media screen and (max-width: 600px) {
    #plan .event-text {
        width: 90%;
    }
}
#plan .parts{
    color: #37241E;
    font-size: 30px;
    letter-spacing: 0px;
    color: #37241E;
    text-align: center;
    position: relative;
    max-width: 676px;
    width: 100%;
    padding: 1em 1em 0 1em;
    margin: 0 auto 1em;
}

#plan .plan-area .sp{
    display: none;
}

#plan .parts span{
    color: #E98585;
    font-size: 40px;
}

#plan .parts::before, #plan .parts::after {
    content: '';
    position: absolute;
    bottom: 13%;
    display: inline-block;
    width: 31px;
    height: 1px;
    background-color: #E98585;
}
#plan .parts::before {
    transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
    left: 0;
}
#plan .parts::after {
    transform: matrix(0.71, -0.71, 0.71, 0.71, 0, 0);
    right: 0;
}

#plan .plan-fx{
    display: flex;
}
@media screen and (max-width:834px) {
#plan .parts{
    font-size: 18px;
    width: 60%;
}
#plan .parts span{
    font-size: 24px;
}
#plan .plan-fx{
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
}
#plan .plan-fx .plan:first-child{
    margin-bottom: 50px;
}
}
@media screen and (max-width:670px) {
    #plan .plan-fx {
        width: 100%;
    }
}
@media screen and (max-width:621px) {
#plan .parts{
    font-size: 18px;
    width: 80%;
}
}

#plan .plan-fx .plan div{
    font-size: 35px;
    font-family: 'Zen Old Mincho', serif;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    width: 97%;
    margin: 0 auto;
    align-items: flex-start;
}

#plan .plan-fx .plan div small{
    font-size: 23px;
}

#plan .plan-fx .plan span{
    position: relative;
    display: block;
    max-height: 40px;
    margin-right: 30px;
    padding: 0.5rem 1rem;
    color: #fff;
    background: #E98585;
    font-size: 21px;
}

#plan .plan-fx .buy span{
    background: #C1A37D;
}

#plan .plan-fx .plan span:before {
  position: absolute;
  top: 0;
  right: -10px;
  transform: rotate(180deg);
  content: '';
  border-width: 20px 10px 20px 0;
  border-style: solid;
  border-color: transparent #E98585 transparent transparent;
}

#plan .plan-fx .buy span:before {
  border-color: transparent #C1A37D transparent transparent;
}
#plan .set-area h3{
    position: relative;
    display: flex;
    margin-top: 3em;
    font-size: 30px;
    text-align: center;
    font-family: 'Zen Old Mincho', serif;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}
#plan .set-area h3::after {
    position: relative;
    display: block;
    width: 13px;
    height: 23px;
    margin-top: 10px;
    margin-bottom: 1em;
    /* left: 50%; */
    transform: rotate(90deg);
    background: url(../../assets/images/header/arrow.svg) center center no-repeat;
    -webkit-mask: url(../../assets/images/header/arrow.svg) center center no-repeat;
    background: #37241E;
    background-size: contain;
    content: "";
    transition: all .3s;
}
#plan .set-area .plus{
    max-width: 50px;
    width: 10%;
    margin: 1em auto;
    padding: 0;
}
#plan .set-area .isshiki,#plan .set-area .tokuten{
    background: #F8F3EF;
}
#plan .set-area .isshiki .pc,#plan .set-area .tokuten .pc{
    display: block;
    max-width: 1520px;
    width: 98%;
    margin: 0 auto;
    padding: 30px 0;
}
#plan .set-area .isshiki p{
    text-align: center;
    margin-top: 1em;
    color: #37241E;
    font-size: 14px;
}

@media screen and (min-width:835px) {
#plan .set-area .sp{
    display: none;
}
}
@media screen and (max-width:834px) {
#plan .set-area .isshiki .pc, #plan .set-area .tokuten .pc{
    display: none;
}
#plan .set-area .sp{
    display: block;
    padding: 30px 5%;
}
#plan .set-area .isshiki p{
    text-align: left;
    line-height: 1.5;
}
}
@media screen and (max-width:834px) {
    #plan .plan-fx .plan span{
        margin-right: 20px;
        font-size: 16px;
    }
    #plan .plan-fx .plan span:before {
        border-width: 17px 10px 17px 0;
    }
}

@media screen and (max-width:430px) {
    #plan .parts {
        width: 95%;
        font-size: 20px;
    }
    #plan .parts span {
        font-size: 30px;
    }
    #plan .plan-fx {
        width: 95%;
    }
    #plan .set-area h3{
        font-size: 20px;
    }
    #plan .set-area .sp {
        padding: 30px 2%;
    }
    #plan .plan-fx .plan div{
        font-size: 24px;
        width: 100%;
    }
    #plan .plan-fx .plan div small{
        font-size: 16px;
    }
    #plan .plan-fx .plan span{
        font-size: 14px;
        margin-right: 20px;
    }
    #plan .plan-fx .plan span:before{
        border-width: 16px 10px 16px 0;
    }
    #plan .parts .sp{
        display: block;
    }
}

@media screen and (max-width:414px) {
    #plan .event-text h2::before, #plan .event-text h2::after {
        width: 5%;
    }
}

@media screen and (max-width:375px) {
    #plan .plan-area .sp{
        display: block;
    }
}

@media screen and (max-width:360px) {
    #plan .plan-fx .plan span {
        padding: 0.3rem;
    }
    #plan .plan-fx .plan span:before {
        border-width: 13px 10px 13px 0;
    }
    #plan .plan-fx .plan div {
        font-size: 19px;
    }
    #plan .plan-fx .plan div small {
        font-size: 14px;
    }
    #plan .event-text {
        width: 95%;
        font-size: 18px;
    }
}


#maedori{
    position: relative;
}

/* #maedori .maedori-txt-area{
    position: absolute;
    max-width: 1020px;
    max-height: 500px;
    width: 53%;
    height: 55%;
    background-color: #fff;
    font-family: 'Zen Old Mincho', serif;
    right: 0;
    bottom: 10%;
    box-shadow: 10px 10px 10px 0px rgba(55, 36, 30, 0.16);
} */

/* #maedori .maedori-txt-area .maedori-txt{
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
} */
#maedori .maedori-txt-area .maedori-txt {
    position: absolute;
    right: 0%;
    top: 50%;
    transform: translateY(-50%);
    padding: 10% 10% 10% 5%;
    background-color: #fff;
    box-shadow: 10px 10px 10px 0px rgba(55, 36, 30, 0.16);
    font-family: 'Zen Old Mincho', serif;
}

#maedori .maedori-txt-area h2{
    font-size:max(2vw,20px);
    margin-bottom: 1em;
}

#maedori .maedori-txt-area p{
    font-size:max(1vw,14px);
}

#maedori .maedori-txt-area .maedori-btn{
    max-width: 250px;
    max-height: 50px;
    width: 15em;
    height: 3em;
    background-color: #37241E;
    color: #fff;
    line-height: 3em;
    font-size:max(0.9vw,10px);
    margin-left: auto;
    transition: .3s;
}

#maedori .maedori-txt-area .maedori-btn:hover{
    opacity: .7;
    transition: .3s;
}

#maedori .maedori-txt-area .maedori-btn p{
    font-size:max(0.9vw,10px);
    position: relative;
    margin-left: .5em;
    margin-top: 2em;
}

#maedori .maedori-txt-area .maedori-btn p::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
    background: url(../../assets/images/header/arrow.svg) center center no-repeat;
    -webkit-mask: url(../../assets/images/header/arrow.svg) center center no-repeat;
    background: #fdeff2;
    background-size: contain;
    content: "";
    z-index: 2;
    transition: all .3s;
}

#maedori .maedori-img{
    max-width: 1600px;
    max-height: 900px;
    width: 83%;
    margin-left: 0;
    margin-right: auto;
}


@media screen and (max-width: 834px) {
    #maedori {
        display: flex;
        flex-direction: column-reverse;
        margin-bottom: 10em;
    }
    #maedori .maedori-txt-area {
        position: relative;
        width: 100%;
        height: 200px;
        bottom: 0%;
    }
    #maedori .maedori-img{
        width: 100%;
    }
    #maedori .maedori-txt-area h2{
        font-size: 24px;
    }
    
    #maedori .maedori-txt-area p{
        font-size: 16px;
    }
    #maedori .maedori-txt-area .maedori-txt{
        padding: 10%;
    }
    #maedori .maedori-txt-area .maedori-btn {
        width: 45%;
        height: 5em;
        line-height: 5em;
    }
    #about .maedori-txt-area .maedori-btn p {
        font-size: 14px;
    }
}
@media screen and (max-width: 590px) {
    #maedori .maedori-txt-area .maedori-btn p {
        font-size: 14px
    }
}
@media screen and (max-width: 430px) {
    #maedori {
        margin-bottom: 5em;
    }
    #maedori .maedori-txt-area .maedori-btn {
        width: 50%;
        margin: 0 auto;
    }
    #maedori .maedori-txt-area .maedori-txt {
        padding: 3%;
        box-shadow: none;
        top: 62%;
    }
    #maedori .maedori-txt-area .maedori-txt .pc {
        display: none;
    }
    #maedori .maedori-txt-area h2{
        text-align: center;
    }
    #maedori .maedori-img img {
        height: 350px;
        object-fit: cover;
        object-position: left;
    }
}
@media screen and (max-width: 360px) {
    #maedori .maedori-txt-area h2 {
        font-size: 20px;
    }
}


#instagram{
    background: url(../images/insta/insta-bg.jpg);
}

#instagram img{
    max-width: 1020px;
    margin: 0 auto;
    padding: 50px 0;
    width: 80%;
    display: block;
    transition: .3s;
}

#instagram img:hover{
    opacity: .7;
    transition: .3s;
}

@media screen and (max-width:834px) {
    #instagram img{
        width: 95%;
    }
}

@media screen and (max-width:430px) {
    #instagram img{
        width: 98%;
    }
}


/* 右側バナーCSS */
.meter-banner {
    position: fixed;
    margin: 15px 20px;
    z-index: 99998;
	bottom: 55px;
	right: 0px;
    width: 350px;
    height: 136px;
    transition: all .3s;
    box-shadow: 0 0 7px rgb(0 0 0 / 40%);
}

.meter-banner:hover {
    opacity: .7;
    transition: all .3s;
}
.meter-banner-close {
    font-weight: bold;
    position: absolute;
    top: -5px;
    right: -5px;
    z-index: 99999;
    padding: 4px 6px;
    border: none;
    background-color: #f8f8f8;
    border-radius: 25px;
    cursor: pointer;
    -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
    box-shadow: 0 0 7px rgb(0 0 0 / 40%);
}

.ev-slider-fb li img{
    width: 350px;
    height: 136px;
}

@media screen and (max-width:375px) {
    .meter-banner {
        margin: 15px 10px;
        width: 300px;
        height: 117px;
    }
    .ev-slider-fb li img {
        height: 117px;
        width: 300px;
    }
}

@media screen and (max-width:320px) {
    .meter-banner{
        height: 122px;
    }
    .meter-banner {
        width: 90%;
        min-width: 300px;
    }
    .ev-slider-fb .slick-list {
        height: 122px;
    }
    .ev-slider-fb li img{
        height: 122px;
    }
}

#popup {
  display: none; /* label でコントロールするので input は非表示に */
}

.popup-open {
  cursor: pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
  padding: 0 2em;
  color: #C1A37D;
}
@media screen and (max-width: 1440px) {
    .popup-open {
        padding: 0;
      }
}
@media screen and (max-width: 963px) {
    .popup-open {
        font-size: 14px;
      }
}
.popup-overlay {
  display: none; /* input にチェックが入るまでは非表示に */
}

#popup:checked ~ .popup-overlay {
  display: block;
  z-index: 99999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}

.popup-window {
  width: 20em;
  max-width: 560px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 6px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popup-text span {
    font-size: 24px;
    color: #C1A37D;
}

.popup-text:not(:last-of-type) {
  margin-bottom: 1em
}

.popup-close {
  cursor: pointer;
  position: absolute;
  top: -26px;
  right: 0;
}