@charset "UTF-8";
:root {
    --font-family-text: "Noto Sans JP", sans-serif;
    --font-family-title: "Shippori Mincho", sans-serif;
    --font-family-en: "EB Garamond", sans-serif;
    --text-color: #111111;
    --text-dark-color: #cecece;
    --loud-color: #d1a71f;
    --title-color: #111111;
    --menu-color: #111111;
    --primary-btn-color: #ffffff;
    --background: #e9e7e5;
    --background-primary-btn: #d1a71f;
    --background-loud: #7d6b59;
    --background-footer: #2a1a09;
    --base-font-size: 1.6rem;
    --h1-font-size: 4.4rem;
    --h2-font-size: 3.4rem;
    --h3-font-size: 3rem;
    --h4-font-size: 3rem;
    --h5-font-size: 2.6rem;
}
@media (min-width: 768px) and (max-width: 991px) {
    .class {
        width: 60%;
    }
}
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}
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:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}
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:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
button {
    background-color: transparent;
    outline: 0;
    border: 0;
    cursor: pointer;
    padding: 0;
    font-family: var(--font-family-text);
}
input {
    padding: 0;
    font-family: var(--font-family-text);
}
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);
}
h5 {
    font-size: var(--h5-font-size);
}
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: 0;
    text-decoration: none;
}
.more {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    width: 100%;
    height: 8rem;
    max-width: 48rem;
    background: #2a1a09;
    border: 1px solid #7d6b59;
    border-radius: 1px;
    font-size: 1.9rem;
    line-height: 1;
    font-weight: 500;
    color: #fff !important;
    letter-spacing: 0.1em;
}
.btn-primary i {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
}
.btn-primary:hover {
    background: #643d13;
}
.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.7rem;
    width: 100%;
    height: 8rem;
    max-width: 48rem;
    background: #d1a71f;
    border: 1px solid #d9bea2;
    border-radius: 1px;
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 700;
    color: #fff !important;
    letter-spacing: 0.1em;
    text-decoration: none !important;
}
.btn-secondary:hover {
    background: #f2c637;
    border-color: #f2c637;
}
.btn-primary i,
.btn-secondary i {
    margin-top: .3rem;
}
@media (max-width: 768px) {
    .btn-primary {
        height: 6rem;
        max-width: 33rem;
        font-size: 1.5rem;
    }
    .btn-primary i {
        right: 1.3rem;
    }
    .btn-secondary {
        gap: 0.7rem;
        height: 6rem;
        max-width: 33rem;
        font-size: 1.5rem;
    }
}
.nav-bar-menu {
    background: var(--background);
}
.nav-bar-menu ul {
    display: flex;
    justify-content: center;
    gap: 7rem;
}
.nav-bar-menu ul li {
    position: relative;
    z-index: 99;
}
.nav-bar-menu ul li a {
    display: block;
    padding: 2.6rem 0;
    position: relative;
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 400;
    font-family: var(--font-family-title);
    color: var(--menu-color) !important;
}
.nav-bar-menu ul li a::after {
    content: " ";
    position: absolute;
    width: 0;
    height: 0.5rem;
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    -ms-transition-duration: 0.4s;
    -ms-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    -webkit-transition-duration: 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition-duration: 0.4s;
    -moz-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    background: var(--loud-color);
}
.nav-bar-menu ul li .sub {
    position: absolute;
    top: 7.2rem;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 2rem;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}
.nav-bar-menu ul li .sub ul {
    background: #d1a71f;
    min-width: 24.6rem;
    display: grid;
    align-items: start;
    gap: 2.4rem;
    padding: 2.5rem 0;
    position: relative;
}
.nav-bar-menu ul li .sub ul::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 0.7rem solid transparent;
    border-right: 0.7rem solid transparent;
    border-bottom: 1.4rem solid #d1a71f;
    position: absolute;
    top: -1.4rem;
    left: 50%;
    transform: translateX(-50%);
}
.nav-bar-menu ul li .sub ul li a {
    display: block;
    text-align: center;
    padding: 0 2.5rem;
    font-size: 1.8rem;
    line-height: 2.6rem;
    font-weight: 400;
    color: #fff !important;
}
.nav-bar-menu ul li .sub ul li a::after {
    display: none;
}
.nav-bar-menu ul li:hover a::after {
    width: 100%;
    right: auto;
    left: 0;
}
.nav-bar-menu ul li:hover .sub {
    opacity: 1;
    visibility: visible;
}
@media (min-width: 769px) {
    .menu-page {
        background: #2a1a09;
    }
    .menu-page > ul > li > a {
        color: #fff !important;
    }
}
@media (max-width: 768px) {
    .nav-bar-menu {
        padding: 6rem 0 12rem;
        height: 100vh;
        width: 100vw;
        position: fixed;
        right: 0;
        top: 0;
        z-index: 999;
        overflow-x: hidden;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transform: translateX(100%);
        overflow-y: scroll;
        background: #2a1a09;
    }
    .nav-bar-menu.is_active {
        transform: translateX(0);
    }
    .nav-bar-menu .navbar-brand {
        width: 3.6rem;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    .nav-bar-menu ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .nav-bar-menu ul li {
        width: 100%;
        border-top: 1px solid #553818;
    }
    .nav-bar-menu ul li:last-child {
        border-bottom: 1px solid #553818;
    }
    .nav-bar-menu ul li a {
        display: block;
        padding: 2rem;
        width: 100%;
        color: #fff !important;
        font-size: 1.6rem;
    }
    .nav-bar-menu ul li a::after {
        display: none;
    }
    .nav-bar-menu ul li .sub {
        padding: 0;
        position: static;
        min-width: 100%;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    .nav-bar-menu ul li .sub ul {
        background: #3e270f;
        padding: 0;
        gap: 0;
        display: flex;
        flex-direction: column;
        text-align: left;
    }
    .nav-bar-menu ul li .sub ul::after {
        display: none;
    }
    .nav-bar-menu ul li .sub ul li:last-child {
        border-bottom: none;
    }
    .nav-bar-menu ul li .sub ul li a {
        padding: 2rem;
        text-align: left;
    }
    .nav-bar-menu ul li .sub ul li a br {
        display: none;
    }
    .nav-bar-menu ul li.group > a {
        position: relative;
    }
    .nav-bar-menu ul li.group > a::before {
        content: "";
        display: block;
        width: 1rem;
        height: 0.9rem;
        background-image: url(../images/icon-arows-right.webp);
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        position: absolute;
        top: 50%;
        right: 2rem;
        transform: translateY(-50%) rotate(90deg);
        background-color: transparent;
    }
}
.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-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: 0;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-list,
.slick-slider .slick-track {
    -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:after,
.slick-track:before {
    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;
}
.under_img_main {
    margin-bottom: 2rem !important;
    padding-left: 0 !important;
}
.under_img_main figure {
    background: #e6e6e6;
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 60rem;
    padding: 0 !important;
}
.under_img_main figure::before {
    display: none !important;
}
.under_img_main figure img {
    flex-shrink: 0;
    max-height: 100%;
    vertical-align: bottom;
    max-width: 100%;
    max-height: 55rem;
}
.under_img_thumb {
    margin: 0 -0.2rem 4rem !important;
    padding: 0 !important;
}
.under_img_thumb .slick-slide {
    margin: 0 1px;
    border: 1px solid #ccc;
    padding: 2px;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s;
    outline: 0;
}
.under_img_thumb .slick-slide.slick-current {
    opacity: 1;
}
.under_img_thumb .slick-slide::before {
    display: none !important;
}
.under_img_thumb.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none !important;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y !important;
    -webkit-tap-highlight-color: transparent !important;
}
.under_img_thumb .slick-track {
    transform: translate3d(0, 0, 0) !important;
}
@media (max-width: 768px) {
    .under_img_main.slick-initialized .slick-slide {
        flex-direction: column;
        height: auto;
    }
    .under_img_main.slick-initialized .slick-prev {
        left: 2rem;
        z-index: 99;
    }
    .under_img_main.slick-initialized .slick-next {
        right: 2rem;
    }
    .under_img_thumb .slick-track {
        width: 100% !important;
        display: flex;
        flex-wrap: wrap;
    }
    .under_img_thumb .slick-track .wp-block-image {
        flex: 0 0 auto;
        width: calc(100% / 4) !important;
        max-width: calc(100% / 4) !important;
        margin-bottom: 0.5rem !important;
    }
    .under_img_thumb .slick-track .slick-cloned {
        display: none !important;
    }
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    font-size: 10px;
}
body {
    background: #fff;
    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;
}
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;
    border-image: none;
    border-style: solid none none;
    border-width: 0.2em 0 0 0;
    margin: 0;
}
.container {
    width: 100%;
    max-width: 113rem;
    padding: 0 1.5rem;
    margin: 0 auto;
}
p {
    margin-bottom: 1.5rem;
}
input:focus {
    outline: 0;
}
a img {
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s 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;
}
.head-box {
    text-align: center;
    margin-bottom: 7.8rem;
}
.head-box h2 {
    font-size: 12rem;
    line-height: 16.4rem;
    color: #614628;
    font-family: var(--font-family-en);
    font-weight: 400;
}
.head-box p {
    margin-bottom: 0;
    font-size: 3.2rem;
    line-height: 1;
    margin-top: -1rem;
    font-family: var(--font-family-title);
}
.head-box p small {
    font-size: 1.8rem;
    line-height: 2;
    font-family: var(--font-family-text);
}
.under {
    pointer-events: none;
    cursor: none;
}
@media (max-width: 768px) {
    .head-box {
        margin-bottom: 4rem;
    }
    .head-box h2 {
        font-size: 4rem;
        line-height: 5.5rem;
        margin-bottom: 0.8rem;
    }
    .head-box p {
        font-size: 3rem;
        line-height: 4.2rem;
    }
}
.header {
    background: var(--background);
}
.header__main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
}
.header__main .logo {
    width: 20.1rem;
}
.header__main--btn a {
    display: block;
    width: 22.8rem;
}
@media (max-width: 768px) {
    .header__main {
        padding: 1.5rem;
    }
    .header__main .logo {
        width: 15rem;
    }
    .header__main--btn {
        display: none;
    }
    .header__main--btn a {
        display: block;
        width: 22.8rem;
    }
    .header__main .navbar-brand {
        width: 7.8rem;
    }
}
.banner__main {
    display: grid;
    grid-template-columns: 62.5rem 1fr;
}
.banner__main--text {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent linear-gradient(180deg, #583a1d 0, #200f00 39%, #200f00 100%) 0 0 no-repeat;
}
.banner__main--text h2 {
    margin-bottom: 3.1rem;
    font-size: 7rem;
    line-height: 8.3rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.1em;
}
.banner__main--text p {
    margin-bottom: 2.4rem;
    color: #fff;
    font-size: 2.4rem;
    line-height: 3.6rem;
    font-weight: 400;
    letter-spacing: 0.056em;
}
.banner__main--text .btn {
    display: grid;
    align-items: start;
    gap: 1.5rem;
}
.banner__main figure img {
    width: 100%;
    height: 72rem;
    object-fit: cover;
}
.open-box {
    background-color: var(--background);
    padding: 9rem 0 28rem;
    position: relative;
}
.open-box::after {
    content: "";
    width: 100%;
    height: 17.5rem;
    background-image: url(../images/open-bg.webp);
    background-position: left bottom;
    background-repeat: repeat-x;
    position: absolute;
    bottom: 0;
    left: 0;
}
.open-box__main--logo {
    width: 20.8rem;
    margin: 0 auto 6rem;
}
.open-box__main--group {
    display: grid;
    align-items: center;
    gap: 5.8rem;
    grid-template-columns: 49.8rem 1fr;
}
.what-box {
    background-image: url(../images/what-bg.webp);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 49.7rem 0 22.6rem;
}
.what-box .container {
    max-width: 100%;
    padding: 0;
}
.what-box h2 {
    font-family: var(--font-family-en);
    font-size: 15rem;
    line-height: 12.8rem;
    color: #614628;
    font-weight: 400;
    text-align: right;
    position: absolute;
    top: 12.4rem;
    left: calc((100% - 20rem) / 2);
}
.what-box__main {
    display: flex;
    justify-content: flex-end;
}
.what-box__main figure {
    width: 100%;
    max-width: 87.6rem;
    position: absolute;
    top: 15.9rem;
    left: calc((100% - 168rem) / 2);
}
.what-box__main--text {
    padding-right: calc((100% - 140rem) / 2);
    text-align: center;
}
.what-box__main--text h3 {
    margin-bottom: 2.4rem;
    font-size: 3.2rem;
    line-height: 1;
    font-weight: 400;
    color: #fff;
}
.what-box__main--text p {
    margin-bottom: 3.9rem;
    line-height: 1.8rem;
    color: #fff;
}
.what-box__main--text .btn {
    margin-bottom: 8.2rem;
}
.what-box__main--text .btn:last-child {
    margin-bottom: 0;
}
.what-box__main--text .btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30rem;
    height: 6rem;
    position: relative;
    background: #2a1a09;
    border: 1px solid #7d6b59;
    border-radius: 1px;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    color: #fff;
}
.what-box__main--text .btn a i {
    position: absolute;
    top: 50%;
    right: 1.6rem;
    transform: translateY(-50%);
}
.what-box__main--text .btn a:hover {
    background: #643d13;
}
.dear-box {
    padding: 12.7rem 0 80.2rem;
    position: relative;
    background: var(--background);
    position: relative;
}
.dear-box::after {
    content: "";
    width: 100%;
    height: 68rem;
    background-image: url(../images/dear-bg.webp);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
}
.dear-box__main p {
    margin-bottom: 0;
    text-align: center;
    line-height: 3.6rem;
}
.system-box {
    padding: 12.5rem 0 15.2rem;
    background-image: url(../images/system-bg.webp);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.system-box .container {
    max-width: 1100%;
}
.system-box .head-box p {
    color: #fff;
    margin-top: 0;
}
.system-box__main--group {
    width: 100%;
    max-width: 159.4rem;
    margin: 0 auto 8rem;
    display: grid;
    gap: 5rem;
    grid-template-columns: repeat(4, 1fr);
}
.system-box__main--group figure {
    position: relative;
}
.system-box__main--group figure::after {
    content: "";
    width: 2.8rem;
    height: 4.9rem;
    background-image: url(../images/arow-right.webp);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: -4rem;
    transform: translateY(-50%);
}
.system-box__main--group figure:last-child::after {
    display: none;
}
.system-box__main p {
    margin-bottom: 0;
    text-align: center;
    font-size: 4.2rem;
    line-height: 7rem;
    font-family: var(--font-family-title);
    color: #fff;
    font-weight: 400;
}
.doctor-box {
    background: var(--background);
    padding: 12.4rem 0 0;
    position: relative;
    overflow: hidden;
}
.doctor-box::after {
    content: "";
    width: 43.8rem;
    height: 112.4rem;
    background-image: url(../images/doctor-icon.webp);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    bottom: 2rem;
    left: -5rem;
}
.doctor-box__main {
    display: grid;
    align-items: end;
    gap: 0.9rem;
    grid-template-columns: 56rem 1fr;
    position: relative;
    z-index: 1;
}
.doctor-box__main figure {
    margin-left: -8.7rem;
}
.doctor-box__main--text {
    padding-bottom: 11.5rem;
}
.doctor-box__main--text h3 {
    margin-bottom: 4.1rem;
    text-align: center;
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1;
}
.doctor-box__main--text p {
    margin-bottom: 3.5rem;
    line-height: 3.6rem;
}
.doctor-box__main--text .kt {
    text-align: right;
    font-size: 2rem;
    line-height: 4.4rem;
    font-family: var(--font-family-en);
}
.doctor-box__main--text .kt span {
    font-size: 3.2rem;
}
.dentist-box {
    padding: 8rem 0 8.5rem;
    background-image: url(../images/dentist-bg.webp);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.dentist-box__main {
    padding: 0 3rem;
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 47.1rem 1fr;
    margin-bottom: 6rem;
}
.dentist-box__main--items {
    background: rgba(0, 0, 0, 0.65);
    padding: 3.3rem 2.5rem;
    min-height: 39.8rem;
}
.dentist-box__main--items h3 {
    margin-bottom: 2.2rem;
    font-size: 2.2rem;
    line-height: 3.2rem;
    font-weight: 500;
    color: #fff;
    font-family: var(--font-family-text);
}
.dentist-box__main--items ul li {
    line-height: 3.6rem;
    color: #fff;
    padding-left: 1.4rem;
    position: relative;
}
.dentist-box__main--items ul li::before {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 1.5rem;
    left: 0;
}
.dentist-box__main--items p {
    margin-bottom: 0;
    line-height: 3.6rem;
    color: #fff;
}
.dentist-box__btn {
    display: flex;
    justify-content: center;
}
.endodontia-box {
    padding: 12.4rem 0 14rem;
    background-image: url(../images/endodontia-bg.webp);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
.endodontia-box__main {
    margin-bottom: 8rem;
}
.endodontia-box__main--group {
    display: grid;
    align-items: center;
    gap: 7rem;
    grid-template-columns: 50rem 1fr;
}
.endodontia-box__main--group figure {
    margin-left: -8rem;
}
.endodontia-box__main--group .text {
    padding: 0 6rem;
}
.endodontia-box__main--group .text p {
    margin-bottom: 3.5rem;
    line-height: 3.6rem;
}
.endodontia-box__main--group .text p:last-child {
    margin-bottom: 0;
}
.endodontia-box__main--group:nth-child(2) figure {
    order: 2;
    margin-left: 0;
    margin-right: -8rem;
}
.endodontia-box__btn {
    display: grid;
    justify-content: center;
    gap: 3rem;
    grid-template-columns: repeat(3, auto);
}
.endodontia-box__btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 30rem;
    height: 6rem;
    background: #2a1a09;
    border: 1px solid #7d6b59;
    border-radius: 1px;
    position: relative;
    color: #fff !important;
}
.endodontia-box__btn a i {
    position: absolute;
    top: 50%;
    right: 1.6rem;
    transform: translateY(-50%);
}
.endodontia-box__btn a:hover {
    background: #643d13;
}
.news-box {
    padding: 11.4rem 0 14rem;
    background-image: url(../images/news-bg.webp);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.news-box .head-box p {
    color: #fff;
}
.news-box__main--group {
    margin-bottom: 6rem;
}
.news-box__main--group .items {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.news-box__main--group .items:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.news-box__main--group .items a {
    display: block;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.news-box__main--group .items a:hover {
    background: rgba(255, 255, 255, 0.1);
}
.news-box__main--group .items main {
    padding: 3.1rem 3rem 2.8rem;
}
.news-box__main--group .items__info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}
.news-box__main--group .items__info span {
    display: inline-flex;
    padding: 0 0.7rem;
    background: #d1a71e;
    line-height: 2.9rem;
    font-weight: 700;
    color: #fff;
}
.news-box__main--group .items__info time {
    font-weight: 700;
    color: #fff;
    line-height: 2.9rem;
}
.news-box__main--group .items h3 {
    margin-bottom: 1.7rem;
    font-weight: 700;
    font-size: 2rem;
    color: #fff;
    line-height: 2.2rem;
}
.news-box__main--group .items p {
    margin-bottom: 0;
    line-height: 1.8rem;
    color: #fff;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-box__main--btn {
    display: flex;
    justify-content: center;
}
.news-box__main--btn a {
    max-width: 30rem;
    height: 6rem;
    font-size: 1.6rem;
}
.clinic-box {
    background: var(--background);
    padding: 14rem 0;
}
.clinic-box__main--logo {
    text-align: center;
    display: grid;
    justify-content: center;
    align-items: start;
    text-align: center;
    gap: 3.7rem;
    margin-bottom: 8rem;
}
.clinic-box__main--logo picture {
    width: 20.8rem;
    margin: 0 auto;
}
.clinic-box__main--logo p {
    margin-bottom: 0;
    line-height: 1.8rem;
}
.clinic-box__main--group {
    display: grid;
    align-items: start;
    gap: 4.5rem;
    grid-template-columns: 56.5rem 1fr;
    margin-bottom: 8.4rem;
}
.clinic-box__main--group .calenda__btn {
    margin-bottom: 2rem;
    display: grid;
    align-items: center;
    gap: 0.5rem;
    grid-template-columns: 22.8rem 16.5rem 16.5rem;
}
.clinic-box__main--group .calenda__img {
    display: grid;
    align-items: start;
    gap: 2.29rem;
}
.clinic-box__main--group .calenda__img p {
    margin-bottom: 0;
    line-height: 1.8rem;
    letter-spacing: 0.1em;
}
.clinic-box__main--group .news__items {
    margin-bottom: 2.2rem;
    border-bottom: 1px solid #d7ccbd;
}
.clinic-box__main--group .news__items:last-child {
    margin-bottom: 0;
}
.clinic-box__main--group .news__items main {
    padding: 0 1rem 2.1rem;
}
.clinic-box__main--group .news__items--info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.2rem;
}
.clinic-box__main--group .news__items--info span {
    display: inline-flex;
    padding: 0 1.1rem;
    background: #d1a71e;
    line-height: 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}
.clinic-box__main--group .news__items--info time {
    line-height: 2.5rem;
    font-weight: 700;
    color: #111;
}
.clinic-box__main--group .news__items h3 {
    margin-bottom: 1.3rem;
    font-size: 1.8rem;
    line-height: 2rem;
    font-family: var(--font-family-text);
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clinic-box__main--group .news__items p {
    margin-bottom: 0;
    line-height: 2.2rem;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clinic-box__main--group .news__items a {
    display: block;
}
.clinic-box__main--group .news__items a:hover h3 {
    color: var(--loud-color);
}
.clinic-box__main--nav {
    display: grid;
    align-items: start;
    gap: 4rem;
    grid-template-columns: repeat(5, auto);
    padding: 0 4rem;
}
.clinic-box__main--nav ul li a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    line-height: 4rem;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.clinic-box__main--nav ul li a::before {
    content: "\f0da";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: var(--text-color);
    margin-top: .5rem;
}
.clinic-box__main--nav ul li a:hover {
    color: var(--loud-color);
}
.cta-float {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 99;
    width: 8rem;
    display: grid;
    align-items: start;
    gap: 0.6rem;
}
.floating-box {
    position: fixed;
    width: 100%;
    z-index: 999;
    left: 0;
    bottom: 0;
    display: none;
}
.floating-box__main {
    display: grid;
    justify-content: center;
    grid-template-columns: 8rem 15.5rem 15.5rem;
}
.floating-box__main img {
    width: 100%;
    height: 5.5rem;
    object-fit: cover;
    object-position: center;
}
.entry-title {
    text-align: center;
    padding: 8rem 0;
    background: var(--background);
}
.entry-title h1 {
    font-weight: 400;
    line-height: 6rem;
}
.banner-page {
    background: var(--background);
}
.banner-page__main {
    padding: 0 6rem;
}
.banner-page__main img {
    width: 100%;
    height: 40rem;
    object-fit: cover;
    object-position: center;
    border-radius: 1.3rem;
}
.breadcrumb-box {
    padding: 1.5rem 0;
    background: var(--background);
}
.breadcrumb-box__main ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-self: start;
}
.breadcrumb-box__main ul li {
    font-size: 1.4rem;
    line-height: 4.4rem;
    font-weight: 500;
}
.breadcrumb-box__main ul li a {
    font-weight: 500;
}
.breadcrumb-box__main ul li + li::before {
    display: inline-block;
    vertical-align: middle;
    padding: 0 1.2rem;
    content: "\f105";
    color: var(--loud-color) !important;
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-size: 2rem;
}
.site-content {
    padding: 8rem 0 13.5rem;
    border-bottom: 1px solid #c7c4c2;
    background: var(--background);
}
.page-inner .entry-content h2 {
    margin-bottom: 5rem;
    font-weight: 400;
}
.page-inner .entry-content h3 {
    margin-bottom: 5rem;
    background: #2a1a09;
    border-radius: 0.9rem;
    padding: 2rem 3rem;
    color: #fff;
    font-weight: 400;
}
.page-inner .entry-content h4 {
    margin-bottom: 5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #2a1a09;
    font-weight: 400;
}
.page-inner .entry-content h5 {
    margin-bottom: 4rem;
    font-weight: 400;
    border: 1px solid #2a1a09;
    border-radius: 0.9rem;
    padding: 2rem 3rem;
}
.page-inner .entry-content a {
    color: var(--loud-color);
    text-decoration: underline;
}
.page-inner .entry-content a:hover {
    opacity: 0.7;
}
.page-inner .entry-content p {
    margin-bottom: 2.5rem;
}
.page-inner .entry-content p:last-child {
    margin-bottom: 0;
}
.page-inner .entry-content .wp-block-group {
    margin-bottom: 9rem;
}
.page-inner .entry-content .wp-block-group:last-child {
    margin-bottom: 0;
}
.page-inner .entry-content .wp-block-image {
    margin-bottom: 4rem;
}
.page-inner .entry-content .wp-block-media-text {
    margin-bottom: 9rem;
    gap: 6rem;
    grid-template-columns: 53rem 1fr;
    align-items: start;
}
.page-inner .entry-content .wp-block-media-text .wp-block-media-text__content {
    padding: 0;
    align-self: flex-start;
}
.page-inner .entry-content .wp-block-media-text .wp-block-media-text__media {
    align-self: flex-start;
}
.page-inner .entry-content .wp-block-media-text.has-media-on-the-right {
    grid-template-columns: 1fr 53rem;
}
.page-inner .entry-content .wp-block-media-text:last-child {
    margin-bottom: 0;
}
.page-inner .entry-content .wp-block-columns {
    margin-bottom: 9rem;
}
.page-inner .entry-content .post-thumb {
    padding: 0 11rem;
}
.page-inner .entry-content .description {
    background: #fff;
    border-radius: 0.9rem;
    padding: 5rem;
}
.page-inner .entry-content .description h3 {
    margin-bottom: 3rem;
}
.page-inner .entry-content .background {
    background: #d8d4d1;
    border-radius: 0.9rem;
    padding: 3rem 4rem;
}
.page-inner .entry-content .wp-block-list {
    display: grid;
    align-items: start;
}
.page-inner .entry-content .wp-block-list li {
    line-height: 2.6rem;
    display: grid;
    align-items: start;
    gap: 0.8rem;
    grid-template-columns: auto 1fr;
    font-weight: 700;
    margin-bottom: 2rem;
}
.page-inner .entry-content .wp-block-list li::before {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    background: var(--loud-color);
    border-radius: 50%;
    margin-top: 0.8rem;
}
.page-inner .entry-content ol.wp-block-list {
    counter-reset: section;
}
.page-inner .entry-content ol.wp-block-list li::before {
    counter-increment: section;
    content: counter(section) ".";
    width: auto;
    height: auto;
    background: 0 0;
    margin-top: 0;
}
.page-inner .entry-content .check li::before {
    border-radius: 0;
    width: 1.233rem;
    height: 0.933rem;
    background-image: url(../images/icon-check.webp);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: transparent;
}
.page-inner .entry-content .pick-up {
    padding: 10rem 0 12rem;
    position: relative;
    z-index: 9;
}
.page-inner .entry-content .pick-up::after {
    content: "";
    width: 100vw;
    height: 100%;
    background-image: url(../images/news-bg.webp);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.page-inner .entry-content .pick-up h2 {
    text-align: center;
    margin-bottom: 6rem;
    color: #fff;
    font-weight: 400;
    font-size: 3.6rem;
    line-height: 5.2rem;
    display: grid;
    align-items: start;
    justify-content: center;
    gap: 1.5rem;
}
.page-inner .entry-content .pick-up h2::before {
    content: "PICK UP";
    font-family: var(--font-family-en);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 18.9rem;
    height: 4.5rem;
    border-radius: 0.9rem;
    background: #d1a71e;
    color: #fff;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0 auto;
}
.page-inner .entry-content .pick-up .txt {
    position: relative;
    z-index: 9;
    margin: 0;
}
.page-inner .entry-content .pick-up .txt p {
    color: #fff;
}
.page-inner .entry-content .pick-up .txt p:last-child {
    margin-bottom: 0;
}
.page-inner .entry-content .pick-up .txt .wp-block-media-text {
    margin-bottom: 2rem;
}
.page-inner .entry-content .pick-up .txt .wp-block-media-text:last-child {
    margin-bottom: 0;
}
.page-inner .entry-content .wp-block-table {
    margin-bottom: 9rem;
}
.page-inner .entry-content .wp-block-table:last-child {
    margin-bottom: 0;
}
.page-inner .entry-content .default table {
    background: #fff;
}
.page-inner .entry-content .default table tbody {
    display: grid;
}
.page-inner .entry-content .default table tr {
    display: grid;
    grid-template-columns: 31.4rem 1fr;
    line-height: 3.2rem;
    border-bottom: 1px solid #707070;
}
.page-inner .entry-content .default table tr td {
    border: none;
    padding: 3rem;
}
.page-inner .entry-content .default table tr td:first-child {
    background: #2a1a09;
    font-weight: 700;
    color: #fff;
}
.page-inner .entry-content .default table tr:last-child {
    border-bottom: none;
}
.page-inner .entry-content .default2 {
    background: #fff;
}
.page-inner .entry-content .default2 thead {
    border: none;
    background: #2a1a09;
    color: #fff;
}
.page-inner .entry-content .default2 td,
.page-inner .entry-content .default2 th {
    border-color: #707070;
}
.page-inner .entry-content .default2 td:first-child {
    background: #2a1a09;
    color: #fff;
    font-weight: 700;
}
.page-inner .entry-content .table {
    overflow: hidden;
    margin-bottom: 8rem;
}
.page-inner .entry-content .table table {
    margin-bottom: 0;
}
.page-inner .entry-content .table table tbody {
    display: grid;
    gap: 1rem;
}
.page-inner .entry-content .table table tr {
    display: grid;
    grid-template-columns: 30rem 1fr;
    padding: 0;
}
.page-inner .entry-content .table table tr td {
    border: none;
    padding: 1rem 2rem;
}
.page-inner .entry-content .table table tr td:first-child {
    color: #fff;
    line-height: 4.6rem;
    background: var(--loud-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.page-inner .entry-content .table table tr td:last-child {
    line-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid var(--loud-color);
}
.page-inner .entry-content .table table tr td.has-text-align-right {
    justify-content: flex-end;
}
.page-inner .entry-content .list-post .wp-block-media-text {
    margin-bottom: 0;
    padding: 4rem;
    border-top: 1px solid #c7c4c2;
    gap: 4rem;
    grid-template-columns: 26rem 1fr;
}
.page-inner .entry-content .list-post .wp-block-media-text:last-child {
    border-bottom: 1px solid #c7c4c2;
}
.page-inner .entry-content .list-post .wp-block-media-text .wp-block-media-text__content h3 {
    background: 0 0;
    padding: 0;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    color: #2a1a09;
    font-weight: 700;
    font-family: var(--font-family-text);
}
.page-inner .entry-content .step-entry__main .wp-block-media-text {
    margin: 0;
    gap: 0;
    grid-template-columns: auto 1fr;
    position: relative;
    padding-bottom: 8.5rem;
    padding-left: 18rem;
}
.page-inner .entry-content .step-entry__main .wp-block-media-text::before {
    content: "";
    width: 13rem;
    height: 13rem;
    background-image: url(../images/step-1.webp);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: -3.2rem;
    left: 0;
    z-index: 9;
}
.page-inner .entry-content .step-entry__main .wp-block-media-text::after {
    content: "";
    width: 1px;
    height: 100%;
    background: #2a1a09;
    position: absolute;
    top: 0;
    left: calc(13rem / 2);
}
.page-inner .entry-content .step-entry__main .wp-block-media-text .wp-block-media-text__media {
    margin-right: 2rem;
}
.page-inner .entry-content .step-entry__main .wp-block-media-text .wp-block-media-text__media img {
    width: 21.9rem;
}
.page-inner .entry-content .step-entry__main .wp-block-media-text .wp-block-media-text__content h3 {
    margin-bottom: 3rem;
    font-size: 3.2rem;
    line-height: 1;
    font-weight: 700;
    background: 0 0;
    padding: 0;
    color: #2a1a09;
}
.page-inner .entry-content .step-entry__main .wp-block-media-text .wp-block-media-text__content p {
    font-weight: 400;
}
.page-inner .entry-content .step-entry__main .wp-block-media-text:last-child {
    padding-bottom: 0;
}
.page-inner .entry-content .step-entry__main .wp-block-media-text:last-child::after {
    display: none;
}
.page-inner .entry-content .step-entry__main .wp-block-media-text:nth-child(1)::before {
    background-image: url(../images/step-1.webp);
}
.page-inner .entry-content .step-entry__main .wp-block-media-text:nth-child(2)::before {
    background-image: url(../images/step-2.webp);
}
.page-inner .entry-content .step-entry__main .wp-block-media-text:nth-child(3)::before {
    background-image: url(../images/step-3.webp);
}
.page-inner .entry-content .step-entry__main .wp-block-media-text:nth-child(4)::before {
    background-image: url(../images/step-4.webp);
}
.page-inner .entry-content .step-entry__main .wp-block-media-text:nth-child(5)::before {
    background-image: url(../images/step-5.webp);
}
.page-inner .entry-content .step-entry__main .wp-block-media-text:nth-child(6)::before {
    background-image: url(../images/step-6.webp);
}
.page-inner .entry-content .step-entry__main .wp-block-media-text:nth-child(7)::before {
    background-image: url(../images/step-7.webp);
}
.page-inner .entry-content .step-entry__main .wp-block-media-text:nth-child(8)::before {
    background-image: url(../images/step-8.webp);
}
.page-inner .entry-content .step-entry__main .wp-block-media-text:nth-child(9)::before {
    background-image: url(../images/step-9.webp);
}
.page-inner .entry-content .step-entry__main:last-child {
    margin-bottom: 0;
}
.page-inner .entry-content .step-entry .btn {
    margin-bottom: 0;
}
.page-inner .entry-content .wp-block-button__link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    min-width: 48rem;
    height: 8rem;
    background: #2a1a09;
    font-size: 1.9rem;
    font-weight: 500;
    color: #fff;
    border-radius: 0;
    position: relative;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.page-inner .entry-content .wp-block-button__link::after {
    content: "\f0da";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
}
.page-inner .entry-content .wp-block-button__link:hover {
    background: #643d13;
}
.page-inner .entry-content .gmap-box {
    margin-bottom: 9rem;
}
.page-inner .entry-content .gmap-box iframe {
    width: 100%;
    vertical-align: middle;
    margin-bottom: 4rem;
}
.banner-news {
    background: #4b3115;
}
.banner-news__main {
    height: 20rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.banner-news__main h1 {
    font-size: 5.2rem;
    font-weight: 400;
    color: #fff;
    font-family: var(--font-family-en);
}
.banner-news__main p {
    margin-bottom: 0;
    font-size: 2.2rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.05em;
    font-family: var(--font-family-title);
}
.site-content__main {
    display: grid;
    align-items: start;
    gap: 6rem;
    grid-template-columns: 1fr 28rem;
}
.list-post {
    display: grid;
    align-items: start;
    gap: 3rem;
}
.list-post__items {
    display: grid;
    align-items: start;
    gap: 4rem;
    grid-template-columns: 26rem 1fr;
    background: #d8d4d1;
    border-radius: 0.9rem;
    padding: 3rem;
}
.list-post__items--text .labels {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.list-post__items--text .labels span {
    padding: 0 0.8rem;
    display: inline-flex;
    background: var(--loud-color);
    font-size: 1.4rem;
    line-height: 3rem;
    color: #fff;
    font-weight: 700;
}
.list-post__items--text .labels time {
    line-height: 3rem;
    font-weight: 700;
}
.list-post__items--text h3 {
    font-size: 2.2rem;
    line-height: 3rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.list-post__items--text p {
    line-height: 2.8rem;
    font-weight: 400;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.2rem;
}
.list-post__items--text .more-btn a {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    line-height: 2.6rem;
    font-weight: 500;
    color: var(--loud-color);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.list-post__items--text .more-btn a:hover {
    opacity: 0.7;
}
.sidebar__main {
    margin-bottom: 6rem;
}
.sidebar__main .widgettitle,
.sidebar__main h2 {
    font-size: 2rem;
    line-height: 5.6rem;
    margin-bottom: 2rem;
    font-family: var(--font-family-title);
    text-align: center;
    font-weight: 700;
    background: #2a1a09;
    color: #fff;
}
.sidebar__main ul li {
    border-bottom: 1px solid #c9c9c9;
}
.sidebar__main ul li a {
    display: block;
    padding: 0 1.5rem;
    position: relative;
    line-height: 6rem;
    font-weight: 700;
    font-family: var(--font-family-title);
    color: #333;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.sidebar__main ul li a::after {
    content: "\f105";
    color: var(--loud-color) !important;
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-size: 2rem;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
}
.sidebar__main ul li a:hover {
    color: var(--loud-color);
}
.sidebar__main select {
    width: 100%;
    height: 5.6rem;
    border-radius: 0.8rem;
    border: 1px solid #c9c9c9;
    background: 0 0;
    border-radius: 0;
    font-weight: 700;
    font-family: var(--font-family-title);
    padding: 0 1.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.sidebar__main select:focus {
    outline: 0;
    outline: 0;
}
.sidebar__main .wp-block-archives-dropdown {
    position: relative;
}
.sidebar__main .wp-block-archives-dropdown::after {
    content: "";
    width: 0.8rem;
    height: 1rem;
    background-image: url(../images/icon-btn-2.webp);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    right: 1.5rem;
    margin-top: -0.5rem;
}
.wpp-list__main {
    padding: 2rem 1.5rem;
    display: grid;
    align-items: start;
    justify-content: start;
    grid-template-columns: 10rem 1fr;
    gap: 1.2rem;
    border-bottom: 1px solid #c9c9c9;
}
.wpp-list__main--thumbnail img {
    width: 100%;
    height: 6.8rem;
    object-fit: cover;
    margin: 0;
    border-radius: 0;
    opacity: 1 !important;
}
.wpp-list__main--text a {
    font-size: 1.4rem;
    line-height: 2rem;
    font-weight: 700;
    font-family: var(--font-family-title);
    color: var(--text-color);
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.wpp-list__main--text a:hover {
    color: var(--loud-color);
}
.wpp-list__main--text .time {
    display: flex;
    font-size: 1.4rem;
    line-height: 2.1rem;
    font-weight: 700;
    font-family: var(--font-family-text);
    margin-bottom: 0.6rem;
}
.page-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-top: 6rem;
}
.page-numbers li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 6rem;
    height: 6rem;
    border: 1px solid #c9c9c9;
    background: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    color: #333;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.page-numbers li a:hover {
    background: #2a1a09;
    color: #fff;
}
.page-numbers li.actives a {
    background: #2a1a09;
    color: #fff;
}
.post-inner {
    padding: 3rem 3rem 0;
    border-top: 1px solid #c9c9c9;
}
.post-inner .head {
    margin-bottom: 3rem;
}
.post-inner .head .labels {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.4rem;
}
.post-inner .head .labels span {
    display: inline-flex;
    padding: 0 0.8rem;
    background: var(--loud-color);
    font-size: 1.4rem;
    line-height: 3.5rem;
    font-weight: 400;
    color: #fff;
}
.post-inner .head .labels time {
    font-weight: 700;
}
.post-inner .head h2 {
    font-size: 2.8rem;
    line-height: 4rem;
}
.post-inner .entry-content #toc_container {
    width: 60% !important;
    margin: 0 auto 8rem;
    padding: 1rem;
    background: #fff;
    border: 0;
    border-radius: 1rem;
    border-top: 5px solid var(--loud-color);
    text-align: left;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    font-size: 1.6rem;
}
.post-inner .entry-content #toc_container .toc_title {
    line-height: 1;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.16;
    margin-bottom: 3rem;
    color: var(--loud-color);
}
.post-inner .entry-content #toc_container .toc_list {
    margin-top: 1em;
    margin-left: 1.3em;
    border: none;
}
.post-inner .entry-content #toc_container .toc_list li {
    display: block;
    font-size: 1.8rem;
    line-height: 2.8rem;
    padding: 0.3em 1em 0.1em 1.1em;
    position: relative;
}
.post-inner .entry-content #toc_container .toc_list li::before {
    content: "\f138";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    position: absolute;
    left: -0.4em;
    color: var(--loud-color);
    top: 1em;
}
.post-inner .entry-content #toc_container .toc_list li::after {
    display: none;
}
.post-inner .entry-content #toc_container .toc_list li a {
    display: block;
    font-size: 1.8rem;
    line-height: 2;
    padding-bottom: 0.5em;
    border-bottom: dashed 1px silver;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.post-inner .entry-content #toc_container .toc_list li a:hover {
    text-decoration: none;
}
.post-inner .entry-content #toc_container .toc_list li ul li::before {
    content: "\f105";
    left: 0;
    top: 0.8em;
}
.post-inner .entry-content #toc_container .toc_list li ul li a {
    font-weight: 400;
    font-size: 1.6rem;
}
.related-box {
    border-bottom: 1px solid #c7c4c2;
    padding-bottom: 14rem;
    background: var(--background);
}
.related-box__main {
    position: relative;
    z-index: 9;
    padding: 10rem;
}
.related-box__main::after {
    content: "";
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    background-image: url(../images/news-bg.webp);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.related-box__main h2 {
    display: grid;
    align-items: start;
    justify-content: center;
    text-align: center;
    gap: 1.8rem;
    margin-bottom: 5rem;
    line-height: 1;
    font-size: 3.6rem;
    line-height: 1;
    color: #fff;
    font-weight: 400;
}
.related-box__main h2::before {
    content: "Related Articles";
    display: inline-flex;
    margin: 0 auto;
    padding: 0 2.7rem;
    background: var(--loud-color);
    border-radius: 0.9rem;
    line-height: 4.5rem;
    color: #fff;
    font-size: 2rem;
    font-family: var(--font-family-en);
    margin: 0 auto;
}
.related-box__main--group {
    display: grid;
    align-items: start;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
}
.related-box__main--group .items main {
    background: #d8d4d1;
    border-radius: 0.9rem;
    padding: 2rem 1.5rem;
    display: grid;
    align-items: center;
    gap: 1.2rem;
    grid-template-columns: 10rem 1fr;
}
.related-box__main--group .items time {
    display: inline-flex;
    font-size: 1.4rem;
    line-height: 2.1rem;
    font-weight: 700;
}
.related-box__main--group .items h3 {
    font-size: 1.4rem;
    line-height: 2rem;
    font-family: var(--font-family-text);
}
.related-box__main--group .items:hover h3 {
    color: var(--loud-color);
}
.staff-update {
    margin-bottom: 6rem;
    text-align: center;
    position: relative;
}
.staff-update img {
    width: 100%;
}
.staff-update .staff_doctor_name {
    position: absolute;
    left: 3rem;
    bottom: 6rem;
    font-size: 2rem;
    font-family: var(--font-family-en);
    text-align: right;
}
.staff-update .staff_doctor_name code {
    display: block;
    text-align: center;
}
.staff-update .staff_doctor_name .jp {
    font-size: 150%;
    font-weight: 600;
    line-height: 1em;
}
.staff-update .staff_doctor_name .en {
    display: block;
    color: var(--loud-color);
    line-height: 1em;
    margin-top: 1rem;
}
.contact-form .form-group {
    display: grid;
    grid-template-columns: 31.5rem 1fr;
    border-top: 1px solid #8c8575;
    border-left: 1px solid #8c8575;
    border-right: 1px solid #8c8575;
}
.contact-form .form-group.bd {
    border-bottom: 1px solid #8c8575;
}
.contact-form .form-group__labels {
    background: var(--loud-color);
    padding: 2rem 1rem;
    color: #fff;
}
.contact-form .form-group__labels small {
    display: block;
    font-size: 1.3rem;
    line-height: 1.2;
}
.contact-form .form-group__input {
    padding: 2rem 1rem;
}
.contact-form .form-group__input input[type="confirm_email"],
.contact-form .form-group__input input[type="date"],
.contact-form .form-group__input input[type="email"],
.contact-form .form-group__input input[type="text"],
.contact-form .form-group__input select,
.contact-form .form-group__input textarea {
    width: 100%;
    height: 4rem;
    color: #8c8575;
    border: 1px solid #8c8575;
    background: #fff;
    box-shadow: none;
    padding: 0 1.5rem;
    font-size: 1.6rem;
}
.contact-form .form-group__input input[type="confirm_email"]:focus,
.contact-form .form-group__input input[type="date"]:focus,
.contact-form .form-group__input input[type="email"]:focus,
.contact-form .form-group__input input[type="text"]:focus,
.contact-form .form-group__input select:focus,
.contact-form .form-group__input textarea:focus {
    outline: 0;
    outline: 0;
}
.contact-form .form-group__input input[type="confirm_email"]::placeholder,
.contact-form .form-group__input input[type="date"]::placeholder,
.contact-form .form-group__input input[type="email"]::placeholder,
.contact-form .form-group__input input[type="text"]::placeholder,
.contact-form .form-group__input select::placeholder,
.contact-form .form-group__input textarea::placeholder {
    color: #bababa;
}
.contact-form .form-group__input textarea {
    padding-top: 1rem;
    min-height: 21.6rem;
}
.contact-form .form-group__input p {
    text-align: right;
    margin: 1rem 0;
}
.contact-form .form-group.required .form-group__labels {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.contact-form .form-group.required .form-group__labels::after {
    content: "必須";
    background: #2a1a09;
    font-size: 1.2rem;
    color: #fff;
    line-height: 2.5rem;
    padding: 0;
    text-align: center;
    width: 5.9rem;
}
.contact-form .more-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}
.contact-form .btn-submit {
    width: 100%;
    max-width: 45rem;
    margin-top: 4rem;
    line-height: 8rem;
    color: #fff;
    outline: 0;
    border: 0;
    background-color: #bda72c;
    font-size: 2rem;
    cursor: pointer;
}
.contact-form .btn-submit:hover {
    background: #68685c;
}
.reg-mail {
    width: 100%;
}
.reg-mail td {
    padding: 2px;
    background: 0 0;
    border: 1px solid #a9a9a9;
    text-align: center;
}
.reg-mail th {
    background: 0 0;
    width: auto;
    text-align: center;
    font-weight: 700;
    border: 1px solid #a9a9a9;
    padding: 2px;
}
.reg-mail ol.fmail_checkbox_list {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
}
.reg-mail ul {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
}
.reg-mail .wpcf7-list-item {
    margin: 0;
}
.reg-mail .wpcf7-list-item-label {
    display: none;
}
.footer {
    background: var(--background-footer);
}
.footer__main {
    text-align: center;
    font-size: 1.4rem;
    color: #fff;
    line-height: 6rem;
    letter-spacing: 0.1em;
}
@media (max-width: 768px) {
    .footer {
        margin-bottom: 8rem;
    }
}
.sp {
    display: none;
}
.staff-update {
    padding-right: 12rem;
}
.staff_doctor_name {
    background: #fff;
    padding: 2rem 4rem;
    left: auto !important;
    bottom: auto !important;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}
@media screen and (max-width: 1200px) and (min-width: 769px) {
    html {
        font-size: 9px;
    }
}
@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 (max-width: 768px) {
    :root {
        --h1-font-size: 2.2rem;
        --h2-font-size: 2.2rem;
        --h3-font-size: 2rem;
        --h4-font-size: 2rem;
        --h5-font-size: 2rem;
    }
    html {
        font-size: 2.5641vw;
    }
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    .container {
        padding: 0 3rem;
    }
    .banner__main {
        display: flex;
        flex-direction: column-reverse;
    }
    .banner__main--text {
        padding: 3rem 2rem;
    }
    .banner__main--text h2 {
        margin-bottom: 1.5rem;
        font-size: 4.6rem;
        line-height: 5.4rem;
    }
    .banner__main--text p {
        margin-bottom: 1.4rem;
        font-size: 1.8rem;
        line-height: 3rem;
    }
    .banner__main--text .btn {
        display: grid;
        align-items: start;
        gap: 1.5rem;
    }
    .banner__main figure img {
        height: 26.6rem;
    }
    .open-box {
        padding: 5rem 0 8.4rem;
    }
    .open-box::after {
        background-position: center bottom;
    }
    .open-box__main--logo {
        width: 15.8rem;
        margin: 0 auto 3.6rem;
    }
    .open-box__main--group {
        gap: 3rem;
        grid-template-columns: 1fr;
    }
    .what-box {
        padding: 53rem 0 5rem;
    }
    .what-box .container {
        max-width: 100%;
        padding: 0;
    }
    .what-box h2 {
        font-size: 7rem;
        line-height: 5.9rem;
        writing-mode: vertical-rl;
        top: 6rem;
        left: 0;
    }
    .what-box__main {
        justify-content: center;
    }
    .what-box__main figure {
        max-width: 25.8rem;
        position: absolute;
        top: 5rem;
        left: auto;
        right: 0;
    }
    .what-box__main--text {
        padding: 0 3.5rem;
    }
    .what-box__main--text h3 {
        margin-bottom: 2rem;
        line-height: 4.2rem;
    }
    .what-box__main--text p {
        margin-bottom: 1.7rem;
        line-height: 2.4rem;
    }
    .what-box__main--text .btn {
        margin-bottom: 5.1rem;
    }
    .dear-box {
        padding: 4rem 0 35rem;
    }
    .dear-box::after {
        height: 30rem;
    }
    .system-box {
        padding: 4rem 0 6.8rem;
    }
    .system-box .container {
        max-width: 100%;
        padding: 0 1.5rem;
    }
    .system-box__main--group {
        margin: 0 auto 6.5rem;
        grid-template-columns: repeat(1, 1fr);
    }
    .system-box__main--group figure::after {
        top: auto;
        bottom: -5rem;
        right: 50%;
        margin-right: -1.4rem;
        transform: translateY(0) rotate(90deg);
    }
    .system-box__main p {
        font-size: 2.8rem;
        line-height: 4.6rem;
    }
    .doctor-box {
        padding: 4rem 0 0;
    }
    .doctor-box::after {
        width: 20.2rem;
        height: 51.9rem;
    }
    .doctor-box__main {
        gap: 4rem;
        grid-template-columns: 1fr;
    }
    .doctor-box__main figure {
        order: 2;
        margin-left: 0;
        display: flex;
        justify-content: flex-end;
    }
    .doctor-box__main figure picture {
        margin-right: -3rem;
        width: 30.4rem;
    }
    .doctor-box__main--text {
        padding-bottom: 0;
        order: 1;
    }
    .doctor-box__main--text h3 {
        margin-bottom: 3rem;
        font-size: 2.6rem;
    }
    .doctor-box__main--text p {
        line-height: 3.2rem;
    }
    .doctor-box__main--text .kt {
        font-size: 1.6rem;
        line-height: 3.6rem;
    }
    .doctor-box__main--text .kt span {
        font-size: 2.6rem;
    }
    .dentist-box {
        padding: 3rem 0 5rem;
    }
    .dentist-box__main {
        padding: 0;
        gap: 1rem;
        grid-template-columns: 1fr;
        margin-bottom: 2rem;
    }
    .dentist-box__main--items {
        padding: 3rem;
        min-height: auto;
    }
    .dentist-box__main--items ul li {
        line-height: 2.4rem;
        margin-bottom: 1.4rem;
    }
    .dentist-box__main--items ul li:last-child {
        margin-bottom: 0;
    }
    .dentist-box__main--items ul li::before {
        top: 0.8rem;
    }
    .dentist-box__main--items p {
        line-height: 2.4rem;
    }
    .dentist-box__btn {
        display: flex;
        justify-content: center;
    }
    .endodontia-box {
        padding: 4rem 0 5rem;
    }
    .endodontia-box__main {
        margin-bottom: 5rem;
    }
    .endodontia-box__main--group {
        gap: 4.3rem;
        grid-template-columns: 1fr;
        margin-bottom: 3.7rem;
    }
    .endodontia-box__main--group figure {
        margin-left: 0;
        order: 2;
    }
    .endodontia-box__main--group .text {
        padding: 0;
    }
    .endodontia-box__main--group:nth-child(2) figure {
        margin-right: 0;
    }
    .endodontia-box__btn {
        gap: 1rem;
        grid-template-columns: repeat(1, auto);
    }
    .news-box {
        padding: 4rem 0 5rem;
    }
    .news-box__main--group {
        margin-bottom: 4rem;
    }
    .news-box__main--group .items main {
        padding: 2.1rem 1.5rem 2.2rem;
    }
    .news-box__main--group .items h3 {
        font-size: 2rem;
        line-height: 2.6rem;
    }
    .news-box__main--group .items p {
        line-height: 2.8rem;
        display: -webkit-box;
        max-width: 100%;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .clinic-box {
        padding: 5rem 0;
    }
    .clinic-box__main--logo {
        gap: 3.2rem;
        margin-bottom: 2.8rem;
    }
    .clinic-box__main--logo picture {
        width: 17.3rem;
    }
    .clinic-box__main--group {
        gap: 3rem;
        grid-template-columns: 1fr;
        margin-bottom: 4rem;
    }
    .clinic-box__main--group .calenda__btn {
        margin-bottom: 3rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        justify-content: center;
    }
    .clinic-box__main--group .calenda__btn a {
        width: 49%;
    }
    .clinic-box__main--group .calenda__btn a:first-child {
        width: 100%;
        max-width: 22rem;
    }
    .clinic-box__main--group .calenda__img {
        gap: 1rem;
    }
    .clinic-box__main--group .calenda__img p {
        line-height: 1.6rem;
        line-height: 1;
    }
    .clinic-box__main--group .news__items {
        margin-bottom: 2.5rem;
    }
    .clinic-box__main--group .news__items main {
        padding: 0 1rem 2.2rem;
    }
    .clinic-box__main--nav {
        gap: 0;
        grid-template-columns: repeat(1, auto);
        padding: 0;
    }
    .cta-float {
        display: none;
    }
    .floating-box {
        display: block;
    }
    .entry-title {
        padding: 4rem 0;
    }
    .entry-title h1 {
        line-height: 3.4rem;
    }
    .banner-page__main {
        padding: 0 1rem;
    }
    .banner-page__main img {
        height: 14.2rem;
    }
    .breadcrumb-box {
        padding: 1rem 0;
    }
    .breadcrumb-box__main ul li {
        line-height: 1.4;
    }
    .site-content {
        padding: 4rem 0 5rem;
    }
    .page-inner .entry-content h2 {
        margin-bottom: 3rem;
    }
    .page-inner .entry-content h3 {
        margin-bottom: 3rem;
        padding: 2rem;
    }
    .page-inner .entry-content h4 {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    .page-inner .entry-content h5 {
        margin-bottom: 2rem;
        padding: 2rem;
    }
    .page-inner .entry-content .wp-block-group {
        margin-bottom: 4rem;
    }
    .page-inner .entry-content .wp-block-image {
        margin-bottom: 2rem;
    }
    .page-inner .entry-content .wp-block-media-text {
        margin-bottom: 4rem;
        gap: 2.5rem;
        grid-template-columns: 1fr;
    }
    .page-inner .entry-content .wp-block-media-text.has-media-on-the-right {
        grid-template-columns: 1fr;
    }
    .page-inner .entry-content .wp-block-columns {
        margin-bottom: 4rem;
    }
    .page-inner .entry-content .post-thumb {
        padding: 0;
    }
    .page-inner .entry-content .description {
        padding: 2rem;
    }
    .page-inner .entry-content .description h3 {
        margin-bottom: 2rem;
    }
    .page-inner .entry-content .background {
        padding: 2rem;
    }
    .page-inner .entry-content .pick-up {
        padding: 4rem 0;
    }
    .page-inner .entry-content .pick-up h2 {
        margin-bottom: 4rem;
        font-size: 2rem;
        line-height: 3rem;
    }
    .page-inner .entry-content .pick-up h2::before {
        width: 15.2rem;
        height: 4rem;
        font-size: 1.6rem;
    }
    .page-inner .entry-content .wp-block-table {
        margin-bottom: 4rem;
    }
    .page-inner .entry-content .default table tr {
        grid-template-columns: 1fr;
        line-height: 2.4rem;
    }
    .page-inner .entry-content .default table tr td {
        padding: 1.5rem;
    }
    .page-inner .entry-content .default2 {
        overflow: auto;
    }
    .page-inner .entry-content .default2 table {
        width: 78rem;
    }
    .page-inner .entry-content .table {
        border: 1px solid #d0d0d0;
        border-radius: 0.8rem;
    }
    .page-inner .entry-content .table table tbody {
        gap: 0;
    }
    .page-inner .entry-content .table table tr {
        grid-template-columns: 10rem 1fr;
        border-bottom: 1px solid #d0d0d0;
    }
    .page-inner .entry-content .table table tr td {
        border: none;
        padding: 1rem;
    }
    .page-inner .entry-content .table table tr td:last-child {
        padding: 1rem;
    }
    .page-inner .entry-content .table table tr:last-child {
        border: none;
    }
    .page-inner .entry-content .list-post .wp-block-media-text {
        padding: 2rem;
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }
    .page-inner .entry-content .list-post .wp-block-media-text .wp-block-media-text__content h3 {
        font-size: 2rem;
    }
    .page-inner .entry-content .step-entry__main .wp-block-media-text {
        padding-bottom: 3rem;
        padding-left: 8.5rem;
    }
    .page-inner .entry-content .step-entry__main .wp-block-media-text::before {
        width: 7.8rem;
        height: 7.8rem;
        top: -2.2rem;
    }
    .page-inner .entry-content .step-entry__main .wp-block-media-text::after {
        left: calc(7.8rem / 2);
    }
    .page-inner .entry-content .step-entry__main .wp-block-media-text .wp-block-media-text__media {
        margin-right: 0;
        margin-bottom: 2rem;
    }
    .page-inner .entry-content .step-entry__main .wp-block-media-text .wp-block-media-text__media img {
        width: 100%;
    }
    .page-inner .entry-content .step-entry__main .wp-block-media-text .wp-block-media-text__content h3 {
        margin-bottom: 1.5rem;
        font-size: 2.2rem;
        line-height: 3rem;
    }
    .page-inner .entry-content .wp-block-button__link {
        min-width: 33rem;
    }
    .page-inner .entry-content .gmap-box {
        margin-bottom: 4rem;
    }
    .banner-news__main {
        height: 12rem;
    }
    .banner-news__main h1 {
        font-size: 3rem;
    }
    .banner-news__main p {
        font-size: 1.6rem;
    }
    .site-content__main {
        gap: 4rem;
        grid-template-columns: 1fr;
    }
    .list-post {
        gap: 1rem;
    }
    .list-post__items {
        gap: 0;
        grid-template-columns: 1fr;
    }
    .list-post__items--text figure {
        margin-bottom: 1.5rem;
    }
    .list-post__items--text p {
        line-height: 3rem;
        display: -webkit-box;
        max-width: 100%;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 2rem;
    }
    .sidebar__main {
        margin-bottom: 3rem;
    }
    .page-numbers {
        padding-top: 3rem;
    }
    .page-numbers li a {
        width: 4.4rem;
        height: 4.4rem;
        font-size: 1.3rem;
    }
    .post-inner {
        padding: 3rem 1rem 0;
    }
    .post-inner .head {
        margin-bottom: 2rem;
    }
    .post-inner .head .labels {
        margin-bottom: 1.5rem;
        gap: 1rem;
    }
    .post-inner .head .labels span {
        line-height: 3.1rem;
    }
    .post-inner .head h2 {
        font-size: 2.2rem;
        line-height: 3rem;
    }
    .post-inner .entry-content #toc_container {
        width: 100% !important;
        padding: 4rem 0;
        margin-bottom: 4rem;
        text-align: left;
    }
    .post-inner .entry-content #toc_container .toc_title {
        text-align: center;
    }
    .related-box {
        padding-bottom: 5rem;
    }
    .related-box__main {
        padding: 4rem 0;
    }
    .related-box__main h2 {
        font-size: 3rem;
        margin-bottom: 3rem;
    }
    .related-box__main--group {
        display: grid;
        align-items: start;
        gap: 1rem;
        grid-template-columns: repeat(1, 1fr);
    }
    .contact-form .form-group {
        grid-template-columns: 1fr;
    }
    .contact-form .form-group.required .form-group__labels {
        display: flex;
        justify-content: space-between;
    }
    .reg-mail input {
        margin: 0;
    }
}
