@charset "UTF-8";

/*==================================================
reset
==================================================*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: 400;
    vertical-align: baseline;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

span {
    line-height: inherit;
    font-size: inherit;
    text-decoration: inherit;
    vertical-align: inherit;
    font-weight: inherit;
}

body {
    -webkit-text-size-adjust: 100%;
}

ol,
ul {
    list-style: none;
}

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

em,
strong,
em *,
strong * {
    font-weight: bold;
}

/*--form初期化--*/
input[type=submit],
button {
    cursor: pointer;
}

button,
input[type=text],
input[type=image],
input[type=password],
input[type=file],
input[type=submit],
input[type=reset],
input[type=button],
input[type=email],
input[type=tel],
textarea {
    font-family: inherit;
}

sup {
    vertical-align: super;
    font-size: smaller;
}

::placeholder {
    opacity: 1;
}

::-ms-input-placeholder {
    opacity: 1;
}

:-ms-input-placeholder {
    opacity: 1;
}

a {
    text-decoration: none;
    border: none;
    color: inherit;
    transition: opacity 0.2s;
}

@media (hover: hover) and (pointer: fine) {
    a:hover {
        opacity: 0.8;
    }
}

button {
    transition: opacity 0.2s;
}

@media (hover: hover) and (pointer: fine) {
    button:hover {
        opacity: 0.8;
    }
}

table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
    text-align: left;
}

th {
    text-align: left;
}

@media screen and (min-width: 768px) {
    a[href*="tel:"] {
        pointer-events: none;
    }
}

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

    html,
    body,
    div,
    span,
    applet,
    object,
    iframe,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    blockquote,
    pre,
    a,
    abbr,
    acronym,
    address,
    big,
    cite,
    code,
    del,
    dfn,
    em,
    img,
    ins,
    kbd,
    q,
    s,
    samp,
    small,
    strike,
    strong,
    sub,
    sup,
    tt,
    var,
    b,
    u,
    i,
    center,
    dl,
    dt,
    dd,
    ol,
    ul,
    li,
    fieldset,
    form,
    label,
    legend,
    table,
    caption,
    tbody,
    tfoot,
    thead,
    tr,
    th,
    td,
    article,
    aside,
    canvas,
    details,
    embed,
    figure,
    figcaption,
    footer,
    header,
    hgroup,
    menu,
    nav,
    output,
    ruby,
    section,
    summary,
    time,
    mark,
    audio,
    video {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    button,
    input[type=text],
    input[type=image],
    input[type=password],
    input[type=file],
    input[type=submit],
    input[type=reset],
    input[type=button],
    input[type=email],
    input[type=tel] textarea {
        background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
        border-radius: 0;
        box-shadow: none;
        appearance: none;
    }

    textarea,
    input[type=email],
    input[type=text],
    input[type=image],
    input[type=password] {
        -webkit-appearance: none;
    }
}

/*==================================================
leyout 
==================================================*/
:root {
    /*size*/
    --max-site: 750px;
    --site-padding: 16rem;
    --site-head: 5vw;
    /*font*/
    --font-base: 14rem;
    --font-maru: "Zen Maru Gothic";
    --font-kaku: "Noto Sans JP";
    --font-num: "Barlow Semi Condensed", sans-serif;
    --base-line: 1.5;
}

@media screen and (min-width: 768px) {
    :root {
        --max-site: 375px;
    }
}

/*--------------------------------------
html,body,wrapper
----------------------------------------*/
html {
    font-family: var(--font-maru);
    font-size: 0.2666666667vw;
    color: #333;
}

@media screen and (min-width: 768px) {
    html {
        font-size: 1px;
    }
}

body {
    position: relative;
    padding-top: 58rem;
    padding-bottom: 58rem;
}

@media all and (min-width: 768px) and (max-width: 1023px) {
    body {
        background: url("../img/pc-body-bg.png") repeat center;
        background-attachment: fixed;
    }
}

@media all and (min-width: 1024px) {
    body {
        padding-top: 0;
        padding-bottom: 0;
        background: url("../img/pc-body-bg.png") repeat center;
        background-attachment: fixed;
    }
}

.wrapper {
    max-width: var(--max-site);
    margin-inline: auto;
}

@media screen and (min-width: 768px) {
    .wrapper {
        position: relative;
        z-index: 1;
        box-shadow: 0 0 20px rgba(202, 112, 34, 0.5);
    }
}

/*--------------------------------------
l-header
----------------------------------------*/
.pc-header {
    display: none;
}

@media all and (min-width: 1024px) {
    .pc-header {
        position: fixed;
        left: 0;
        top: 0;
        display: block;
        width: 100%;
        height: 135px;
        padding: 15px 40px;
        background: url("../img/pc-header-bg.png") repeat-x center bottom;
    }
}

.pc-header__logo {
    display: none;
}

@media all and (min-width: 768px) and (max-width: 1023px) {
    .pc-header__logo {
        display: flex;
        gap: 10px;
        width: 170px;
        align-items: center;
    }
}

@media all and (min-width: 1024px) {
    .pc-header__logo {
        display: flex;
        gap: 20px;
        align-items: center;
    }
}

.header {
    position: fixed;
    z-index: 1000;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    max-width: var(--max-site);
    margin: auto;
    height: 58rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16rem;
    background: #fff;
}

@media all and (min-width: 1024px) {
    .header {
        display: none;
    }
}

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

.header-logo__duskin {
    display: block;
    width: 70rem;
}

.header-logo__merrymaids {
    display: block;
    width: 71rem;
}

/*--------------------------------------
header btn
----------------------------------------*/
.nav-switch {
    position: relative;
    width: 26rem;
    height: 18rem;
    border: none;
    outline: none;
    background: none;
}

.nav-switch__line {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    margin: 0 auto;
    border-top: solid 1rem #A9A9A9;
    transition: all 0.4s;
}

.nav-switch__line:nth-child(1) {
    top: calc(50% - 8rem);
}

.nav-switch__line:nth-child(2) {
    top: 50%;
}

.nav-switch__line:nth-child(3) {
    top: calc(50% + 8rem);
}

.nav-switch--show .nav-switch__line:nth-child(1) {
    top: 50%;
    transform: rotate(-45deg);
}

.nav-switch--show .nav-switch__line:nth-child(2) {
    display: none;
}

.nav-switch--show .nav-switch__line:nth-child(3) {
    top: 50%;
    transform: rotate(45deg);
}

/*--------------------------------------
main-nav
----------------------------------------*/
@media all and (min-width: 1024px) {
    .main-nav-pc {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        display: grid;
        place-content: center;
        width: calc(50vw - 187px);
        height: calc(100vh - 200px);
        padding: 20px;
    }
}

.main-nav {
    transition: opacity 0.4s;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    right: 0;
    top: 58rem;
    width: 100%;
    max-width: var(--max-site);
    height: 100vh;
    margin: auto;
    padding: 30rem 25rem 60rem 25rem;
    background: #F0F0F0;
}

@media all and (min-width: 1024px) {
    .main-nav {
        position: static;
        opacity: 1;
        pointer-events: auto;
        max-width: 400px;
        height: auto;
        padding: 0;
        background: transparent;
    }
}

.main-nav--show {
    opacity: 1;
    pointer-events: auto;
}

.main-nav-links {
    display: grid;
    gap: 15rem;
    margin-bottom: 34rem;
}

@media all and (min-width: 1024px) {
    .main-nav-links {
        margin-bottom: 45px;
    }
}

.main-nav-links__item {
    color: #ef7a15;
    font-size: 20rem;
    font-weight: 700;
}

@media all and (min-width: 1024px) {
    .main-nav-links__item {
        font-size: 25px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1179px) {
    .main-nav-links__item {
        font-size: 23px;
    }
}

.main-nav-service {
    margin-top: 9rem;
    padding-left: 20rem;
    font-size: 16rem;
    line-height: 1.875;
}

@media all and (min-width: 1024px) {
    .main-nav-service {
        font-size: 20px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1179px) {
    .main-nav-service {
        font-size: 18px;
    }
}

.main-nav-service a {
    font-weight: 500;
}

.main-nav-button {
    position: relative;
    display: grid;
    place-content: center;
    height: 69rem;
    border-radius: 5rem;
    background: #38B6A1;
    color: #fff;
    text-align: center;
}

@media all and (min-width: 1024px) {
    .main-nav-button {
        max-width: 375px;
        height: 80px;
        border-radius: 10px;
    }
}

.main-nav-button:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15rem;
    display: block;
    width: 7rem;
    height: 12rem;
    margin: auto;
    background: url("../img/nav-arrow.svg") no-repeat center/contain;
}

.main-nav-button__top {
    font-size: 14rem;
}

.main-nav-button__bottom {
    font-size: 22rem;
    font-weight: 900;
}

@media screen and (min-width: 1024px) and (max-width: 1179px) {
    .main-nav-button__bottom {
        font-size: 19px;
    }
}

/*--------------------------------------
l-main
----------------------------------------*/
.l-main {
    line-height: var(--base-line);
    font-size: var(--font-base);
}

/*--------------------------------------
fixed-button
----------------------------------------*/
.fixed-button {
    position: fixed;
    z-index: 999;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    place-content: center;
    width: 100%;
    max-width: var(--max-site);
    margin: auto;
    height: 69rem;
    background: #38B6A1;
    color: #fff;
    text-align: center;
}

@media all and (min-width: 1024px) {
    .fixed-button {
        display: none;
    }
}

.fixed-button:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20rem;
    display: block;
    width: 12rem;
    height: 12rem;
    margin: auto;
    background: url("../img/nav-arrow.svg") no-repeat center/contain;
}

.fixed-button__top {
    font-size: 14rem;
}

.fixed-button__bottom {
    font-size: 22rem;
    font-weight: 900;
}

/*--------------------------------------
pagetop
----------------------------------------*/
.pagetop {
    transition: opacity 0.4s;
    pointer-events: none;
    opacity: 0;
    position: fixed;
    z-index: 998;
    right: calc(50% - 180rem);
    bottom: 80rem;
    display: grid;
    place-items: center;
    width: 44rem;
    height: 44rem;
    border-radius: 50%;
    border: solid 1.5px #333;
    background: #fff;
    font-size: 16rem;
    font-weight: 600;
    font-family: var(--font-num);
}

@media all and (min-width: 1024px) {
    .pagetop {
        bottom: 20px;
        right: calc(50% - 170rem);
    }
}

.pagetop:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 6rem;
    width: 7rem;
    height: 5rem;
    margin: auto;
    clip-path: polygon(50% 0, 0% 100%, 100% 100%);
    background: #333;
}

.pagetop a {
    font-weight: inherit;
}

.pagetop.-fadein {
    pointer-events: auto;
    opacity: 1;
}

/*--------------------------------------
footer
----------------------------------------*/
.footer {
    display: grid;
    justify-content: center;
    gap: 18rem;
    padding: 27rem;
    background: #EC6B64;
    color: #fff;
}

.footer-logo {
    display: flex;
    justify-content: space-between;
    gap: 20rem;
    width: 270rem;
}

.footer-logo__duskin {
    width: 123rem;
}

.footer-logo__merrymaids {
    width: 123rem;
}

.footer__copy {
    text-align: center;
    font-size: 10rem;
    font-family: var(--font-kaku);
}

/*==================================================
module
==================================================*/
.font-kaku {
    font-family: var(--font-kau);
}

/*--------------------
inner
--------------------*/
.inner {
    width: 100%;
    margin: 0 auto;
    padding-inline: var(--site-padding);
}

@media all and (min-width: 768px) {
    .sp-only {
        display: none !important;
    }
}

/*--------------------
box unit
--------------------*/
#step,
#service,
#voice {
    margin-top: -58rem;
    padding-top: 58rem;
}

@media all and (min-width: 1024px) {

    #step,
    #service,
    #voice {
        margin-top: 0;
        padding-top: 0;
    }
}

#life,
#akiya,
#gran,
#otetsudai,
#omakase {
    margin-top: -100rem;
    padding-top: 100rem;
}

@media all and (min-width: 1024px) {

    #life,
    #akiya,
    #gran,
    #otetsudai,
    #omakase {
        margin-top: -40px;
        padding-top: 40px;
    }
}

/*==================================================
page
==================================================*/
.main-visual {
    padding-bottom: 30rem;
    background: url("../img/main-visual-bg.png") repeat center top/100% auto;
}

.main-visual-title {
    height: 100rem;
    margin-bottom: 13rem;
    padding-top: 13rem;
    background: url("../img/main-visual-title.png") no-repeat center top/100% auto;
    color: #fff;
    line-height: 1.1;
    text-align: center;
}

.main-visual-title__top {
    display: block;
    font-size: 15rem;
    font-family: var(--font-kaku);
}

.main-visual-title__bottom {
    display: block;
    font-weight: 900;
    font-size: 30rem;
    letter-spacing: -0.03em;
}

.main-visual-lead {
    position: relative;
    margin-bottom: 5rem;
    padding-inline: 9rem;
    text-align: center;
    font-weight: 500;
    font-family: var(--font-kaku);
}

.main-visual-lead__text {
    font-weight: 500;
    font-size: 16rem;
}

.main-visual-lead__message {
    padding-right: 15rem;
}

.main-visual-img {
    margin-bottom: 20rem;
}

.main-visual-limit {
    display: grid;
    align-items: center;
    grid-template-columns: 4em 1fr;
    gap: 10rem;
    margin-inline: auto;
    padding: 5rem 8rem;
    border-radius: 5rem;
    background: #FDD000;
    font-size: 12rem;
    font-feature-settings: "palt";
}

.main-visual-limit__title {
    font-weight: 700;
    font-family: var(--font-kaku);
}

.main-visual-limit__body {
    display: grid;
    gap: 8rem;
    padding-left: 10rem;
    padding-bottom: 5rem;
    border-left: 1px solid #333;
    font-weight: 500;
    font-family: var(--font-kaku);
    line-height: 1;
}

.main-visual-limit__day {
    color: #C53028;
    font-weight: 700;
    font-size: 15rem;
}

.main-visual-limit__num {
    font-size: 20rem;
}

.main-visual-limit__arrow {
    position: relative;
    top: -1rem;
    display: inline-block;
    width: 4rem;
    height: 5rem;
    margin: 0 2rem;
    background: #333;
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}

/*==================================================
voice
==================================================*/
.swiper {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 460rem;
    margin-bottom: 20rem;
}

@media screen and (min-width: 1024px) and (max-width: 1179px) {
    .swiper {
        height: 350px;
    }
}

.swiper .swiper-slide {
    height: auto !important;
}

.swiper .swiper-scrollbar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2rem;
    height: 100%;
    z-index: 10;
    background: #f2f2f2 !important;
}

.swiper .swiper-scrollbar-drag {
    background: #C4C4C4;
}

.voice {
    position: relative;
    padding-block: 20rem 10rem;
}

.voice:before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    left: 0;
    top: -60rem;
    width: 100%;
    height: calc(100% + 26rem + 60rem);
    background: url("../img/voice-bg.png") repeat center/100% auto;
}

.voice-title {
    margin-bottom: 15rem;
}

.voice-lead {
    margin-bottom: 30rem;
    font-family: var(--font-kaku);
    line-height: 1.7;
}

@media all and (min-width: 1024px) {
    .voice-lead {
        margin-bottom: 10px;
    }
}

@media all and (min-width: 1024px) {
    .voice-pc {
        position: fixed;
        right: 0;
        top: 115px;
        margin: auto;
        display: grid;
        place-content: start center;
        width: calc(50vw - 187px);
        padding: 0 20px;
    }
}

.voice-box {
    position: relative;
    z-index: 0;
    padding: 0 15rem 30rem 15rem;
    margin-bottom: 20rem;
}

@media all and (min-width: 1024px) {
    .voice-box {
        max-width: 343px;
    }
}

.voice-box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 30rem;
    z-index: -1;
    width: 100%;
    height: calc(100% - 30rem);
    background: #fff;
    border-radius: 10rem;
}

.voice-sub-title {
    position: relative;
    width: 100%;
    margin: 0 auto 20rem auto;
    padding: 9rem 10rem;
    border-radius: 10rem;
    background: #7ED3CF;
    color: #fff;
    text-align: center;
    font-size: 20rem;
    font-weight: 700;
    line-height: 1.3;
}

@media screen and (min-width: 1024px) and (max-width: 1179px) {
    .voice-sub-title {
        font-size: 18px;
    }
}

.voice-sub-title:after {
    content: "";
    position: absolute;
    bottom: -13rem;
    left: 0;
    right: 0;
    display: block;
    width: 13rem;
    height: 14rem;
    margin: auto;
    clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
    background: #7ED3CF;
}

.voice-button {
    display: grid;
    place-items: center;
    width: 100rem;
    height: 25rem;
    margin: 0 auto;
    border: 1px solid #333;
    font-family: var(--font-kaku);
    font-size: 8rem;
    background: #fff;
}

.voice-button--space {
    margin-bottom: 20rem;
}

.voice-button.swiper-button-disabled {
    opacity: 0.3;
    border-color: #c7c7c7;
}

.voice-unit {
    padding-right: 20rem;
}

.voice-unit dl {
    display: grid;
    grid-template-columns: 94rem 1fr;
    gap: 15rem;
    font-family: var(--font-kaku);
}

.voice-unit__title {
    display: grid;
    gap: 5rem;
    text-align: center;
    font-size: 12rem;
}

.voice-unit__body {
    font-size: 14rem;
}

.voice-unit__day {
    margin-top: 2rem;
    text-align: right;
    font-size: 12rem;
}

.voice-from {
    margin-top: 5rem;
    text-align: right;
    font-size: 12rem;
    font-family: var(--font-kaku);
}

/*==================================================
service
==================================================*/
.service {
    position: relative;
    padding-bottom: 25rem;
}

.service:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    top: 26rem;
    display: block;
    width: 100%;
    height: 100%;
    background: #EC6B64;
}

.service-title {
    position: relative;
    width: 100%;
    height: 72rem;
    padding-top: 14rem;
    padding-left: 0px;
    background: url("../img/service-title.png") no-repeat center/contain;
    font-size: 20rem;
    font-weight: 700;
    text-align: center;
}

.service-lead {
    margin-bottom: 9rem;
    color: #fff;
    font-family: var(--font-kaku);
}

.service-notice {
    margin-bottom: 24rem;
    color: #fff;
    font-size: 12rem;
    font-family: var(--font-kaku);
}

.service-nav {
    margin-bottom: 70rem;
}

.service-nav__list {
    display: grid;
    gap: 16rem;
}

.service-nav__unit {
    display: grid;
    gap: 5rem;
    padding: 15rem;
    border-radius: 5rem;
    line-height: 1.1;
    box-shadow: 0 4rem 4rem 0 rgba(0, 0, 0, 0.25);
    background: #fff url("../img/service-arrow.svg") no-repeat 310rem center/15rem 7rem;
}

.service-nav__top {
    font-family: var(--font-kaku);
    font-size: 12rem;
}

.service-nav__bottom {
    font-size: 18rem;
    font-weight: 700;
    color: #EC6B64;
}

.service-nav__bottom--font-s {
    font-size: 16rem;
}

.service-contents {
    display: grid;
    gap: 50rem;
}

.service-unit {
    padding-bottom: 25rem;
    border-radius: 8rem;
    background: #FFF;
    box-shadow: 3rem 3rem 3rem 0 rgba(178, 61, 55, 0.5);
}

.service-unit__inner {
    padding-inline: 16rem;
}

.service-name {
    margin-bottom: 15rem;
    text-align: center;
    color: #EC6B64;
    text-align: center;
    font-size: 24rem;
    font-weight: 700;
}

.service-summary {
    margin-bottom: 30rem;
    font-family: var(--font-kaku);
}

.service-summary__title {
    display: grid;
    grid-template-columns: 12rem 1fr 12rem;
    width: 100%;
    margin-bottom: 17rem;
    font-size: 15rem;
    text-align: center;
    font-weight: 700;
}

.service-summary__title:before,
.service-summary__title:after {
    content: "";
    display: block;
    width: 12rem;
    height: 48rem;
    background: url("../img/service-brackets.svg") no-repeat center/contain;
}

.service-summary__title:before {
    transform-origin: center;
    transform: scale(-1, -1);
}

.service-summary__title--one-line {
    place-items: center;
}

.service-summary__title--one-line:before,
.service-summary__title--one-line:after {
    height: 33rem;
    background: url("../img/service-bracket-one.svg") no-repeat center/contain;
}

.service-button {
    position: relative;
    width: 100%;
    height: 48rem;
    border-radius: 8rem;
    border: 1px solid #747474;
    background: #FDD000;
    font-family: var(--font-kaku);
    font-weight: 700;
}

.service-button:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15rem;
    width: 10rem;
    height: 5rem;
    margin: auto;
    background: url("../img/service-button-arrow.svg") no-repeat center/contain;
}

.service-button--open {
    background: #fff;
}

.service-button--open:before {
    transform: rotate(180deg);
}

.service-main {
    position: relative;
    margin-bottom: 12rem;
}

.service-main__comment {
    position: absolute;
}

.service-main__comment--oma-01 {
    width: 116rem;
    left: -10rem;
    top: -25rem;
}

.service-main__comment--oma-02 {
    width: 114rem;
    right: -10rem;
    top: -35rem;
}

.service-main__comment--tetsu-01 {
    width: 116rem;
    left: -10rem;
    top: 15rem;
}

.service-main__comment--tetsu-02 {
    width: 114rem;
    right: -10rem;
    top: -35rem;
}

.service-main__comment--akiya-01 {
    width: 126rem;
    left: -10rem;
    top: -18rem;
}

.service-main__comment--akiya-02 {
    width: 122rem;
    right: -10rem;
    top: -38rem;
}

.service-main__comment--life-01 {
    width: 116rem;
    left: -15rem;
    top: 20rem;
}

.service-main__comment--life-02 {
    width: 110rem;
    right: 10rem;
    top: -35rem;
}

.service-case {
    position: relative;
    z-index: 1;
    padding: 0 16rem 20rem 16rem;
}

.service-case:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    top: 15rem;
    display: block;
    width: 100%;
    height: calc(100% - 15rem);
    background: #FFFF83;
}

.service-case__title {
    position: relative;
    display: grid;
    place-items: center;
    width: fit-content;
    height: 32rem;
    margin-bottom: 15rem;
    padding-inline: 20rem;
    margin-inline: auto;
    border-radius: 16rem;
    border: 1px solid #333;
    background: #EC6B64;
    color: #fff;
    font-size: 16rem;
    font-weight: 700;
}

.service-case__list {
    display: flex;
    gap: 10rem;
    margin-bottom: 10rem;
}

.service-case__list li {
    position: relative;
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-family: var(--font-kaku);
}

.service-case__list li:nth-child(1) {
    z-index: 2;
}

.service-case__list li:nth-child(1):before,
.service-case__list li:nth-child(1):after {
    content: "";
    position: absolute;
    top: 38rem;
    display: block;
    width: 21rem;
    height: 21rem;
    background: url("../img/omakase-ico-plus.svg") no-repeat center/contain;
}

.service-case__list li:nth-child(1):before {
    left: 92rem;
}

.service-case__list li:nth-child(1):after {
    left: 198rem;
}

.service-case__list li img {
    display: block;
    margin-bottom: 5rem;
    border-radius: 5rem;
}

.service-case__terms {
    border: 1px solid #F5A200;
    font-family: var(--font-kaku);
}

.service-case__terms dt {
    padding: 5rem 16rem;
    background: #FFDB50;
    font-weight: 700;
}

.service-case__terms dd {
    padding: 8rem 17rem;
    background: #fff;
    font-size: 12rem;
}

.service-case__terms ul li {
    display: grid;
    grid-template-columns: 8rem 1fr;
    gap: 8rem;
    align-items: center;
}

.service-case__terms ul li:before {
    content: "";
    display: block;
    width: 8rem;
    height: 8rem;
    background: #F5A200;
    border-radius: 50%;
}

.service-price-text {
    padding-left: 65rem;
    font-family: var(--font-kaku);
    font-weight: 500;
    font-size: 12rem;
    font-feature-settings: "palt";
}

.service-price {
    display: grid;
    grid-template-columns: 46rem 1fr;
    gap: 9rem;
    width: 100%;
    margin-bottom: 15rem;
    font-family: var(--font-kaku);
}

.service-price dt {
    display: grid;
    place-content: center;
    padding-right: 5rem;
    background: #EC6B64;
    color: #fff;
    font-size: 12rem;
    clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
}

.service-price dd {
    display: flex;
    align-items: center;
}

.service-price__text {
    display: block;
    font-size: 12rem;
    line-height: 1.25;
    font-weight: 700;
}

.service-price__num {
    border-bottom: 1px solid #000;
    padding-bottom: 7rem;
    padding-left: 10rem;
    font-weight: 700;
    font-size: 40rem;
    font-family: var(--font-num);
    color: #C53028;
    line-height: 0.8;
}

.service-price__yen {
    font-size: 15rem;
    line-height: 1;
}

.service-price__tax {
    font-size: 12rem;
    font-weight: 700;
}

.service-price__small {
    margin-bottom: 20rem;
    font-family: var(--font-kaku);
    font-size: 12rem;
    color: #6C6C6C;
}

.service-bottom {
    margin-bottom: 25rem;
    padding-bottom: 25rem;
    border-bottom: 1px dashed #A9A9A9;
}

.service-bottom--omakase {
    padding-top: 25rem;
}

.service-bottom--otetsudai {
    padding-top: 20rem;
}

.service-bottom--gran {
    padding-top: 13rem;
}

.service-bottom--akiya {
    padding-top: 23rem;
}

.service-bottom--life {
    padding-top: 35rem;
}

.service-detail-button {
    display: grid;
    place-items: center;
    height: 48rem;
    margin-bottom: 20rem;
    border-radius: 8rem;
    background: #FDD000;
}

.service-detail-button__text {
    position: relative;
    font-weight: 700;
    font-size: 14rem;
    color: #000;
    font-family: var(--font-kaku);
}

.service-detail-button__text:before {
    content: "";
    position: absolute;
    left: 110rem;
    top: 0;
    bottom: 0;
    display: block;
    width: 16rem;
    height: 16rem;
    margin: auto;
    background: url("../img/omakase-ico-site.svg") no-repeat center/contain;
}

.service-small {
    font-size: 12rem;
    font-family: var(--font-kaku);
    color: #6c6c6c;
}

.service-small--space {
    margin-bottom: 20rem;
}

.service-mix {
    margin-bottom: 20rem;
    font-family: var(--font-kaku);
}

/*==================================================
omakase
==================================================*/
.omakase {
    display: none;
}

/*==================================================
otetsudai
==================================================*/
.otetsudai {
    display: none;
}

.otetsudai-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15rem;
}

.otetsudai-list li {
    text-align: center;
    font-weight: 700;
    font-family: var(--font-kaku);
    color: #000;
}

.otetsudai-list li img {
    display: block;
    border-radius: 5rem;
    margin-bottom: 7rem;
}

.otetsudai-list li small {
    font-size: 1.1rem;
    font-weight: inherit;
}

/*==================================================
gran
==================================================*/
.gran {
    display: none;
}

.gran-title {
    margin-bottom: 15rem;
    text-align: center;
    font-weight: 700;
    font-size: 16rem;
    color: #EC6B64;
}

.gran-img {
    margin-bottom: 10rem;
}

.gran-contents {
    display: grid;
    gap: 25rem;
}

.gran-body {
    margin-bottom: 5rem;
}

.gran-text {
    padding-top: 5rem;
    margin-bottom: 15rem;
    font-size: 12rem;
    font-family: var(--font-kaku);
}

.gran-data {
    padding: 10rem 10rem 0 30rem;
    background: url("../img/ico-cleaning.svg") no-repeat left 12rem/19rem auto;
}

.gran-data dl {
    padding-bottom: 10rem;
    border-bottom: 1px solid #e7e7e7;
}

.gran-data:last-child dl {
    border: none;
}

.gran-data dt {
    font-weight: 700;
}

.gran-data dd {
    font-size: 12rem;
}

.gran-feature {
    padding: 15rem 15rem;
    border-radius: 8rem;
    border: 1px solid #FFDB50;
    background: #FFF;
}

/*==================================================
akiya
==================================================*/
.akiya {
    display: none;
}

.akiya-lead {
    margin-bottom: 20rem;
    font-family: var(--font-kaku);
}

.akiya-ico {
    display: flex;
    align-items: center;
    margin-block: 10rem 15rem;
    gap: 10rem;
}

.akiya-ico::before,
.akiya-ico::after {
    content: "";
    width: 100%;
    border-top: 1px solid #A9A9A9;
}

.akiya-ico svg {
    width: 30rem;
}

.akiya-unit {
    display: grid;
    grid-template-columns: 120rem 1fr;
    gap: 10rem;
}

.akiya-img {
    position: relative;
}

.akiya-img__num {
    position: absolute;
    left: -5rem;
    top: -10rem;
    display: grid;
    place-items: center;
    width: 21rem;
    height: 21rem;
    border-radius: 50%;
    font-weight: 700;
    background: #EC6B64;
    color: #fff;
    font-family: var(--font-num);
    line-height: 1;
}

.akiya-data {
    font-family: var(--font-kaku);
}

.akiya-data__title {
    margin-bottom: 3rem;
    color: #EC6B64;
    font-weight: 700;
}

.akiya-data__item {
    display: grid;
    grid-template-columns: 8rem 1fr;
    align-items: center;
    gap: 5rem;
}

.akiya-data__item:before {
    content: "";
    display: block;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: #EC6B64;
}

.akiya-data dd {
    font-size: 12rem;
}

/*==================================================
life
==================================================*/
.life {
    display: none;
}

.life-feature {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15rem;
}

.life-data {
    padding: 15rem;
    border-radius: 8rem;
    border: 1px solid #FFDB50;
    background: #FFF;
}

.life-data dt {
    margin-bottom: 5rem;
    color: #EC6B64;
    font-weight: 700;
    text-align: center;
    font-size: 16rem;
}

.life-data dd {
    font-family: var(--font-kaku);
}

.life-before-after {
    margin-bottom: 15rem;
}

/*==================================================
novelty
==================================================*/
.novelty {
    padding-block: 47rem 30rem;
    background: linear-gradient(180deg, #FFFCE1 1.18%, #FFED85 18.75%, #FFB507 42.51%, #F89D00 71.49%, #F57B00 99.99%);
}

.novelty-title {
    margin-bottom: 30rem;
    padding: 0 9rem;
    text-align: center;
    font-family: var(--font-kaku);
    font-weight: 500;
    font-size: 16rem;
}

.novelty-title img {
    margin-top: 15rem;
    margin-right: 5rem;
}

.novelty-sub-title {
    margin-bottom: 15rem;
    text-align: center;
    color: #F5A200;
    font-size: 22rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.novelty-box {
    margin-bottom: 15rem;
    padding: 15rem 22rem 25rem 22rem;
    border-radius: 8rem;
    background: #FFF;
    box-shadow: 3rem 3rem 3rem 0 rgba(199, 92, 0, 0.5);
}

.novelty-body {
    display: grid;
    gap: 15rem;
    margin-bottom: 10rem;
}

.novelty-unit {
    display: grid;
    grid-template-columns: 45rem 1fr;
    gap: 10rem;
    font-family: var(--font-kaku);
}

.novelty-step {
    display: grid;
    place-items: center;
    place-content: center;
    width: 45rem;
    height: 45rem;
    line-height: 1;
    border-radius: 50%;
    color: #fff;
}

.novelty-step--01 {
    background: #FFC628;
}

.novelty-step--02 {
    background: #FBAF3B;
}

.novelty-step--03 {
    background: #F19720;
}

.novelty-step__text {
    font-size: 12rem;
    font-family: var(--font-num);
}

.novelty-step__num {
    font-weight: 700;
    font-size: 22rem;
    font-family: var(--font-num);
}

.novelty-small {
    font-size: 12rem;
    color: #6c6c6c;
    font-family: var(--font-kaku);
}

.novelty-line {
    position: relative;
    padding-bottom: 50rem;
}

.novelty-line:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 0;
    height: 39rem;
    margin: auto;
    border-right: solid 1px #a9a9a9;
}

.novelty-data {
    margin-bottom: 10rem;
    padding-top: 5rem;
}

.novelty-data dt {
    margin-bottom: 3rem;
    font-weight: 700;
    font-size: 16rem;
}

.novelty-data dd {
    font-size: 12rem;
}

.novelty-consult__list {
    margin-bottom: 15rem;
    padding-bottom: 15rem;
    border-bottom: 1px solid #fff;
}

.novelty-consult__list li {
    color: #fff;
    font-size: 18rem;
    font-weight: 700;
}

.novelty-consult__small {
    color: #fff;
    font-size: 12rem;
    font-family: var(--font-kaku);
}

/*==================================================
note
==================================================*/
.note {
    padding: 30rem var(--site-padding) 35rem var(--site-padding);
    font-size: 12rem;
    font-family: var(--font-kaku);
    color: #6c6c6c;
    background: #fff;
}

/*JS*/
/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-slider * {
    outline: none;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir=rtl] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

/* Arrows */
.slick-prev,
.slick-next {
    position: absolute;
    display: block;
    height: 50px;
    width: 50px;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 50%;
    transform: translate(0, -50%);
    padding: 0;
    border: none;
    outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent;
}

.slick-prev {
    left: -20px;
}

.slick-next {
    right: -20px;
}

.slick-dots {
    position: absolute;
    bottom: -20px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    border: 0;
    background: red;
    display: block;
    height: 20px;
    width: 20px;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
}

.slick-dots li button:focus,
.slick-dots li button:hover {
    outline: none;
}

.slick-dots li.slick-active button {
    background: blue;
}
