@charset "UTF-8";
/* Vendors - include bootrap
========================================================================== */
/* Helpers - helpers Variable file along with starting point Mixins and Placeholders.
========================================================================== */
/*
* Variables
*/
:root {
    /* family: */
    --font-family-text: "Zen Maru Gothic", sans-serif;
    --font-family-title: "Zen Maru Gothic", sans-serif;
    --font-family-en: "Zen Maru Gothic", sans-serif;
    /* Colors: */
    --text-color: #333333;
    --text-dark-color: #cecece;
    --loud-color: #f95e04;
    --title-color: #333333;
    --menu-color: #333333;
    --primary-btn-color: #ffffff;
    /* background: */
    --background-primary-btn: #f1846d;
    --background-loud: #f3ede3;
    --background-footer: #f9c01b;
    /* size */
    --base-font-size: 1.8rem;
    --h1-font-size: 4.8rem;
    --h2-font-size: 6rem;
    --h3-font-size: 2.6rem;
    --h4-font-size: 2.4rem;
}

/*
 * Function
 */
/*
* mixins
*/
@media (min-width: 768px) and (max-width: 991px) {
    .class {
        width: 60%;
    }
}

/*
 * Placeholders
 */
/* Base - reset and typography.
========================================================================== */
/*
 * 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-size: 100%;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button {
    background-color: transparent;
    outline: none;
    border: 0;
    cursor: pointer;
    padding: 0;
    font-size: var(--base-font-size);
    font-family: var(--font-family-text);
}

input {
    padding: 0;
    font-family: var(--font-family-text);
    font-size: var(--base-font-size);
}

/*
 * Typography
 */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-title);
    font-weight: 700;
    color: var(--title-color);
    line-height: 1.4;
}

h1 {
    font-size: var(--h1-font-size);
}

h2 {
    font-size: var(--h2-font-size);
}

h3 {
    font-size: var(--h3-font-size);
}

h4 {
    font-size: var(--h4-font-size);
}

/* Components - Re-usable site elements.
========================================================================== */
a {
    color: var(--text-color);
    text-decoration: none;
}
a:visited {
    color: var(--text-color);
    text-decoration: none;
}
a:hover,
a:visited:hover {
    color: var(--loud-color);
    text-decoration: none;
}
a:focus {
    outline: none;
    text-decoration: none;
}

.more {
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
}

.btn-primary {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 38rem;
    height: 8rem;
    background: #ef8200;
    border-radius: 4rem;
    border: 1px solid #ffffff;
    font-size: 2.2rem;
    color: #ffffff !important;
    position: relative;
}
.btn-primary i {
    position: absolute;
    top: 50%;
    right: 3rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.btn-primary:hover {
    background: #000;
}

@media (max-width: 768px) {
    .btn-primary {
        max-width: 63rem;
        height: 12.1rem;
        border-radius: 6rem;
        font-size: 3.3rem;
    }
    .btn-primary i {
        right: 10rem;
    }
}

.nav-bar-menu {
    padding: 10rem 3rem;
    height: 100vh;
    width: 100vw;
    max-width: 75rem;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    overflow-x: hidden;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transform: translateX(100%);
    background: #fff5da;
}
.nav-bar-menu.is_active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
.nav-bar-menu .navbar-brand {
    cursor: pointer;
    width: 4.3rem;
    position: absolute;
    top: 4.5rem;
    right: 3.5rem;
}
.nav-bar-menu ul {
    margin-bottom: 4rem;
}
.nav-bar-menu ul li {
    border-bottom: 2px solid #dacfc0;
}
.nav-bar-menu ul li a {
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 2.4rem;
    grid-template-columns: auto 1fr;
    font-size: 3rem;
    line-height: 1;
    padding: 3.5rem 2rem;
    color: #333333;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
}
.nav-bar-menu ul li a::before {
    content: "";
    width: 2.2rem;
    height: 1.7rem;
    background-image: url("../images/icon-nav.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
}
.nav-bar-menu ul li a:hover {
    opacity: 0.7;
}
.nav-bar-menu__btn {
    padding: 0 3rem;
}

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    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-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);
    -ms-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-arrow {
    position: absolute;
    top: 50%;
    text-indent: -9999px;
    width: 8rem;
    height: 8rem;
    z-index: 99;
}
.slick-arrow.slick-prev {
    left: 1rem;
    background-image: url("../images/slick-prev.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
}
.slick-arrow.slick-next {
    right: 1rem;
    background-image: url("../images/slick-next.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
}

/* Layout - Structure and layout files.
========================================================================== */
/* -------------------->>> COMMON <<<-------------------- */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 10px;
}

body {
    background: #f4f0e5;
    font-family: var(--font-family-text);
    color: var(--text-color);
    font-size: var(--base-font-size);
    line-height: 2;
    overflow-x: hidden;
    font-weight: 500;
    letter-spacing: 0;
    width: 100%;
}
body.is_active {
    height: 100vh;
    overflow: hidden;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
body.is_active::after {
    content: "";
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.33);
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 99;
}

hr {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #000 -moz-use-text-color -moz-use-text-color;
    -o-border-image: none;
    border-image: none;
    border-style: solid none none;
    border-width: 0.2em 0 0 0;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 131rem;
    padding: 0 1.5rem;
    margin: 0 auto;
}

p {
    margin-bottom: 1.5rem;
}

input:focus {
    outline: none;
}

a img {
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}
a img:hover {
    opacity: 0.7;
}

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

iframe {
    width: 100%;
    vertical-align: middle;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.header__main {
    padding: 5rem 2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.header__main .logo {
    width: 48.3rem;
}
.header__main .navbar-brand {
    width: 6rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .header__main {
        padding: 4rem 3rem;
    }
    .header__main .logo {
        width: 48.3rem;
    }
    .header__main .navbar-brand {
        width: 6rem;
    }
}

.banner__main {
    position: relative;
}
.banner__main h1 {
    line-height: 0;
}
.banner__main h1 img {
    width: 100%;
}
.banner__main--btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 31vw;
    position: absolute;
    right: 1%;
    bottom: 11%;
}

.examples-box {
    padding-top: 28rem;
    position: relative;
    z-index: 9;
}
.examples-box::after {
    content: "";
    width: 68rem;
    height: 32rem;
    background-image: url("../images/examples-tt.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 5rem;
    left: calc((100vw - 118rem) / 2);
    z-index: -1;
}
.examples-box__main--items {
    padding: 0 2rem;
}
.examples-box__main--items main {
    display: block;
    background: #e9d7c9;
    padding: 6rem 4rem 0;
    border-radius: 4rem;
    position: relative;
}
.examples-box__main--items .labels {
    width: 7.9rem;
    height: 10.5rem;
    background-image: url("../images/labels.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
    color: #ffffff;
    font-size: 2.4rem;
    line-height: 1;
    padding-top: 1rem;
    position: absolute;
    top: 0;
    left: 4rem;
}
.examples-box__main--items .labels span {
    line-height: 1;
    font-size: 3.6rem;
    margin-top: 0.5rem;
}
.examples-box__main--items .head {
    margin-bottom: 4rem;
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    grid-template-columns: 1fr 20.5rem;
    padding: 1rem 8rem 1rem 4rem;
    background: #f4e9e3;
    border-radius: 9rem;
}
.examples-box__main--items .head__txt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.examples-box__main--items .head__txt--items {
    padding: 1.5rem 3rem 1.5rem;
    border-right: 4px dotted #cfc2ba;
}
.examples-box__main--items .head__txt--items:last-child {
    border: none;
    padding-left: 3rem;
    padding-right: 0;
}
.examples-box__main--items .head__txt--items .tt {
    margin-bottom: 2rem;
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 1rem;
    grid-template-columns: 3.7rem auto;
}
.examples-box__main--items .head__txt--items .tt::before {
    content: "";
    width: 3.7rem;
    height: 3.6rem;
    background-image: url("../images/user.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
}
.examples-box__main--items .head__txt--items .tt span {
    min-width: 13rem;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    background: #9c8484;
    line-height: 3.9rem;
    border-radius: 0.5rem 1rem 1rem 0.5rem;
    font-size: 2.4rem;
    color: #ffffff;
}
.examples-box__main--items .head__txt--items h3 {
    font-size: 3.6rem;
    line-height: 1;
}
.examples-box__main--items .head__txt--items h3 span {
    font-size: 2.4rem;
}
.examples-box__main--items .text {
    margin-bottom: 5rem;
    font-size: 3rem;
    line-height: 6rem;
}
.examples-box__main--items .text span {
    font-size: 3.6rem;
    border-bottom: 2px solid #333;
}
.examples-box__main--items .text font {
    font-size: 4rem;
    color: #e45954;
}
.examples-box__main--items .thumb {
    padding: 4rem 0;
    position: relative;
    z-index: 9;
}
.examples-box__main--items .thumb::after {
    content: "";
    width: calc(100% + 8rem);
    height: 100%;
    background: #ffffff;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
}
.examples-box__main--items .thumb h3 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 4.4rem;
}
.examples-box__main--items .thumb h3 span {
    position: relative;
    padding-bottom: 1rem;
    background-image: url("../images/dote.webp");
    background-position: center bottom;
    background-repeat: repeat-x;
}
.examples-box__main--items .thumb h3 span::before {
    content: "";
    width: 12.2rem;
    height: 10rem;
    background-image: url("../images/examples-icon.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -6rem;
    left: -14rem;
}

.these-box {
    padding-top: 22rem;
    padding-bottom: 12rem;
    background-image: url("../images/these-bg.webp");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
}
.these-box .head-box {
    text-align: center;
    margin-bottom: 7.5rem;
    position: relative;
}
.these-box .head-box::before {
    content: "";
    width: 19.2rem;
    height: 30.1rem;
    background-image: url("../images/icon-these.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}
.these-box .head-box h2 {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 4.8rem;
    line-height: 7.2rem;
    position: relative;
}
.these-box .head-box h2::after {
    content: "";
    width: 17.8rem;
    height: 15.7rem;
    background-image: url("../images/icon-these-1.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    top: 0;
    left: -21.5rem;
}
.these-box__main figure {
    margin-bottom: 6rem;
}
.these-box__main--txt {
    text-align: center;
}
.these-box__main--txt h3 {
    font-size: 4.8rem;
    line-height: 7.2rem;
    margin-bottom: 6rem;
}
.these-box__main--txt h3 span {
    font-size: 6rem;
    color: #f95e04;
    border-bottom: 3px solid #f95e04;
}
.these-box__main--txt p {
    margin-bottom: 10rem;
    font-size: 3rem;
    line-height: 4.5rem;
}
.these-box__small {
    padding-top: 22.5rem;
    position: relative;
}
.these-box__small::after {
    content: "";
    width: 13.3rem;
    height: 11.5rem;
    background-image: url("../images/icon-arows-dow.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.these-box__small--head {
    padding-right: 51rem;
    position: relative;
    margin-bottom: 10rem;
    text-align: center;
}
.these-box__small--head::after {
    content: "";
    width: 47.7rem;
    height: 54.7rem;
    background-image: url("../images/these-small-head.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -3rem;
    right: 0;
    z-index: -1;
}
.these-box__small--head h3 {
    margin-bottom: 6rem;
    font-size: 4.8rem;
    line-height: 7.2rem;
}
.these-box__small--head h3 span {
    font-size: 6rem;
    color: #f95e04;
    border-bottom: 3px solid #f95e04;
}
.these-box__small--head p {
    margin-bottom: 0;
    font-size: 3rem;
    line-height: 4.5rem;
}
.these-box__small--main {
    margin-bottom: 8rem;
    display: grid;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 2.5rem;
    grid-template-columns: repeat(3, 1fr);
}
.these-box__small--main .items {
    background: #f7d880;
    padding: 2rem 2rem 4rem;
    border-radius: 4rem;
}
.these-box__small--main .items figure {
    margin-bottom: 3rem;
}
.these-box__small--main .items h3 {
    font-size: 3rem;
    line-height: 4rem;
    color: #503a1f;
    margin-bottom: 3rem;
    text-align: center;
    min-height: 8rem;
}
.these-box__small--main .items p {
    margin-bottom: 0;
    font-size: 1.8rem;
}
.these-box__small--list {
    margin-bottom: 6rem;
    background: #f1846d;
    border-radius: 4rem;
    padding: 5rem 2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}
.these-box__small--list::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 2rem solid transparent;
    border-right: 2rem solid transparent;
    border-top: 2rem solid #f1846d;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 100%);
    -ms-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
}
.these-box__small--list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 11rem;
    font-size: 4rem;
    line-height: 5rem;
    color: #ffffff;
}
.these-box__small--list ul li {
    position: relative;
}
.these-box__small--list ul li::after {
    content: "";
    width: 3.5rem;
    height: 4.1rem;
    background-image: url("../images/icon-arows-right.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: -7.5rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.these-box__small--list ul li:last-child::after {
    display: none;
}
.these-box__small--txt {
    text-align: center;
    font-size: 3.6rem;
}

.adult-box {
    padding: 12rem 0;
    background-image: url("../images/adult-bg.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
.adult-box .head-box {
    text-align: center;
    margin-bottom: 12rem;
}
.adult-box .head-box h2 {
    font-size: 4.8rem;
    line-height: 7.2rem;
}
.adult-box .head-box h2 span {
    font-size: 6rem;
    color: #f95e04;
}
.adult-box__main--thumb {
    width: 100%;
    max-width: 84rem;
    margin: 0 auto 8rem;
    position: relative;
}
.adult-box__main--thumb::after {
    content: "";
    width: 58.2rem;
    height: 46.6rem;
    background-image: url("../images/adult-icon.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -7rem;
    left: -22rem;
}
.adult-box__main h3 {
    margin-bottom: 7rem;
    text-align: center;
    font-size: 4.8rem;
    line-height: 7.2rem;
}
.adult-box__main h3 span {
    font-size: 6rem;
    line-height: 10rem;
    color: #f95e04;
    border-bottom: 3px solid #f95e04;
}
.adult-box__main--list {
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8rem;
    grid-template-columns: 56rem 1fr;
}
.adult-box__main--list .text p {
    margin-bottom: 3.5rem;
    line-height: 3.6rem;
}
.adult-box__main--list .text p span {
    font-size: 2.4rem;
    color: #f95e04;
}
.adult-box__main--list .text p:last-child {
    margin-bottom: 0;
}
.adult-box__please {
    position: relative;
    margin-top: 27.5rem;
    background: #ffffff;
    border-radius: 4rem;
    padding: 6rem 6.4rem;
}
.adult-box__please::before {
    content: "";
    width: 13.3rem;
    height: 11.5rem;
    background-image: url("../images/icon-arows-dow.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -19.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.adult-box__please::after {
    content: "";
    width: 35.9rem;
    height: 58.9rem;
    background-image: url("../images/adult-please-icon.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: -28.7rem;
}
.adult-box__please--head {
    text-align: center;
    margin-bottom: 4rem;
}
.adult-box__please--head span {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 50rem;
    height: 6.8rem;
    font-size: 2.4rem;
    color: #ffffff;
    background: #f9c01b;
    border-radius: 3.4rem;
    margin-bottom: 3rem;
}
.adult-box__please--head h3 {
    font-size: 4.8rem;
    line-height: 7.2rem;
}
.adult-box__please figure {
    margin-bottom: 4rem;
}
.adult-box__please--txt {
    margin-bottom: 4rem;
}
.adult-box__please--txt span {
    color: #f95e04;
}
.adult-box__please--list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-right: calc(-1 * 0.5rem);
}
.adult-box__please--list .items {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% / 2) - 0.5rem);
    background: #f4f0e5;
    padding: 2rem 0;
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 2rem;
    grid-template-columns: 17.3rem auto;
}
.adult-box__please--list .items:last-child {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    width: 100%;
}
.adult-box__please--list .items__labels {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 4.9rem;
    background: #f9c01b;
    font-size: 2rem;
    color: #ffffff;
}
.adult-box__please--list .items__info {
    font-size: 2rem;
}

.treatment-box {
    background-image: url("../images/treatment-bg.webp");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding: 12rem 0;
    position: relative;
    overflow: hidden;
}
.treatment-box::after {
    content: "";
    width: 178.2rem;
    height: 171.9rem;
    background-image: url("../images/treatment-bg-2.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 3rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
}
.treatment-box .head-box {
    text-align: center;
    margin-bottom: 10rem;
    position: relative;
    z-index: 9;
}
.treatment-box .head-box h2 {
    margin-bottom: 8rem;
    font-size: 4.8rem;
    line-height: 7.2rem;
}
.treatment-box .head-box h2 span {
    color: #f95e04;
}
.treatment-box__main {
    position: relative;
    z-index: 9;
}
.treatment-box__main--list {
    margin-bottom: 8rem;
    display: grid;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 4rem;
    grid-template-columns: repeat(3, 1fr);
}
.treatment-box__main--list .items {
    position: relative;
}
.treatment-box__main--list .items__labels {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 14.6rem;
    height: 11.9rem;
    background-image: url("../images/treatment-icon-1.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    z-index: 9;
    top: -4rem;
    right: -4rem;
    font-size: 4rem;
    color: #ffffff;
    line-height: 1;
}
.treatment-box__main--list .items__labels main {
    margin-top: -1.5rem;
}
.treatment-box__main--list .items__labels span {
    font-size: 3rem;
}
.treatment-box__main--list .items__labels small {
    font-size: 2rem;
}
.treatment-box__main--list .items__txt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: calc(100% - 5rem);
    height: 10rem;
    font-size: 3rem;
    line-height: 4rem;
    color: #f95e04;
    background: #ffffff;
    border-radius: 2.5rem;
    position: absolute;
    top: 2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.treatment-box__main--list .items p {
    position: absolute;
    left: 0;
    bottom: 2rem;
    width: 100%;
    padding: 0 3.5rem;
    text-align: center;
    font-size: 2.2rem;
    line-height: 3.2rem;
}
.treatment-box__main--post {
    margin-bottom: 6rem;
    display: grid;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 6rem;
    grid-template-columns: 1fr 69rem;
}
.treatment-box__main--post .text {
    padding-top: 5rem;
}
.treatment-box__main--post .text h3 {
    margin-bottom: 10rem;
    font-size: 3.6rem;
    line-height: 6rem;
    text-align: center;
    position: relative;
    z-index: 9;
}
.treatment-box__main--post .text h3::before {
    content: "";
    width: 12.1rem;
    height: 18.8rem;
    background-image: url("../images/icon-these.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}
.treatment-box__main--post .text p {
    margin-bottom: 3.5rem;
}
.treatment-box__main--post .text p:last-child {
    margin-bottom: 0;
}
.treatment-box__main--like {
    background: #f1846d;
    border-radius: 4rem;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7rem;
    padding: 4rem 7.5rem;
}
.treatment-box__main--like::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 2rem solid transparent;
    border-right: 2rem solid transparent;
    border-bottom: 2rem solid #f1846d;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
}
.treatment-box__main--like .like figure {
    width: 7.2rem;
    margin: 0 auto 1rem;
}
.treatment-box__main--like .like h3 {
    font-size: 3.6rem;
    line-height: 5.4rem;
    color: #ffffff;
}
.treatment-box__main--like ul li {
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3rem;
    grid-template-columns: 4.8rem 1fr;
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 2rem;
}
.treatment-box__main--like ul li::before {
    content: "";
    width: 4.8rem;
    height: 4.8rem;
    background-image: url("../images/icon-check.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
}
.treatment-box__main--like ul li:last-child {
    margin-bottom: 0;
}

.even-box {
    padding: 13rem 0 17rem;
    overflow: hidden;
}
.even-box .head-box {
    text-align: center;
    margin-bottom: 4rem;
}
.even-box .head-box h2 {
    margin-bottom: 8rem;
    font-size: 4.8rem;
    line-height: 7.2rem;
}
.even-box .head-box h2 span {
    font-size: 6rem;
    color: #f95e04;
}
.even-box__main {
    margin-bottom: 8rem;
}
.even-box__main--thumb {
    width: 100%;
    max-width: 110.2rem;
    margin: 0 auto 5rem;
    position: relative;
}
.even-box__main--thumb .txt {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    gap: 33.3rem;
    grid-template-columns: repeat(2, 1fr);
}
.even-box__main--thumb .txt__items {
    padding-top: 21rem;
}
.even-box__main--thumb .txt__items h3 {
    font-size: 3.6rem;
    line-height: 1;
    margin-bottom: 3rem;
}
.even-box__main--thumb .txt__items p {
    text-align: center;
    margin-bottom: 0;
    line-height: 2.7rem;
}
.even-box__main h3 {
    text-align: center;
    margin-bottom: 8rem;
    font-size: 4.8rem;
    line-height: 7.2rem;
}
.even-box__main h3 span {
    font-size: 4rem;
    color: #f95e04;
}
.even-box__main h3 small {
    font-size: 3.6rem;
}
.even-box__main .push {
    position: relative;
}
.even-box__main .push__txt {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    gap: 24rem;
    grid-template-columns: repeat(2, 1fr);
}
.even-box__main .push__txt--items {
    padding-top: 32.4rem;
    font-size: 4rem;
    line-height: 1;
    text-align: center;
}
.even-box__please {
    margin-bottom: 15rem;
    position: relative;
    background: #ffffff;
    border-radius: 4rem;
    padding: 6rem 6.4rem;
}
.even-box__please::before {
    content: "";
    width: 180.4rem;
    height: 102.6rem;
    background-image: url("../images/even-please.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -6rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
}
.even-box__please::after {
    content: "";
    width: 33.7rem;
    height: 52.3rem;
    background-image: url("../images/even-please-icon.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: -28rem;
}
.even-box__please--head {
    text-align: center;
    margin-bottom: 4rem;
}
.even-box__please--head span {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 50rem;
    height: 6.8rem;
    font-size: 2.4rem;
    color: #ffffff;
    background: #f9c01b;
    border-radius: 3.4rem;
    margin-bottom: 3rem;
}
.even-box__please--head h2 {
    font-size: 4.8rem;
    line-height: 7.2rem;
}
.even-box__please figure {
    margin-bottom: 4rem;
}
.even-box__please--txt {
    margin-bottom: 4rem;
}
.even-box__please--txt span {
    color: #f95e04;
}
.even-box__please--list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-right: calc(-1 * 0.5rem);
}
.even-box__please--list .items {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% / 2) - 0.5rem);
    background: #f4f0e5;
    padding: 2rem 0;
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 2rem;
    grid-template-columns: 17.3rem auto;
}
.even-box__please--list .items:last-child {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    width: 100%;
}
.even-box__please--list .items__labels {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 4.9rem;
    background: #f9c01b;
    font-size: 2rem;
    color: #ffffff;
}
.even-box__please--list .items__info {
    font-size: 2rem;
}
.even-box__post {
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8rem;
    grid-template-columns: 56rem 1fr;
    position: relative;
    z-index: 9;
}
.even-box__post::after {
    content: "";
    width: 60.1rem;
    height: 57.5rem;
    background-image: url("../images/even-post-icon.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: -21.3rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1;
}
.even-box__post--txt h3 {
    margin-bottom: 7rem;
    font-size: 4rem;
    line-height: 6rem;
}
.even-box__post--txt h3 span {
    font-size: 4.6rem;
    color: #f95e04;
}
.even-box__post--txt p {
    margin-bottom: 0;
}

.receive-box__main {
    position: relative;
}
.receive-box__main--txt {
    font-size: 2.6vw;
    line-height: 1.3;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -91%);
    -ms-transform: translate(-50%, -91%);
    transform: translate(-50%, -91%);
    text-align: center;
}

.blog-box {
    padding: 12rem 0;
}
.blog-box .head-box {
    text-align: center;
    margin-bottom: 8rem;
}
.blog-box .head-box h2 {
    margin-bottom: 8rem;
    padding-bottom: 3rem;
    font-size: 4.8rem;
    position: relative;
}
.blog-box .head-box h2::after {
    content: "";
    width: 10rem;
    height: 4px;
    background: #f9c01b;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.blog-box .head-box h2 span {
    color: #ef8200;
}
.blog-box .head-box p {
    margin-bottom: 0;
}
.blog-box__main {
    margin-bottom: 8rem;
}
.blog-box__main .slick-list {
    margin: 0 -3rem;
}
.blog-box__main--items {
    padding: 0 3rem;
}
.blog-box__main--items figure {
    margin-bottom: 2.3rem;
}
.blog-box__main--items .info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 3rem;
}
.blog-box__main--items .info span {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0 2rem;
    background: #f19ba1;
    line-height: 3.3rem;
    border-radius: 1.7rem;
    font-size: 1.5rem;
    color: #ffffff;
}
.blog-box__main--items .info time {
    font-size: 1.6rem;
    line-height: 3.3rem;
    color: #6f5b43;
    padding-left: 2rem;
    border-left: 2px solid #d5cdb1;
}
.blog-box__main--items h3 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.6rem;
    color: #6f5b43;
}
.blog-box__main--items p {
    margin-bottom: 0;
}
.blog-box__main--items:nth-child(2) .info span {
    background: #e87f69;
}
.blog-box__main--items:nth-child(3) .info span {
    background: #f9c01b;
}
.blog-box__btn {
    text-align: center;
}

.orthodontics-box {
    padding: 13.2rem 0 18rem;
    background-image: url("../images/orthodontics-bg.webp");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
.orthodontics-box .head-box {
    text-align: center;
    margin-bottom: 8rem;
}
.orthodontics-box .head-box h2 {
    margin-bottom: 7rem;
    font-size: 4.8rem;
    line-height: 7.2rem;
}
.orthodontics-box .head-box h2 span {
    font-size: 6rem;
    color: #f95e04;
}
.orthodontics-box .head-box p {
    margin-bottom: 0;
}
.orthodontics-box__main--items {
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4rem;
    grid-template-columns: 1fr 59.5rem;
}
.orthodontics-box__main--items .text h3 {
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 2.2rem;
    grid-template-columns: 10.9rem auto;
    margin-bottom: 4rem;
    font-size: 3.6rem;
    line-height: 5.6rem;
}
.orthodontics-box__main--items .text h3::before {
    content: "";
    width: 10.9rem;
    height: 11.2rem;
    background-image: url("../images/orthodontics-num-1.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
}
.orthodontics-box__main--items .text p {
    margin-bottom: 0;
}
.orthodontics-box__main--items:nth-child(2) {
    grid-template-columns: 55rem 1fr;
    gap: 9rem;
    position: relative;
}
.orthodontics-box__main--items:nth-child(2)::after {
    content: "";
    width: 24rem;
    height: 18rem;
    background-image: url("../images/orthodontics-icon.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    bottom: 6rem;
}
.orthodontics-box__main--items:nth-child(2) figure {
    margin-left: -26rem;
}
.orthodontics-box__main--items:nth-child(2) .text h3::before {
    background-image: url("../images/orthodontics-num-2.webp");
}
.orthodontics-box__main--items:nth-child(3) {
    grid-template-columns: 1fr 56rem;
    gap: 8rem;
}
.orthodontics-box__main--items:nth-child(3) .text h3::before {
    background-image: url("../images/orthodontics-num-3.webp");
}

.doctor-box {
    padding: 14rem 0 15rem;
    overflow: hidden;
    position: relative;
}
.doctor-box .head-box {
    text-align: center;
    margin-bottom: 4.5rem;
    padding-bottom: 3rem;
    position: relative;
}
.doctor-box .head-box::after {
    content: "";
    width: 10rem;
    height: 4px;
    background: #f9c01b;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.doctor-box__main {
    display: grid;
    -webkit-box-align: end;
    -webkit-align-items: end;
    -ms-flex-align: end;
    align-items: end;
    gap: 4rem;
    grid-template-columns: 46rem 1fr;
    margin-bottom: 10rem;
}
.doctor-box__main figure {
    margin-left: -29.5rem;
    margin-bottom: -4rem;
}
.doctor-box__main--txt {
    padding: 6rem 0;
}
.doctor-box__main--txt::after {
    content: "";
    width: calc(100vw - 16rem);
    height: 61rem;
    background: #f5e2af;
    border-radius: 0 4rem 4rem 0;
    position: absolute;
    top: 49rem;
    left: 0;
    z-index: -1;
}
.doctor-box__main--txt p {
    margin-bottom: 6rem;
    font-size: 3rem;
    line-height: 2;
}
.doctor-box__main--txt p:last-child {
    margin-bottom: 0;
}
.doctor-box__list {
    display: grid;
    gap: 8rem;
    grid-template-columns: repeat(2, 1fr);
}
.doctor-box__list--items h3 {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    font-size: 3rem;
    line-height: 4.6rem;
    border-bottom: 2px solid #dacfc0;
}
.doctor-box__list--items p {
    margin-bottom: 0;
    font-size: 2.4rem;
    line-height: 2;
}
.doctor-box__list--items ul li {
    font-size: 2.4rem;
    line-height: 2;
    padding-left: 3.5rem;
    position: relative;
}
.doctor-box__list--items ul li::before {
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    background: #f9c01b;
    border-radius: 50%;
    position: absolute;
    top: 1.7rem;
    left: 0;
}

.step-box {
    padding: 12rem 0;
    background: #f5f1e9;
}
.step-box .head-box {
    display: grid;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6rem;
    grid-template-columns: 11.4rem auto;
    margin-bottom: 10rem;
}
.step-box .head-box::before {
    content: "";
    width: 11.4rem;
    height: 15.8rem;
    background-image: url("../images/step-head.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
}
.step-box .head-box h2 {
    font-size: 4.8rem;
    line-height: 6.8rem;
}
.step-box .head-box h2 span {
    font-size: 6rem;
}
.step-box__main {
    counter-reset: section;
}
.step-box__main--items {
    padding-bottom: 8rem;
    display: grid;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 4.5rem;
    grid-template-columns: 1fr 48rem;
    padding-left: 17rem;
    position: relative;
}
.step-box__main--items::before {
    counter-increment: section;
    content: "STEP" counter(section);
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 13rem;
    height: 5rem;
    background: #f9c01b;
    border-radius: 2.5rem;
    font-size: 2.2rem;
    color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}
.step-box__main--items::after {
    content: "";
    width: 4rem;
    height: 100%;
    background: #f5e2af;
    position: absolute;
    top: 0;
    left: 4.5rem;
}
.step-box__main--items:last-child {
    padding-bottom: 0;
}
.step-box__main--items:last-child::after {
    -webkit-clip-path: polygon(100% 0, 100% 95%, 50% 100%, 0 95%, 0 0);
    clip-path: polygon(100% 0, 100% 95%, 50% 100%, 0 95%, 0 0);
}
.step-box__main--items .text h3 {
    margin-bottom: 6rem;
    font-size: 4.2rem;
    line-height: 6.2rem;
}
.step-box__main--items .text p {
    font-size: 2rem;
    line-height: 2;
    margin-bottom: 14rem;
}
.step-box__main--items .text p:last-child {
    margin-bottom: 0;
}
.step-box__main--items .text img {
    width: 100%;
    max-width: 56.2rem;
}
.step-box__main--items .text .btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
}
.step-box__main--items .text .btn::after {
    content: "期間限定";
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding-top: 0.2rem;
    width: 18rem;
    height: 6.7rem;
    background-image: url("../images/step-btn-icon.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    font-size: 2.4rem;
    color: #ffffff;
    position: absolute;
    left: 0;
    top: -8rem;
}
.step-box__main--items .text .btn__txt {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.7rem;
    padding-left: 16.7rem;
}
.step-box__main--items .text .btn__txt p {
    margin-bottom: 0;
    font-size: 3rem;
    line-height: 4rem;
    letter-spacing: 0.2em;
    color: #ffffff;
}
.step-box__main--items .text .btn__txt span {
    font-size: 3rem;
    color: #ffffff;
}
.step-box__main--items .text .btn__txt span font {
    font-size: 10rem;
    color: #ffd802;
    font-weight: 700;
}

.cta-box {
    padding: 12rem 0;
    background-image: url("../images/cta-bg.webp");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.cta-box__main h2 {
    text-align: center;
    margin-bottom: 6rem;
    font-size: 4rem;
    line-height: 6rem;
}
.cta-box__main h2 span {
    font-size: 4.8rem;
    color: #f95e04;
}
.cta-box__main p {
    margin-bottom: 6rem;
    text-align: center;
    font-size: 3rem;
    line-height: 2;
}
.cta-box__main--btn {
    display: grid;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4.7rem;
    grid-template-columns: 42.1rem 59rem;
}

.costs-box {
    padding: 12rem 0;
}
.costs-box .head-box {
    text-align: center;
    margin-bottom: 7rem;
    padding-bottom: 3rem;
    position: relative;
}
.costs-box .head-box::after {
    content: "";
    width: 10rem;
    height: 4px;
    background: #f9c01b;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.costs-box__main {
    margin-bottom: 12rem;
}
.costs-box__main--items {
    margin-bottom: 6rem;
}
.costs-box__main--items:last-child {
    margin-bottom: 0;
}
.costs-box__main--items h3 {
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2rem;
    grid-template-columns: 6.9rem auto;
    margin-bottom: 4rem;
    font-size: 4rem;
    line-height: 6rem;
    color: #6f5b43;
}
.costs-box__main--items h3::before {
    content: "";
    width: 6.9rem;
    height: 6.7rem;
    background-image: url("../images/costs-head.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
}
.costs-box__main--items .list {
    border: 2px solid #f9c01b;
    border-radius: 2rem;
    overflow: hidden;
    background: #ffffff;
}
.costs-box__main--items .list__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.costs-box__main--items .list__items--labels {
    padding: 2rem;
    background: #f9c01b;
    font-size: 2.6rem;
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}
.costs-box__main--items .list__items--info {
    text-align: center;
    padding: 2rem;
    border-bottom: 2px solid #f9c01b;
    font-size: 2.6rem;
}
.costs-box__main--items .list__items--info span {
    font-size: 3.2rem;
}
.costs-box__main--items .list__items:last-child .list__items--labels,
.costs-box__main--items .list__items:last-child .list__items--info {
    border-bottom: none;
}
.costs-box__payment--head {
    text-align: center;
    margin-bottom: 8rem;
}
.costs-box__payment--head h3 {
    padding-bottom: 5rem;
    margin-bottom: 6rem;
    font-size: 4.8rem;
    color: #6f5b43;
    position: relative;
}
.costs-box__payment--head h3::after {
    content: "";
    width: 8.2rem;
    height: 1.4rem;
    background-image: url("../images/icon-dote.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.costs-box__payment--head p {
    margin-bottom: 0;
}
.costs-box__payment--main .items {
    margin-bottom: 8rem;
    overflow: hidden;
    border-radius: 2rem 2rem 0 0;
}
.costs-box__payment--main .items:last-child {
    margin-bottom: 0;
    border-radius: 2rem;
    border: 2px solid #f7b899;
}
.costs-box__payment--main .items h3 {
    line-height: 9rem;
    text-align: center;
    background: #f9c01b;
    font-size: 3.6rem;
    color: #ffffff;
}
.costs-box__payment--main .items__main {
    background: #ffffff;
    padding: 6rem 8rem 9rem;
}
.costs-box__payment--main .items__main--head {
    margin-bottom: 5rem;
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 4rem;
    grid-template-columns: 24.1rem auto;
}
.costs-box__payment--main .items__main--head .text__txt {
    margin-bottom: 3rem;
}
.costs-box__payment--main .items__main--head .text__labels {
    margin-bottom: 4rem;
}
.costs-box__payment--main .items__main--head .text__labels span {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    width: 100%;
    max-width: 49rem;
    height: 4rem;
    background: #ea6e00;
    border-radius: 2.5rem;
    font-size: 2.4rem;
    color: #ffffff;
    position: relative;
}
.costs-box__payment--main .items__main--head .text__labels span::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 0.9rem solid transparent;
    border-right: 0.9rem solid transparent;
    border-top: 1.2rem solid #ea6e00;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 100%);
    -ms-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
}
.costs-box__payment--main .items__main--head .text__price {
    display: grid;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 2.4rem;
    grid-template-columns: 30rem 1fr;
}
.costs-box__payment--main .items__main--head .text__price--labels {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 30rem;
    height: 6rem;
    border-radius: 1rem;
    background: #ffebb6;
    font-size: 3.2rem;
}
.costs-box__payment--main .items__main--head .text__price--txt {
    text-align: right;
}
.costs-box__payment--main .items__main--head .text__price--txt p {
    font-size: 2.8rem;
    line-height: 6rem;
    margin-bottom: 0;
}
.costs-box__payment--main .items__main--head .text__price--txt p span {
    font-size: 4.8rem;
}
.costs-box__payment--main .items__main--head .text__price--txt p small {
    font-size: 2rem;
}
.costs-box__payment--main .items__main--head .text__price--txt p:last-child {
    font-size: 1.8rem;
    margin-top: -2rem;
}
.costs-box__payment--main .items__main--price {
    margin-bottom: 3rem;
}
.costs-box__payment--main .items__main--price .items-costs {
    margin-bottom: 5rem;
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3rem;
    grid-template-columns: 12.1rem 1fr;
}
.costs-box__payment--main .items__main--price .items-costs:last-child {
    margin-bottom: 0;
}
.costs-box__payment--main .items__main--price .items-costs__labels {
    width: 12.1rem;
    height: 12.1rem;
    background-image: url("../images/costs-icon.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}
.costs-box__payment--main .items__main--price .items-costs__labels p {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 1.8rem;
    line-height: 2.8rem;
}
.costs-box__payment--main .items__main--price .items-costs__labels p span {
    font-size: 3.6rem;
}
.costs-box__payment--main .items__main--price .items-costs__labels p font {
    font-size: 2.4rem;
}
.costs-box__payment--main .items__main--price .items-costs__tabels {
    border-radius: 1rem;
    border: 2px solid #f7b899;
    overflow: hidden;
}
.costs-box__payment--main .items__main--price .items-costs__tabels table {
    width: 100%;
}
.costs-box__payment--main .items__main--price .items-costs__tabels table tr th {
    background: #dba300;
    font-size: 2.4rem;
    color: #ffffff;
    padding: 0.6rem 2rem;
}
.costs-box__payment--main .items__main--price .items-costs__tabels table tr th:first-child {
    width: 26rem;
    border-right: 2px solid #ffffff;
}
.costs-box__payment--main .items__main--price .items-costs__tabels table tr td {
    padding: 0 3.5rem;
    vertical-align: middle;
}
.costs-box__payment--main .items__main--price .items-costs__tabels table tr td:first-child {
    padding: 0.6rem 1rem;
    text-align: center;
    color: #ffffff;
    font-size: 2.6rem;
    background: #f9c01b;
}
.costs-box__payment--main .items__main--price .items-costs__tabels table tr td:first-child span {
    font-size: 3.6rem;
}
.costs-box__payment--main .items__main--price .items-costs__tabels table tr td ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3rem;
}
.costs-box__payment--main .items__main--price .items-costs__tabels table tr td ul li {
    font-size: 3.6rem;
    letter-spacing: 0.075em;
}
.costs-box__payment--main .items__main--price .items-costs__tabels table tr td ul li span {
    font-size: 2.6rem;
}
.costs-box__payment--main .items__main--price .items-costs__tabels table tr td ul li:last-child {
    font-size: 2.2rem;
}
.costs-box__payment--main .items__main--price .items-costs__tabels table tr td ul li:last-child span {
    font-size: 3rem;
}
.costs-box__payment--main .items__main--note {
    text-align: right;
    font-size: 1.6rem;
}

.clinic-box {
    padding: 10rem 0;
    background-image: url("../images/clinic-bg.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.clinic-box__main--head {
    margin-bottom: 8rem;
}
.clinic-box__main--head .logo {
    width: 100%;
    max-width: 57.8rem;
    margin: 0 auto 6rem;
}
.clinic-box__main--head .btn {
    margin-bottom: 4rem;
    text-align: center;
}
.clinic-box__main--head .btn .btn-primary {
    border-radius: 0;
}
.clinic-box__main--head p {
    text-align: center;
    margin-bottom: 4rem;
}
.clinic-box__main--head ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 7.5rem;
}
.clinic-box__main--head ul li {
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 2rem;
    grid-template-columns: repeat(2, auto);
}
.clinic-box__main--head ul li::before {
    content: "";
    width: 2.2rem;
    height: 3rem;
    background-image: url("../images/icon-map.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
}
.clinic-box__main--head ul li:last-child::before {
    content: "";
    width: 2.8rem;
    height: 2.4rem;
    background-image: url("../images/icon-car.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
}
.clinic-box__main--main {
    padding: 0 4rem;
    display: grid;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 8rem;
    grid-template-columns: 47.3rem 1fr;
}
.clinic-box__main--main .btn .tel {
    display: block;
    width: 33.7rem;
    margin: 0 auto 4rem;
}
.clinic-box__main--main .calenda {
    display: grid;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 3rem;
}
.clinic-box__main--main .calenda p {
    margin-bottom: 0;
    font-size: 1.6rem;
    line-height: 2.6rem;
}
.clinic-box__main--main .calenda p span {
    color: #f9c01b;
}

.floating-box {
    position: fixed;
    top: 18rem;
    right: 0;
    z-index: 999;
    width: 11rem;
}
.floating-box__main {
    display: grid;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 2rem;
}

.footer {
    background: var(--background-footer);
}
.footer__main {
    text-align: center;
    padding: 5rem 0;
    font-size: 1.6rem;
    line-height: 1;
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer {
        margin-bottom: 10rem;
    }
    .footer__main {
        text-align: center;
        font-size: 2.4rem;
    }
}

/* layout - Responsive .
========================================================================== */
.sp {
    display: none;
}

@media screen and (max-width: 1290px) and (min-width: 769px) {
    .step-box__main--items .text .btn__txt {
        gap: 1vw;
        padding-left: 12vw;
    }
    .step-box__main--items .text .btn__txt p {
        font-size: 2.4vw;
    }
    .step-box__main--items .text .btn__txt span {
        font-size: 2.4vw;
    }
    .step-box__main--items .text .btn__txt span font {
        font-size: 7.8vw;
    }
}

@media screen and (max-width: 1200px) and (min-width: 769px) {
    html {
        font-size: 9px;
    }
}

@media screen and (max-width: 1100px) and (min-width: 769px) {
    .step-box__main--items .text .btn__txt p {
        font-size: 2.2vw;
    }
    .step-box__main--items .text .btn__txt span {
        font-size: 2.2vw;
    }
    .step-box__main--items .text .btn__txt span font {
        font-size: 7.6vw;
    }
}

@media screen and (max-width: 1050px) and (min-width: 769px) {
    html {
        font-size: 8px;
    }
}

@media screen and (max-width: 991px) and (min-width: 769px) {
    html {
        font-size: 7px;
    }
}

@media screen and (max-width: 850px) and (min-width: 769px) {
    .step-box__main--items .text .btn__txt p {
        font-size: 1.8vw;
    }
    .step-box__main--items .text .btn__txt span {
        font-size: 1.8vw;
    }
    .step-box__main--items .text .btn__txt span font {
        font-size: 7.2vw;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 1.3333333vw;
    }
    :root {
        /* size */
        --base-font-size: 3rem;
        --h2-font-size: 6rem;
        --h3-font-size: 2.6rem;
    }
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    .container {
        padding: 0 3rem;
    }
    .banner__main--btn {
        width: 63rem;
        right: 50%;
        bottom: 5rem;
        -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
        transform: translateX(50%);
    }
    .examples-box {
        padding-top: 34.3rem;
        overflow: hidden;
    }
    .examples-box::after {
        width: 69rem;
        height: 40.8rem;
        background-image: url("../images/examples-tt_sp.webp");
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: contain;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .examples-box__main {
        padding-bottom: 5rem;
    }
    .examples-box__main .slick-list {
        padding: 0 !important;
    }
    .examples-box__main .slick-arrow {
        top: auto;
        bottom: 0;
    }
    .examples-box__main--items {
        padding: 0 3rem;
    }
    .examples-box__main--items main {
        padding: 4rem 2.9rem 0;
    }
    .examples-box__main--items .labels {
        width: 5.7rem;
        height: 7.6rem;
        font-size: 1.7rem;
        left: 2.9rem;
    }
    .examples-box__main--items .labels span {
        font-size: 2.5rem;
    }
    .examples-box__main--items .head {
        margin-bottom: 3rem;
        grid-template-columns: 1fr 14.7rem;
        padding: 0.5rem 3.4rem 0.5rem 3rem;
        border-radius: 6.5rem;
    }
    .examples-box__main--items .head__txt--items {
        padding: 1rem 2.5rem;
    }
    .examples-box__main--items .head__txt--items:last-child {
        border: none;
    }
    .examples-box__main--items .head__txt--items .tt {
        margin-bottom: 1.5rem;
        gap: 0.7rem;
        grid-template-columns: 2.6rem auto;
    }
    .examples-box__main--items .head__txt--items .tt::before {
        width: 2.6rem;
        height: 2.6rem;
    }
    .examples-box__main--items .head__txt--items .tt span {
        min-width: 9.3rem;
        line-height: 2.8rem;
        font-size: 1.7rem;
    }
    .examples-box__main--items .head__txt--items h3 {
        font-size: 2.5rem;
    }
    .examples-box__main--items .head__txt--items h3 span {
        font-size: 1.8rem;
    }
    .examples-box__main--items .text {
        margin-bottom: 3.5rem;
        font-size: 2.1rem;
        line-height: 4.3rem;
    }
    .examples-box__main--items .text span {
        font-size: 2.5rem;
    }
    .examples-box__main--items .text font {
        font-size: 2.8rem;
    }
    .examples-box__main--items .thumb {
        padding: 3rem 0;
    }
    .examples-box__main--items .thumb::after {
        width: calc(100% + 5.8rem);
    }
    .examples-box__main--items .thumb h3 {
        margin-bottom: 3rem;
        font-size: 3.1rem;
    }
    .examples-box__main--items .thumb h3 span::before {
        width: 8.9rem;
        height: 7.2rem;
        top: -4rem;
        left: -10rem;
    }
    .these-box {
        padding-top: 18rem;
        background-image: url("../images/these-bg_sp.webp");
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: 100% auto;
    }
    .these-box .head-box {
        margin-bottom: -5rem;
    }
    .these-box .head-box::before {
        width: 14.5rem;
        height: 22.6rem;
    }
    .these-box .head-box h2 {
        font-size: 4.6rem;
    }
    .these-box .head-box h2::after {
        width: 9rem;
        height: 7.9rem;
        margin-top: 6rem;
    }
    .these-box__main figure {
        margin: 0 -3rem 12rem;
    }
    .these-box__main--txt h3 {
        font-size: 4.6rem;
    }
    .these-box__main--txt p {
        margin-bottom: 6rem;
    }
    .these-box__small {
        padding-top: 17rem;
    }
    .these-box__small--head {
        padding-right: 0;
        margin-bottom: 0;
    }
    .these-box__small--head::after {
        display: block;
        margin: 0 auto -7rem;
        position: static;
        top: auto;
        right: auto;
    }
    .these-box__small--head h3 span {
        font-size: 6rem;
        color: #f95e04;
        border-bottom: 3px solid #f95e04;
    }
    .these-box__small--head p {
        margin: 0 -2rem 6rem;
        font-size: 3rem;
        line-height: 4.5rem;
    }
    .these-box__small--main {
        position: relative;
        z-index: 9;
        gap: 6rem;
        grid-template-columns: repeat(1, 1fr);
    }
    .these-box__small--main .items {
        padding: 3.4rem 3.4rem 6.8rem;
    }
    .these-box__small--main .items figure {
        margin-bottom: 5rem;
    }
    .these-box__small--main .items h3 {
        font-size: 5rem;
        line-height: 6.7rem;
        margin-bottom: 4rem;
        min-height: auto;
    }
    .these-box__small--main .items p {
        font-size: 3rem;
        line-height: 4.5rem;
    }
    .these-box__small--list {
        padding: 8rem 2rem;
    }
    .these-box__small--list ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 9rem;
        font-size: 4.8rem;
    }
    .these-box__small--list ul li {
        position: relative;
    }
    .these-box__small--list ul li::after {
        width: 4.1rem;
        height: 3.5rem;
        background-image: url("../images/icon-arows-dows.webp");
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: contain;
        top: auto;
        bottom: -6rem;
        right: 50%;
        -webkit-transform: translate(50%, 0);
        -ms-transform: translate(50%, 0);
        transform: translate(50%, 0);
    }
    .these-box__small--list ul li:last-child::after {
        display: none;
    }
    .these-box__small--txt {
        text-align: center;
        font-size: 3.6rem;
    }
    .adult-box {
        padding: 12rem 0 54rem;
        background: none;
        position: relative;
        overflow: visible;
    }
    .adult-box::after {
        content: "";
        width: 61rem;
        height: 45.8rem;
        background-image: url("../images/adult-please-icon-2.webp");
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        left: 2.5rem;
        bottom: -20rem;
        z-index: -1;
    }
    .adult-box .head-box {
        margin: 0 -2rem 13rem;
    }
    .adult-box .head-box h2 {
        font-size: 4.8rem;
        line-height: 7.2rem;
    }
    .adult-box .head-box h2 span {
        font-size: 6rem;
        color: #f95e04;
    }
    .adult-box__main--thumb {
        margin: 0 auto 7rem;
    }
    .adult-box__main--thumb::before {
        content: "";
        width: 72rem;
        height: 79.3rem;
        background-image: url("../images/adult-icon-2.webp");
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: 17.7rem;
        left: 0;
        z-index: -1;
    }
    .adult-box__main--thumb::after {
        width: 47.6rem;
        height: 41.2rem;
        top: -5rem;
        left: -2rem;
    }
    .adult-box__main h3 {
        margin-bottom: 6rem;
    }
    .adult-box__main--list {
        -webkit-box-align: start;
        -webkit-align-items: start;
        -ms-flex-align: start;
        align-items: start;
        grid-template-columns: 1fr;
    }
    .adult-box__main--list .text p {
        margin-bottom: 8rem;
        line-height: 2;
    }
    .adult-box__main--list .text p span {
        font-size: 3.6rem;
    }
    .adult-box__please {
        padding: 6rem 3rem;
    }
    .adult-box__please::after {
        bottom: -54rem;
        right: 50%;
        -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
        transform: translateX(50%);
    }
    .adult-box__please--head span {
        max-width: 100%;
        height: 10.2rem;
        font-size: 3.6rem;
        border-radius: 5.1rem;
        margin-bottom: 4rem;
    }
    .adult-box__please--head h3 {
        font-size: 3.6rem;
        line-height: 5.4rem;
        margin: 0 -1rem;
    }
    .adult-box__please--list {
        margin-right: 0;
    }
    .adult-box__please--list .items {
        width: 100%;
        padding: 3rem 0;
        gap: 2.9rem;
        grid-template-columns: 25.8rem auto;
    }
    .adult-box__please--list .items__labels {
        height: 7.2rem;
        font-size: 3rem;
    }
    .adult-box__please--list .items__info {
        font-size: 3rem;
        line-height: 4.5rem;
    }
    .adult-box__please--list .items:last-child {
        grid-template-columns: 1fr;
    }
    .adult-box__please--list .items:last-child .items__labels {
        width: 25.8rem;
    }
    .adult-box__please--list .items:last-child .items__info {
        padding: 0 2.4rem;
    }
    .treatment-box {
        background-image: url("../images/treatment-bg_sp.webp");
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: 100% auto;
        padding: 9rem 0 12rem;
    }
    .treatment-box::after {
        display: none;
    }
    .treatment-box .head-box {
        margin-bottom: 12rem;
    }
    .treatment-box .head-box h2 span {
        font-size: 6rem;
    }
    .treatment-box .head-box p {
        text-align: left;
    }
    .treatment-box__main--list {
        margin-bottom: 12rem;
        gap: 8rem;
        grid-template-columns: repeat(1, 1fr);
    }
    .treatment-box__main--list .items__labels {
        width: 18.4rem;
        height: 14.9rem;
        right: -1rem;
        font-size: 5rem;
    }
    .treatment-box__main--list .items__labels span {
        font-size: 3.7rem;
    }
    .treatment-box__main--list .items__labels small {
        font-size: 2.5rem;
    }
    .treatment-box__main--list .items__txt {
        width: calc(100% - 6rem);
        height: 15.8rem;
        font-size: 4.7rem;
        line-height: 6.2rem;
        top: 3.8rem;
    }
    .treatment-box__main--list .items p {
        bottom: 5rem;
        font-size: 3.4rem;
        line-height: 5rem;
    }
    .treatment-box__main--post {
        margin-bottom: 8rem;
        grid-template-columns: 1fr;
    }
    .treatment-box__main--post .text {
        padding-top: 0;
    }
    .treatment-box__main--post .text h3 {
        font-size: 4.8rem;
        line-height: 7.2rem;
    }
    .treatment-box__main--post .text p {
        margin-bottom: 6rem;
    }
    .treatment-box__main--like {
        gap: 5rem;
        padding: 5rem 4rem;
    }
    .treatment-box__main--like::after {
        content: "";
        width: 17.1rem;
        height: 17.2rem;
        background-image: url("../images/treatment-like.webp");
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        bottom: -8rem;
        right: -2rem;
        z-index: -1;
    }
    .treatment-box__main--like .like {
        width: 100%;
        text-align: center;
    }
    .treatment-box__main--like .like h3 {
        font-size: 4.8rem;
        line-height: 5.4rem;
        margin-top: 3rem;
    }
    .treatment-box__main--like ul li {
        gap: 2rem;
        font-size: 3.6rem;
        line-height: 1;
    }
    .even-box {
        padding: 12rem 0;
    }
    .even-box .head-box {
        margin-bottom: 5rem;
    }
    .even-box .head-box p {
        text-align: left;
    }
    .even-box__main--thumb .txt {
        gap: 0;
    }
    .even-box__main--thumb .txt__items {
        padding-top: 39rem;
    }
    .even-box__main--thumb .txt__items h3 {
        margin-bottom: 1rem;
    }
    .even-box__main--thumb .txt__items p {
        font-size: 1.8rem;
    }
    .even-box__main h3 {
        margin-bottom: 6rem;
    }
    .even-box__main .push {
        width: 52rem;
        margin: 0 auto;
    }
    .even-box__main .push__txt {
        gap: 22rem;
        grid-template-columns: repeat(1, 1fr);
    }
    .even-box__please {
        margin-bottom: 59rem;
    }
    .even-box__please::after {
        bottom: -47rem;
        right: 50%;
        -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
        transform: translateX(50%);
    }
    .even-box__please--head span {
        max-width: 100%;
        height: 10.2rem;
        font-size: 3.6rem;
        border-radius: 5.1rem;
        margin-bottom: 4rem;
    }
    .even-box__please--head h3 {
        font-size: 3.6rem;
        line-height: 5.4rem;
        margin: 0 -1rem;
    }
    .even-box__please--list {
        margin-right: 0;
    }
    .even-box__please--list .items {
        width: 100%;
        padding: 3rem 0;
        gap: 2.9rem;
        grid-template-columns: 25.8rem auto;
    }
    .even-box__please--list .items__labels {
        height: 7.2rem;
        font-size: 3rem;
    }
    .even-box__please--list .items__info {
        font-size: 3rem;
        line-height: 4.5rem;
    }
    .even-box__please--list .items:last-child {
        grid-template-columns: 1fr;
    }
    .even-box__please--list .items:last-child .items__labels {
        width: 25.8rem;
    }
    .even-box__please--list .items:last-child .items__info {
        padding: 0 2.4rem;
    }
    .even-box__post {
        -webkit-box-align: start;
        -webkit-align-items: start;
        -ms-flex-align: start;
        align-items: start;
        grid-template-columns: 1fr;
    }
    .even-box__post::after {
        width: 69.1rem;
        height: 69.1rem;
        top: -7rem;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
    .even-box__post--txt h3 {
        text-align: center;
    }
    .even-box__post--txt h3 span {
        font-size: 4.8rem;
    }
    .receive-box__main--txt {
        width: 100%;
        font-size: 2.8rem;
        line-height: 4.2rem;
        -webkit-transform: translate(-50%, -69%);
        -ms-transform: translate(-50%, -69%);
        transform: translate(-50%, -69%);
    }
    .blog-box {
        overflow: hidden;
    }
    .blog-box .head-box p {
        text-align: left;
    }
    .blog-box__main {
        margin-bottom: 6rem;
    }
    .blog-box__main .slick-list {
        margin: 0;
    }
    .blog-box__main .slick-arrow {
        top: 22%;
    }
    .blog-box__main .slick-arrow.slick-prev {
        left: -2rem;
    }
    .blog-box__main .slick-arrow.slick-prev {
        right: -2rem;
    }
    .blog-box__main--items figure {
        margin-bottom: 3.5rem;
    }
    .blog-box__main--items .info {
        margin-bottom: 5rem;
    }
    .blog-box__main--items .info span {
        padding: 0 3.5rem;
        line-height: 5.5rem;
        border-radius: 2.7rem;
        font-size: 2.5rem;
    }
    .blog-box__main--items .info time {
        font-size: 2.6rem;
        line-height: 5.5rem;
    }
    .blog-box__main--items h3 {
        font-size: 4.2rem;
    }
    .orthodontics-box {
        padding: 13.2rem 0 40.5rem;
        background-image: url("../images/orthodontics-bg_sp.webp");
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .orthodontics-box .head-box {
        margin-bottom: 23rem;
    }
    .orthodontics-box .head-box p {
        margin-bottom: 0;
        text-align: left;
    }
    .orthodontics-box__main--items {
        display: block;
        margin-bottom: 12rem;
    }
    .orthodontics-box__main--items .text h3 {
        font-size: 4rem;
        line-height: 6rem;
    }
    .orthodontics-box__main--items .text figure {
        width: 48rem;
        margin: 0 auto 6rem;
    }
    .orthodontics-box__main--items:nth-child(2) {
        padding-bottom: 20rem;
    }
    .orthodontics-box__main--items:nth-child(2) figure {
        width: 64.6rem;
        margin: 0 auto 6rem;
    }
    .orthodontics-box__main--items:nth-child(3) figure {
        width: 44.9rem;
    }
    .orthodontics-box__main--items:last-child {
        margin-bottom: 0;
    }
    .doctor-box {
        padding: 12rem 0;
    }
    .doctor-box__main {
        -webkit-box-align: start;
        -webkit-align-items: start;
        -ms-flex-align: start;
        align-items: start;
        gap: 0;
        grid-template-columns: 1fr;
        margin-bottom: 20rem;
    }
    .doctor-box__main figure {
        margin: 0 auto;
        width: 100%;
        max-width: 60.5rem;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        position: relative;
    }
    .doctor-box__main figure::after {
        content: "";
        width: 40rem;
        height: 18rem;
        background-image: url("../images/doctor-name.webp");
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        left: -4rem;
        bottom: -12rem;
    }
    .doctor-box__main--txt {
        padding: 6rem 0;
        position: relative;
    }
    .doctor-box__main--txt::after {
        width: 100vw;
        height: 130rem;
        border-radius: 0;
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: -1;
    }
    .doctor-box__list {
        -webkit-box-align: start;
        -webkit-align-items: start;
        -ms-flex-align: start;
        align-items: start;
        grid-template-columns: repeat(1, 1fr);
    }
    .doctor-box__list--items h3 {
        font-size: 3.4rem;
    }
    .doctor-box__list--items p {
        font-size: 2.7rem;
    }
    .doctor-box__list--items ul li {
        font-size: 2.7rem;
    }
    .doctor-box__list--items ul li::before {
        top: 2rem;
    }
    .step-box {
        padding: 12rem 0;
    }
    .step-box__main--items {
        padding-bottom: 8rem;
        display: block;
        padding-left: 13rem;
    }
    .step-box__main--items::before {
        max-width: 11rem;
    }
    .step-box__main--items::after {
        left: 3.3rem;
    }
    .step-box__main--items .text figure {
        margin-bottom: 6rem;
        width: 48rem;
    }
    .step-box__main--items .text p {
        font-size: 3rem;
        line-height: 2;
    }
    .cta-box {
        padding: 12rem 0 45rem;
        background-image: url("../images/cta-bg_sp.webp");
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .cta-box__main--btn {
        padding: 0 3rem;
        -webkit-box-align: start;
        -webkit-align-items: start;
        -ms-flex-align: start;
        align-items: start;
        gap: 4rem;
        grid-template-columns: 1fr;
    }
    .cta-box__main--btn .tel {
        display: block;
        width: 50.4rem;
        margin: 0 auto;
    }
    .costs-box {
        padding: 12rem 0;
    }
    .costs-box__main {
        margin-bottom: 12rem;
    }
    .costs-box__main--items .list__items--labels {
        padding: 2rem 1rem;
    }
    .costs-box__main--items .list__items--info {
        padding: 2rem 1rem;
    }
    .costs-box__payment--head {
        text-align: center;
        margin-bottom: 8rem;
    }
    .costs-box__payment--head h3 {
        padding-bottom: 5rem;
        margin-bottom: 6rem;
        font-size: 4.8rem;
        color: #6f5b43;
        position: relative;
    }
    .costs-box__payment--head h3::after {
        content: "";
        width: 8.2rem;
        height: 1.4rem;
        background-image: url("../images/icon-dote.webp");
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .costs-box__payment--head p {
        margin-bottom: 0;
    }
    .costs-box__payment--main .items__main {
        padding: 4rem 3rem 8rem;
    }
    .costs-box__payment--main .items__main--head {
        -webkit-box-align: start;
        -webkit-align-items: start;
        -ms-flex-align: start;
        align-items: start;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 2rem;
        grid-template-columns: 1fr;
    }
    .costs-box__payment--main .items__main--head figure {
        width: 24rem;
        margin: 0 auto;
    }
    .costs-box__payment--main .items__main--head .text__txt {
        text-align: center;
        line-height: 4.5rem;
    }
    .costs-box__payment--main .items__main--head .text__labels {
        text-align: center;
    }
    .costs-box__payment--main .items__main--head .text__labels span {
        max-width: 52.3rem;
        height: 5.3rem;
        font-size: 2.6rem;
    }
    .costs-box__payment--main .items__main--head .text__price {
        grid-template-columns: 32rem auto;
        -webkit-box-pack: start;
        -webkit-justify-content: start;
        -ms-flex-pack: start;
        justify-content: start;
        gap: 0;
    }
    .costs-box__payment--main .items__main--head .text__price--labels {
        width: 32rem;
        height: 6.4rem;
        font-size: 3.4rem;
    }
    .costs-box__payment--main .items__main--head .text__price--txt p {
        font-size: 2.9rem;
        line-height: 6.4rem;
    }
    .costs-box__payment--main .items__main--head .text__price--txt p span {
        font-size: 5.1rem;
    }
    .costs-box__payment--main .items__main--head .text__price--txt p small {
        font-size: 2.1rem;
    }
    .costs-box__payment--main .items__main--head .text__price--txt p:last-child {
        font-size: 1.9rem;
    }
    .costs-box__payment--main .items__main--price {
        margin-bottom: 4rem;
    }
    .costs-box__payment--main .items__main--price .items-costs {
        margin-bottom: 4rem;
        gap: 1rem;
        grid-template-columns: 12.1rem 1fr;
        -webkit-box-align: start;
        -webkit-align-items: start;
        -ms-flex-align: start;
        align-items: start;
    }
    .costs-box__payment--main .items__main--price .items-costs__tabels {
        border-radius: 1rem;
        border: 2px solid #f7b899;
        overflow: hidden;
    }
    .costs-box__payment--main .items__main--price .items-costs__tabels table {
        width: 100%;
    }
    .costs-box__payment--main .items__main--price .items-costs__tabels table tr th:first-child {
        width: 19.7rem;
    }
    .costs-box__payment--main .items__main--price .items-costs__tabels table tr td {
        padding: 0 1rem;
    }
    .costs-box__payment--main .items__main--price .items-costs__tabels table tr td ul {
        -webkit-box-align: start;
        -webkit-align-items: start;
        -ms-flex-align: start;
        align-items: start;
        -webkit-box-pack: start;
        -webkit-justify-content: start;
        -ms-flex-pack: start;
        justify-content: start;
        gap: 0;
        padding: 1rem 0;
    }
    .costs-box__payment--main .items__main--price .items-costs__tabels table tr td ul li {
        line-height: 1.4;
    }
    .costs-box__payment--main .items__main--price .items-costs__tabels table tr td ul li span {
        font-size: 2.6rem;
    }
    .costs-box__payment--main .items__main--price .items-costs__tabels table tr td ul li:last-child {
        font-size: 2.2rem;
    }
    .costs-box__payment--main .items__main--price .items-costs__tabels table tr td ul li:last-child span {
        font-size: 3rem;
    }
    .costs-box__payment--main .items__main--note {
        text-align: center;
        font-size: 2.4rem;
        line-height: 3.6rem;
    }
    .clinic-box {
        padding: 12rem 0;
    }
    .clinic-box__main--head .logo {
        margin: 0 auto 8rem;
    }
    .clinic-box__main--head p {
        text-align: left;
        margin-bottom: 6rem;
    }
    .clinic-box__main--head ul {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        gap: 0;
    }
    .clinic-box__main--main {
        padding: 0;
        -webkit-box-align: start;
        -webkit-align-items: start;
        -ms-flex-align: start;
        align-items: start;
        gap: 8rem;
        grid-template-columns: 1fr;
    }
    .clinic-box__main--main .btn {
        padding: 0 3rem;
    }
    .clinic-box__main--main .btn .tel {
        width: 50.4rem;
    }
    .clinic-box__main--main .calenda p {
        font-size: 2.4rem;
        line-height: 4.8rem;
    }
    .floating-box {
        top: auto;
        bottom: 0;
        width: 100%;
    }
    .floating-box__main {
        gap: 0;
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ipad Portrait */
/* ipad Landscape */
