/*#region var*/
:root {
    --pxunit: 10px;
    --fontB: 'Noto Sans JP';
    /* Base font */
    --fontI: 'Inter';
    /* Title font */
    --headerH: 80px;
    --bg-black-color: #333333;
    --bg-blue-color: #0064B4;
    --bg-mediumblue-color: #008FE2;
    --bg-lgihtblue-color: #EBF3F9;
    --bg-brown-color: #9A4891;
    --bg-red-color: #F00F0F;
    --bg-orange-color: #F76A0C;
    --bg-yellow-color: #FFFF00;
}

@media (max-width: 991px) {
    :root {
        --pxunit: 9px;
    }
}

@media (max-width: 768px) {
    :root {
        --pxunit: 6px;
    }
}

@media (max-width: 450px) {
    :root {
        --pxunit: 4px;
    }
}

* {
    box-sizing: border-box;
    color: var(--bg-black-color);
    font-family: var(--fontB);
    font-weight: 400;
    line-height: 1;
}

html {
    font-size: .625vw;
}

@media (max-width: 768px) {
    html {
        font-size: 2.5vw;
    }
}

body {
    margin: 0;
    padding: 0;
    background-color: #FFF;
}

.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 {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

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;
}

img {
    border: 0px;
}

/*#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;
}

.sp_break {
    display: none;
}

@media (max-width: 450px) {
    .sp_break {
        display: block;
    }

    .sp_hide {
        display: none;
    }
}

/* -----------page header style----------- 
header {
    padding: 3rem 4.2rem;
}

header .logo {
    display: flex;
    align-items: center;
    gap: 2rem;
}

header .logo span {
    line-height: 0;
}

header .logo img {
    height: 3.33rem;
}

header .logo svg {
    height: 60px;
}

@media (max-width: 768px) {
    header {
        padding: 20px;
    }

    header .logo {
        gap: 15px;
    }

    header .logo img {
        height: 1rem;
    }
}

@media (max-width: 450px) {
    header {
        padding: 10px 20px;
    }

    header .logo {
        gap: 8px;
    }

    header .logo svg {
        height: 50px;
    }

    header .logo img {
        height: 15px;
    }
}
*/

/* ------------page content style---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1440px) {
    .container {
        max-width: 1000px;
    }
}

@media (max-width: 1200px) {
    .container {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        margin: 0;
        padding: 0 30px;
    }
}

@media (max-width: 450px) {
    .container {
        padding: 0 20px;
    }
}

.block_title h1 {
    font-size: 5rem;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
}

.block_title .h3,
.block_title h3 {
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.5;
    text-align: center;
}

.block_title .h3 {
    margin-top: 50px;
}

@media screen and (max-width:768px) {
    .block_title .h3 {
        font-size: 2rem;
        margin-top: 0;
    }
}

.block_title .h3 span {
    font-weight: 700;
    font-size: 150%;
    color: var(--bg-blue-color);
}

.block_title span.blue-color {
    color: var(--bg-blue-color);
    font-weight: 700;
}

.block_title span.yellow-color {
    color: var(--bg-yellow-color);
    font-weight: 700;
}

.block_title h1 span.orange-color {
    color: var(--bg-orange-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .block_title h1 {
        font-size: 2rem;
    }

    .block_title h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 450px) {
    .block_title h1 {
        font-size: 22px;
    }

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

/* --------section banner------- */
.banner .pc_banner {
    width: 100%;
    line-height: 0;
    position: relative;
}

.banner .pc_banner img {
    width: 100%;
}

.banner .sp_banner {
    display: none;
    position: relative;
    width: 100%;
    line-height: 0;
    flex-direction: column;
    gap: 10px;
}

.banner .sp_banner .sp_back {
    /* top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    line-height: 0;*/
    vertical-align: bottom;
}

.banner .sp_banner .sp_back img {
    height: auto;
    width: 100%;
}

.banner .banner_text {
    position: relative;
    z-index: 1;
    padding-top: 6rem;
    padding-left: 12rem;
}

.banner .banner_text h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0064B4;
}

.banner .banner_text h1 span {
    font-weight: 700;
}

.banner .banner_text h1 span:last-child {
    font-size: 4rem;
    color: #0064B4;
}

.banner .banner_text h3 {
    text-align: center;
    line-height: 1.2;
    font-size: 1.7rem;
    font-weight: 700;
    margin-top: 8px;
}

.banner .banner_text h3 span {
    position: relative;
    font-size: 2.1rem;
    color: var(--bg-blue-color);
    font-weight: 700;
    display: inline-block;
}

.banner .banner_text h3>span span {
    position: relative;
    z-index: 10;
}

.banner .banner_text h3>span::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 4px;
    width: 100%;
    left: 0;
    background-color: #FFFF00;
}

@media (max-width: 450px) {
    .banner .sp_banner {
        display: flex;
    }

    .banner .pc_banner {
        display: none;
    }
}

@media screen and (min-width:768px) {
    .banner_list_outer {
        width: 100%;
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (min-width:1024px) {
    .banner_list_outer {
        bottom: 3%;
    }
}

.banner_list_text {
    text-align: center;
    margin: -40% auto -20px;
    z-index: 10;
}

@media screen and (min-width:768px) {
    .banner_list_text {
        font-size: 18px;
        margin: 0 auto -20px;
        max-width: 550px;
    }
}

.banner_list {
    padding: 0 10px;
    width: 100%;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 23.5% 23.5% 23.5% 23.5%;
    gap: 10px 2%;
    padding-bottom: 2rem;
}

@media screen and (min-width:768px) {
    .banner_list {
        display: flex;
        justify-content: space-between;
        gap: 1%;
        margin: 0 auto;
        padding: 0;
        width: 90%;
        max-width: 1800px;
    }
}

.banner_list .banner_item {
    display: flex;
}

@media screen and (min-width:768px) {
    .banner_list .banner_item {
        width: calc(100% / 8);
    }
}

.banner_list .banner_item a {
    text-align: center;
    flex-direction: column;
    gap: 3px;
    background-color: unset;
    padding: 0;
    border-radius: 0;
}

.banner_list .banner_item span {
    font-size: 10px;
    color: #FFFF00;
    font-weight: 600;
    background-color: var(--bg-blue-color);
    padding: 3px 0;
    border-radius: 2px;
    width: 100%;
    display: inline-block;
}

.banner_list .banner_item img {
    width: 100%;
}

/* --------section slider------- */
.slider .slider_inner {
    padding-left: 30rem;
}

.slider h3 span {
    font-weight: 700;
    font-size: 5rem;
    color: var(--bg-blue-color);
}

.slider h3 br {
    display: none;
}

.slider img {
    width: 100%;
}

@media (max-width: 1440px) {
    .slider .slider_inner {
        padding-left: 25rem;
    }
}

@media (max-width: 768px) {
    .slider .slider_inner {
        padding-left: 30px;
    }

    .slider h3 span {
        font-size: 2rem;
    }
}

@media (max-width: 450px) {
    .slider .slider_inner {
        padding: 0 20px;
    }

    .slider h3 br {
        display: block;
    }

    .slider h3 span {
        font-size: 24px;
    }
}

/* --------section intro---------- */
.intro {
    background-color: var(--bg-lgihtblue-color);
}

.intro .intro_image {
    width: 95%;
    margin: 0 auto;
}

.intro .intro_image img {
    width: 100%;
}

@media (max-width: 768px) {
    .intro .intro_image {
        width: 100%;
    }
}



/* --------section gallery-------- */
.gallery .arrow_down {
    display: block;
    text-align: center;
    margin: 0 auto;
    height: 6rem;
}

.gallery .arrow_down svg {
    height: 100%;
    width: auto;
}

.gallery .gallery_header h3 {
    text-align: center;
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.gallery .gallery_header h3 span {
    font-size: 3.33rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    color: var(--bg-blue-color);
    padding: 0 2rem;
}

.gallery .gallery_header svg {
    position: absolute;
    width: 100%;
    top: -.7rem;
    left: 0;
}

.gallery_content {
    display: grid;
    grid-template-columns: 30.5% 30.5% 30.5%;
    gap: 4.2rem 4.25%;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery_content .gallery_item {
    position: relative;
    display: flex;
    justify-content: flex-end;
    line-height: 0;
    border: 2px solid var(--bg-blue-color);
    flex-direction: column;
    align-items: center;
}

.gallery_content .gallery_item img {
    width: 100%
}

.gallery_content .gallery_item img.gallery_item_img2 {
    width: 80%;
}

.gallery_content .gallery_item img.gallery_item_img5 {
    width: 85%;
    margin-bottom: 2rem;
}

.gallery_content .gallery_item span {
    left: -1rem;
    top: -1rem;
    font-weight: 800;
    position: absolute;
    text-align: center;
    display: inline-block;
    color: var(--bg-red-color);
    font-size: clamp(10px, 1.9em, 24px);
    line-height: 1;
    padding: 1rem;
    transform: rotate(-15deg);
    border: 1px solid var(--bg-red-color);
    background-color: #fff;
}

@media (max-width: 768px) {
    .gallery .arrow_down {
        height: 40px;
    }

    .gallery .gallery_header h3 span {
        font-size: 1.2rem;
        padding: 0 .8rem;
    }

    .gallery .gallery_header svg {
        top: -.3rem;
    }

    .gallery_content {
        grid-template-columns: 32% 32% 32%;
        gap: 1rem 2%;
    }

    .gallery_content .gallery_item span {
        left: -.4rem;
        top: -.4rem;
        font-size: .8em;
        padding: .25rem;
    }

    .gallery_content .gallery_item:nth-child(5) img {
        margin-bottom: .5rem;
    }
}

@media (max-width: 450px) {
    .gallery .gallery_header h3 span {
        font-size: 18px;
        padding: 0 10px;
    }

    .gallery .gallery_header svg {
        top: -.3rem;
    }

    .gallery_content {
        grid-template-columns: 48% 48%;
        gap: 20px 4%;
    }

    .gallery_content .gallery_item span {
        left: -.8rem;
        top: -.4rem;
        font-size: 12px;
        padding: .25rem;
        transform: rotate(-18deg);
    }
}

/* --------section cleaning------- */
.cleaning_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.5rem;
    background-color: var(--bg-lgihtblue-color);
}

.cleaning_inner .cleaning_text {
    padding: 0 min(40px, 3.33rem);
}

.cleaning_inner .cleaning_text h3 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.5;
}

.cleaning_inner .cleaning_image {
    width: 26%;
    line-height: 0;
}

.cleaning_inner .cleaning_image img {
    width: 100%;
}

@media (max-width: 1300px) {
    .cleaning_inner .cleaning_text h3 {
        font-size: clamp(10px, 3.6vw, 36px);
    }

    .cleaning_inner .cleaning_image {
        width: 30%;
    }
}

@media (max-width: 768px) {
    .cleaning_inner {
        gap: 1rem;
    }

    .cleaning_inner .cleaning_text {
        padding: 1rem;
    }

    .cleaning_inner .cleaning_text h3 {
        font-size: 1.3rem;
    }

    .cleaning_inner .cleaning_image {
        width: 30%;
    }
}

@media (max-width: 450px) {
    .cleaning_inner {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .cleaning_inner .cleaning_image {
        width: 80%;
    }

    .cleaning_inner .cleaning_text {
        text-align: center;
        padding: 0;
    }

    .cleaning_inner .cleaning_text h3 {
        font-size: 18px;
    }
}


/* ---------section worry---------- */
.worry .block_title span {
    font-size: 5rem;
    color: var(--bg-blue-color);
    line-height: 1.5;
    font-weight: 700;
}

.worry .block_title span br {
    display: none;
}

@media (max-width: 768px) {
    .worry .block_title span {
        font-size: 1.6rem;
    }
}

@media (max-width: 450px) {
    .worry .block_title span {
        font-size: 24px;
    }

    .worry .block_title span br {
        display: block;
    }
}

.worry .worry_content {
    /*background-color: var(--bg-lgihtblue-color);
    padding: min(40px, 3.33rem);*/
}

.worry .worry_content>div:first-child {
    position: relative;
    display: flex;
    background-color: #FFF;
    align-items: center;
    padding: 0 10rem;
    gap: 10rem;
    justify-content: space-between;
}

.worry_content .worry_image {
    width: 20rem;
}

.worry_content .worry_image img {
    width: 100%;
}

.worry_content .worry_text {
    display: flex;
    flex-direction: column;
    gap: 3.33rem;
}

.worry_content .worry_item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.7em;
}

.worry_content .worry_item p {
    font-size: clamp(10px, 2.7vw, 21px);
    line-height: 1.6;
    font-weight: 700;
}

.worry_content .worry_item svg {
    width: 7rem;
}

.worry_content>div span {
    position: absolute;
    line-height: 0;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    bottom: -3rem;
}

.worry_content span svg {
    width: 12rem;
}

.worry_content>h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.worry_content>h1 span {
    font-weight: 700;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .worry .worry_content {
        padding: 20px;
    }

    .worry .worry_content>div:first-child {
        padding: 0 2rem;
        gap: 2rem;
    }

    .worry_content .worry_item p {
        font-size: .9rem;
    }

    .worry_content .worry_item {
        gap: 8px;
    }

    .worry_content .worry_item svg {
        width: 2.3rem;
    }

    .worry_content .worry_image {
        width: 7rem;
    }

    .worry_content .worry_text {
        gap: 1rem;
    }

    .worry_content>div span {
        bottom: -1.2rem;
    }

    .worry_content span svg {
        width: 4rem;
    }

    .worry_content>h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 450px) {
    .worry .worry_content {
        padding: 20px 15px;
    }

    .worry .worry_content>div:first-child {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .worry_content .worry_item p {
        font-size: 12px;
    }

    .worry_content .worry_item {
        gap: 5px;
    }

    .worry_content .worry_item svg {
        width: 30px;
    }

    .worry_content .worry_image {
        width: 50%;
    }

    .worry_content .worry_text {
        gap: 10px;
    }

    .worry_content>div span {
        bottom: -20px;
    }

    .worry_content span svg {
        width: 80px;
    }

    .worry_content>h1 {
        font-size: 20px;
    }
}


/* ---------section customer---------- */
.customer .customer_inner {
    border: 20px solid #2BD2EC;
    padding: 20px;
}

.customer .block_title h1 span:first-child {
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.6;
    color: var(--bg-mediumblue-color);
}

.customer .customer_content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.33rem;
}

.customer_content .customer_image {
    width: 21rem;
}

.customer_content .customer_image img {
    width: 100%;
}

.customer_content .customer_text h4 {
    font-size: 2.7rem;
    line-height: 1.6;
    font-weight: 700;
}

.customer_content .customer_text h4 span {
    font-weight: 700;
    color: var(--bg-mediumblue-color);
    line-height: 1.6;
}

.customer_content .customer_text h4 span:nth-child(3) {
    font-size: 5rem;
}

@media (max-width: 768px) {
    .customer .block_title h1 span:first-child {
        font-size: 1.6rem;
    }

    .customer .customer_content {
        gap: 1rem;
    }

    .customer_content .customer_text h4 {
        font-size: 1rem;
    }

    .customer_content .customer_text h4 span:nth-child(3) {
        font-size: 2rem;
    }

    .customer_content .customer_image {
        width: 10rem;
    }
}

@media (max-width: 450px) {
    .customer .customer_inner {
        border-width: 10px;
        padding: 20px 5px;
    }

    .customer .customer_content {
        flex-direction: column;
        gap: 20px;
    }

    .customer .block_title h1 span:first-child {
        font-size: 18px;
    }

    .customer_content .customer_image {
        width: 70%;
    }

    .customer_content .customer_text h4 {
        font-size: 17px;
    }

    .customer_content .customer_text h4 span:nth-child(3) {
        font-size: 24px;
    }
}

/* ----------section feature--------- */
.feature .feature_content {
    width: 85%;
    margin: 0 auto;
}

.feature .feature_content h3 {
    text-align: center;
    font-size: 3.5rem;
    line-height: 1.6;
    font-weight: 700;
}

.feature .feature_content h3 br {
    display: none;
}

.feature .feature_content h3 span {
    font-weight: 700;
    line-height: 1.6;
    color: var(--bg-mediumblue-color);
}

.feature .feature_content .feature_image {
    width: 75%;
    margin: 0 auto;
}

.feature .feature_content .feature_image img {
    width: 100%;
}

@media (max-width: 768px) {
    .feature .feature_content h3 {
        font-size: 1.3rem;
    }

    .feature .feature_content .feature_image {
        width: 85%;
    }
}

@media (max-width: 450px) {
    .feature .feature_content {
        width: 100%;
    }

    .feature .feature_content h3 {
        font-size: 20px;
    }

    .feature .feature_content h3 br {
        display: block;
    }

    .feature .feature_content .feature_image {
        width: 90%;
    }
}


/* ----------section service--------- */
.service .container>h1 {
    text-align: center;
    font-size: 5.33rem;
    line-height: 1.2;
    font-weight: 700;
}

.service .container>h1 span {
    font-weight: 700;
    color: var(--bg-mediumblue-color);
}

@media (max-width: 768px) {
    .service .container>h1 {
        font-size: 2rem;
    }
}

@media (max-width: 450px) {
    .service .container>h1 {
        font-size: 24px;
    }
}

.service .service_inner {
    border: 3px solid var(--bg-mediumblue-color);
    padding: 3.33rem;
    padding-top: 0;
}

.service .block_title h1 {
    width: fit-content;
    color: #FFF;
    margin: 0 auto;
    padding: .8rem 1rem;
    background-color: var(--bg-mediumblue-color);
    border-radius: 0 0 1.7rem 1.7rem;
}

@media (max-width: 768px) {
    .service .service_inner {
        padding: 1rem;
        padding-top: 0;
    }

    .service .block_title h1 {
        border-radius: 0 0 15px 15px;
    }
}

@media (max-width: 450px) {
    .service .service_inner {
        border-width: 2px;
    }

    .service .block_title h1 {
        border-radius: 0 0 8px 8px;
    }
}

.service .service_header {
    background-color: var(--bg-mediumblue-color);
    display: flex;
    align-items: center;
    padding: 1.7rem;
    gap: 1.7rem;
}

.service .service_point {
    width: 10rem;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-self: center;
    background-color: #FFFF;
}

.service .service_point span {
    font-size: 2.5rem;
    font-family: var(--fontI);
    font-weight: 700;
    text-align: center;
    display: inline-block;
    margin: 0 auto;
    color: var(--bg-mediumblue-color);
}

.service .service_intro.inline h1,
.service .service_intro.inline h3 {
    display: inline-block;
}

.service .service_intro h1 {
    font-size: 5rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--bg-yellow-color);
}

.service .service_intro h3 {
    font-size: 3.33rem;
    font-weight: 700;
    line-height: 1.5;
    color: #FFF;
}

.service .service_intro h3 span {
    color: var(--bg-yellow-color);
    font-weight: 700;
    line-height: 1.5;
}

.service .service_intro h3 br {
    display: none;
}

@media (max-width: 768px) {
    .service .service_header {
        padding: .5rem;
        gap: .5rem;
    }

    .service .service_point {
        width: 5rem;
        height: 5rem;
    }

    .service .service_point span {
        font-size: 1rem;
    }

    .service .service_intro h1 {
        font-size: 2rem;
    }

    .service .service_intro h3 {
        font-size: 1.3rem;
    }

    .service .service_intro h3 span {
        color: var(--bg-yellow-color);
        font-weight: 700;
        line-height: 1.5;
    }
}

@media (max-width: 450px) {
    .service .service_header {
        /*flex-direction: column;*/
        gap: 10px;
        padding: 15px;
        align-items: flex-start;
    }

    .service .service_point {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .service .service_point span {
        font-size: 15px;
    }

    .service .service_intro h1 {
        font-size: 22px;
    }

    .service .service_intro h3 {
        font-size: 16px;
    }

    .service .service_intro h3 br {
        display: block;
    }

    .service .service_intro.inline h1,
    .service .service_intro.inline h3 {
        display: inline;
    }
}


.service .service_content {
    display: flex;
    justify-content: space-between;
}

.service_content .service_left {
    width: 66%;
}

.service_left .service_image {
    width: 100%;
    line-height: 0;
}

.service_left .service_image img {
    width: 100%;
}

.service_right {
    width: 32%;
    /*display: grid;
    grid-template-columns: calc(calc(100% - 3.33rem)/2) calc(calc(100% - 3.33rem)/2);
    gap: 3.33rem 1.66rem;
    justify-content: space-between*/
}

.service_right .warning_item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.service_right .warning_item img {
    width: 100%;
    border: 1px solid #E6F4FC;
    border-radius: 50%;
}

.service_right .warning_item p {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service_right {
        grid-template-columns: calc(calc(100% - .8rem)/2) calc(calc(100% - .8rem)/2);
        gap: .8rem .4rem;
    }

    .service_right .warning_item {
        gap: 7px;
    }

    .service_right .warning_item p {
        font-size: .6rem;
    }
}

@media (max-width: 450px) {
    .service .service_content {
        flex-direction: column;
        gap: 15px;
    }

    .service_content .service_left {
        width: 100%;
    }

    .service_right {
        width: 100%;
        grid-template-columns: 24% 24% 24% 24%;
        gap: 1.33%;
    }

    .service_right .warning_item p {
        font-weight: 700;
        font-size: 10px;
    }
}


.service .service_help {
    display: flex;
    justify-content: space-between;
    gap: 3rem
}

.service_help_item {
    width: calc(calc(100% - 6rem)/3);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.service_help_item>span {
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
    /*font-size: 1.2rem;*/
    font-size: 12px;
    line-height: 1.4;
    border-radius: 1rem;
    padding: 2rem 0;
    border: 1px solid #333333;
    font-weight: 700;
}

.service_help_item span svg {
    position: absolute;
    left: 0;
    top: -1.5rem;
    width: 2.2rem;
}

.service_help_item .help_image {
    width: 100%;
}

.service_help_item .help_image img {
    /*width: 100%;*/
    height: 160px;
    display: block;
    margin: 20px auto 0;
}

.service_help_item>p {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    /*font-size: 1.5rem;*/
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    border-radius: 1rem;
    border: 2px solid #008FE2;
}

.service_help_item>p span {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--bg-mediumblue-color);
}

.service_help_item h1 {
    font-size: clamp(10px, 5rem, 72px);
    line-height: 1.2;
    font-weight: 700;
    color: #FF4645;
}

.service_help_item h1 span {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 700;
    color: #FF4645;
}

.service_help_item .help_btn {
    text-align: center;
    width: 100%;
}

.service_help_item .help_btn p {
    font-weight: 700;
    /*font-size: 1.5rem;*/
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.service_help_item .help_btn p span {
    /*color: var(--bg-red-color);*/
    color: #fff;
}

.service_help_item .box-innerpad {
    margin: 0;
    padding: 0;
}

.service_help_item .help_btn a {
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 50px;
    background-color: #FF4645;
    padding: 2.5rem;
    justify-content: space-between;
}

.service_help_item .help_btn a span {
    font-weight: 700;
    font-size: 2rem;
    color: #FFF;
    flex: 1;
    text-align: center;
    text-align: center;
}

@media (max-width: 768px) {
    .service .service_help {
        gap: .5rem
    }

    .service_help_item {
        width: calc(calc(100% - 1rem)/3);
    }

    .service_help_item>span {
        font-size: .6rem;
        border-radius: 10px;
        padding: 10px;
    }

    .service_help_item>p {
        padding: 10px 0;
        font-size: .8rem;
        border-radius: 10px;
    }

    .service_help_item>p span {
        font-size: 1rem
    }

    .service_help_item h1 {
        font-size: 2rem;
    }

    .service_help_item h1 span {
        font-size: .8rem
    }

    .service_help_item .help_btn p {
        font-weight: 700;
        font-size: .65rem;
        gap: 4px;
    }

    .service_help_item .help_btn a {
        border-radius: 50px;
        padding: 15px 20px;
    }

    .service_help_item .help_btn a span {
        font-weight: 700;
        font-size: 1rem;
        color: #FFF;
        flex: 1;
        text-align: center;
        text-align: center;
    }
}

@media (max-width: 450px) {
    .service .service_help {
        flex-direction: column;
    }

    .service_help_item {
        width: 100%;
        gap: 5px;
    }

    .service_help_item>span {
        font-size: 13px;
        padding: 10px 0;
    }

    .service_help_item>p {
        font-size: 14px;
        padding: 5px 0;
    }

    .service_help_item>p span {
        font-size: 18px;
    }

    .service_help_item h1 {
        font-size: 36px;
    }

    .service_help_item h1 span {
        font-size: 18px;
    }

    .service_help_item .help_btn p {
        font-size: 15px;
    }

    .service_help_item .help_btn a span {
        font-size: 20px;
    }

    .service_help_item>svg {
        width: 20px;
    }
}



.service_table {
    width: 100%;
}

.service_table table {
    width: 100%;
}

.service_table table,
th,
td {
    border-collapse: collapse;
    border: 1px solid #008FE2;
}

.service_table th,
td {
    text-align: center;
    padding: 1rem;
    width: 25%;
}

.service_table th {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
    color: var(--bg-mediumblue-color);
}

.service_table th span {
    display: block;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.6;
}

.service_table table tr td {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.6;
    color: #FF4645;
}

.service_table table tr td:first-child {
    text-align: left;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--bg-black-color);
}

@media (max-width: 768px) {
    .service_table table tr td:first-child {
        font-size: .8rem;
    }

    .service_table table tr td {
        font-size: 28px;
    }

    .service_table th,
    td {
        padding: .5rem;
    }

    .service_table th {
        font-size: .8rem;
    }

    .service_table th span {
        font-size: .8rem;
    }
}

@media (max-width: 768px) {
    .service_table table tr td:first-child {
        font-size: .8rem;
    }

    .service_table table tr td {
        font-size: 24px;
    }

    .service_table th,
    td {
        padding: 10px 0;
    }

    .service_table th {
        font-size: 10px;
    }

    .service_table th span {
        font-size: 10px;

    }

    .service_table table tr td:first-child,
    .service_table table tr th:first-child {
        width: 30%;
        font-size: 10px;
    }
}


.service_inner>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.7rem 2.5rem;
    width: 50%;
    border: 2px solid var(--bg-mediumblue-color);
    margin: 0 auto;
}

.service_inner>a span {
    font-size: 1.7rem;
    line-height: 1;
    font-weight: 700;
    flex: 1;
    display: block;
    text-align: center;
    color: var(--bg-mediumblue-color);
}

@media (max-width: 768px) {
    .service_inner>a {
        width: 80%;
        padding: 20px 20px;
    }

    .service_inner>a span {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media (max-width: 450px) {
    .service_inner>a {
        width: 100%;
        padding: 15px 20px;
    }

    .service_inner>a span {
        font-size: 15px;
    }
}

.service_left p,
.price_p {
    /*margin-top: 2rem;*/
    color: #FF4645;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.6;
}

.service_left p span,
.price_p span {
    color: #FF4645;
    font-weight: 700;
    font-size: 5rem;
    line-height: 1.6;
}

.service .btn_wrapper {
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
    justify-content: center;
    margin-top: 20px;
    padding-top: 25px;
    border-top: 1px solid #ccc;
}

.service .btn_wrapper a {
    width: 54%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem;
}

.service .btn_wrapper .btn_cart {
    margin: 0 10px;
    border-radius: 50px;
    background-color: #FF4645;
    border: 1px solid #FF4645;
}

.service .btn_wrapper a span {
    text-align: center;
    flex: 1;
    color: #FFF;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.5;
}

.service .btn_wrapper .btn_detail {
    margin: 0 10px;
    border: 1px solid var(--bg-mediumblue-color);
    padding: 2.5rem 3.5rem;
}

.service .btn_wrapper .btn_detail span {
    color: var(--bg-mediumblue-color);
}

@media (max-width: 768px) {
    .service .btn_wrapper a {
        padding: 15px;
        gap: 30px;
    }

    .service .btn_wrapper a span {
        font-size: .8rem;
    }

    .service .btn_wrapper a:last-child {
        padding: 15px;
    }

    .service_left p,
    .price_p {
        /*margin-top: 20px;*/
        font-size: 1rem;
    }

    .service_left p span,
    .price_p span {
        font-size: 2rem;
    }
}

@media (max-width: 676px) {
    .service .btn_wrapper {
        flex-direction: column;
        gap: 0;
    }

    .service .btn_wrapper a {
        width: 70%;
        padding: 15px 20px;
    }

    .service .btn_wrapper a span {
        font-size: 16px;
    }

    .service .btn_wrapper a:last-child {
        padding: 15px 20px;
    }
}

@media (max-width: 450px) {
    .service .btn_wrapper a {
        width: 100%;
        padding: 15px;
        gap: 20px;
    }

    .service .btn_wrapper a span {
        font-size: 14px;
    }

    .service .btn_wrapper a:last-child {
        padding: 10px 15px;
    }

    .service_left p,
    .price_p {
        /*margin-top: 10px;*/
        font-size: 16px;
    }

    .service_left p span,
    .price_p span {
        font-size: 32px;
    }
}

/* ---------section review----------- */
.review {
    background-color: var(--bg-lgihtblue-color);
}

.review_content {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.review_content .review_item {
    overflow: hidden;
    background-color: #FFF;
    padding: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
}

.review_content .review_text {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.review_content .review_item p {
    font-size: 1.4rem;
    line-height: 1.6;
}

.review_content .review_item span {
    font-size: 1.2rem;
}

.review_content .review_item img {
    width: 7rem;
}

@media (max-width: 768px) {
    .review_content .review_item {
        padding: 20px 10px;
        gap: 10px;
    }

    .review_content .review_item p {
        font-size: .8rem;
    }

    .review_content .review_item span {
        font-size: .7rem;
    }

    .review_content .review_item img {
        width: 60px;
    }

    .review_content .review_text {
        gap: 10px;
    }
}

@media (max-width: 450px) {
    .review_content {
        padding: 0 20px;
    }

    .review_content .review_item p {
        font-size: 14px;
    }

    .review_content .review_item span {
        font-size: 12px;
    }
}


.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel.owl-drag .owl-item {
    height: auto;
}

.review_content .review_item {
    height: 100%;
}

.review_content .review_item .review_image {
    flex-shrink: 0;
}

.review_content .review_text {
    height: 100%;
}

/* -----------section order----------- */
.lp-00008 .order {
    background-color: #008FE2;
}

.lp-00008 .order .block_title {
    text-align: center;
}

.lp-00008 .order .block_title h5 {
    font-size: 2rem;
    line-height: 1.6;
    color: #FFF;
    font-weight: 700;
    display: block;
}

.lp-00008 .order .block_title h3 {
    color: #FFF;
}

.lp-00008 .order .block_title br {
    display: none;
}

.lp-00008 .order .order_header {
    width: 60%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.lp-00008 .order .order_header .calendar {
    width: 40%;
    line-height: 0;
}

.lp-00008 .order_header .calendar img {
    width: 100%;
}

.lp-00008 .order_header p {
    flex: 1;
    font-size: 1.7rem;
    line-height: 2;
    font-weight: 700;
    color: #FFF;
}

@media (max-width: 768px) {
    .lp-00008 .order .order_header {
        width: 80%;
        gap: 20px;
    }

    .lp-00008 .order .block_title h5 {
        font-size: 1.3rem;
    }

    .lp-00008 .order_header p {
        font-size: 1rem;
    }
}

@media (max-width: 450px) {
    .lp-00008 .order .block_title br {
        display: block;
    }

    .lp-00008 .order .block_title h5 {
        font-size: 16px;
    }

    .lp-00008 .order .order_header {
        width: 100%;
    }

    .lp-00008 .order_header p {
        font-size: 14px;
    }
}

.lp-00008 .order h5 {
    font-size: 2rem;
    line-height: 1.6;
    font-weight: 700;
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-00008 .order h5 span {
    color: #008FE2;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.6;
    display: flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #FFF;
}

.lp-00008 .order .post_field {
    height: 36px;
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 5px;
}

.lp-00008 .order .post_field label {
    background-color: #FFF;
    font-size: 18px;
    padding: 10px;
    height: 100%;
    border-radius: 5px 0 0 5px;
    font-weight: 700;
    color: var(--bg-mediumblue-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-00008 .order .post_field input {
    flex: 1;
    border: 1px solid #FFF;
    border-radius: 0 5px 5px 0;
    height: 100%;
    background-color: transparent;
    padding-left: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #FFF;
}

@media (max-width: 768px) {
    .lp-00008 .order h5 {
        font-size: 18px;
        gap: 5px;
    }
}

.lp-00008 .order .set {
    vertical-align: top;
    position: relative;
}

.lp-00008 .order .product-list {
    display: grid;
    grid-template-columns: calc(50% - 20px) calc(50% - 20px);
    gap: 20px 40px;
    margin-bottom: 30px;
}

.lp-00008 .order .product-select-box {
    display: inline-block;
    text-align: left;
    padding: 0;
    margin: 0;
    border: none;
    cursor: pointer;
}

.lp-00008 .order .product-select-box .name {
    position: absolute;
    left: 10px;
    font-weight: 700;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: auto;
    width: fit-content;
    margin: 0 auto;
    justify-content: center;
    height: 100%;
    z-index: 2;
    gap: 18px;
}

.lp-00008 .order .product-select-box .name strong {
    display: block;
    color: #FFF;
    font-weight: 700;
    font-size: 2rem;
    width: fit-content;
}

.order .product-select-box .name strong span {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #FFFF00;
}

.lp-00008 .order .product-select-box .name .price {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: left
}

.lp-00008 .order .product-select-box .name .time {
    position: relative;
    font-weight: 400;
    font-size: 1.7rem;
    color: #FFF;
}

.lp-00008 .order .product-select-box .name .time:before {
    content: "\4F5C\696D\6642\9593";
    margin-right: 3px;
    font-size: 80%;
    display: inline
}

.lp-00008 .order .product-select-box .name .time:after {
    content: "\5206";
    font-size: 80%
}

.lp-00008 .order .product-select-box .input-container.select0 {
    background-color: transparent;
    border-radius: 6px;
    color: #FFF;
    height: 100%;
}

.lp-00008 .order .product-select-box .input-container.select0 select.full {
    z-index: 10;
    color: #FFF;
    position: relative;
    border-radius: 6px;
    border: 1px solid #FFF;
    background-color: transparent;
    width: 100%;
    height: 130px;
    outline: none;
    appearance: none;
    padding-left: 84%;
    font-size: 16px;
}

.input-container.select0:after {
    top: calc(50% - 8px);
    content: "";
    position: absolute;
    right: 12px;
    width: 7px;
    height: 7px;
    background: transparent;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    z-index: 1;
    border: 1px solid #FFF;
    border-top: none;
    border-right: none
}

@media (max-width: 1100px) {
    .lp-00008 .order .product-select-box .input-container.select0 select.full {
        height: 120px;
    }
}

@media (max-width: 767px) {
    .lp-00008 .order .product-list {
        grid-template-columns: calc(50% - 10px) calc(50% - 10px);
        gap: 20px;
    }

    .lp-00008 .order .product-select-box .name strong {
        font-size: 15px;
    }

    .lp-00008 .order .product-select-box .name .price {
        font-size: 13px;
    }

    .lp-00008 .order .product-select-box .name strong span {
        font-size: 14px;
    }

    .lp-00008 .order .product-select-box .name .time {
        font-size: 15px;
    }

    .input-container.select0:after {
        top: calc(50% - 5px);
    }
}

@media (max-width: 576px) {
    .lp-00008 .order .product-list {
        grid-template-columns: 100%;
        gap: 20px;
    }

    .lp-00008 .order .product-select-box .name strong {
        font-size: 15px;
    }

    .lp-00008 .order .product-select-box .name .price {
        font-size: 13px;
    }

    .lp-00008 .order .product-select-box .name strong span {
        font-size: 14px;
    }

    .lp-00008 .order .product-select-box .name .time {
        font-size: 15px;
    }

    .lp-00008 .order .product-select-box .input-container.select0 select.full {
        height: 100px;
    }

    .input-container.select0:after {
        top: calc(50% - 5px);
    }

    .lp-00008 .order .product-select-box .name {
        gap: 6px;
    }
}

.lp-00008 .order .product-total {
    width: 200%;
    padding: 10px 20px;
    border: 1px solid #FFF;
    border-radius: 5px;
}

.lp-00008 .order .product-total .table-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-00008 .yen:after {
    content: "\5186";
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--bg-yellow-color);
}

.lp-00008 .order .product-total .label {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    color: #FFF;
}

.lp-00008 .order .product-total .customer-display {
    font-size: 30px;
    line-height: 1.6;
    color: var(--bg-yellow-color);
    font-weight: 700;
}

.lp-00008 .order button.modal-show {
    background-color: #FFF;
    outline: none;
    border: none;
    width: 100%;
    padding: 20px 0;
    font-size: 2rem;
    line-height: 1.6;
    font-weight: 700;
    color: var(--bg-mediumblue-color);
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
}

.lp-00008 .order .order_bottom {
    width: fit-content;
    margin: 0 auto;
}

.lp-00008 .order .order_bottom p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #FFF;
}

@media (max-width: 768px) {
    .lp-00008 .order .order_bottom {
        width: 100%;
    }

    .lp-00008 .order button.modal-show {
        font-size: 18px;
    }

    .lp-00008 .order .order_bottom p {
        font-size: 15px;
    }
}

@media (max-width: 450px) {
    .lp-00008 .order .product-total .customer-display {
        font-size: 24px;
    }

    .lp-00008 .order .product-total {
        padding: 10px 15px;
    }
}


/* ---------section rule---------- */
.rule .rule_content {
    display: flex;
    flex-direction: column;
    gap: 3.3rem;
}

.rule .rule_item {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.rule .rule_item h5 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.6;
}

.rule .rule_item ul li {
    list-style-type: disc;
    font-size: 1.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .rule .rule_content {
        gap: 30px;
    }

    .rule .rule_item {
        gap: 10px;
    }

    .rule .rule_item h5 {
        font-size: 1.2rem;
    }

    .rule .rule_item ul li {
        font-size: .8rem;
        margin-left: 20px;
    }
}

@media (max-width: 450px) {
    .rule .rule_content {
        gap: 20px;
    }

    .rule .rule_item h5 {
        font-size: 16px;
    }

    .rule .rule_item ul li {
        font-size: 13px;
        margin-left: 20px;
    }
}


/* ------------swiper style---------- */
.swiper {
    display: none;
}

.swiper.swiper-initialized {
    display: block;
}

.swiper-controller {
    display: flex;
    gap: 13px;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .swiper-controller {
        margin-right: 0;
        gap: 16px;
    }
}

.swiper-controller--pickup {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

/* ページネーション
  -------------------------*/
.swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0 20px;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    transition: var(--transition);
    background-color: #a3a3a3;
    border-radius: 100%;
    cursor: pointer;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color-black);
}

/* 前へ / 次へボタン
  -------------------------*/
.swiper_control {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 40px;
}

.swiper-button-prev,
.swiper-button-next {
    display: grid;
    place-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #008FE2;
    cursor: pointer;
    transition: all .4s;
}

.swiper-button-next {
    background-color: #008FE2;
}

.swiper-button-prev::after {
    content: url(../img/swiper_arrow_left.svg);
}

.swiper-button-next::after {
    content: url(../img/swiper_arrow_right.svg);
}

.swiper-button-disabled {
    pointer-events: none;
    opacity: 0.3;
}

/* スクロールバー
  -------------------------*/
.swiper-scrollbar {
    height: 3px;
    width: 85rem;
    background-color: #B0DCF6;
    border-radius: 3px;
}

.swiper-scrollbar-drag {
    height: 3px;
    background: var(--bg-blue-color);
    border-radius: 3px;
}

@media (max-width: 768px) {
    .swiper-scrollbar {
        height: 2px;
        width: 20rem;
    }

    .swiper_control {
        gap: 20px;
    }
}

@media (max-width: 450px) {
    .swiper-scrollbar {
        height: 2px;
        width: 240px;
    }

    .swiper_control {
        gap: 10px;
        margin-top: 20px;
    }

    .swiper-controller {
        gap: 10px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 36px;
        height: 36px;
    }
}



/* ------------owl casusel style------------ */
.owl-theme .owl-dots {
    height: 8px !important;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.owl-theme .owl-dots .owl-dot span {
    background-color: #2F3D4C !important;
    margin: 0 3px;
    bottom: -40px;
}

.owl-theme .owl-dots .owl-dot span {
    height: 8px !important;
    width: 8px !important;
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 8px !important;
    height: 8px !important;
    background-color: var(--bg-mediumblue-color) !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--bg-mediumblue-color);
    height: 8px !important;
    width: 8px !important;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -10px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--bg-mediumblue-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-carousel .owl-nav button.owl-prev:after,
.owl-carousel .owl-nav button.owl-next:after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border: solid var(--bg-mediumblue-color);
    border-width: 2px 2px 0 0;
}

.owl-carousel .owl-nav button.owl-next {
    right: -15px;
    left: unset;
}

.owl-carousel .owl-nav button.owl-next:after {
    transform: rotate(45deg);
    margin-left: -6px;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -15px;
}

.owl-carousel .owl-nav button.owl-prev:after {
    margin-right: -6px;
    transform: rotate(-135deg);
}

.owl-carousel .owl-nav button span {
    display: none;
}

.owl-theme .owl-dots::after {
    content: "";
}

.owl-theme .owl-dots::before {
    content: "";
    font-size: 27px;
    color: red;
}

.owl-carousel.owl-drag .owl-item {
    background-color: transparent !important;
}

.owl-carousel .owl-stage-outer {
    padding-top: 15px;
}

.review .owl-carousel .owl-nav button.owl-prev {
    left: 5px;
}

.review .owl-carousel .owl-nav button.owl-next {
    right: 5px;
}

.review .owl-carousel .owl-stage-outer {
    padding-top: 0;
}

.review .review_inner {
    padding-bottom: 20px;
}

@media (max-width: 450px) {

    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        width: 34px;
        height: 34px;
    }

    .owl-carousel .owl-nav button.owl-prev:after,
    .owl-carousel .owl-nav button.owl-next:after {
        width: 8px;
        height: 8px;
    }

    .owl-carousel .owl-nav button.owl-prev:after {
        margin-right: -4px;
    }

    .owl-carousel .owl-nav button.owl-next:after {
        margin-left: -4px;
    }
}

.container:has(.content-set) {
    margin: 0 auto;
    padding: 0;
    max-width: unset;
}

.content-set {
    min-height: unset;
}


/*  */

.lp_cp_bnr_slick {
    width: 90%;
    margin: 30px auto;
    opacity: 0;
    transition: opacity .3s linear;
}

.lp_cp_bnr_slick.slick-initialized {
    opacity: 1;
}

.lp_cp_bnr_slick_item {
    margin: 0 10px;
}

.lp_cp_bnr_slick .slick-prev {
    left: -15px;
}

.lp_cp_bnr_slick .slick-next {
    right: -15px;
}

.slick-prev::before,
.slick-next::before {
    color: #ccc;
}

.slick-dots li button::before {
    font-size: 10px;
}

@media (min-width:768px) {
    .service .service_content {
        /*display: block;*/
    }
}

.item_price {
    width: 100%;
}

@media screen and (min-width:768px) {
    .item_price {
        width: 48%;
    }
}

.item_price p:first-of-type {
    font-size: 20px;
    font-weight: 700;
}

@media screen and (max-width:767px) {
    .item_price p:first-of-type {
        font-size: 22px;
    }
}

.reserve-schedule-content h2 {
    color: #fff;
}

@media screen and (max-width:767px) {
    .reserve-schedule-content h2 {
        color: #fff;
        font-size: 18px;
        margin-top: 18px;
    }
}

.circle-number {
    color: #0064b4;
    font-size: 1.2em;
    font-weight: 700;
}

.circle-number:after {
    background-color: #fff;
}

.lead-set {
    width: 60%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

@media screen and (max-width:767px) {
    .lead-set {
        width: 90%;
        gap: 20px;
        margin: 20px auto 35px;
    }
}

.lead-set li:nth-of-type(1) {
    width: 40%;
}

.lead-set li:nth-of-type(2) {
    flex: 1;
    font-size: 1.7rem;
    line-height: 2;
    font-weight: 700;
    color: #FFF;
}

.lp-product-order .box-outer {
    background-color: unset;
    border: unset
}

.lp-00008 .order .product-select-box {
    width: 100%;
    background-color: unset;
}

.lp-00008 .order .product-select-box .name .price {
    color: #FFFF00;
}

.sub {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #FFF;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #FFF;
}

.lp-00008 .order button.modal-show {
    background-color: #fff;
    background-image: unset;
}

.ttl-set {
    display: none;
}

.reserve-schedule-content .set.zip label {
    color: #0064b4;
    background-color: #fff;
}

.reserve-schedule-content .set .name.line2 {
    top: 0;
}

.reserve-schedule-content .set .input-container.select0:after {
    top: calc(50% - 10px);
}

.cart_btn {
    width: 100%;
}

@media screen and (min-width:768px) {
    .cart_btn:not(:where(.help_btn *)) {
        width: 49%;
    }
}

.cart_btn .apply_btn {
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 50px;
    background-color: #F76A0C;
    padding: 2.5rem;
    justify-content: space-between;
}

@media screen and (max-width:800px) {
    .cart_btn .apply_btn {
        padding: 0.5em 1em 1em;
    }
}

.cart_btn .apply_btn span {
    font-weight: 700;
    font-size: 2rem;
    color: #FFF;
    flex: 1;
    text-align: center;
    text-align: center;
}

@media screen and (max-width:800px) {
    .cart_btn .apply_btn span {
        font-size: 24px;
    }
}

.cart_btn .apply_btn p {
    flex-grow: 1;
    color: #FFF;
    font-size: 2rem;
    font-weight: 700;
}

.cart_btn .modal .apply_btn {
    margin: 0 auto;
    max-width: 450px;
}

.cart_btn .modal .bg-grey {
    line-height: 2.5;
}

.cart_btn .modal .bg-grey a {
    display: unset;
}

.help_btn .cart_btn .modal .bg-grey a {
    background-color: unset;
    padding: 0;
}


.service_help_item .help_btn .modal p.margin-l-s,
.service_help_item .help_btn .modal p.margin-t-s {
    display: block;
    text-align: left;
    margin-top: 15px;
}

.service_help_item .help_btn .modal p span {
    color: inherit;
}


.cart_btn .modal .sub {
    color: #909194;
}

.service_help_item .modal .box-innerpad {
    margin: 0 auto;
    width: 95%;
}


.lp-00008 .order .product-select-box .name {
    gap: 14px;
    top: 0;
}


.lp-00008 .order .product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: unset !important;
    gap: 20px;
    box-shadow: unset;
}

@media screen and (min-width:768px) {
    .lp-00008 .order .product-select-box {
        width: 48%;
    }
}

.order-button-group {
    width: 100%;
}

.cp_air3000_text {
    font-size: 1.5em;
    font-weight: 700;
    text-align: center;
    margin: 20px auto 5px;
    line-height: 1.5;
}

@media screen and (min-width:768px) {
    .cp_air3000_text {
        font-size: 32px;
    }
}

.tab_outer input {
    display: none;
}

@media screen and (min-width:768px) {
    .tab_btn {
        display: none;
    }
}

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

    .service .service_help {
        display: flex;
        flex-flow: row;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: unset;
    }

    .tab_btn {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        width: 32.3%;
        height: 3.5em;
        background-color: #CCC;
        border: 1px solid #fff;
        cursor: pointer;
        border-radius: 10px 10px 0 0;
    }

    .tab_outer input:checked+.tab_btn {
        color: #fff;
        background-color: #1a79c1;
        border-color: #1a79c1;
    }

    .tab_contents {
        flex: 100%;
        display: none;
        padding: 20px 0 0;
        border-top: 1px solid #1a79c1;
        overflow: hidden;
        position: relative;
        animation: fadeIn 1s ease;
    }

    #aircon_l_item:checked~#air_l_item_contents,
    #aircon_s_item:checked~#air_s_item_contents,
    #aircon_p_item:checked~#air_p_item_contents {
        display: block;
        visibility: visible;
        opacity: 1;
        overflow: inherit;
    }

    .service_help_item h1 {
        text-align: center;
    }
}

@media (max-width: 450px) {
    .service_help_item>svg {
        display: block;
        margin: 10px auto;
    }
}

/* 202506改修 */
.service .container {
    padding: 1px 0 30px;
    max-width: unset !important;
}

@media (min-width:768px) {
    .service .container {
        padding-bottom: 50px;
    }
}

.service .container.bg_bl {
    background-color: #EEFAFF;
}

.service .service_inner {
    margin: 0 auto;
    padding: 20px 10px 0;
    max-width: 900px;
    border: none;
}

@media (max-width: 450px) {
    .service_right {
        width: 70%;
        grid-template-columns: 44% 44%;
        gap: 1.33%;
        margin: 0 auto;
    }
}

.service .service_intro p {
    color: #fff;
}

.service .service_intro span {
    color: var(--bg-yellow-color);
}

.service .service_intro .big_y {
    color: var(--bg-yellow-color);
}

.tab_outer input:checked+.tab_btn:nth-of-type(1) {
    color: #fff;
    background-color: #F95E80;
    border-color: #F95E80;
}

.tab_outer input:checked+.tab_btn:nth-of-type(2) {
    color: #fff;
    background-color: #4AC278;
    border-color: #4AC278;
}

.tab_outer input:checked+.tab_btn:nth-of-type(3) {
    color: #fff;
    background-color: #33CAE8;
    border-color: #33CAE8;
}

.service_help_item>p {
    background-color: #fff;
}

.service_help_item>p.pk {
    border-color: #F95E80;
}

.service_help_item>p.gr {
    border-color: #4AC278;
}

.service_help_item>p.bl {
    border-color: #33CAE8;
}

.service_help_item>p.pk span {
    color: #F95E80;
}

.service_help_item>p.gr span {
    color: #4AC278;
}

.service_help_item>p.bl span {
    color: #33CAE8;
}

@media (max-width: 450px) {
    .service_help_item>p {
        margin-bottom: 10px;
    }

    .service_help_item>p span {
        font-size: 26px;
    }

    .service_help_item .help_btn p {
        margin: 15px auto 0;
    }
}

.item_modal_open_btn .modal-show {
    margin: 0 auto 20px !important;
}

.service_inner>a {
    background-color: #fff;
}

@media (max-width: 450px) {
    .service_inner>a {
        width: 100%;
        padding: 5px 20px;
    }

    .service_inner>a span {
        line-height: 1.4;
    }
}

.service .service_header {
    gap: 0;
    margin-top: 10px;
    padding: 0;
    background-color: unset;
}

@media (max-width: 676px) {
    .service .btn_wrapper {
        margin-top: 15px;
        padding-top: 15px;
    }

}

.service .btn_wrapper .btn_detail {
    background-color: #fff;
}

.service .service_content {
    margin-top: 10px;
}

@media (min-width:768px) {
    .service .service_content {
        margin-top: 30px;
    }
}

@media (max-width: 450px) {
    .service .btn_wrapper a:last-child {
        padding: 5px 20px;
    }

    .service .btn_wrapper a span {
        line-height: 1.4;
    }
}

@media (min-width:450px) {
    .service .block_title {
        text-align: center;
    }

    .service .block_title img {
        width: 80%;
    }
}

@media (max-width: 1200px) {
    .container {
        width: 100%;
    }
}

@media (min-width:1200px) {
    .service .service_inner {
        max-width: 1100px;
    }
}

@media (min-width:1024px) {
    .service .service_inner {
        padding-top: 50px;
    }
}

@media (min-width:769px) {
    .service_help_item>p span {
        /*font-size: 3rem;*/
        font-size: 26px;
    }
}

@media (max-width: 450px) {
    .review_content {
        padding: 0 45px;
    }
}

@media (min-width: 451px) {
    .review_content {
        padding: 0 55px;
    }
}

@media (max-width:767px) {

    .cleaning_inner,
    .worry .worry_content,
    .intro .container {
        display: none;
    }
}

@media (min-width:768px) {

    .cleaning_inner+div,
    .worry .worry_content+div,
    .intro .container+div {
        display: none;
    }
}

.service .btn_wrapper .btn_detail {
    padding: 10px 3.5rem;
}

/* 20250606 */
.lp-container .main-content {
    padding: 40px 0px;
}

@media screen and (min-width:1024px) {
    .main-content {
        max-width: 1100px;
    }
}

.lp-00008 .order .product-select-box {
    display: block;
    background-color: #fff;
}

.lp-00008 .order .product-select-box .name {
    flex-direction: unset;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.lp-00008 .order .product-select-box .name::before {
    content: "▼";
    display: flex;
    align-items: center;
    height: 100%;
    position: absolute;
    top: 0;
    right: 10px;
}

@media screen and (min-width:768px) {
    .lp-00008 .order .product-select-box .name::before {
        font-size: 14px;
    }
}

.lp-00008 .order .product-select-box .name strong {
    display: flex;
    align-items: center;
    color: #000;
    padding: 0 0 0 15px;
    width: 100%;
    height: 50%;
}

@media screen and (min-width:768px) {
    .lp-00008 .order .product-select-box .name strong {
        font-size: 16px;
    }
}

.lp-00008 .order .product-select-box .name .price {
    color: #000;
    width: fit-content;
}

@media screen and (min-width:768px) {
    .lp-00008 .order .product-select-box .name .price {
        font-size: 16px;
    }
}

.lp-00008 .order .product-select-box .name .time {
    color: #000;
    padding-top: 0;
    width: fit-content;
}

@media screen and (min-width:768px) {
    .lp-00008 .order .product-select-box .name .time {
        font-size: 14px;
    }
}

.lp-00008 .order .product-select-box .input-container.select0 select.full {
    display: flex;
    color: #000;
    text-align: right;
    padding: 0 35px 0 84%;
    height: 100%;
}

.coupon-banner .coupon-code {
    font-size: 22px;
    padding: 15px;
}

.coupon-banner .coupon-copy-guide {
    font-size: 16px;
}

.tippy-backdrop+.tippy-content {
    color: #fff;
}

.lp-00008 .product-order .order-button {
    background-color: #F76A0C;
    border-color: #F76A0C;
    border-bottom: 3px solid #ad4805;
}

.lp-00008 .product-order button.full:disabled {
    border: 1px solid #909194;
}

.item_modal_open_btn .modal-show {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    border-radius: 50px !important;
    background-color: #F76A0C !important;
    padding: 2.5rem !important;
    justify-content: space-between ! IMPORTANT;
    height: auto !important;
}