/*#region var*/
:root {
    --pxunit: 10px;
    --fontZ: 'Zen Kaku Gothic New'; /* Base font */
    --fontLogo: 'LogoTypeGothic';
    --fontS: 'Shippori Mincho';
    --fontF: 'Futura';
    --fontJ: 'Julius Sans One';
    --fontPlayfair: 'Playfair Display';
    --fontSourceHanSansJP: 'Source Han Sans JP';
    --bg-color: #fcf7ed;
    --bg-font-color: #545454;
    --bg-black-color: #000000;
    --bg-white-color: #FFFFFF;
    --bg-grey-color: #EDEDED;
    --bg-blue-color: #51BAFF;
    --bg-lightblue-color: #6DB6BE;
    --bg-green-color: #06c755;
    --bg-gold-color: #EBC96A;
    --bg-red-color: #cc6666;
    --font-l-size: 1.8rem;
    --font-m-size: 1.28rem;
}

/*#endregion var*/
*{
    box-sizing: border-box;
    color: var(--bg-font-color);
    font-family: var(--fontZ);
    line-height: 1.3;
}

body {
    margin: 0;
    padding: 0;
}
@media (max-width: 500px) {
    html {
        font-size: 3.2vw;
    }
}
.hx1 {content: "";height: var(--pxunit);}
.hx2 {content: "";height: calc(var(--pxunit)*2);}
.hx3 {content: "";height: calc(var(--pxunit)*3);}
.hx4 {content: "";height: calc(var(--pxunit)*4);}
.hx5 {content: "";height: calc(var(--pxunit)*5);}
.hx6 {content: "";height: calc(var(--pxunit)*6);}
.hx7 {content: "";height: calc(var(--pxunit)*7);}
.hx8 {content: "";height: calc(var(--pxunit)*8);}
.hx9 {content: "";height: calc(var(--pxunit)*9);}
.hx10 {content: "";height: calc(var(--pxunit)*10);}
.hx11 {content: "";height: calc(var(--pxunit)*11);}
.hx12 {content: "";height: calc(var(--pxunit)*12);}
.hx13 {content: "";height: calc(var(--pxunit)*13);}
.hx14 {content: "";height: calc(var(--pxunit)*14);}
.hx15 {content: "";height: calc(var(--pxunit)*15);}
.hx16 {content: "";height: calc(var(--pxunit)*16);}
.hx17 {content: "";height: calc(var(--pxunit)*17);}
.hx18 {content: "";height: calc(var(--pxunit)*18);}
.hx19 {content: "";height: calc(var(--pxunit)*19);}
.hx20 {content: "";height: calc(var(--pxunit)*20);}
/*#endregion var*/

/*#region RESET*/
html, body {overflow-x: hidden;}
html{scroll-behavior: smooth;}
h1,h2,h3,h4,h5,h6{margin:0px; padding:0px; font-weight:normal;}
p{margin:0px; padding:0px;}
a{text-decoration:none; -webkit-transition: all 0.3s linear; -moz-transition: all 0.3s linear; -o-transition: all 0.3s linear; -ms-transition: all 0.3s linear; transition: all 0.3s linear;} 
a:hover, a:focus, a:active{ outline:none; text-decoration:none; }
input{-webkit-transition: all 0.3s linear; -moz-transition: all 0.3s linear; -o-transition: all 0.3s linear; -ms-transition: all 0.3s linear; transition: all 0.3s linear;} 
input:hover, input:focus, input:active{outline:none;}
input::-webkit-input-placeholder{color:#333333;}
input::-moz-placeholder{color:#333333;}
input:-ms-input-placeholder{color:#333333;}
input:-moz-placeholder{color:#333333;}
textarea::-webkit-input-placeholder{color:#333333;}
textarea::-moz-placeholder{color:#333333;}
textarea:-ms-input-placeholder{color:#333333;}
textarea:-moz-placeholder{color:#333333;}
button:focus {outline:0;}
ul{margin:0px; padding:0px;}
ul li{list-style-type:none;}
picture{display: block;width: 100%;margin: 0;padding: 0;}
img{object-fit:cover;margin:0;padding:0;border:0px;}
.clearfix{clear:both; overflow:hidden;}
/*#endregion RESET*/

/*#region pspander*/
.pspander_header {
    cursor: pointer;
}
.pspander_opened {
    display: block;
}
.pspander_closed {
    display: none;
}
.pspander.pst_show .pspander_opened {
    display: none;
}
.pspander.pst_show .pspander_closed {
    display: block;
}
.pspander_collapse {
    display: none;
}
/*#endregion pspander*/
/*#region ANIMATION*/
/*#region opacity animation*/
.js_opac {opacity: 0;transition: all .6s;transition-delay: .3s;}
.js_opac.on {opacity: 1;}
/*#endregion opacity animation*/
/*#region spin animation*/
/* spin1 */
@keyframes spin1 {
	0% {transform: rotate(0deg)translate3d(7px, 0, 0);}
	100% {transform: rotate(360deg)translate3d(7px, 0, 0);}
}

/* spin2 */
@keyframes spin2 {
	0% {transform: rotate(0deg)translate3d(5px, 0, 0);}
	100% {transform: rotate(360deg)translate3d(5px, 0, 0);}
}

/* spin3 */
@keyframes spin3 {
	0% {transform: rotate(0deg)translate3d(6px, 0, 0);}
	100% {transform: rotate(360deg)translate3d(6px, 0, 0);}
}

/* spin4 */
@keyframes spin4 {
	0% {transform: rotate(0deg)translate3d(3px, 0, 0);}
	100% {transform: rotate(-360deg)translate3d(3px, 0, 0);}
}

/* spin5 */
@keyframes spin5 {
	0% {transform: rotate(0deg)translate3d(2px, 0, 0);}
	100% {transform: rotate(-360deg)translate3d(2px, 0, 0);}
}
.circleWrap {position: relative;width: 100%;height: 100%;}
.circle {position: absolute;border-radius: 50%;width: 100%;height: 100%;}
.c_pos01 {top: 0;border-style: solid;border-width: 1px;border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin1 5s linear infinite;
    -moz-animation: spin1 5s linear infinite;
    -ms-animation: spin1 5s linear infinite;
    -o-animation: spin1 5s linear infinite;
    animation: spin1 5s linear infinite;
    /*  	animation: bo-co1 10s infinite;
        -webkit-animation: bo-co1 10s infinite; */
}
.c_pos02 {top: 0;border-style: solid;border-width: 1px;border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin2 4s linear infinite;
    -moz-animation: spi2 4s linear infinite;
    -ms-animation: spin2 4s linear infinite;
    -o-animation: spin2 4s linear infinite;
    animation: spin2 4s linear infinite;
    /* 	animation: bo-co2 9s infinite;
        -webkit-animation: bo-co2 9s infinite; */
}
.c_pos03 {top: 0;border-style: solid;border-width: 1px;border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin3 7s linear infinite;
    -moz-animation: spi3 7s linear infinite;
    -ms-animation: spin3 7s linear infinite;
    -o-animation: spin3 7s linear infinite;
    animation: spin3 7s linear infinite;
    /* 	animation: bo-co3 11s infinite;
        -webkit-animation: bo-co3 11s infinite; */
}
.c_pos04 {top: 0;border-style: solid;border-width: 1px;border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin4 7s linear infinite;
    -moz-animation: spi4 7s linear infinite;
    -ms-animation: spin4 7s linear infinite;
    -o-animation: spin4 7s linear infinite;
    animation: spin4 7s linear infinite;
    /* 	animation: bo-co1 12s infinite;
        -webkit-animation: bo-co1 12s infinite; */
}
.c_pos05 {top: 0;border-style: solid;border-width: 1px;border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin5 8s linear infinite;
    -moz-animation: spi5 8s linear infinite;
    -ms-animation: spin5 8s linear infinite;
    -o-animation: spin5 8s linear infinite;
    animation: spin5 8s linear infinite;
    /* 	animation: bo-co2 10s infinite;
        -webkit-animation: bo-co2 10s infinite; */
}
/*#endregion spn animation*/
/*#region rotate animation*/
.rot360 {
    transform: rotate(0deg);
    animation: anim_rotate360 10s linear infinite;
}
@keyframes anim_rotate360 {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}
/*#endregion rotate animation*/
/*#region clip-left-right animation*/
.panir3 {
    display: inline-block;
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
    transition: all 1s cubic-bezier(0.5, 1, 0.89, 1);
    vertical-align: middle;
}
.panir3.on {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}
.panil3 {
    display: inline-block;
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%);
    transition: all 1s cubic-bezier(0.5, 1, 0.89, 1);
    vertical-align: middle;
}
.panil3.on {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}
/*#endregion clip-left-right animation*/
/*#region pani text rising animation*/
.pani4 {display: flex;overflow: hidden;}
.pani4 span {display: block;transform: translateY(100%);transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);color: transparent;}
.pani4.on span {color: #222;transform: translateY(0);}
.pani4 span:nth-child(0) {transition-delay: 0ms;}
.pani4 span:nth-child(1) {transition-delay: 80ms;}
.pani4 span:nth-child(2) {transition-delay: 160ms;}
.pani4 span:nth-child(3) {transition-delay: 240ms;}
.pani4 span:nth-child(4) {transition-delay: 320ms;}
.pani4 span:nth-child(5) {transition-delay: 400ms;}
.pani4 span:nth-child(6) {transition-delay: 480ms;}
.pani4 span:nth-child(7) {transition-delay: 560ms;}
.pani4 span:nth-child(8) {transition-delay: 640ms;}
.pani4 span:nth-child(9) {transition-delay: 720ms;}
.pani4 span:nth-child(10) {transition-delay: 800ms;}
.pani4 span:nth-child(11) {transition-delay: 880ms;}
.pani4 span:nth-child(12) {transition-delay: 960ms;}
.pani4 span:nth-child(13) {transition-delay: 1040ms;}
.pani4 span:nth-child(14) {transition-delay: 1120ms;}
.pani4 span:nth-child(15) {transition-delay: 1200ms;}
.pani4 span:nth-child(16) {transition-delay: 1280ms;}
.pani4 span:nth-child(17) {transition-delay: 1360ms;}
.pani4 span:nth-child(18) {transition-delay: 1440ms;}
.pani4 span:nth-child(19) {transition-delay: 1520ms;}
.pani4 span:nth-child(19) {transition-delay: 1600ms;}
/*endregion pani text rising animation*/
/*#region evelit animaiton*/
.initani { overflow: hidden; position: relative; } 
.initani::before, 
.initani::after { content: ""; display: block; position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 1; } 
.initani_bw::before { background-color: #2b3f6c; } 
.initani_bw::after { background-color: #fff; } 
.initani.initani_ww::before { background-color: #fff; } 
.initani.initani_ww::after { background-color: #fff; } 
.initani.initani_wb::before { background-color: #fff; } 
.initani.initani_wb::after { background-color: #2b3f6c; } 
.initani.initani_wbk::before { background-color: #fff; } 
.initani.initani_wbk::after { background-color: #1A1A1A; } 
.initani.initani_bkw::before { background-color: #1A1A1A; } 
.initani.initani_bkw::after { background-color: #fff; } 
.initani.initani_bg::before { background-color: #2b3f6c; } 
.initani.initani_bg::after { background-color: #DEE9EC; } 
.initani.initani_bc::before { background-color: #2b3f6c; } 
.initani.initani_bc::after { background-color: #E9F9FA; } 
.initani.initani_wg::before { background-color: #fff; } 
.initani.initani_wg::after { background-color: #A9CD36; } 
.initani.initani_wy::before { background-color: #fff; } 
.initani.initani_wy::after { background-color: #A9CD36; } 
.initani.initani_wc::before { background-color: #fff; } 
.initani.initani_wc::after { background-color: #E9F9FA; } 
.initani.initani_tw::before { background-color: transparent; } 
.initani.initani_tw::after { background-color: #fff; } 

.initani.initani_tb::before { background-color: transparent; } 
.initani.initani_tb::after { background-color: #2b3f6c; } 

.initani::before { -webkit-transform-origin: left; -ms-transform-origin: left; transform-origin: left; 
    -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); 
    -webkit-transition: -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53); 
    transition: -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53); 
    transition: transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53); 
    transition: transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53); 
} 
.initani::after { -webkit-transform-origin: left; -ms-transform-origin: left; transform-origin: left; 
    -webkit-transform: scaleX(0) translateX(0); -ms-transform: scaleX(0) translateX(0); transform: scaleX(0) translateX(0); 
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53); 
    transition: -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53); 
    transition: transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53); 
    transition: transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53); 
} 
.anistart::before { -webkit-transform: translateX(101%); -ms-transform: translateX(101%); transform: translateX(101%); } 
.anistart::after { -webkit-transform: scaleX(1) translateX(101%); -ms-transform: scaleX(1) translateX(101%); transform: scaleX(1) translateX(101%); }
/*#endregion evelit animaiton*/
/*region coiran animation*/
@keyframes slideShow {
    0% {
        opacity: 0;
        transform: scale(1);
        -ms-transform: scale(1);
    }
    5% {
        opacity: 1
    }
    25% {
        opacity: 1;
    }
    30% {
        opacity: 0;
        transform: scale(1.1);
        -ms-transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
        -ms-transformm: scale(1);
    }
}

@-o-keyframes slideShow {
    0% {
        opacity: 0;
        -o-transform: scale(1);
    }
    5% {
        opacity: 1
    }
    25% {
        opacity: 1;
    }
    30% {
        opacity: 0;
        -o-transform: scale(1.1);
    }
    100% {
        opacity: 0;
        -o-transformm: scale(1);
    }
}

@-moz-keyframes slideShow {
    0% {
        opacity: 0;
        -moz-transform: scale(1);
    }
    5% {
        opacity: 1
    }
    25% {
        opacity: 1;
    }
    30% {
        opacity: 0;
        -moz-transform: scale(1.1);
    }
    100% {
        opacity: 0;
        -moz-transformm: scale(1);
    }
}

@-webkit-keyframes slideShow {
    0% {
        opacity: 0;
        -webkit-transform: scale(1);
    }
    5% {
        opacity: 1
    }
    25% {
        opacity: 1;
    }
    30% {
        opacity: 0;
        -webkit-transform: scale(1.1);
    }
    100% {
        opacity: 0;
        -webkit-transformm: scale(1);
    }
}
/*endregion coiran animation*/
/*#region io animation*/
.pioup {
    -webkit-transition: color 0.4s ease 0s, background-color 0.4s ease 0s, opacity 1.0s ease 0s, -webkit-transform 1.0s ease 0s;
	transition: color 0.4s ease 0s, background-color 0.4s ease 0s, opacity 1.0s ease 0s, transform 1.0s ease 0s;
    -webkit-backface-visibility: hidden;
	backface-visibility: hidden;
    will-change: opacity, transform;
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
	transform: translate3d(0, 20px, 0);
}
.pioup.on {
    opacity: 1 !important;
	-webkit-transform: translate3d(0, 0, 0) scale(1) rotate(0deg) !important;
	transform: translate3d(0, 0, 0) scale(1) rotate(0deg) !important;
}
/*#endregion io animation*/
/*#endregion ANIMATION*/

/*#region COMMON*/
.pmh_anchor {transform: translateY(-100px);content: "";width: 100%;height: 0;}
.jp_wbr {word-break: keep-all;}
.disb_sp {
    display: none !important;
}
.disb_pc {
    display: block !important;
}
/*#endregion COMMON*/


/*#region pg specials*/
.display-flex{
    display: flex;
}
.flex-column{
    display: flex;
    flex-direction: column;
}
.justify-content-between{
    display: flex;
    justify-content: space-between;
}
.justify-content-end{
    display: flex;
    justify-content: flex-end;
}
.justify-content-center{
    display: flex;
    justify-content: center;
}
.justify-content-start{
    display: flex;
    justify-content: flex-start;
}
.align-items-end{
    align-items: flex-end;
}
.align-items-baseline{
    align-items: baseline;
}
.align-items-center{
    align-items: center;
}
.flex-wrap{
    display: flex;
    flex-wrap: wrap;
}
.flex-nowrap{
    flex-wrap: nowrap;
}
.justify-flex-end{
    display: flex;
    justify-content: flex-end;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.row_reverse{
    flex-direction: row-reverse;
}
/* -----theme block start------- */
.w_50{
    width: 50%;
}
.w_45{
    width: 45%;
}

.w_48{
    width: 48%;
}
.w_60{
    width: 60%;
}
.w_35{
    width: 35%;
}
.w_25{
    width: 25%;
}
.w_100{
    width: 100%;
}
.w_70{
    width: 70%;
}


/* -----------page header style---------- */
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
    padding: 20px 0 40px 0;
}
.header h1 {
    font-size: 18px;
    color: var(--bg-gold-color);
}
.header_logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.cado_logo {
    display: flex;
    width: 95px;
}
.header_logo-txt {
    width: 160px;
}


/* -----------page content style---------- */
.wrapper {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--bg-color);
}
.container {
    width: 100%;
    padding: 0 20px;
}
@media (max-width: 500px) {
    .container {
        padding: 0 15px;
    }
}
.font_red {
    color: var(--bg-red-color) !important;
}
.font_blue {
    color: var(--bg-blue-color) !important;
}
.font_lightblue {
    color: var(--bg-lightblue-color) !important;
}
.font_orange {
    color: var(--bg-orange-color) !important;
}
.font_white {
    color: var(--bg-white-color) !important;
}
.font_gradient {
    color: transparent !important;
    background: linear-gradient(180deg, #7DC7CB 0%, #3F7985 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* --------section banner------- */
.banenr_img {
    display: flex;
    width: 100%;
}
.banenr_img img {
    width: 100%;
}
.banner_ttl {
    display: flex;
    width: 100%;
}
.banner_ttl img {
    width: 100%;
}


/* --------section concept------- */
.sec_ttl {
    font-size: var(--font-l-size);
    font-family: var(--fontS);
    font-weight: bold;
    line-height: 1.4;
}
.concept_inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.concept_content p {
    font-size: var(--font-m-size);
    font-weight: bold;
    line-height: 1.9;
}


/* --------section cta------- */
.cta_btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 73%;
    padding: 1.5rem 0;
    background-image: linear-gradient(90deg, #eb4b3f, #f0945b);
    border-radius: 99999px;
    margin: 0 auto;
    animation: btnanimation 1.4s linear 0s infinite alternate;
}
.cta_btn:hover {
    animation-play-state: paused;
}
.cta_btn .arrow {
    position: absolute;
    left: 2rem;
    width: 1.7rem;
    transform: rotate(90deg);
}
.cta_btn .txt {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--bg-white-color);
}
.arrow img {
    width: 100%;
}
@keyframes btnanimation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }    
}



/* --------section reason------- */
.reason {
    text-align: center;
}
.reason_inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.reason_content p {
    font-size: var(--font-m-size);
    font-weight: bold;
    line-height: 1.8;
}



.order_btn {
    display: flex;
    width: 100%;
    margin: 10px 0;
    transition: opacity .3;
}
.order_btn img {
    width: 100%;
}
.order_btn:hover {
    opacity: .6;
}
@media (max-width: 500px) {
    .order_btn {
        padding: 0 17px;
    }
}




/* --------section reason------- */
.gift_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.gift_img {
    display: flex;
    width: 100%;
    padding: 0 1.5rem;
}
.gift_img img {
    width: 100%;
}
.gift_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}
.gift_txt {
    font-size: var(--font-m-size);
    font-weight: bold;
    width: fit-content;
    line-height: 1.9;
}


/* --------section price------- */
.price_btn {
    display: block;
    padding: 25px 1.8rem;
    transition: opacity .2s;
}
.price_btn:hover {
    opacity: .6;
}
.price_inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--bg-white-color);
    padding: 0 5px;
}
.price_deco {
    display: block;
}
.price_deco {
    width: 100%;
}
.price_deco svg {
    width: 100%;
}
.price_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.price_coupon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: .8rem;
    font-family: var(--fontF);
    font-weight: 600;
    background-color: var(--bg-color);
    padding: 7px 0;
    border-radius: 9999px;
    color: #8a8178;
    line-height: 1;
    width: 60%;
}
.price_coupon::after {
    content: url(../img/arrow_down.svg);
    position: absolute;
    width: .8rem;
    bottom: -.5rem;
    transform: rotate(180deg);
}
.price_line {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--bg-green-color);
    margin-top: 1.4rem;
    margin-bottom: 10px;
}
.price_tab {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}
.price_shape {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .9rem;
    margin-bottom: 5px;
}
.price_shape .txt {
    position: absolute;
    font-weight: bold;
    color: #8a8178;
}
.price_shape img {
    width: 4.8rem;
}
.price_tab p {
    font-size: 6.2rem;
    font-family: var(--fontF);
    font-weight: 400;
    color: var(--bg-green-color);
    line-height: .8;
}
.price_tab p span {
    font-size: 2.5rem;
    font-family: var(--fontJ);
    font-weight: bold;
    color: var(--bg-green-color);
}



/* --------section difficulty------- */
.difficulty_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    padding: 0 1.5rem;
}
.difficulty_hd {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.difficulty_ttl {
    position: relative;
    font-size: var(--font-m-size);
    font-weight: bold;
    color: var(--bg-black-color);
    padding: 7px 12px;
    border: 1.5px solid var(--bg-black-color);
    background-color: var(--bg-white-color);
    border-radius: 9999px;
}
.difficulty_hd-img {
    display: flex;
    width: 85%;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    margin-top: -20px;
}
.difficulty_hd-img img {
    width: 100%;
}
.difficulty_content {
    display: flex;
    flex-direction: column;
    gap: 70px;
    width: 100%;
}
.difficulty_item {
    position: relative;
    display: flex;
    width: 100%;
}
.difficulty_img {
    width: 60%;
    display: flex;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1/1;
}
.difficulty_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.difficulty_txt {
    position: absolute;
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    width: fit-content;
    font-size: 1.1rem;
}
.difficulty_item:nth-child(even) {
    justify-content: flex-end;
}
.difficulty_item:nth-child(even) .difficulty_txt {
    left: 0;
}
.difficulty_item:nth-child(odd) .difficulty_txt {
    right: 0;
    justify-content: flex-end;
    align-items: flex-end;
}
.difficulty_item:first-child .difficulty_txt {
    right: 15%;
}
.difficulty_item:first-child::after {
    content: '差し入れしても現実は';
    position: absolute;
    bottom: 0;
    right: calc(-1.5rem - 20px);
    display: inline-block;
    writing-mode: sideways-rl;
    -webkit-writing-mode: sideways-rl;
    color: var(--bg-white-color);
    background-color: #7f7447;
    font-size: var(--font-m-size);
    font-weight: bold;
    letter-spacing: 1px;
    padding: 3px;
}
.difficulty_txt span {
    display: inline-block;
    font-weight: bold;
    padding: 5px 8px;
    background-color: var(--bg-white-color);
    color: var(--bg-black-color);
    white-space: nowrap;
    width: fit-content;
}
@media (max-width: 500px) {
    .difficulty_item:first-child::after {
        right: calc(-1.5rem - 15px);
    }
}


/* --------section feeling------- */
.feeling_inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.feeling_ttl {
    text-align: center;
    font-size: 1.4rem;
    font-family: var(--fontS);
    font-weight: bold;
    color: var(--bg-black-color);
}
.feeling_content {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 0 1.5rem;
}
.feeling_item {
    position: relative;
    width: fit-content;
    padding: .9rem 1rem;
    font-size: 1.2rem;
}
.feeling_item:nth-child(even) {
    margin-left: auto;
}
.feeling_txt {
    font-weight: 400;
    line-height: 1.4;
    color: var(--bg-black-color);
}
.feeling_shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
}
.feeling_shape img {
    width: 100%;
}
.feeling_item:nth-child(3) {
    padding: 1.2rem .6rem;
}
.feeling_item:nth-child(4) {
    padding: 1.3rem .6rem;
}



/* --------section labor------- */
.labor_inner {
    display: flex;
    flex-direction: column;
    gap: 35px;
    text-align: center;
}
.labor_content p {
    font-size: var(--font-m-size);
    font-weight: bold;
    line-height: 1.9;
}


/* --------section why------- */
.why_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}
.why_content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.why_content p {
    font-size: var(--font-m-size);
    font-weight: bold;
    line-height: 1.9;
}
.why_content p:last-child {
    text-align: center;
}
.why_shape {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}
.why_shape img {
    width: 100%;
}



/* --------section present------- */
.present .sec_ttl {
    text-align: center;
}
.present_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.present_content p {
    font-size: var(--font-m-size);
    font-weight: bold;
    line-height: 1.9;
}
.underline {
    position: relative;
    font-family: inherit;
}
.strong {
    font-weight: bold;
    font-family: inherit;
}
.underline::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: .7rem;
    background-color: var(--bg-red-color);
    opacity: .6;
}


/* --------section choose------- */
.choose_inner {
    position: relative;
    padding: 0 1rem;
}
.choose_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 6rem 0 0 2.5rem;
}
.choose_ttl {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.6rem;
}
.choose_ttl span {
    display: flex;
    width: 3.5rem;
}
.choose_ttl img {
    width: 100%;
}
.choose_txt ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 3rem;
}
.choose_txt li {
    list-style-type: disc;
    font-size: 1.5rem;
    font-family: var(--fontS);
    font-weight: 500;
    line-height: 1.4;
}
.choose_bg {
    position: relative;
    display: flex;
    width: 100%;
    opacity: .5;
}
.choose_bg img {
    width: 100%;
}


/* --------section switch------- */
.switch_inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 0 2rem;
}
.cp_mark {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mark_ttl {
    font-size: 5.2rem;
    font-family: var(--fontPlayfair);
    font-weight: bold;
    color: #a89f94;
    line-height: 1;
}
.mark_txt {
    font-size: var(--font-m-size);
    font-family: var(--fontS);
    font-weight: 500;
    color: #8a8178;
}
.golden_line {
    display: flex;
    width: 90%;
    margin-top: -.6rem;
}
.golden_line img {
    width: 100%;
}
.switch_content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.switch_ttl {
    font-size: 1.5rem;
    font-family: var(--fontS);
    font-weight: bold;
    color: rgb(168, 159, 148);
    line-height: 1.5;
}
.switch_txt {
    font-size: 1.35rem;
    font-family: var(--fontS);
    font-weight: bold;
    line-height: 1.5;
    padding-left: 1.5rem;
}



/* --------section product------- */
.product_inner {
    display: flex;
    flex-direction: column;
    gap: 70px;
    padding: 0 1.5rem;
}
.product_item {
    position: relative;
    display: flex;
    justify-content: center;
    
}
.product_content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem .8rem;
    gap: 1rem;
}
.product_img {
    display: flex;
    width: 31%;
}
.product_img img {
    width: 100%;
}
.product_txt {
    flex: 1;
}
.product_txt p {
    font-size: 1.1rem;
    color: var(--bg-black-color);
    letter-spacing: 2px;
    font-weight: 400;
}
.product_bg {
    width: 100%;
    height: 100%;
    opacity: .4;
}
.product_name {
    position: absolute;
    top: -15px;
    font-size: 1rem;
    font-weight: bold;
    padding: 7px 2rem;
    border: 1.5px solid var(--bg-black-color);
    color: #5f554d;
    border-radius: 9999px;
    background-color: var(--bg-white-color);
    z-index: 10;
}
.product_bg img {
    width: 100%;
}
.product_item:nth-child(2) .product_img {
    width: 37%;
}
.product_item:nth-child(3) .product_img {
    width: 31%;
}
.product_item:nth-child(3) .product_content {
    gap: 0;
}


/* --------section review------- */
.review {
    position: relative;
}
.review_inner {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 0 1rem 0 2rem;
}
.reivew_item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}
.reivew_item:nth-child(even) {
    flex-direction: row-reverse;
}
.review_img {
    width: 34%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    outline-offset: 2px;
    outline: 1px solid #b3970090;
}
.review_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.review_txt {
    flex: 1;
}
.review_txt p {
    font-size: 1.1rem;
    color: var(--bg-black-color);
    line-height: 1.5;
}
.review_sign {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(3rem + 10px);
}
.review_sign img {
    width: 100%;
}


/* --------section happy------- */
.happy_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 2.5rem;
}
.happy_txt {
    width: fit-content;
}
.happy_txt p {
    text-align: center;
    font-size: var(--font-m-size);
    font-weight: bold;
    line-height: 1.9;
}
.happy_ttl {
    width: 100%;
    font-size: 5.2rem;
    font-family: var(--fontPlayfair);
    font-weight: bold;
    color: #a89f94;
    text-align: right;
}



/* ----------footer style--------- */
footer {
    padding: 30px 2rem;
}
.footer_txt p {
    font-size: var(--font-m-size);
    font-family: var(--fontSourceHanSansJP);
    line-height: 1.4;
    color: #5f554d;
}