@charset "utf-8";

.pc {
    display: block;
}

.sp {
    display: none;
}

@media only screen and (max-width: 599px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/* ----------------------------------------------------------
Common Setting
---------------------------------------------------------- */

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

/*body*/

body {
    color: #000000;
    font-family: 'Noto Sans JP', "メイリオ", "Meiryo",
        "ヒラギノ角ゴ ProN W3";
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
}

.container {
    overflow: hidden;
}

.inner {
    width: 1150px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}

/*img*/

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

/*link*/

a:link,
a:visited,
a:active {
    color: #333333;
    text-decoration: none;
    transition: 0.5s;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

input:hover,
a:hover img {
    outline: 0;
}

/* iOSでのデフォルトスタイルをリセット */

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}



.fade_in,
.fade_in_up,
.fade_in_left,
.fade_in_right,
.zoom_in {
    opacity: 0;
    visibility: hidden;
}

.line_anime:after {
    visibility: hidden;
}

.fade_in.active {
    visibility: visible;
    -webkit-animation: fade_in linear 0.5s;
    animation: fade_in linear 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.fade_in_up.active {
    visibility: visible;
    -webkit-animation: fade_in_up linear 0.5s;
    animation: fade_in_up linear 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.fade_in_left.active {
    visibility: visible;
    -webkit-animation: fade_in_left linear 0.5s;
    animation: fade_in_left linear 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.fade_in_right.active {
    visibility: visible;
    -webkit-animation: fade_in_right linear 0.5s;
    animation: fade_in_right linear 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.zoom_in.active {
    visibility: visible;
    -webkit-animation: zoom_in linear 0.5s;
    animation: zoom_in linear 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.line_anime.active:after {
    visibility: visible;
    -webkit-animation: line_anime linear 0.5s;
    animation: line_anime linear 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    transform-origin: left top;
}

@-webkit-keyframes fade_in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade_in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fade_in_up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade_in_up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes fade_in_left {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade_in_left {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes fade_in_right {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade_in_right {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes zoom_in {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoom_in {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes line_anime {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

@keyframes line_anime {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

/* ----------------------------------------------------------
header
---------------------------------------------------------- */

.header {
    color: #fff;
    text-align: center;
    line-height: 1;
    font-weight: 500;
    padding: 15px 0;
    background-color: #cc4a70;
}

.header .layout {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.header .text {
    font-size: 2.2rem;
    margin-right: 20px;
    margin-top: 10px;
}

.header .countdown_display {
    font-size: 3.8rem;
    line-height: 0;
}

.header .countdown_display span:nth-of-type(1),
.header .countdown_display span:nth-of-type(2),
.header .countdown_display span:nth-of-type(5),
.header .countdown_display span:nth-of-type(6),
.header .countdown_display span:nth-of-type(8),
.header .countdown_display span:nth-of-type(9) {
    font-size: 5.8rem;
    letter-spacing: 10px;
}

.header .countdown_display span:nth-of-type(5),
.header .countdown_display span:nth-of-type(8) {
    margin-left: 10px;
}

/* ----------------------------------------------------------
mv
---------------------------------------------------------- */

.mv {
    background-image: url(../images/mv_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.mv .inner {
    padding: 180px 0;
}

.mv .contents {
    text-align: center;
}

.mv .img {
    position: absolute;
    right: 0;
    bottom: 0;
}

.mv .tablet_img {
    display: none;
}


/* ----------------------------------------------------------
cta
---------------------------------------------------------- */

.cta {
    background-image: url(../images/cta_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 70px 0 50px;
}

.cta .box {
    background-color: #fff;
    border: 3px solid #cc4a70;
    position: relative;
    padding: 70px 10px 10px;
}

.cta .box .title {
    position: absolute;
    left: 0;
    right: 0;
    top: -50px;
    text-align: center;
}

.cta .box .img {
    width: 28%;
}

.cta .box .price_box {
    width: 32%;
}

.cta .box .test_item_box {
    width: 36%;
}

.cta .box .contents {
    padding: 45px 30px 30px;
}

.cta .box .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta .box .price_box {
    position: relative;
}

.cta .box .price_layout {
    display: flex;
    align-items: center;
}

.cta .box .price {
    font-size: 8rem;
    font-weight: 700;
    line-height: 1.2;
}

.cta .box .tax {
    font-size: 1.6rem;
    line-height: 1;
}

.cta .box .en {
    font-size: 4.3rem;
    font-weight: 700;
    line-height: 1;
}

.cta .box .special_price {
    color: #c84271;
    text-align: right;
    font-size: 2.4rem;
    font-weight: 700;
}

.cta .box .special_price span {
    border-bottom: 2px solid #c84271;
}

.cta .box .off_price {
    position: absolute;
    right: 0;
    top: -35px;
}

.cta .box .test_item_title {
    font-size: 1.8rem;
}

.cta .box .test_item_list {
    display: flex;
    flex-wrap: wrap;
}

.cta .box .test_item {
    font-size: 1.2rem;
    padding: 3px 7px;
    border-radius: 5px;
    margin-top: 7px;
    margin-right: 7px;
}

.cta .box .test_item.pink {
    background-color: #f6d6d6;
}

.cta .box .test_item_box.test_item_box_sp {
    display: none;
}

.cta .box .number {
    font-size: 1.3rem;
    padding-top: 10px;
    margin-top: 15px;
    border-top: 1px solid #c84271;
    display: flex;
}

.cta .box .arrow {
    text-align: center;
    margin-top: 20px;
}

.cta .box .coupon_text {
    color: #cd4a71;
    font-size: 3.2rem;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
}

.cta .box .coupon_text span {
    position: relative;
    z-index: 10;
}

.cta .box .coupon_text span:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 20px;
    left: 0;
    bottom: 0;
    background: #f9e23f;
    z-index: -10;
}

.cta .box .coupon_text .line_anime {
    display: inline-block;
    position: relative;
}

.cta .box .coupon_text .line_anime:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    left: 0;
    bottom: 0;
    background: #f9e23f;
}

.cta .box .coupon_btn {
    text-align: center;
    margin-top: 20px;
}

.cta .box .coupon_notes {
    color: #cd4a71;
    font-size: 1.3rem;
    text-align: right;
    margin-top: 10px;
    margin-right: 90px;
}

.cta .cta_text {
    text-align: center;
    font-size: 2.4rem;
    margin-top: 40px;
}

.cta .btn {
    text-align: center;
    margin-top: 10px;
}

.cta .btn img {
    width: 800px;
}

.btnshine {
    position: relative;
    overflow: hidden;
}

.btnshine::before {
    content: '';
    /*絶対配置でキラッと光るの位置を決める*/
    position: absolute;
    top: 0;
    left: -75%;
    /*キラッと光る形状*/
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
    -webkit-animation: 2s shine linear infinite;
    animation: 2s shine linear infinite;
}

@-webkit-keyframes shine {
    0% {
        left: -20%;
    }

    15% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

@keyframes shine {
    0% {
        left: -20%;
    }

    15% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

/* ----------------------------------------------------------
payment
---------------------------------------------------------- */

.payment {
    background-image: url(../images/payment_bg.webp);
    background-repeat: repeat;
    background-size: 204px;
    background-position: center;
    padding: 70px 0;
}

.payment .layout_box {
    background-color: #fff;
    border: 10px solid #e795ad;
    padding: 40px 50px 10px 50px;
    display: flex;
    justify-content: space-between;
}

.payment .layout_box .title {
    text-align: center;
    font-size: 3.4rem;
    font-weight: 500;
}

.payment .layout_box .title .pink {
    color: #cd4a71;
}

.payment .layout_box .title .small {
    font-size: 3rem;
}

.payment .layout_box .title .mark {
    font-size: 1.2rem;
    position: relative;
    top: -20px;
}

.payment .layout_box .title .marker {
    background: linear-gradient(transparent 60%, #f9e23f 0%);
}

.payment .layout_box .box .text {
    color: #fff;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 500;
    margin-top: 10px;
}

.payment .layout_box .box .text span {
    background-color: #cd4a71;
    padding: 3px 25px 5px;
}

.payment .layout_box .box .payment_text {
    text-align: center;
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 10px;
}

.payment .layout_box .box .notes {
    font-size: 1.1rem;
    margin-top: 20px;
}

.payment .layout_box .box .speedy {
    text-align: center;
    margin-bottom: 10px;
}

/* ----------------------------------------------------------
attention
---------------------------------------------------------- */

.attention {
    padding: 70px 0 35px;
}

.attention .layout_box {
    background-color: #ffe8ef;
    border: 9px solid #f5d3dd;
    border-radius: 100px;
    position: relative;
    padding: 30px 50px 30px 350px;
}

.attention .layout_box .img {
    position: absolute;
    left: 80px;
    bottom: 0;
}

.attention .layout_box .text {
    font-size: 3rem;
}

.attention .layout_box .text span {
    font-size: 3.6rem;
    font-weight: 500;
    background: linear-gradient(transparent 60%, #f9e23f 0%);
}


/* ----------------------------------------------------------
about
---------------------------------------------------------- */

.about {
    padding: 120px 0 70px;
    background-image: url(../images/about_bg.webp);
    background-repeat: repeat;
    background-size: 92px;
    background-position: center;
}

.about .about_container {
    width: 1000px;
    margin: 0 auto;
}

.about .title_box {
    background-color: #cc4a70;
    position: relative;
    padding: 30px 50px;
}

.about .title_box .img {
    position: absolute;
    right: 30px;
    bottom: 0;
}

.about .title_box .title {
    color: #fff;
    font-size: 3.8rem;
    font-weight: 500;
    line-height: 1;
}

.about .title_box .title span {
    font-size: 6.4rem;
}

.about .layout {
    display: flex;
    border: 3px solid #cc4a70;
    border-top: none;
}

.about .layout .title {
    color: #fff;
    font-size: 2.6rem;
    line-height: 1.2;
    font-weight: 500;
    width: 200px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    align-items: center;
    box-sizing: border-box;

}

.about .layout .title .title_inner {
    width: 100%;
}

.about .layout .title span {
    font-size: 4.8rem;
}

.about .layout.point01 .title {
    background-color: #da7996;
}

.about .layout.point02 .title {
    background-color: #df8ba4;
}


.about .layout.point03 .title {
    background-color: #e6a1b6;
}

.about .layout .contents {
    background-color: #fff;
    width: calc(100% - 200px);
    box-sizing: border-box;
}

.about .layout.point01 .contents,
.about .layout.point02 .contents {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about .layout.point01 .contents .text {
    font-size: 4rem;
    font-weight: 500;
    margin-left: 20px;
}

.about .layout.point01 .contents .text .pink {
    color: #cd4970;
}

.about .layout.point01 .contents .text .bold {
    font-size: 7rem;
}

.about .layout.point01 .contents .notes {
    font-size: 1.4rem;
    position: absolute;
    right: 10px;
    bottom: 5px;
}

.about .layout.point01 .contents .img img {
    width: 174px;
    height: auto;
}

.about .layout.point02 .contents .text {
    font-size: 4rem;
    font-weight: 500;
    margin-right: 20px;
    text-align: center;
}

.about .layout.point02 .contents .text .bold {
    color: #cd4970;
    font-size: 5.5rem;
}

.about .layout.point02 .contents .img img {
    width: 135px;
    height: auto;
}

.about .layout.point03 .contents {
    padding: 10px 40px;
}

.about .layout.point03 .contents .text {
    font-size: 5.5rem;
    font-weight: 500;
    text-align: center;
}

.about .layout.point03 .contents .text .pink {
    color: #cd4970;
}

.about .layout.point03 .contents .text .small {
    font-size: 4rem;
}

.about .layout.point03 .contents .point03_box {
    background-color: #ffebf1;
}

.about .layout.point03 .contents {
    padding: 10px 40px;
}

.about .layout.point03 .contents .point03_layout {
    display: flex;
    justify-content: center;
}

.about .layout.point03 .contents .point03_layout .certificate {
    text-align: center;
}

.about .layout.point03 .contents .point03_layout .certificate:first-of-type {
    margin-right: 70px;
}

.about .layout.point03 .contents .point03_layout .certificate_name {
    margin-top: 10px;
}

.about .layout.point03 .contents .point03_layout .certificate_name span {
    background-color: #fff;
    padding: 0 20px;
}

.about .layout.point03 .contents .point03_box {
    padding: 20px 10px 10px 10px;
}

.about .layout.point03 .contents .point03_box .certificate_text {
    text-align: center;
    font-size: 1.8rem;
    margin-top: 10px;
}




/* ----------------------------------------------------------
orimono
---------------------------------------------------------- */

.orimono {
    padding: 150px 0 0;
    background-image: url(../images/orimono_bg.webp);
    background-repeat: repeat;
    background-size: 1000px auto;
    background-position: center;
    position: relative;
}

.orimono .orimono_arrow {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -55px;
}

.orimono .title_box {
    background-color: #cd4970;
    position: relative;
    padding: 30px 0;
}

.orimono .title_box .img {
    position: absolute;
    right: 20px;
    bottom: -1px;
}

.orimono .title_box .title {
    color: #fff;
    font-size: 5.2rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.8;
    margin-right: 350px;
}

.orimono .title_box .title .line,
.orimono .title_box .title .dot {
    position: relative;
}

.orimono .title_box .title .dot:after {
    content: '';
    background-color: #fff;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    left: 23px;
    top: 3px;
}

.orimono .title_box .title .line:after {
    content: '';
    background: #f9e23f;
    width: 100%;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.orimono .contents_box {
    background-color: #fff;
}

.orimono .contents_box .layout {
    display: flex;
    justify-content: center;
    padding: 40px 50px;
}

.orimono .contents_box .layout .box {
    width: 25%;
    text-align: center;
}

.orimono .contents_box .layout .box:nth-of-type(2) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.orimono .contents_box .layout .box:nth-of-type(3) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.orimono .contents_box .layout .box:last-of-type {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.orimono .contents_box .layout .box .img {
    text-align: center;
    height: 187px;
    line-height: 187px;
}

.orimono .contents_box .layout .box .title {
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
    background-color: #CE4970;
    border-radius: 30px;
    width: 185px;
    margin: 40px auto 20px;
}

.orimono .contents_box .layout .box .text {
    font-size: 1.4rem;
}

.orimono .contents_box .layout_box_container {
    padding: 50px 50px 100px 50px;
}

.orimono .contents_box .layout_box_container .layout_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px 30px 20px;
    background-color: #F3EDEA;
    margin-bottom: 20px;
}

.orimono .contents_box .layout_box_container .layout_box.layout_box02 {
    background-color: #d7e9f3;
    margin-bottom: 40px;
}

.orimono .contents_box .layout_box_container .orimono_title {
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 10px;
}


.orimono .contents_box .layout_box_container .layout_box .img {
    width: 150px;
    height: 115px;
    line-height: 115px;
    text-align: center;
}

.orimono .contents_box .layout_box_container .layout_box .contents {
    width: calc(100% - 160px);
}

.orimono .contents_box .layout_box_container .layout_box .contents .title {
    font-size: 2.4rem;
    font-weight: 500;
}

.orimono .contents_box .layout_box_container .layout_box .contents .text {
    font-size: 2rem;
    margin-top: 10px;
}

.orimono .contents_box .layout_box_container .layout_box .contents .text span {
    background: linear-gradient(transparent 70%, #f9e23f 0%);
}

.orimono .contents_box .arrow {
    text-align: center;
    margin-bottom: 20px;
}

.orimono .contents_box .message_box {
    padding: 70px 0;
    position: relative;
}

.orimono .contents_box .message_box .img {
    position: absolute;
    right: 260px;
    bottom: -8px;
    z-index: 10;
}

.orimono .contents_box .message_box .img img {
    width: 150px;
}

.orimono .contents_box .message_box:before,
.orimono .contents_box .message_box:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.orimono .contents_box .message_box:before {
    left: 0;
    background-image: url(../images/orimono_bg01.webp);
}

.orimono .contents_box .message_box:after {
    right: 0;
    background-image: url(../images/orimono_bg02.webp);
}

.orimono .contents_box .message_box .text {
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
}

.orimono .contents_box .message_box .text span {
    color: #CE4970;
}

.orimono .contents_box .message_box .example {
    font-size: 1.6rem;
    text-align: center;
    margin-top: 10px;
}

.orimono .contents_box .message_box .contents {
    position: relative;
    background-image: url(../images/orimono_fukidashi.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    padding: 15px 0;
    z-index: 10;
}

/* ----------------------------------------------------------
risk
---------------------------------------------------------- */

.risk {
    padding: 100px 0 70px;
    background-image: url(../images/risk_bg.webp);
    background-repeat: repeat;
    background-size: 204px;
    background-position: center;
}

.risk .img {
    text-align: right;
    padding-right: 30px;
}

.risk .risk_box {
    background-color: #fff;
    padding: 50px;
    border-radius: 30px;
}

.risk .risk_box .risk_title {
    font-size: 4rem;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

.risk .risk_box .risk_title img {
    margin-right: 20px;
}

.risk .risk_box .layout {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.risk .risk_box .layout .box {
    border: 3px solid #4C7FA1;
    width: 340px;
    box-sizing: border-box;
}

.risk .risk_box .layout .box:nth-of-type(2) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.risk .risk_box .layout .box:last-of-type {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}


.risk .risk_box .layout .box .title {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 500;
    text-align: center;
    background-color: #4C7FA1;
    padding: 40px 0;
}

.risk .risk_box .layout .box .text {
    font-size: 1.8rem;
    padding: 25px 20px;
}

.risk .risk_box .layout .box .text span {
    background: linear-gradient(transparent 70%, #f9e23f 0%);
}

/* ----------------------------------------------------------
incase
---------------------------------------------------------- */

.incase {
    padding: 70px 0;
    background-image: url(../images/incase_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.incase .incase_img {
    position: absolute;
    right: -210px;
    bottom: -70px;
}

.incase .layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.incase .layout .img img {
    width: 550px;
    height: auto;
}

.incase .layout .right {
    width: 550px;
}

.incase .layout .right .title {
    color: #fff;
    font-size: 6rem;
    font-weight: 500;
    text-align: center;
}

.incase .layout .right .titlespan {
    font-size: 2.6rem;
}

.incase .layout .right .box {
    background-color: #fff;
    padding: 30px 25px;
    overflow: hidden;
}

.incase .layout .right .box .list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.incase .layout .right .box .list li {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 500;
    background-color: #da708f;
    width: 49%;
    margin-bottom: 2%;
    padding: 10px 10px 10px 80px;
    position: relative;
    box-sizing: border-box;
}

.incase .layout .right .box .list li:after {
    content: '';
    background-image: url(../images/check_icon.webp);
    background-size: cover;
    width: 34px;
    height: 28px;
    position: absolute;
    top: 13px;
    left: 20px;
}

.incase .layout .right .box .text {
    font-size: 3rem;
    font-weight: 500;
    text-align: center;
    float: left;
}

.incase .layout .right .box .text .pink {
    color: #ca4e73;
    font-size: 3.8rem;
}

.incase .layout .right .box .text .marker {
    background-color: #f8e350;
    font-size: 4.5rem;
    padding: 0 15px;
}

/* ----------------------------------------------------------
incase02
---------------------------------------------------------- */

.incase02 {
    padding: 70px 0;
    background-color: #ffebf1;
}

.incase02 .text {
    font-size: 3rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}

.incase02 .text .text01 {
    background-color: #fff;
    padding: 2px 20px 4px;
}

.incase02 .text .text02 {
    color: #fff;
    font-size: 4rem;
    background-color: #cd4b71;
    padding: 2px 20px 4px;
}

.incase02 .text .text01 .pink {
    color: #cd4b71;
}

.incase02 .text .text01 .green {
    color: #277528;
}

.incase02 .arrow {
    text-align: center;
    margin-top: 70px;
}

.incase02 .inner .text:nth-of-type(2) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.incase02 .inner .text:nth-of-type(3) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.incase02 .inner .text:nth-of-type(4) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.incase02 .inner .text:nth-of-type(5) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.incase02 .inner .text:nth-of-type(6) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}


/* ----------------------------------------------------------
worry
---------------------------------------------------------- */

.worry {
    padding: 70px 0;
    background-color: #BCDCEF;
    position: relative;
}

.worry .arrow {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -55px;
    z-index: 10;
}

.worry .layout {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.worry .layout .title {
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
    margin-right: 30px;
}

.worry .text {
    font-size: 3rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 90px;
}

.worry .text .text_inner {
    background-color: #fff;
    padding: 30px 50px;
    border-radius: 20px;
}

.worry .text .pink {
    color: #cd4b71;
    font-size: 4.2rem;
    font-weight: 700;
}

.worry .inner .text:nth-of-type(2) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.worry .inner .text:nth-of-type(3) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.worry .inner .text:nth-of-type(4) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.worry .inner .text:nth-of-type(5) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

/* ----------------------------------------------------------
therefore
---------------------------------------------------------- */

.therefore {
    padding: 200px 0 120px;
    background-color: #af998c;
    position: relative;
}

.therefore:before,
.therefore:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.therefore:before {
    left: 0;
    background-image: url(../images/therefore_bg01.webp);
}

.therefore:after {
    right: 0;
    background-image: url(../images/therefore_bg02.webp);
}

.therefore .box {
    background-color: #fff;
    width: 700px;
    margin: 0 auto;
    position: relative;
    padding: 30px 45px;
    box-sizing: border-box;
    z-index: 10;
}

.therefore .box .title {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -120px;
    left: 0;
    right: 0;
}

.therefore .box .title li:nth-of-type(2) {
    color: #cd4b71;
    font-size: 7.8rem;
    font-weight: 700;
    margin: 0 30px;
}

.therefore .box .text {
    font-size: 3rem;
    text-align: center;
    line-height: 2;
}

.therefore .box .logo {
    text-align: center;
    margin-top: 30px;
}

.therefore .box .img {
    position: absolute;
    right: -380px;
    bottom: -30px;
}

.therefore .box .dot {
    width: 15px;
    height: 15px;
    background-color: #cd4b71;
    position: absolute;
    border-radius: 50%;
}

.therefore .box .dot01 {
    left: 10px;
    top: 10px;
}

.therefore .box .dot02 {
    right: 10px;
    top: 10px;
}

.therefore .box .dot03 {
    left: 10px;
    bottom: 10px;
}

.therefore .box .dot04 {
    right: 10px;
    bottom: 10px;
}

/* ----------------------------------------------------------
table
---------------------------------------------------------- */

.table {
    padding: 200px 0;
    background: linear-gradient(to top,
            #FBE9DA 0%,
            #F8DEEA 50%,
            #F1E4EF 100%);
}

.table .box {
    background-color: #fff;
    padding: 50px;
    border-radius: 30px;
}

.table .box .title {
    font-size: 5.4rem;
    font-weight: 500;
    text-align: center;
    line-height: 2;
    margin-bottom: 30px;
}

.table .box .strong {
    color: #fff;
    line-height: 1.5;
    padding: 0 25px;
    background-color: #e48498;
    transform: rotate(-5deg);
    display: inline-block;
    margin-right: 15px;
}

.table .box .title .small {
    font-size: 4.5rem;
}

.table .box .img {
    text-align: center;
}

.table .box .notes {
    font-size: 1.4rem;
    padding-left: 370px;
    margin-top: 10px;
}

.table .box .strong:nth-of-type(2) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.table .box .strong:nth-of-type(3) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

/* ----------------------------------------------------------
table2
---------------------------------------------------------- */
.table2 {
    margin-top: 50px;
    padding-bottom: 30px;
}

.table2 .title {
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
}

.table2 .title img {
    height: 36px;
    margin-top: -7px;
}

.table2 .title span {
    color: #fff;
    line-height: 1.5;
    padding: 0 25px;
    background-color: #e48498;
    transform: rotate(-5deg);
    display: inline-block;
    margin-left: 15px;
}

.table2 .heading {
    font-size: 5.2rem;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
}

.table2 .img {
    text-align: center;
    margin-top: 50px;
}


/* ----------------------------------------------------------
reason
---------------------------------------------------------- */

.reason {
    padding: 100px 0;
    background-image: url(../images/reason_bg.webp);
    background-repeat: repeat;
    background-size: 92px;
    background-position: center;
}

.reason .box {
    padding: 50px 0;
    background-color: #fff;
}

.reason .box .title_box {
    margin-left: 70px;
}

.reason .box .title {
    font-size: 4.4rem;
    font-weight: 500;
}

.reason .box .title span {
    font-size: 3.4rem;
}

.reason .box .title img {
    width: auto;
    height: 50px;
    margin-top: -10px;
    margin-right: 5px;
}

.reason .box .sp_title {
    display: none;
}

.reason .box .en_title {
    margin-top: 40px;
    margin-bottom: -10px;
}

.reason .box .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.reason .box .layout:last-of-type {
    margin-bottom: 0;
}


.reason .box .layout .contents {
    width: calc(100% - 462px);
}

.reason .box .layout .contents_left {
    padding-left: 50px;
}

.reason .box .layout .contents_right {
    padding-right: 50px;
}

.reason .box .layout .contents .title_layout {
    display: flex;
    align-items: center;
}

.reason .box .layout .contents .title_layout li:last-of-type {
    font-size: 3.2rem;
    font-weight: 500;
    margin-left: 20px;
}

.reason .box .layout .contents .title_layout li:last-of-type span,
.reason .box .layout .contents .text span {
    background: linear-gradient(transparent 70%, #f9e23f 0%);
}

.reason .box .layout .contents .title_layout li:last-of-type span span {
    display: none;
}

.reason .box .layout .contents .text {
    font-size: 2.2rem;
    margin-top: 10px;
}

.reason .box .layout .contents .notes {
    font-size: 1.6rem;
    margin-top: 20px;
}

.reason .sp_layout {
    display: none;
}

/* ----------------------------------------------------------
message
---------------------------------------------------------- */

.message {
    padding: 100px;
    background-color: #fff;
    background-image: url(../images/message_img.webp);
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: left 160px;
    position: relative;
}

.message .title {
    text-align: right;
    font-size: 4rem;
    font-weight: 500;
    margin-right: 40px;
}

.message .en_title {
    text-align: right;
    margin-top: 20px;
    margin-right: 40px;
    margin-bottom: -20px;
    position: relative;
    z-index: 10;
}

.message .box {
    width: 700px;
    border: 4px solid #CE4970;
    border-radius: 15px;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    background-color: #fff;
}

.message .box:before {
    content: '';
    width: 4px;
    height: 60px;
    background-color: #fff;
    position: absolute;
    left: -4px;
    top: 100px
}

.message .box:after {
    content: '';
    width: 4px;
    height: 40px;
    background-color: #CE4970;
    position: absolute;
    left: -19px;
    top: 92px;
    transform: rotate(50deg);
}

.message .box_container,
.message .message_text_container {
    display: flex;
    justify-content: flex-end;
}

.message .box .name_list {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.message .box .text {
    font-size: 2.2rem;
}

.message .message_text {
    width: 720px;
    display: flex;
    justify-content: flex-end;
    background-color: #FFF5F3;
    box-sizing: border-box;
    padding: 30px 40px;
    margin-top: 50px;
}


/* ----------------------------------------------------------
voice
---------------------------------------------------------- */

.voice {
    padding: 100px 0 300px;
    background-image: url(../images/voice_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.voice .title {
    font-size: 5.8rem;
    font-weight: 500;
    padding: 100px 0 80px 120px;
    background-image: url(../images/voice_title.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left 80px center;
}

.voice .box {
    width: 860px;
    margin: 0 auto;
    position: relative;
}

.voice .box .name {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 500;
    border-bottom: 2px solid #F07D95;
    padding-bottom: 8px;
}

.voice .box .name span {
    background-color: #F07D95;
    padding: 10px 60px;
    position: relative;
}

.voice .box.box01 .name span:after {
    content: '';
    width: 50px;
    height: 100%;
    background-color: #F07D95;
    position: absolute;
    top: 0;
    right: -20px;
    transform: skewX(20deg);
}

.voice .box.box02 .name span:after {
    content: '';
    width: 50px;
    height: 100%;
    background-color: #F07D95;
    position: absolute;
    top: 0;
    left: -20px;
    transform: skewX(-20deg);
}



.voice .box .text {
    font-size: 2.2rem;
    margin-top: 20px;
}

.voice .box01 {
    margin-top: 50px;
}

.voice .box02 {
    margin-top: 250px;
}


.voice .box01 .text {
    padding-right: 130px;
}

.voice .box01 .img {
    position: absolute;
    right: -200px;
    top: -250px;
}

.voice .box02 .name {
    text-align: right;
}

.voice .box02 .text {
    padding-left: 130px;
}

.voice .box02 .img {
    position: absolute;
    left: -270px;
    top: -250px;
}



/* ----------------------------------------------------------
privacy
---------------------------------------------------------- */

.privacy {
    padding: 200px 0;
    background: linear-gradient(to top,
            #DAFBC9 0%,
            #CEE0E7 50%,
            #C1EFEC 100%);
}

.privacy .box {
    padding: 60px 50px;
    background-color: #fff;
    position: relative;
}

.privacy .box .en_title {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: -80px;
}

.privacy .box .title {
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
}

.privacy .box .label {
    text-align: center;
    margin-top: 40px;
}

.privacy .box .img {
    position: absolute;
    right: -150px;
    bottom: -200px;
}

/* ----------------------------------------------------------
flow
---------------------------------------------------------- */

.flow {
    padding: 100px 0;
    background-color: #def1f8;
}

.flow .title_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flow .title_box .img {
    width: 200px;
}

.flow .title_box .title {
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.6;
    margin-left: 20px;
}

.flow .title_box .title .bold {
    color: #fff;
    font-size: 6rem;
    background-color: #ce4970;
    padding: 0 10px 3px;
}

.flow .title_box .title .pink {
    color: #ce4970;
    font-size: 6rem;
}

.flow .title_box .title .small {
    font-size: 4.4rem;
}

.flow .layout {
    display: flex;
    justify-content: space-between;
    margin-top: -30px;
}

.flow .layout .img {
    width: 360px;
}

.flow .notes {
    font-size: 1.6rem;
    margin-top: 30px;
}

.flow .layout .img:nth-of-type(2) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.flow .layout .img:nth-of-type(3) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}


/* ----------------------------------------------------------
faq
---------------------------------------------------------- */
.bg_container {
    background-image: url(../images/faq_bg.webp);
    background-repeat: repeat;
    background-size: 204px;
    background-position: center;
}


.faq {
    padding: 150px 0 0;
}


.faq .faq_box {
    background-color: #fff;
    border-radius: 20px;
    padding: 60px 50px;
}

.faq .title_box {
    padding-bottom: 50px;
    border-bottom: 2px solid #525264;
    position: relative;
}

.faq .title_box .faq_title {
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
}

.faq .title_box .icon {
    position: absolute;
    left: -30px;
    top: -180px;
}

.faq .title_box .img {
    position: absolute;
    right: -30px;
    bottom: 0;
}

.faq .box {
    padding: 40px;
    background-image: linear-gradient(to right, #525264 10px, transparent 10px);
    background-size: 15px 2px;
    background-repeat: repeat-x;
    background-position: left bottom;
}

.faq .box:last-of-type {
    background-image: none;
}


.faq .box .question {
    color: #CE4970;
    font-size: 3.2rem;
    font-weight: 500;
}

.faq .box .answer {
    font-size: 2.2rem;
    margin-top: 20px;
}

.faq .box .notes {
    font-size: 1.6rem;
    margin-top: 30px;
}

/* ----------------------------------------------------------
clinic
---------------------------------------------------------- */

.clinic {
    padding: 100px 0;
}


.clinic .box {
    background-color: #fff;
    border-radius: 20px;
    padding: 60px 50px 100px;
}

.clinic .clinic_title {
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
}

.clinic .img {
    width: 750px;
    margin: 60px auto 0;
    position: relative;
}

.clinic .img .icon {
    position: absolute;
    top: -122px;
    right: 30px;
}


.clinic .logo {
    text-align: center;
    margin: 30px 0 50px;
}

.clinic .contents {
    width: 750px;
    margin: 0 auto;
    background-color: #FFF5F3;
    padding: 40px 50px;
    box-sizing: border-box;
}

.clinic .contents .title {
    font-size: 2.8rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}

.clinic .contents .text {
    font-size: 2.2rem;
}

/* ----------------------------------------------------------
footer
---------------------------------------------------------- */

.footer {
    padding: 30px 0 170px;
    background-color: #F07D95;
}

.footer .footer_menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .footer_menu li {
    font-size: 1.6rem;
    padding-right: 20px;
    border-right: 1px solid #fff;
    margin-right: 20px;
}

.footer .footer_menu li:last-of-type {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
}

.footer .footer_menu li a {
    color: #fff;
}

.footer .footer_menu li a:hover {
    text-decoration: underline;
}

.footer .copy_right {
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 30px;
}


/* ----------------------------------------------------------
float_btn
---------------------------------------------------------- */

.float_btn {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    margin: 0 auto;
    background-image: url(../images/float_menu_bg.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 20px 50px 20px;
    box-sizing: border-box;
    z-index: 100;
}

.float_btn .btn {
    text-align: left;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    -webkit-animation: pulsation .7s alternate infinite;
    animation: pulsation .7s alternate infinite;
}

@-webkit-keyframes pulsation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1.05);
    }
}

@keyframes pulsation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1.05);
    }
}

.float_btn .btn:hover {
    -webkit-animation: none;
    animation: none;
}

.float_btn .btn a {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    background-color: #42ada7;
    border-radius: 50px;
    display: block;
    padding: 7px 0 10px;
    position: relative;
    width: 620px;
    margin: 0 auto;
    padding-left: 30px;
    box-sizing: border-box;
}

.float_btn .btn a span {
    font-size: 3.2rem;
}

.float_btn .btn .arrow {
    position: absolute;
    top: 10px;
    right: 30px;
}

.float_btn .btn .arrow img {
    width: 35px;
}

.float_btn .cowntdown .layout {
    display: flex;
    justify-content: center;
    position: relative;
}

.float_btn .cowntdown {
    color: #d46680;
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.float_btn .cowntdown .layout .text,
.float_btn .cowntdown .layout .countdown_display {
    position: relative;
}

.float_btn .cowntdown .layout .text:before {
    content: '';
    background-image: url(../images/float_btn_icon_left.webp);
    background-size: cover;
    width: 51px;
    height: 104px;
    left: -70px;
    bottom: -15px;
    position: absolute;
}

.float_btn .cowntdown .layout .countdown_display:after {
    content: '';
    background-image: url(../images/float_btn_icon_right.webp);
    background-size: cover;
    width: 51px;
    height: 104px;
    right: -70px;
    bottom: -15px;
    position: absolute;
}

@media screen and (min-width:1025px) and (max-width:1149px) {
    /* ----------------------------------------------------------
    mv
    ---------------------------------------------------------- */

    .mv .inner {
        padding: 13vw 0;
    }

    .mv .contents img {
        width: 45vw;
    }

    .mv .img {
        width: 25vw;
    }
}

@media only screen and (max-width: 1024px) {
    /* ----------------------------------------------------------
    Common Setting
    ---------------------------------------------------------- */

    .inner {
        width: 95%;
    }

    /* ----------------------------------------------------------
    header
    ---------------------------------------------------------- */

    .header {
        padding: 10px 0;
    }

    .header .text {
        font-size: 2rem;
        margin-right: 10px;
    }

    .header .countdown_display {
        font-size: 3.2rem;
    }

    .header .countdown_display span:nth-of-type(1),
    .header .countdown_display span:nth-of-type(2),
    .header .countdown_display span:nth-of-type(5),
    .header .countdown_display span:nth-of-type(6),
    .header .countdown_display span:nth-of-type(8),
    .header .countdown_display span:nth-of-type(9) {
        letter-spacing: 2px;
        font-size: 4rem;
    }

    /* ----------------------------------------------------------
    mv
    ---------------------------------------------------------- */

    .mv {
        background-image: url(../images/mv_bg_sp.webp);
        background-size: cover;
        background-position: top -100px;
    }

    .mv .inner {
        padding: 30vw 0 75vw;
    }

    .mv .contents {
        text-align: center;
    }

    .mv .img {
        display: none;
    }

    .mv .tablet_img {
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .mv .tablet_img img {
        width: 90vw;
    }



    /* ----------------------------------------------------------
    cta
    ---------------------------------------------------------- */

    .cta {
        padding: 70px 0 50px;
    }

    .cta .box .title {
        position: absolute;
        left: 0;
        right: 0;
        top: -5%;
        text-align: center;
    }

    .cta .box .title img {
        width: 70%;
    }


    .cta .box .img {
        text-align: center;
        width: 40%;
    }

    .cta .box .price_box {
        width: 50%;
    }

    .cta .box .test_item_box {
        width: 100%;
        margin-top: 10px;
    }

    .cta .box .contents {
        padding: 45px 30px 30px;
    }

    .cta .box .layout {
        flex-wrap: wrap;
    }

    .cta .box .before_price {
        font-size: 1.6vw;
    }

    .cta .box .price {
        font-size: 8vw;
    }

    .cta .box .tax {
        font-size: 1.6vw;
    }

    .cta .box .en {
        font-size: 4.3vw;
    }

    .cta .box .special_price {
        font-size: 2.4vw;
        margin-right: 20%;
    }

    .cta .box .off_price {
        right: 20%;
    }

    .cta .box .test_item_box.test_item_box_pc {
        display: none;
    }

    .cta .box .test_item_box.test_item_box_sp {
        display: block;
    }

    /* ----------------------------------------------------------
    payment
    ---------------------------------------------------------- */


    .payment .layout_box {
        padding: 40px 20px 10px 20px;
        display: block;
    }

    .payment .layout_box .img {
        text-align: center;
        margin-bottom: 30px;
    }

    /* ----------------------------------------------------------
    attention
    ---------------------------------------------------------- */

    .attention .layout_box {
        padding: 30px 50px 30px 250px;
    }

    .attention .layout_box .img {
        left: 45px;
    }

    .attention .layout_box .text {
        font-size: 2rem;
    }

    .attention .layout_box .text span {
        font-size: 2.4rem;
    }


    /* ----------------------------------------------------------
    about
    ---------------------------------------------------------- */

    .about .about_container {
        width: 100%;
    }

    .about .title_box {
        padding: 30px 20px;
    }

    .about .title_box .title {
        font-size: 3.8vw;
    }

    .about .title_box .title span {
        font-size: 6.4vw;
    }

    .about .title_box .img {
        right: 10px;
    }

    .about .title_box .img {
        width: 35vw;
    }

    .about .layout .title {
        width: 100px;
    }

    .about .layout .contents {
        width: calc(100% - 100px);
    }

    .about .layout.point01 .contents .text {
        font-size: 4vw;
    }

    .about .layout.point01 .contents .text .bold {
        font-size: 7vw;
    }

    .about .layout.point01 .contents .notes {
        font-size: 1.2rem;
    }

    .about .layout.point02 .contents .text {
        font-size: 4vw;
    }

    .about .layout.point02 .contents .text .bold {
        font-size: 5.5vw;
    }

    .about .layout.point03 .contents {
        padding: 10px 20px;
    }

    .about .layout.point03 .contents .text {
        font-size: 5.5vw;
    }

    .about .layout.point03 .contents .text .small {
        font-size: 4vw;
    }

    .about .layout.point03 .contents {
        padding: 10px 20px;
    }

    .about .layout.point03 .contents .point03_layout .certificate:first-of-type {
        margin-right: 20px;
    }

    .about .layout.point03 .contents .point03_box .certificate_text {
        font-size: 1.6rem;
    }


    /* ----------------------------------------------------------
    orimono
    ---------------------------------------------------------- */

    .orimono .title_box .img {
        right: 10px;
        width: 30vw;
    }

    .orimono .title_box .title {
        font-size: 4.2vw;
        margin-right: 250px;
    }

    .orimono .contents_box .layout {
        flex-wrap: wrap;
        padding: 40px 20px;
    }

    .orimono .contents_box .layout .box {
        width: 50%;
    }

    .orimono .contents_box .layout_box_container {
        padding: 40px 30px 100px 30px;
    }

    .orimono .contents_box .layout_box_container .layout_box {
        padding: 30px 30px 30px 20px;
    }

    .orimono .contents_box .message_box {
        padding: 70px 0;
        position: relative;
    }

    .orimono .contents_box .message_box .img {
        right: 7vw;
    }


    /* ----------------------------------------------------------
    risk
    ---------------------------------------------------------- */

    .risk .risk_box {
        padding: 30px;
    }

    .risk .risk_box .risk_title {
        font-size: 4vw;
    }

    .risk .risk_box .layout {
        display: block;
    }

    .risk .risk_box .layout .box {
        width: 100%;
        margin-bottom: 30px;
    }

    .risk .risk_box .layout .box:last-of-type {
        margin-bottom: 0;
    }

    /* ----------------------------------------------------------
    incase
    ---------------------------------------------------------- */

    .incase {
        padding: 70px 0 200px;
    }

    .incase .incase_img {
        position: absolute;
        right: 50px;
        bottom: -200px;
    }

    .incase .layout {
        display: block;
    }

    .incase .layout .img {
        text-align: center;
        margin-bottom: 30px;
    }

    .incase .layout .right {
        width: 100%;
    }

    /* ----------------------------------------------------------
    incase02
    ---------------------------------------------------------- */

    .incase02 .text {
        font-size: 3vw;
    }

    .incase02 .text .text02 {
        font-size: 4vw;
    }

    /* ----------------------------------------------------------
    worry
    ---------------------------------------------------------- */

    .worry .layout .title {
        font-size: 4vw;
        margin-right: 20px;
    }

    .worry .layout .img img {
        width: 200px;
    }

    .worry .text {
        font-size: 3vw;
    }

    .worry .text .text_inner {
        padding: 20px 30px;
    }

    .worry .text .pink {
        font-size: 4vw;
    }

    /* ----------------------------------------------------------
    therefore
    ---------------------------------------------------------- */

    .therefore {
        padding: 200px 0 50px;
        background-image: url(../images/therefore_bg02.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .therefore:before,
    .therefore:after {
        display: none;
    }

    .therefore .box {
        width: 80%;
    }

    .therefore .box .title li:nth-of-type(2) {
        font-size: 7.8vw;
    }

    .therefore .box .text {
        font-size: 3vw;
    }

    .therefore .box .logo img {
        width: 70%;
    }

    .therefore .box .img {
        text-align: center;
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 30px;
    }

    .therefore .box .img img {
        width: 70%;
    }

    /* ----------------------------------------------------------
    table
    ---------------------------------------------------------- */

    .table {
        padding: 70px 0;
    }

    .table .box {
        padding: 50px 30px;
    }

    .table .box .title {
        font-size: 5.4vw;
    }

    .table .box .strong {
        padding: 0 15px;
        margin-right: 10px;
    }

    .table .box .title .small {
        font-size: 4.5vw;
    }

    .table .box .notes {
        padding-left: 30%;
    }

    /* ----------------------------------------------------------
    table2
    ---------------------------------------------------------- */

    .table2 .title {
        font-size: 2.2rem;
    }

    .table2 .title img {
        height: 22px;
        margin-top: -5px;
    }

    .table2 .title span {
        font-size: 1.8rem;
        padding: 0 10px;
        margin-left: 5px;
    }

    .table2 .heading {
        font-size: 2.8rem;
        margin-top: 10px;
    }

    .table2 .img {
        margin-top: 30px;
    }

    .table2 .img img {
        width: 92%;
    }

    /* ----------------------------------------------------------
    reason
    ---------------------------------------------------------- */

    .reason .box {
        padding: 50px 0;
        background-color: #fff;
    }

    .reason .box .title_box {
        margin-left: 30px;
    }

    .reason .box .title {
        font-size: 4.4vw;
    }

    .reason .box .title span {
        font-size: 3.4vw;
    }

    .reason .box .title img {
        width: 37vw;
        height: auto;
        margin-top: -8px;
    }

    .reason .box .en_title {
        width: 60vw;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .reason .box .sp_layout {
        display: flex;
        justify-content: space-between;
        padding: 0 30px;
        margin-bottom: 20px;
    }

    .reason .box .sp_layout .heading {
        width: 25%;
    }

    .reason .box .sp_layout .img {
        width: 70%;
    }

    .reason .box .sp_layout .heading img,
    .reason .box .sp_layout .img img {
        width: 100%;
    }

    .reason .box .layout {
        display: block;
        margin-bottom: 40px;
    }

    .reason .box .layout:last-of-type {
        margin-bottom: 0;
    }


    .reason .box .layout .contents {
        width: 100%;
        padding: 0 30px;
        box-sizing: border-box;
    }

    .reason .box .layout .contents_left {
        padding-left: 30px;
    }

    .reason .box .layout .contents_right {
        padding-right: 30px;
    }

    .reason .box .layout .contents .title_layout {
        display: block;
    }

    .reason .box .layout .contents .title_layout li:last-of-type {
        font-size: 3.2rem;
        margin-left: 0;
    }

    .reason .box .layout .contents .text {
        font-size: 2.2rem;
    }

    .reason .box .layout .contents .notes {
        font-size: 1.6rem;
        margin-top: 20px;
    }

    .reason .box .layout .contents .title_layout li:first-of-type,
    .reason .box .layout .img {
        display: none;
    }

    .reason .box .layout .contents .title_layout li:last-of-type span span {
        display: inline;
    }

    /* ----------------------------------------------------------
    message
    ---------------------------------------------------------- */

    .message {
        padding: 100px 0;
        background-size: 100%;
        background-position: left 38vw;
    }

    .message .title {
        font-size: 4vw;
        margin-right: 0;
    }

    .message .en_title {
        text-align: right;
        margin-right: 0;
        margin-bottom: 80vw;
    }

    .message .en_title img {
        width: 70vw;
    }

    .message .box {
        width: 80%;
    }

    .message .box:before {
        width: 60px;
        height: 4px;
        left: auto;
        right: 100px;
        top: -4px;
    }

    .message .box:after {
        width: 4px;
        height: 40px;
        left: auto;
        right: 112px;
        top: -35px;
        transform: rotate(-50deg);
    }

    .message .box_container,
    .message .message_text_container {
        display: flex;
        justify-content: center;
    }

    .message .message_text {
        width: 80%;
    }


    /* ----------------------------------------------------------
    voice
    ---------------------------------------------------------- */

    .voice {
        padding: 100px 0 150px;
    }

    .voice .title {
        font-size: 5.8vw;
        padding: 100px 0 80px 40px;
        background-size: contain;
        background-position: left 40px center;
    }

    .voice .box {
        width: 100%;
    }

    .voice .box01 {
        margin-top: 50px;
    }

    .voice .box02 {
        margin-top: 20vw;
    }

    .voice .box .name {
        width: 85%;
    }

    .voice .box02 .name {
        margin-left: 15%;
    }


    .voice .box01 .text {
        padding-right: 30vw;
    }

    .voice .box01 .img {
        right: 0;
        top: -10vw;
    }

    .voice .box01 .img img,
    .voice .box02 .img img {
        width: 30vw;
    }

    .voice .box02 .text {
        padding-left: 30vw;
    }

    .voice .box02 .img {
        left: 0;
        top: -10vw;
    }



    /* ----------------------------------------------------------
    privacy
    ---------------------------------------------------------- */

    .privacy {
        padding: 150px 0 28vw;
    }

    .privacy .box {
        padding: 60px 50px;
    }

    .privacy .box .en_title {
        text-align: center;
        position: absolute;
        left: 0;
        right: 0;
        top: -80px;
    }

    .privacy .box .en_title img {
        width: 50vw;
    }

    .privacy .box .title {
        font-size: 4vw;
    }

    .privacy .box .img {
        width: 35vw;
        position: absolute;
        right: 2vw;
        bottom: -28vw;
    }

    /* ----------------------------------------------------------
    flow
    ---------------------------------------------------------- */
    .flow .title_box .img {
        width: 160px;
    }

    .flow .title_box .title {
        font-size: 4.5vw;
    }

    .flow .title_box .title .bold {
        font-size: 5vw;
    }

    .flow .title_box .title .pink {
        font-size: 5vw;
    }

    .flow .title_box .title .small {
        font-size: 4vw;
    }

    .flow .layout {
        margin-top: -10px;
    }

    .flow .layout .img {
        width: 32%;
    }

    /* ----------------------------------------------------------
    faq
    ---------------------------------------------------------- */


    .faq {
        padding: 150px 0 0;
    }


    .faq .faq_box {
        padding: 60px 30px;
    }

    .faq .title_box .faq_title {
        font-size: 4rem;
        font-weight: 500;
        text-align: center;
    }

    .faq .title_box .icon {
        position: absolute;
        left: 0;
        top: -10vw;
    }

    .faq .title_box .icon img {
        width: 25vw;
    }

    .faq .title_box .img {
        right: -3vw;
    }

    .faq .title_box .img img {
        width: 30vw;
    }

    /* ----------------------------------------------------------
    clinic
    ---------------------------------------------------------- */


    .clinic .box {
        padding: 60px 30px 100px;
    }

    .clinic .img {
        width: 100%;
    }

    .clinic .contents {
        width: 100%;
        padding: 40px 30px;
    }

    /* ----------------------------------------------------------
    footer
    ---------------------------------------------------------- */

    .footer .footer_menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer .footer_menu li {
        font-size: 1.6rem;
        padding-right: 20px;
        border-right: 1px solid #fff;
        margin-right: 20px;
    }

    .footer .footer_menu li:last-of-type {
        padding-right: 0;
        margin-right: 0;
        border-right: none;
    }

    .footer .footer_menu li a {
        color: #fff;
    }

    .footer .footer_menu li a:hover {
        text-decoration: underline;
    }

    .footer .copy_right {
        color: #fff;
        font-size: 1.2rem;
        text-align: center;
        margin-top: 30px;
    }

}

@media only screen and (max-width: 599px) {

    /* ----------------------------------------------------------
    header
    ---------------------------------------------------------- */

    .header {
        padding: 0;
    }

    .header .layout {
        display: block;
    }

    .header .text {
        font-size: 1.6rem;
        margin-right: 5px;
        margin-top: 3px;
    }

    .header .countdown_display {
        line-height: 1;
        font-size: 2.4rem;
        margin-top: 5px;
    }

    .header .countdown_display span:nth-of-type(1),
    .header .countdown_display span:nth-of-type(2),
    .header .countdown_display span:nth-of-type(5),
    .header .countdown_display span:nth-of-type(6),
    .header .countdown_display span:nth-of-type(8),
    .header .countdown_display span:nth-of-type(9) {
        font-size: 3.2rem;
        letter-spacing: 10px;
    }

    .header .countdown_display span:nth-of-type(5),
    .header .countdown_display span:nth-of-type(8) {
        margin-left: 5px;
    }

    /* ----------------------------------------------------------
    mv
    ---------------------------------------------------------- */

    .mv {
        background-position: top -40px left;
    }

    /* ----------------------------------------------------------
    cta
    ---------------------------------------------------------- */

    .cta {
        padding: 70px 0 50px;
    }

    .cta .box .title img {
        width: 90%;
    }


    .cta .box .img {
        text-align: center;
        width: 48%;
    }

    .cta .box .price_box {
        width: 50%;
    }

    .cta .box .before_price {
        font-size: 2.4vw;
    }

    .cta .box .price {
        font-size: 11vw;
    }

    .cta .box .tax {
        font-size: 2.5vw;
    }

    .cta .box .en {
        font-size: 7vw;
    }

    .cta .box .special_price {
        font-size: 3.2vw;
        margin-right: 5%;
    }

    .cta .box .off_price {
        right: 5%;
    }

    .cta .box .off_price img {
        width: 12vw;
    }

    .cta .box .test_item {
        font-size: 1.1rem;
    }

    .cta .box .arrow img {
        width: 70px;
    }

    .cta .box .coupon_text {
        font-size: 5vw;
    }

    .cta .box .coupon_text span:after {
        height: 10px;
    }

    .cta .box .coupon_notes {
        font-size: 1.2rem;
        text-align: right;
        margin-right: 0;
    }

    .cta .cta_text {
        font-size: 4vw;
        margin-top: 20px;
    }

    /* ----------------------------------------------------------
    payment
    ---------------------------------------------------------- */

    .payment {
        padding: 7% 0;
    }

    .payment .layout_box {
        padding: 30px 20px 10px 20px;
    }

    .payment .layout_box .img {
        margin-bottom: 20px;
    }

    .payment .layout_box .img img {
        width: 70%;
    }

    .payment .layout_box .title {
        font-size: 4.2vw;
    }

    .payment .layout_box .title .small {
        font-size: 3.8vw;
    }

    .payment .layout_box .title .mark {
        font-size: 1.8vw;
        top: -7px;
    }

    .payment .layout_box .box .text {
        font-size: 1.6rem;
        background-color: #cd4a71;
        padding: 5px 0;
    }



    .payment .layout_box .box .text span {
        background-color: transparent;
    }

    .payment .layout_box .box .text span {
        padding: 0;
    }

    .payment .layout_box .box .payment_text {
        font-size: 3.2vw;
        margin-top: 20px;
    }

    .payment .sp_layout {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .payment .layout_box .img {
        width: 120px;
        margin-bottom: 10px;
    }

    .payment .layout_box .img img {
        width: 100%;
    }

    .payment .sp_layout .sp_box {
        width: calc(100% - 130px);
    }

    .payment .sp_layout .sp_box .speedy {
        text-align: center;
        margin-bottom: 10px;
    }

    .payment .sp_layout .sp_box .speedy img {
        width: 160px;
    }

    /* ----------------------------------------------------------
    attention
    ---------------------------------------------------------- */

    .attention {
        padding: 7% 0 35px;
    }

    .attention .layout_box {
        padding: 10px 10px 10px 120px;
        border-radius: 30px;
    }

    .attention .layout_box .img {
        left: 10px;
    }

    .attention .layout_box .img img {
        width: 100px;
    }

    .attention .layout_box .text {
        font-size: 1.4rem;
    }

    .attention .layout_box .text span {
        font-size: 1.6rem;
    }


    /* ----------------------------------------------------------
    about
    ---------------------------------------------------------- */

    .about {
        /* padding: 15% 0 7%; */
    }

    .about .title_box {
        padding: 20px 20px;
    }

    .about .title_box .title {
        font-size: 5.8vw;
        text-align: center;
    }

    .about .title_box .title span {
        font-size: 8.4vw;
    }

    .about .title_box .img {
        right: 10px;
        bottom: auto;
        top: -25vw;
    }

    .about .layout .title {
        width: 20%;
        font-size: 3.6vw;
    }

    .about .layout .title span {
        font-size: 5.8vw;
    }

    .about .layout .contents {
        width: 80%;
    }

    .about .layout.point01 .contents,
    .about .layout.point02 .contents {
        padding: 10px;
        flex-direction: column;
    }

    .about .layout.point01 .contents .text {
        font-size: 5vw;
        order: 0;
    }

    .about .layout.point01 .contents .text .bold {
        font-size: 8vw;
    }

    .about .layout.point01 .contents .notes {
        font-size: 1.1rem;
        order: 1;
        position: relative;
        right: auto;
        bottom: auto;
    }

    .about .layout.point01 .contents .img {
        order: 2;
        margin-top: 20px;
    }

    .about .layout.point02 .contents .img {
        margin-top: 20px;
    }

    .about .layout.point03 .contents .text {
        font-size: 6.5vw;
    }

    .about .layout.point03 .contents .text .small {
        font-size: 5vw;
    }

    .about .layout.point03 .contents {
        padding: 10px 10px;
    }

    .about .layout.point03 .contents .point03_layout .certificate:first-of-type {
        margin-right: 5px;
    }

    .about .layout.point03 .contents .point03_layout .certificate_name {
        font-size: 1.8vw;
    }

    .about .layout.point03 .contents .point03_layout .certificate_name span {
        padding: 0 10px;
    }

    .about .layout.point03 .contents .point03_box {
        padding: 20px 5px 10px 5px;
    }

    .about .layout.point03 .contents .point03_box .certificate_text {
        font-size: 1.2rem;
        text-align: left;
    }

    /* ----------------------------------------------------------
    orimono
    ---------------------------------------------------------- */

    .orimono {
        /* padding: 28% 0 0; */
    }

    .orimono .title_box {
        padding: 20px 0;
    }

    .orimono .title_box .img {
        top: -32.7vw;
        right: 10px;
        width: 35vw;
    }

    .orimono .title_box .title {
        font-size: 6vw;
        margin-right: 0;
    }

    .orimono .title_box .title .dot:after {
        width: 3px;
        height: 3px;
        left: 3.2vw;
        top: 0;
    }

    .orimono .title_box .title .line:after {
        height: 3px;
        bottom: -2px;
    }

    .orimono .contents_box .layout {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 30px 20px;
    }

    .orimono .contents_box .layout .box {
        width: 48%;
    }

    .orimono .contents_box .layout .box .title {
        font-size: 1.8rem;
        width: 100%;
        margin: 20px auto 10px;
        padding: 3px 0 4px;
    }

    .orimono .contents_box .layout .box .text {
        font-size: 1.4rem;
    }

    .orimono .contents_box .layout_box_container {
        padding: 30px 20px 50px 20px;
    }

    .orimono .contents_box .layout_box_container .layout_box {
        display: block;
        padding: 20px 20px 20px 20px;
    }

    .orimono .contents_box .layout_box_container .layout_box .contents {
        width: 100%;
    }

    .orimono .contents_box .layout_box_container .layout_box .img {
        margin: 0 auto 20px;
    }

    .orimono .contents_box .layout_box_container .layout_box .contents .title {
        font-size: 2rem;
        text-align: center;
    }

    .orimono .contents_box .layout_box_container .layout_box .contents .text {
        font-size: 1.6rem;
    }

    .orimono .contents_box .message_box {
        padding: 35vw 0 70px;
        position: relative;
    }

    .orimono .contents_box .message_box .text {
        font-size: 4.5vw;
    }

    .orimono .contents_box .message_box .example {
        font-size: 2vw;
    }

    .orimono .contents_box .message_box .img {
        right: 2vw;
        bottom: -4px;
    }

    .orimono .contents_box .message_box .img img {
        width: 28vw;
    }

    .orimono .contents_box .message_box:before {
        background-position: left center;
    }

    .orimono .contents_box .message_box:after {
        background-position: right -80px center;
    }

    .orimono .contents_box .arrow {
        margin: 0 20px 20px;
    }

    .orimono .orimono_arrow {
        bottom: -40px;
    }

    .orimono .orimono_arrow img {
        width: 100px;
    }

    /* ----------------------------------------------------------
    risk
    ---------------------------------------------------------- */

    .risk {
        padding: 5% 0 7%;
    }

    .risk .img {
        padding-right: 20px;
    }

    .risk .img img {
        width: 45vw;
    }

    .risk .risk_box {
        padding: 30px;
    }

    .risk .risk_box .risk_title {
        font-size: 5vw;
    }

    .risk .risk_box .risk_title img {
        width: 50px;
        margin-right: 10px;
    }

    .risk .risk_box .layout .box {
        margin-bottom: 20px;
    }

    .risk .risk_box .layout .box .title {
        font-size: 2.2rem;
        padding: 10px 0;
    }

    .risk .risk_box .layout .box .text {
        font-size: 1.6rem;
        padding: 15px 15px;
    }

    /* ----------------------------------------------------------
    incase
    ---------------------------------------------------------- */

    .incase {
        padding: 7% 0 35vw;
    }

    .incase .incase_img {
        position: absolute;
        right: 50px;
        bottom: -200px;
    }

    .incase .layout {
        display: block;
    }

    .incase .layout .img {
        text-align: center;
        margin-bottom: 20px;
    }

    .incase .layout .img img {
        width: 70%;
    }

    .incase .layout .right .title {
        font-size: 8vw;
        margin-bottom: 10px;
    }

    .incase .layout .right .box {
        padding: 20px 15px;
    }

    .incase .layout .right .box .list li {
        font-size: 4vw;
        padding: 10px 10px 10px 50px;
    }

    .incase .layout .right .box .list li:after {
        width: 25px;
        height: 21px;
        top: 12px;
        left: 15px;
    }

    .incase .layout .right .box .text {
        font-size: 5.5vw;
    }

    .incase .layout .right .box .text .pink {
        font-size: 6.5vw;
    }

    .incase .layout .right .box .text .marker {
        font-size: 6.5vw;
    }

    .incase .incase_img {
        width: 30vw;
        right: 0;
        bottom: -35vw;
    }

    /* ----------------------------------------------------------
    incase02
    ---------------------------------------------------------- */

    .incase02 {
        padding: 7% 0;
    }

    .incase02 .text {
        font-size: 1.6rem;
    }

    .incase02 .text .text02 {
        font-size: 1.8rem;
    }

    .incase02 .arrow {
        margin-top: 40px;
    }

    .incase02 .arrow img {
        width: 70px;
    }

    .incase02 .text_outer {
        text-align: center;
    }

    .incase02 .text_sp {
        text-align: center;
        background-color: #fff;
        display: inline-block;
        padding: 2px 20px 4px;
    }

    .incase02 .text_sp02 {
        background-color: #cd4b71;
        display: inline-block;
        padding: 2px 20px 4px;
    }

    .incase02 .text_sp .text01,
    .incase02 .text_sp .text02 {
        background-color: transparent;
        padding: 0;
    }

    /* ----------------------------------------------------------
    worry
    ---------------------------------------------------------- */

    .worry {
        padding: 7% 0;
    }

    .worry .layout .title {
        font-size: 4.5vw;
        margin-right: 10px;
    }

    .worry .layout .img img {
        width: 130px;
    }

    .worry .text {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    .worry .text .text_inner {
        padding: 10px 20px;
    }

    .worry .text .pink {
        font-size: 1.8rem;
    }

    .worry .arrow {
        bottom: -40px;
    }

    .worry .arrow img {
        width: 100px;
    }

    .worry .text_outer {
        text-align: center;
    }

    .worry .text_sp {
        background-color: #fff;
        padding: 10px 20px;
        border-radius: 50px;
        display: inline-block;
    }

    .worry .text_sp .text_inner {
        background-color: transparent;
        padding: 0;
    }

    /* ----------------------------------------------------------
    therefore
    ---------------------------------------------------------- */

    .therefore {
        padding: 20% 0 7%;
    }

    .therefore:before,
    .therefore:after {
        display: none;
    }

    .therefore .box {
        width: 90%;
        padding: 30px 20px;
    }

    .therefore .box .title {
        top: -12%;
    }

    .therefore .box .title li:first-of-type img,
    .therefore .box .title li:last-of-type img {
        width: 30px;
    }

    .therefore .box .title li:nth-of-type(2) {
        margin: 0 10px;
    }

    .therefore .box .text {
        font-size: 1.4rem;
        line-height: 1.5;
    }

    .therefore .box .logo {
        margin-top: 10px;
    }

    .therefore .box .logo img {
        width: 50%;
    }

    .therefore .box .img {
        margin-top: 20px;
    }

    /* ----------------------------------------------------------
    table
    ---------------------------------------------------------- */

    .table {
        padding: 7% 0;
    }

    .table .box {
        padding: 30px 20px;
    }

    .table .box .title {
        font-size: 5vw;
    }

    .table .box .strong {
        padding: 0 10px;
    }

    .table .box .title .small {
        font-size: 4vw;
    }

    .table .box .notes {
        font-size: 1.2rem;
        padding-left: 30%;
    }

    /* ----------------------------------------------------------
    reason
    ---------------------------------------------------------- */

    .reason {
        padding: 10% 0;
    }

    .reason .box {
        padding: 30px 0;
    }

    .reason .box .title_box {
        margin-left: 20px;
        margin-right: 20px;
    }

    .reason .box .title img {
        width: 60vw;
        margin-top: -10px;
    }

    .reason .box .title span {
        font-size: 6vw;
    }

    .reason .box .en_title {
        width: 80vw;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .reason .box .pc_title {
        display: none;
    }

    .reason .box .sp_title {
        font-size: 6vw;
        font-weight: 500;
        text-align: right;
        display: block;
    }

    .reason .box .sp_layout {
        padding: 0 20px;
        margin-bottom: 10px;
    }

    .reason .box .layout {
        margin-bottom: 30px;
    }


    .reason .box .layout .contents {
        padding: 0 20px;
    }

    .reason .box .layout .contents_left {
        padding-left: 20px;
    }

    .reason .box .layout .contents_right {
        padding-right: 20px;
    }

    .reason .box .layout .contents .title_layout {
        display: block;
    }

    .reason .box .layout .contents .title_layout li:last-of-type {
        font-size: 2rem;
        margin-left: 0;
    }

    .reason .box .layout .contents .text {
        font-size: 1.6rem;
    }

    .reason .box .layout .contents .notes {
        font-size: 1.4rem;
        margin-top: 10px;
    }

    /* ----------------------------------------------------------
    message
    ---------------------------------------------------------- */

    .message {
        padding: 10% 0;
        background-position: left 42vw;
    }

    .message .title {
        font-size: 6vw;
    }

    .message .en_title {
        margin-bottom: 90vw;
        margin-top: 10px;
    }

    .message .en_title img {
        width: 75vw;
    }

    .message .box {
        width: 100%;
    }

    .message .message_text {
        font-size: 1.6rem;
        width: 100%;
        padding: 20px 20px;
        margin-top: 30px;
    }

    .message .box .name_list {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .message .box .text {
        font-size: 1.6rem;
    }


    /* ----------------------------------------------------------
    voice
    ---------------------------------------------------------- */

    .voice {
        padding: 10% 0 10%;
    }

    .voice .title {
        font-size: 7vw;
        padding: 30px 0 20px 0;
        background-size: contain;
        background-position: left 40px center;
    }

    .voice .box02 {
        margin-top: 10vw;
    }

    .voice .box .name {
        font-size: 1.6rem;
        padding-bottom: 5px;
    }

    .voice .box02 .name {
        margin-left: 15%;
    }

    .voice .box.box01 .name span:after,
    .voice .box.box02 .name span:after {
        width: 30px;
    }

    .voice .box .name span {
        padding: 5px 20px 7px;
    }

    .voice .box .text {
        font-size: 1.4rem;
        margin-top: 10px;
    }

    .voice .box01 .img {
        top: auto;
        bottom: 0;
    }

    .voice .box02 .img {
        top: auto;
        bottom: 0;
    }



    /* ----------------------------------------------------------
    privacy
    ---------------------------------------------------------- */

    .privacy {
        padding: 15% 0 20vw;
    }

    .privacy .box {
        padding: 30px 20px;
    }

    .privacy .box .title {
        font-size: 5vw;
    }

    .privacy .box .label {
        margin-top: 20px;
    }

    .privacy .box .label img {
        width: 80%;
    }

    .privacy .box .en_title {
        top: -30px;
    }

    .privacy .box .img {
        right: -2vw;
        bottom: -20vw;
    }

    /* ----------------------------------------------------------
    flow
    ---------------------------------------------------------- */

    .flow {
        padding: 10% 0;
    }

    .flow .title_box .img {
        width: 25vw;
    }

    .flow .title_box .title {
        font-size: 7vw;
    }

    .flow .title_box .title .bold {
        font-size: 8vw;
    }

    .flow .title_box .title .pink {
        font-size: 8vw;
    }

    .flow .title_box .title .small {
        font-size: 6vw;
        margin-left: 10px;
    }

    .flow .layout {
        margin-top: 20px;
        display: block;
    }

    .flow .layout .img {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .flow .layout .img img {
        width: 70%;
    }

    .flow .notes {
        font-size: 1.4rem;
        margin-top: 20px;
    }

    /* ----------------------------------------------------------
    faq
    ---------------------------------------------------------- */


    .faq {
        padding: 15% 0 0;
    }


    .faq .faq_box {
        padding: 40px 20px;
    }

    .faq .title_box {
        padding-bottom: 20px;
    }

    .faq .title_box .faq_title {
        font-size: 2.8rem;
    }

    .faq .title_box .icon {
        position: absolute;
        left: -8vw;
        top: -10vw;
    }

    .faq .title_box .icon img {
        width: 23vw;
    }

    .faq .title_box .img {
        right: -5vw;
    }

    .faq .title_box .img img {
        width: 25vw;
    }

    .faq .box {
        padding: 20px 0;
    }

    .faq .box .question {
        font-size: 2rem;
    }

    .faq .box .answer {
        font-size: 1.6rem;
        margin-top: 10px;
    }

    /* ----------------------------------------------------------
    clinic
    ---------------------------------------------------------- */


    .clinic .box {
        padding: 40px 20px 10%;
    }

    .clinic .clinic_title {
        font-size: 2.8rem;
    }

    .clinic .img .icon {
        width: 70px;
        top: -58px;
        right: 10px;
    }

    .clinic .logo {
        margin: 20px 0 30px;
    }

    .clinic .contents {
        padding: 30px 20px;
    }

    .clinic .contents .title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .clinic .contents .text {
        font-size: 1.6rem;
    }

    /* ----------------------------------------------------------
    footer
    ---------------------------------------------------------- */

    .footer {
        padding: 20px 0 28vw;
    }

    .footer .footer_menu {
        display: block;
    }

    .footer .footer_menu li {
        font-size: 1.2rem;
        text-align: center;
        padding-right: 0;
        border-right: none;
        margin-right: 0;
        margin-bottom: 5px;
    }

    .footer .copy_right {
        font-size: 1.1rem;
        margin-top: 20px;
    }

    /* ----------------------------------------------------------
float_btn
---------------------------------------------------------- */

    .float_btn .inner {
        width: 100%;
        ;
    }

    .float_btn {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        margin: 0 auto;
        background-image: url(../images/float_menu_bg.webp);
        background-repeat: no-repeat;
        background-position: bottom center;
        background-size: cover;
        padding: 3% 5% 3%;
        box-sizing: border-box;
    }

    .float_btn .btn a {
        font-size: 3.4vw;
        width: 100%;
    }

    .float_btn .btn a span {
        font-size: 4.2vw;
    }

    .float_btn .btn .img {
        top: -3vw;
        left: 5vw;
    }

    .float_btn .btn .img img {
        width: 5.4vw;
    }

    .float_btn .btn .arrow {
        top: 2vw;
        right: 4vw;
    }

    .float_btn .btn .arrow img {
        width: 6vw;
    }

    .float_btn .cowntdown {
        font-size: 3.2vw;
        margin-bottom: 10px;
    }

    .float_btn .cowntdown .layout .text:before {
        width: 25px;
        height: 52px;
        left: -30px;
        bottom: -5px;
    }

    .float_btn .cowntdown .layout .countdown_display:after {
        width: 25px;
        height: 52px;
        right: -30px;
        bottom: -5px;
    }

}

/* merge対応 */
/* ----------------------------------------------------------
cta_m
---------------------------------------------------------- */

.cta_m {
    /* background-color: #f1d2c5; */
    padding: 35px 25px 50px;
    margin: 0 auto;
}

.cta_main{
    background-image: url(../images/cta_bg.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.cta_m .payment {
    background-color: #fff;
    padding: 25px;
    margin-bottom: 80px;
    border-radius: 10px;
}

.cta_m .payment .payment_title {
    color: #fff;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;

}

.cta_m .payment .payment_title span {
    background-color: #d25f7d;
    border-radius: 50px;
    padding: 3px 40px 5px;
}

.cta_m .payment .payment_text {
    text-align: center;
    font-size: 2rem;
    margin: 20px 0;
}

.cta_m .payment .payment_text2 {
    text-align: center;
    font-size: 2.5rem;
    margin: 20px 0;
}

.cta_m .payment .payment_text2 span {
    color: #d25f7c;
    font-weight: 700;
}

.cta_m .attention {
    background-color: #fae0d5;
    padding: 15px;
}

.cta_m .attention_inner {
    background-color: #fff;
    padding: 15px 15px 15px 220px;
    position: relative;
    border-radius: 10px;
}

.cta_m .attention_img {
    position: absolute;
    left: 20px;
    bottom: 0;
}

.cta_m .attention_text {
    font-size: 2.4rem;
}

.cta_m .box {
    border: 3px solid #d56680;
    box-shadow: 0 10px #e7b2ac;
    position: relative;
    border-radius: 15px;
    background-color: #fff;
    margin-bottom: 50px;
    transition: 0.5s;
}

.cta_m .box:hover {
    box-shadow: 0 0 #e7b2ac;
    border: 3px solid #ac334f;
}

.cta_m .box .balloon {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: -110px;
}

.cta_m .box .title_layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #d56680;
    border-radius: 12px 12px 0 0;
    padding: 15px 30px;
    transition: 0.5s;
}

.cta_m .box:hover .title_layout {
    background-color: #ac334f;
}


.cta_m .box a:hover .arrow {
    -webkit-animation: pulsation .7s alternate infinite;
    animation: pulsation .7s alternate infinite;
}

@-webkit-keyframes pulsation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes pulsation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1.1);
    }
}

.cta_m .box .title_layout .title {
    color: #fff;
    font-size: 3.2rem;
    font-weight: 700;
}

.cta_m .box .purchase_layout {
    display: flex;
    align-items: center;
}

.cta_m .box .purchase_layout .purchase_text {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 500;
    margin-right: 10px;
}

.cta_m .box .contents {
    padding: 45px 30px 20px;
}

.cta_m .box .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.cta_m .box .price_box {
    position: relative;
}

.cta_m .box .contents .price_layout {
    display: flex;
    align-items: center;
}

.cta_m .box .price {
    font-size: 8rem;
    font-weight: 700;
    line-height: 1.2;
}

.cta_m .box .tax {
    font-size: 1.6rem;
    line-height: 1;
}

.cta_m .box .en {
    font-size: 4.3rem;
    font-weight: 700;
    line-height: 1;
}

.cta_m .box .special_price {
    color: #c84271;
    text-align: right;
    font-size: 2.4rem;
    font-weight: 700;
}

.cta_m .box .special_price span {
    border-bottom: 2px solid #c84271;
}

.cta_m .box .off_price {
    position: absolute;
    right: 0;
    top: -35px;
}

.cta_m .box .test_item_title {
    font-size: 1.8rem;
    margin-top: 10px;
}

.cta_m .box .test_item_list {
    display: flex;
    flex-wrap: wrap;
}

.cta_m .box .test_item {
    font-size: 1.8rem;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 10px;
    margin-right: 10px;
}

.cta_m .box .test_item.test_item_small {
    font-size: 1.2rem;
}

.cta_m .box .test_item.pink {
    background-color: #f6d6d6;
}

.cta_m .box .test_item.blue {
    background-color: #afe6f4;
}

.cta_m .box .test_item.green {
    background-color: #c1f8d5;
}

.cta_m .box .number {
    font-size: 1.6rem;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #000;
}

.cta_m .box dl.number {
    display: flex;
}

.cta_m .box dl.number dd {
    margin-left: 5px;
}

.cta_main_title {
    text-align: center;
}

.cta_main_title span {
    font-size: 4.8rem;
    font-weight: 700;
    position: relative;
}

.cta_main_title span img {
    position: absolute;
    top: 20px;
    right: -70px;
}


.cta_title_outer {
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.cta_m .cta_title {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 100px;
    padding: 20px 50px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.cta_m .cta_title.cta_title01 {
    margin-top: 50px;
}


.cta_m .cta_title .cta_title_text {
    text-align: center;
    font-weight: 700;
    margin: 0 15px;
}

.cta_m .cta_title .cta_title_text .text:first-of-type {
    font-size: 3rem;
    line-height: 1;
}

.cta_m .cta_title .cta_title_text .text:last-of-type {
    font-size: 4.7rem;
}

.cta_m .box .set_text {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: 20px;
}

.cta_m .box .set_text span {
    background-color: #d56680;
    padding: 0 10px 3px;
}

.cta_m .box .price_box02 {
    width: 50%;
}

.cta_m .box .title_layout .title.title_small {
    font-size: 2.6rem;
}

.cta_m .box .good_deal {
    position: absolute;
    right: 0;
    top: -35px;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0;
}

.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background-color: #fff;
    opacity: 1;
    margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
    background: #d56680;
}

.cta_slide {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
}

.cta_slide .cursor {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 200px;
    margin: 0 auto;
    z-index: 10;
}

.cta_m .cta_slide01 .test_item_container,
.cta_m .cta_slide03 .test_item_container {
    min-height: 150px;
}

.cta_m .cta_slide02 .test_item_container {
    min-height: 185px;
}

.cta_m .cta_slide02 .box .img {
    line-height: 235px;
    height: 235px;
}

.cta_m .cta_slide02 .box dl.number {
    min-height: 48px;
}

.cta_m .cta_slide02 .box .contents {
    padding: 15px 30px 20px;
}

.cta_m .cta_slide02 .box .title_layout {
    background-color: #74c5d2;
}

.cta_m .cta_slide02 .box {
    border: 3px solid #74c5d2;
}

.cta_m .cta_slide02 .box:hover {
    border: 3px solid #4399a7;
}

.cta_m .cta_slide02 .box:hover .title_layout {
    background-color: #4399a7;
}

.cta_m .cta_slide03 .box .title_layout {
    background-color: #a2bd79;
}

.cta_m .cta_slide03 .box {
    border: 3px solid #a2bd79;
}

.cta_m .cta_slide03 .box:hover {
    border: 3px solid #6d8b41;
}

.cta_m .cta_slide03 .box:hover .title_layout {
    background-color: #6d8b41;
}

.cta_m .box .recommend {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    background-color: #c84271;
    border-radius: 50px;
    padding: 5px 15px;
    display: inline-block;
    margin-bottom: 10px;
}

.cta_m .box .off_price.recommend_off_price {
    right: -60px;
    top: -22px;
}

.cta_m .box .good_deal.recommend_good_deal {
    right: 0;
    top: 10px;
}

.cta_m .cta_slide01 .box .contents,
.cta_m .cta_slide03 .box .contents {
    padding-top: 25px;
}

.cta_m .cta_slide01 .box02 .layout,
.cta_m .cta_slide01 .box03 .layout,
.cta_m .cta_slide01 .box04 .layout,
.cta_m .cta_slide03 .box02 .layout,
.cta_m .cta_slide03 .box03 .layout,
.cta_m .cta_slide03 .box04 .layout {
    padding-top: 25px;
    padding-bottom: 33px;
}

.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 3px solid #d56680;
    border-radius: 50%;
    color: #d56680;
    opacity: 0.7;
    top: 47%
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px;
}

.cta_m .cta_slide03 .swiper-button-prev,
.cta_m .cta_slide03 .swiper-button-next {
    top: 52.5%;
}

/* ----------------------------------------------------------
cta_m coupon
---------------------------------------------------------- */

.cta_m .coupon {
    background-color: #f1d2c5;
    padding: 0 25px 5px;
    max-width: 750px;
    margin: 0 auto;
}

.cta_m .coupon .box {
    background-color: #fff;
    padding-top: 30px;
}

.cta_m .coupon .box .sub_heading {
    font-size: 2.4rem;
    font-weight: 500;
    text-align: center;
}

.cta_m .coupon .box .heading {
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
}

.cta_m .coupon .box .heading span {
    color: #d56580;
}

.cta_m .coupon .box .logo {
    text-align: center;
    margin-top: 20px;
}

.cta_m .coupon .box .logo p{
    font-size: 2.8rem;
    margin-top: 10px;
}


.cta_m .coupon .box .title_layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #d56680;
    border-radius: 12px 12px 0 0;
    padding: 15px 30px;
    transition: 0.5s;
}

.cta_m .coupon .box:hover .title_layout {
    background-color: #ac334f;
}


.cta_m .coupon .box a:hover .arrow {
    -webkit-animation: pulsation .7s alternate infinite;
    animation: pulsation .7s alternate infinite;
}

@-webkit-keyframes pulsation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes pulsation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1.1);
    }
}

.cta_m .coupon .box .title_layout .title {
    color: #fff;
    font-size: 3.2rem;
    font-weight: 700;
}

.cta_m .coupon .box .purchase_layout {
    display: flex;
    align-items: center;
}

.cta_m .coupon .box .purchase_layout .purchase_text {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 500;
    margin-right: 10px;
}

.cta_m .coupon .box .contents {
    padding: 45px 30px 30px;
}

.cta_m .coupon .box .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.cta_m .coupon .box .price_box {
    position: relative;
}

.cta_m .coupon .box .contents .price_layout {
    display: flex;
    align-items: center;
}

.cta_m .coupon .box .price {
    font-size: 8rem;
    font-weight: 700;
    line-height: 1.2;
}

.cta_m .coupon .box .tax {
    font-size: 1.6rem;
    line-height: 1;
}

.cta_m .coupon .box .en {
    font-size: 4.3rem;
    font-weight: 700;
    line-height: 1;
}

.cta_m .coupon .box .special_price {
    color: #c84271;
    text-align: right;
    font-size: 2.4rem;
    font-weight: 700;
}

.cta_m .coupon .box .special_price span {
    border-bottom: 2px solid #c84271;
}

.cta_m .coupon .box .off_price {
    position: absolute;
    right: 0;
    top: -35px;
}

.cta_m .coupon .box .test_item {
    font-size: 2rem;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #000;
}

.cta_m .coupon .box .notes {
    font-size: 1.8rem;
    text-align: right;
    margin-top: 10px;
}

.cta_m .coupon .box .text {
    font-size: 2.8rem;
    font-weight: 500;
    text-align: center;
    margin-top: 60px;
}

.cta_m .coupon .box .btn {
    text-align: center;
    margin-top: 20px;
}

.cta_m .coupon .box .contents .test_item_container {
    min-height: 150px;
    min-height: 185px;   
}
.cta_m .coupon .box .contents .test_item_title {
    font-size: 2.1rem;
    margin-top: 30px;
}

.cta_m .coupon .box .contents .test_item_list {
    display: flex;
    flex-wrap: wrap;
}

.cta_m .coupon .box .contents .test_item {
    font-size: 1.8rem;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 10px;
    margin-right: 10px;
    border-top:none;
}

.cta_m .coupon .box .contents .test_item.pink {
    background-color: #f6d6d6;
}

.cta_m .coupon .box .contents .test_item.test_item_small {
    font-size: 1.2rem;
}

/* iOSでのデフォルトスタイルをリセット */

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}

.fade_out {
    opacity: 1;
}

.fade_out.active {
    -webkit-animation: fade_out linear 1.6s;
    animation: fade_out linear 1.6s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes fade_out {
    0% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fade_out {
    0% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

/* ----------------------------------------------------------
cta
---------------------------------------------------------- */
@media only screen and (max-width: 749px) {
    .cta_m {
        padding: 10% 2.5% 5%;
    }
    
    .cta_m .payment {
        padding: 15px;
        margin-bottom: 8%;
        border-radius: 10px;
    }
    
    .cta_m .payment .payment_title {
        font-size: 1.7rem;
    }
    
    .cta_m .payment .payment_title span {
        padding: 3px 6vw 5px;
    }
    
    .cta_m .payment .payment_text {
        font-size: 1.4rem;
        margin: 20px 0 10px;
    }
    
    .cta_m .payment .payment_text2 {
        font-size: 1.7rem;
        margin: 20px 0 10px;
    }
    
    .cta_m .attention {
        padding: 10px;
    }
    
    .cta_m .attention_inner {
        padding: 15px 15px 15px 32vw;
        position: relative;
        border-radius: 10px;
    }
    
    .cta_m .attention_img {
        position: absolute;
        left: 10px;
        bottom: 0;
    }
    
    .cta_m .attention_img img {
        width: 27vw;
    }
    
    .cta_m .attention_text {
        font-size: 3vw;
    }
    
    .cta_m .box .balloon {
        text-align: center;
        position: absolute;
        left: 0;
        right: 0;
        top: -16vw;
    }
    
    .cta_m .box .balloon img {
        width: 95%;
    }
    
    .cta_m .box .title_layout {
        padding: 10px 15px;
    }
    
    .cta_m .box .title_layout .title {
        font-size: 1.8rem;
    }
    
    .cta_m .box .purchase_layout .arrow img {
        width: 20px;
    }
    
    .cta_m .box .purchase_layout .purchase_text {
        font-size: 1.3rem;
        margin-right: 5px;
    }
    
    .cta_m .box .contents {
        padding: 30px 3% 5%;
    }
    
    .cta_m .box .layout {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    
    .cta_m .box .layout .img {
        width: 48%;
    }
    
    .cta_m .box .price_box {
        position: relative;
        width: 48%;
    }
    
    .cta_m .box .before_price {
        font-size: 1.1rem;
    }
    
    .cta_m .box .price {
        font-size: 11vw;
    }
    
    .cta_m .box .tax {
        font-size: 2.5vw;
    }
    
    .cta_m .box .en {
        font-size: 7vw;
    }
    
    .cta_m .box .special_price {
        font-size: 1.6rem;
    }
    
    .cta_m .box .off_price {
        position: absolute;
        right: -7%;
        top: -25%;
    }
    
    .cta_m .box .off_price img {
        width: 12vw;
    }
    
    .cta_m .box .test_item {
        font-size: 1.3rem;
        padding: 2px 7px 3px;
        margin-top: 5px;
        margin-right: 5px;
    }
    
    
    .cta_m .box .test_item_title {
        font-size: 1.4rem;
    }
    
    .cta_m .box .test_item {
        font-size: 1.3rem;
    }
    
    .cta_m .box .number {
        font-size: 1.2rem;
        padding-top: 10px;
        margin-top: 10px;
    }
    
    .cta_main_title span {
        font-size: 2.8rem;
    }
    
    .cta_main_title span img {
        width: 35px;
        height: auto;
        position: absolute;
        top: 10px;
        right: -40px;
    }
    
    .cta_title_outer {
        display: inline-block;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .cta_m .cta_title {
        padding: 15px 20px;
        margin-top: 10%;
        margin-bottom: 5%;
    }
    
    .cta_m .cta_title.cta_title01 {
        margin-top: 30px;
    }
    
    .cta_m .cta_title .cta_title_text {
        margin: 0 5px;
    }
    
    .cta_m .cta_title .cta_title_text .text:first-of-type {
        font-size: 4.2vw;
        line-height: 1;
    }
    
    .cta_m .cta_title .cta_title_text .text:last-of-type {
        font-size: 7vw;
    }
    
    .cta_m .cta_title .cta_title_icon img {
        width: 8vw;
    }
    
    .cta_m .box .set_text {
        font-size: 1.4rem;
        margin-top: 10px;
    }
    
    .cta_m .box .set_text span {
        padding: 2px 10px 3px;
    }
    
    .cta_m .box .price_box02 {
        width: 50%;
    }
    
    .cta_m .box .title_layout .title.title_small {
        font-size: 1.8rem;
    }
    
    .cta_m .box .number dt {
        white-space: nowrap;
    }
    
    .cta_m .box .good_deal {
        position: absolute;
        right: -8%;
        top: -23%;
    }
    
    .cta_m .cta_slide03 .box .good_deal {
        position: absolute;
        right: -15%;
        top: -23%;
    }
    
    .cta_m .box .good_deal img {
        width: 12vw;
    }
    
    .swiper-pagination-bullet {
        width: 15px;
        height: 15px;
    }
    
    .cta_m .cta_slide01 .test_item_container,
    .cta_m .cta_slide03 .test_item_container {
        min-height: 130px;
    }
    
    .cta_m .cta_slide02 .test_item_container {
        min-height: 150px;
    }
    
    .cta_m .cta_slide02 .box .img {
        line-height: 130px;
        height: 130px;
    }
    
    .cta_m .cta_slide02 .box dl.number {
        min-height: 36px;
    }
    
    .cta_m .cta_slide02 .box .contents {
        padding: 15px 3% 5%;
    }
    
    .cta_m .cta_slide02 .box .title_layout {
        height: 55px;
    }
    
    .cta_m .box .recommend {
        font-size: 1.2rem;
    }
    
    .cta_m .box .test_item.test_item_small {
        font-size: 1rem;
    }
    
    .cta_m .box .off_price.recommend_off_price {
        right: -50px;
        top: -12px;
    }
    
    .cta_m .box .good_deal.recommend_good_deal {
        right: -20px;
        top: 12px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 20px;
        height: 20px;
        top: 45%;
        border: 2px solid #d56680;
    }
    
    .cta_m .cta_slide03 .swiper-button-prev,
    .cta_m .cta_slide03 .swiper-button-next {
        top: 48%
    }
    
    .cta_m .cta_slide01 .box02 .layout,
    .cta_m .cta_slide01 .box03 .layout,
    .cta_m .cta_slide01 .box04 .layout,
    .cta_m .cta_slide03 .box02 .layout,
    .cta_m .cta_slide03 .box03 .layout,
    .cta_m .cta_slide03 .box04 .layout {
        padding-top: 15px;
        padding-bottom: 33px;
    }
    
    .cta_m .cta_slide01 .box .contents,
    .cta_m .cta_slide03 .box .contents {
        padding-top: 15px;
    }
    
    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 12px;
    }
    
    
    /* ----------------------------------------------------------
    coupon
    ---------------------------------------------------------- */
    
    .cta_m .coupon {
        padding: 2% 2.5% 2%;
    }
    
    .cta_m .coupon .box {
        margin-bottom: 5%;
    }
    
    .cta_m .coupon .box .sub_heading {
        font-size: 1.8rem;
    }
    
    .cta_m .coupon .box .heading {
        font-size: 2.4rem;
    }
    
    .cta_m .coupon .box .logo {
        margin-top: 10px;
    }
    
    .cta_m .coupon .box .logo p{
        font-size: 2rem;
    }
    
    .cta_m .coupon .box .logo img {
        width: 70%;
    }
    
    .cta_m .coupon .box01 {
        margin-top: 23%;
    }
    
    .cta_m .coupon .box .balloon {
        text-align: center;
        position: absolute;
        left: 0;
        right: 0;
        top: -16vw;
    }
    
    .cta_m .coupon .box .balloon img {
        width: 95%;
    }
    
    .cta_m .coupon .box .title_layout {
        padding: 10px 15px;
    }
    
    .cta_m .coupon .box .title_layout .title {
        font-size: 1.8rem;
    }
    
    .cta_m .coupon .box .purchase_layout .arrow img {
        width: 20px;
    }
    
    .cta_m .coupon .box .purchase_layout .purchase_text {
        font-size: 1.3rem;
        margin-right: 5px;
    }
    
    .cta_m .coupon .box .contents {
        padding: 30px 3% 3%;
    }
    
    .cta_m .coupon .box .layout {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    
    .cta_m .coupon .box .layout .img {
        width: 48%;
    }
    
    .cta_m .coupon .box .price_box {
        position: relative;
        width: 48%;
    }
    
    .cta_m .coupon .box .before_price {
        font-size: 1.3rem;
    }
    
    .cta_m .coupon .box .price {
        font-size: 11vw;
    }
    
    .cta_m .coupon .box .tax {
        font-size: 2.5vw;
    }
    
    .cta_m .coupon .box .en {
        font-size: 7vw;
    }
    
    .cta_m .coupon .box .special_price {
        font-size: 1.6rem;
    }
    
    .cta_m .coupon .box .off_price {
        position: absolute;
        right: -2%;
        top: -50%;
    }
    
    .cta_m .coupon .box .off_price img {
        width: 12vw;
    }
    
    .cta_m .coupon .box .test_item {
        font-size: 1.3rem;
    }
    
    .cta_m .coupon .box .notes {
        font-size: 1.4rem;
    }
    
    .cta_m .coupon .box .text {
        font-size: 4vw;
        margin-top: 30px;
    }
    
    .cta_m .coupon .box .btn {
        margin-top: 10px;
    }
    
    .cta_m .coupon .box .number {
        font-size: 1.6rem;
        margin-top: 20px;
    }
}

.cta_m .coupon_notes {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta_m .coupon_text {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.cta_m .tap_text {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 20px;
    -webkit-animation: pulsation .7s alternate infinite;
    animation: pulsation .7s alternate infinite;
}

.cta_m .tap_text li:first-of-type,
.cta_m .tap_text li:last-of-type {
    width: 100px;
    height: 1px;
    background-color: #000;
}

.cta_m .tap_text li:nth-of-type(2) {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 10px;
}

@media only screen and (max-width: 1024px) {
    .cta_m .tap_text li:first-of-type,
    .cta_m .tap_text li:last-of-type {
        width: 50px;
    }
}

@media only screen and (max-width: 599px) {
    .cta_m .tap_text {
        margin-top: 30px;
    }

    .cta_m .tap_text li:first-of-type,
    .cta_m .tap_text li:last-of-type {
        width: 10px;
    }

    .cta_m .tap_text li:nth-of-type(2) {
        font-size: 1.6rem;
        margin: 0 5px;
    }
}

.cta_m .box {
    /* border: 3px solid #C79F62; */
    position: relative;
    border-radius: 15px;
    background-color: #fff;
    margin-bottom: 50px;
    transition: 0.5s;
}

.cta_m .box:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 15px;
    top: 15px;
    border-radius: 15px;
    background-image: url(../images/symptom_bg.webp);
    background-repeat: repeat;
    background-size: 204px;
    background-position: center;
    z-index: -10;
    transition: 0.5s;
}

.cta_m .box:hover {
    border: 3px solid #a78148;
}

.cta_m .box:hover:after {
    left: 0px;
    top: 0px;
}

.cta_m .box .balloon {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: -110px;
}

.cta_m .box .title_layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: #C79F62; */
    border-radius: 10px 10px 0 0;
    padding: 15px 30px;
    transition: 0.5s;
    position: relative;
    overflow: hidden;
}

.cta_m .box:hover .title_layout {
    background-color: #a78148;
}

.cta_m .box .title_layout:before {
    content: '';
    /*絶対配置でキラッと光るの位置を決める*/
    position: absolute;
    top: 0;
    left: -75%;
    /*キラッと光る形状*/
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
    -webkit-animation: 2s shine linear infinite;
    animation: 2s shine linear infinite;
}

@-webkit-keyframes shine {
    0% {
        left: -20%;
    }

    15% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

@keyframes shine {
    0% {
        left: -20%;
    }

    15% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

.cta_m .box .title_layout .title {
    color: #fff;
    font-size: 3.2rem;
    font-weight: 700;
}

.cta_m .box .purchase_layout {
    display: flex;
    align-items: center;
}

.cta_m .box .purchase_layout .purchase_text {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    margin-right: 10px;
}

.cta_m .box .contents {
    padding: 45px 30px 20px;
}

.cta_m .box .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.cta_m .box .before_price {
    position: relative;
    display: inline-block;
}

.cta_m .box .before_price:after {
    content: '';
    width: 95%;
    height: 3px;
    background-color: #DA1322;
    position: absolute;
    left: 0;
    bottom: 10px;
    transform: rotate(-5deg);
}

.cta_m .box .apply_discount {
    color: #fff;
    font-size: 2rem;
    background-color: #C79F62;
    display: inline-block;
    padding: 0 10px 2px 30px;
    margin-top: 5px;
    position: relative;
}

.cta_m .box .apply_discount:before {
    content: '';
    background: #ffffff;
    height: calc(tan(60deg) * 15px / 2);
    width: 15px;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    position: absolute;
    left: 10px;
    bottom: 9px;
}

.cta_m .box .price_box {
    position: relative;
}

.cta_m .box .contents .price_layout {
    display: flex;
    align-items: center;
}

.cta_m .box .price {
    color: #DA1322;
    font-size: 8rem;
    font-weight: 700;
    line-height: 1.2;
}

.cta_m .box .tax {
    font-size: 1.6rem;
    line-height: 1;
}

.cta_m .box .en {
    color: #DA1322;
    font-size: 4.3rem;
    font-weight: 700;
    line-height: 1;
}

.cta_m .box .option_layout {
    display: flex;
    align-items: flex-end;
    margin-left: 20px;
}

.cta_m .box .on_discount {
    color: #DA1322;
    text-align: right;
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 5px solid #DA1322;
    display: inline-block;
}

.cta_m .box .free_shipping {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    background-color: #DA1322;
    padding: 3px 30px 5px;
    display: inline-block;
    margin-left: 20px;
}

.cta_m .box .off_price {
    position: absolute;
    right: -5px;
    top: -22px;
}

.cta_m .box .test_item_title {
    font-size: 1.8rem;
    margin-top: 10px;
}

.cta_m .box .test_item_list {
    display: flex;
    flex-wrap: wrap;
}

.cta_m .box .test_item {
    font-size: 1.8rem;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 10px;
    margin-right: 10px;
}

.cta_m .box .test_item.test_item_small {
    font-size: 1.6rem;
}

.cta_m .box .test_item.pink {
    background-color: #f6d6d6;
}

.cta_m .box .test_item.blue {
    background-color: #afe6f4;
}

.cta_m .box .test_item.green {
    background-color: #c1f8d5;
}

.cta_m .box .number {
    font-size: 1.6rem;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #000;
}

.cta_m .box dl.number {
    display: flex;
}

.cta_m .box dl.number dd {
    margin-left: 5px;
}

.cta_m .box .title_layout .title.title_small {
    font-size: 2.6rem;
}

@media only screen and (max-width: 1024px) {
    .cta_m .box .title_layout .title br.sp {
        display: block;
    }

    .cta_m .box .on_discount,
    .cta_m .box .free_shipping {
        font-size: 2rem;
    }

    .cta_m .box .off_price {
        position: absolute;
        right: 0;
        top: -40px;
    }

    .cta_m .box .test_item.test_item_small {
        font-size: 1.4rem;
    }

    .cta_m .box .number {
        font-size: 1.5rem;
        padding-top: 15px;
        margin-top: 15px;
        border-top: 1px solid #000;
    }
}

@media only screen and (max-width: 599px) {
    .cta_m .box {
        margin-bottom: 30px;
    }

    .cta_m .box:after {
        left: 10px;
        top: 10px;
        background-size: 102px;
    }

    .cta_m .box .balloon {
        text-align: center;
        position: absolute;
        left: 0;
        right: 0;
        top: -16vw;
    }

    .cta_m .box .balloon img {
        width: 95%;
    }

    .cta_m .box .title_layout {
        padding: 10px;
    }

    .cta_m .box .title_layout .title {
        font-size: 1.8rem;
    }

    .cta_m .box .purchase_layout .arrow img {
        width: 20px;
    }

    .cta_m .box .purchase_layout .purchase_text {
        font-size: 1.3rem;
        margin-right: 5px;
    }

    .cta_m .box .contents {
        padding: 20px 3% 5%;
    }

    .cta_m .box .layout {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .cta_m .box .layout .img {
        width: 40%;
    }

    .cta_m .box .price_box {
        position: relative;
        width: 58%;
    }

    .cta_m .box .before_price {
        font-size: 1.6rem;
    }

    .cta_m .box .before_price:after {
        height: 2px;
        transform: rotate(-7deg);
    }

    .cta_m .box .apply_discount {
        font-size: 1.2rem;
        padding: 0 5px 2px 20px;
    }

    .cta_m .box .apply_discount:before {
        height: calc(tan(60deg)* 10px / 2);
        width: 10px;
        left: 7px;
        bottom: 6px;
    }

    .cta_m .box .price {
        font-size: 11vw;
    }

    .cta_m .box .tax {
        font-size: 2.5vw;
    }

    .cta_m .box .en {
        font-size: 7vw;
    }

    .cta_m .box .on_discount,
    .cta_m .box .free_shipping {
        font-size: 1.2rem;
    }

    .cta_m .box .on_discount {
        border-bottom: 3px solid #DA1322;
    }

    .cta_m .box .free_shipping {
        padding: 2px 5px 4px;
        margin-left: 5px;
    }

    .cta_m .box .off_price {
        position: absolute;
        right: 5%;
        top: 0;
    }

    .cta_m .box .off_price img {
        width: 12vw;
    }

    .cta_m .box .test_item {
        font-size: 1.3rem;
        padding: 2px 7px 3px;
        margin-top: 5px;
        margin-right: 5px;
    }


    .cta_m .box .test_item_title {
        font-size: 1.4rem;
    }

    .cta_m .box .test_item {
        font-size: 1.3rem;
    }

    .cta_m .box .number {
        font-size: 1.2rem;
        padding-top: 10px;
        margin-top: 10px;
    }

    .cta_title_outer {
        display: inline-block;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    .cta_m .cta_title {
        padding: 15px 20px;
        margin-top: 10%;
        margin-bottom: 5%;
    }

    .cta_m .cta_title .cta_title_text {
        margin: 0 5px;
    }

    .cta_m .cta_title .cta_title_text .text:first-of-type {
        font-size: 4.2vw;
        line-height: 1;
    }

    .cta_m .cta_title .cta_title_text .text:last-of-type {
        font-size: 7vw;
    }

    .cta_m .cta_title .cta_title_icon img {
        width: 8vw;
    }

    .cta_m .box .set_text {
        font-size: 1.4rem;
        margin-top: 10px;
    }

    .cta_m .box .set_text span {
        padding: 2px 10px 3px;
    }

    .cta_m .box .price_box02 {
        width: 50%;
    }

    .cta_m .box .title_layout .title.title_small {
        font-size: 1.6rem;
    }

    .cta_m .box .number dt {
        white-space: nowrap;
    }

    .cta_m .box .good_deal {
        position: absolute;
        right: -8%;
        top: -23%;
    }

    .cta_m .cta_slide03 .box .good_deal {
        position: absolute;
        right: -15%;
        top: -23%;
    }

    .cta_m .box .good_deal img {
        width: 13vw;
    }

    .swiper-pagination-bullet {
        width: 15px;
        height: 15px;
    }

    .cta_m .cta_slide01 .test_item_container,
    .cta_m .cta_slide03 .test_item_container {
        min-height: 130px;
    }

    .cta_m .cta_slide02 .test_item_container {
        min-height: 150px;
    }

    .cta_m .cta_slide02 .box .img {
        line-height: 130px;
        height: 130px;
    }

    .cta_m .cta_slide02 .box dl.number {
        min-height: 36px;
    }

    .cta_m .cta_slide02 .box .contents {
        padding: 15px 3% 5%;
    }

    .cta_m .cta_slide02 .box .title_layout {
        height: 55px;
    }

    .cta_m .box .recommend {
        font-size: 1.2rem;
    }

    .cta_m .box .test_item.test_item_small {
        font-size: 1rem;
    }

    .cta_m .box .off_price.recommend_off_price {
        right: -50px;
        top: -12px;
    }

    .cta_m .box .good_deal.recommend_good_deal {
        right: -20px;
        top: 12px;
    }
}
