@charset "UTF-8";
/* CSS Document */
@media (min-width: 641px) and (max-width: 1024px) {
    body,
    .nav_wrap.fixed,
    .mainvisual_wrap,
    #mainvisual,
    header,
    footer {
        min-width: 1280px;
    }
    .tgl_menu_list ul li.nav_mega_menu .mega_menu_wrap {
        width: 1280px;
    }
}
@media screen and (max-width: 640px) {
body {
    font-size: 14px;
}
body, .nav_wrap.fixed, 
#mainvisual .inner, header, footer {
    min-width: 100%;
}
/* ナビ展開時スクロール禁止処理 */
body.nav-open {
    overflow: hidden !important;
}

/*============================================================================

header

============================================================================*/
header {
    display: none;
}

/*============================================================================

nav

============================================================================*/
.nav_wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: rgba(20, 25, 60, 0.8);
}
.nav_wrap .header_logo {
    width: calc(100% - 56px);
}
.nav_wrap .header_logo a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 12px 0;
}
.nav_wrap .header_logo img {
    width: 100%;
    height: 32px;
}
/* ハンバーガーボタン */
.btn_tgl_menu {
    position: relative;
    right: 0;
    color: #fff;
    width: 55px;
    background: #262d5d;
    border: none;
    padding: 0;
    margin: 0;
    text-align: center;
    transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.btn_tgl_menu i {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    margin: auto;
    font-style: normal;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.1em;
}
.btn_tgl_menu span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 35px;
    height: 2px;
    background: #fff;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 1;
}
.btn_tgl_menu span:nth-of-type(1) {
    top: 10px;
}
.btn_tgl_menu span:nth-of-type(2) {
    top: 20px;
}
.btn_tgl_menu span:nth-of-type(3) {
    top: 30px;
}
/* MENUボタン押下時 */
.btn_tgl_menu.active {
    right: 16.25rem;
}
.btn_tgl_menu.active span:nth-of-type(1) {
    top: 20px;
    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
}
.btn_tgl_menu.active span:nth-of-type(2) {
    opacity: 0;
}
.btn_tgl_menu.active span:nth-of-type(3) {
    top: 20px;
    -webkit-transform: rotate(-225deg);
            transform: rotate(-225deg);
}
/* ドロップダウンメニュー */
.tgl_menu_list {
    position: fixed;
    top: 0;
    right: -16.25rem;
    z-index: 2;
    overflow: hidden;
    width: 16.25rem;
    height: 100%;
    transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    background: #262d5d;
    padding: 15px;
}
.tgl_menu_list ul {
    flex-flow: column wrap;
}
.tgl_menu_list ul li {
    display: block;
    border-bottom: 1px solid #fff;
    width: 100%;
}
.tgl_menu_list ul li:first-child {
    border-top: 1px solid #fff;
}
.tgl_menu_list ul li::after {
    display: none;
}
.tgl_menu_list ul li a, 
.tgl_menu_list ul li p {
    position: relative;
    display: block;
    padding: 15px 10px;
    width: auto;
    color: #fff;
}
.tgl_menu_list ul li a span, 
.tgl_menu_list ul li p span {
    display: none;
}
.tgl_menu_list ul li a:hover {
    color: #fff;
}
body.nav-open .tgl_menu_list {
    overflow-y: scroll;
    overscroll-behavior-y: none;
    right: 0;
}
/* ナビ展開時の後ろの背景 */
.nav_overlay {
    display: none;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}
body.nav-open .nav_overlay {
    display: block;
    opacity: 1;
    visibility: visible;
}
/* ヘッダー固定ボタンエリア */
.btn_area {
    width: 100%;
}
.btn_area ul {
    display: flex;
    padding: 5px 2.5px;
}
.btn_area li.btn {
    width: 100%;
    margin: 0 2.5px;
}
.btn_area li.btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    font-weight: bold;
    padding: 10px 0 5px;
    border-radius: 5px;
    flex-direction: column;
    font-size: 90%;
    gap: 3px;
}
.btn_area li.btn a i {
    width: 15px;
    margin-right: 3px;
}
.btn_area li.btn_site a {
    background: #008bd1;
}
.btn_area li.btn_tel a {
    background: #00a199;
}
.btn_area li.btn_yoyaku a {
    background: #a38a77;
}
.btn_area li.btn_monshin a {
    background: var(--sub-color);
}

/* 準備中用のクラス */
.btn_area li.btn.coming a {
    background: #aaa !important;
}
.btn_area li.btn.coming a {
    pointer-events: none;
    padding: 2px 2% 18px;
}
.btn_area li.btn.coming a::before {
    content: "（準備中）";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-size: 90%;
}
.btn_area li.btn a[href="tel:準備中"] {
    pointer-events: none;
    padding: 2px 2% 18px;
    background: #aaa;
}
.btn_area li.btn a[href="tel:準備中"]::after {
    content: "（準備中）";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-size: 90%;
}

/*============================================================================

#mainvisual

============================================================================*/
/* 共通 */
#mainvisual {
    position: relative;
    height: 140px;
    margin-top: 110px;
    background-image: url(../images/headline_bg_sp.jpg);
    background-attachment: scroll;
}
#mainvisual .inner {
    width: auto;
    height: inherit;
}
.mainvisual_wrap {
    height: 450px;
}
.mainvisual_img {
    height: 450px;
}

/* TOP */
#mainvisual.home_mv {
    height: 500px;
}
.slider-fade .slick-slide img {
    height: 500px;
}
/*　キャッチコピー　*/
.main_catch {
    top: 50%;
    transform: translateY(-50%);
    padding-top: 30px;
    font-size: 19px;
    line-height: 1.5;
    background-size: 40px auto;
}
.main_catch span {
    bottom: -2px;
    font-size: 25px;
    vertical-align: bottom;
}
.main_catch span em {
    top: 0;
    font-size: 21px;
}
.main_catch::before {
    bottom: calc(50% - 40px);
    font-size: 50px;
}

/* 下層 */
.mainvisual_catch {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}
.sub_mainvisual .inner {
    width: 100%;
    padding-left: 4%;
    padding-right: 4%;
}
.mainvisual_catch p.headline {
    padding-top: 0;
    font-size: 20px;
    letter-spacing: 0.1em;
}
.mainvisual_catch p.headline_en {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    letter-spacing: 0.1em;
}

/*============================================================================

  #contents

============================================================================*/
#contents {
    width: 100%;
    padding: 10px 5% 60px;
}
.box1 {
    margin-bottom: 70px;
}

/*--------------------パンくず--------------------*/
.breadcrumbs {
    position: static;
    width: 100%;
    margin: 0 auto 30px;
    font-size: 12px;
}
.breadcrumbs li:after {
    font-size: 10px;
    padding-left: 2px;
}

/*--------------------リスト--------------------*/
.list06_w100 {
    padding: 20px 6% 15px;
}
.list08 {
    padding: 25px 6% 15px;
}
.list08 li {
    margin: 0 10px 14px 24px;
}
ol.square li {
    text-indent: -35px;
    margin-left: 35px;
    line-height: 1.5;
}

/*--------------------レイアウト--------------------*/
.layout_tit {
    font-size: 17px;
}
.layout_tit em {
    font-size: 24px;
}
/* 1つ並びのレイアウト。画像は無し、左にタイトル、右に文章 */
.layout01 .layout01_box {
    display: block;
}
.layout01 .layout01_title {
    width: 100%;
    padding: 12px 3%;
}
.layout01 .layout01_text {
    width: 100%;
}
.layout01 .layout01_text img {
    width: 70%;
    margin: 0 auto;
    display: block;
}
.layout01 .layout01_text p img{
    width: 100%;
}

/* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章、タイトルと文章のエリア(dd)は背景色が別の色 */
.layout04 .layout04_box {
    display: block;
}
.layout04 .layout04_title {
    width: 100%;
    padding: 2%;
}
.layout04 .layout04_title img {
    width: 70%;
    margin: 0 auto;
    display: block;
}
.layout04 .layout04_text {
    width: 100%;
}

.box_style01 {
    padding: 2%;
}

/*--------------------診療内容などのコンテンツ--------------------*/
.anklink {
    margin-bottom: 40px;
}
.anklink li {
    width: 100%;
    margin: 0 0 10px;
}
.anklink li a {
    font-size: 90%;
}

/*============================================================================

  footer

============================================================================*/
.pagetop {
    width: 55px;
    right: 10px;
    bottom: 10px;
}
.footer_info_wrap {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 40px 5% 45px;
}
.info_left {
    width: 100%;
    margin-bottom: 30px;
    padding-top: 0;
}
.footer_info_logo {
    margin-bottom: 30px;
}
.footer_info_logo img {
    width: 80%;
}
.footer_info_add {
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: 0.02em;
}
.footer_info_tel a {
    margin-bottom: 16px;
    font-size: 32px;
}
.footer_info_tel ::before {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.info_left .tb01 {
    margin-bottom: 14px;
    border-top: 2px solid #f7f7f7;
    border-bottom: 2px solid #f7f7f7;
}
.info_left tr:first-of-type th, 
.info_left tr:first-of-type td {
    line-height: 40px;
}
.info_left .tb01 tr:nth-of-type(2) th, 
.info_left .tb01 tr:nth-of-type(2) td {
    padding-top: 14px;
}
.info_left .tb01 tr:nth-of-type(3) th, 
.info_left .tb01 tr:nth-of-type(3) td {
    padding-top: 14px;
    padding-bottom: 14px;
}
.info_left .tb01 th {
    width: 32%;
}
.info_left .tb01 tr:not(:first-of-type) th {
    padding-right: 0;
    font-size: 14px;
    letter-spacing: 0;
    text-align: center;
}
.info_left .schedule_note {
    font-size: 14px;
    line-height: 1.3;
}
.info_left .schedule_note em {
    font-size: 17px;
}
.info_right {
    width: 100%;
}
.info_map {
    margin-bottom: 20px;
}
.info_map iframe {
    height: 320px;
}
.info_access ul li {
    margin-left: 18px;
    text-indent: -18px;
    font-size: 14px;
    line-height: 1.4;
}
.info_access ul li:not(:last-of-type) {
    margin-bottom: 12px;
}
.info_access ul li::before {
    width: 10px;
    height: 11px;
    margin-right: 7px;
}
.footer_nav {
    padding: 30px 5% 10px;
}
.footer_nav_list {
    display: block;
    width: 100%;
}
.footer_nav_list li {
    width: 100%;
    margin-bottom: 14px;
    padding-left: 15px;
}
.footer_nav_list li a {
    font-size: 14px;
    line-height: 1.5;
}
.copy {
    padding: 10px 0 30px;
}
.copy small {
    font-size: 10px;
}

/*============================================================================

$見出し

============================================================================*/
h1 {
    font-size: 12px;
    width: auto;
    padding: 8px 3%;
    text-align: center;
    position: static;
    margin-top: 0 !important;
    color: var(--text-color);
    background: var(--bg-color);
}
#mainvisual.home_mv + h1 {
    color: #fff;
    background-image: linear-gradient(90deg, rgba(20, 25, 60, 0.99608) 0%, rgb(39, 46, 94) 100%);
}
.tit01 {
    margin-bottom: 30px;
    padding-top: 26px;
    font-size: 19px;
    letter-spacing: 0.1em;
    line-height: 1.2;
    background-size: 36px auto;
}
.tit01 span {
    font-size: 27px;
}
.tit02 {
    margin-bottom: 16px;
    padding: 7px 0 7px 18px;
    font-size: 20px;
    letter-spacing: 0.05em;
    border-left: 4px solid #008bd1;
}
.tit02::before {
    left: 4px;
    width: 4px;
}
.tit03 {
    margin-bottom: 6px;
    font-size: 17px;
    letter-spacing: 0.05em;
}

.nowrap {
    white-space: normal;
}

/* テーブル */
.tb01 {
    white-space: inherit;
}
.tb01 th {
    width: 30%;
    font-size: 14px;
}
.tb01 td {
    font-size: 14px;
    text-align: center;
}

/* ボタン */
.btn01 a {
    display: block;
    padding: 15px 60px 15px 20px;
    background-position: 30px auto;
}

/*==================================================================

reason

==================================================================*/
.sec_reason {
    padding: 30px 0 0;
    overflow: hidden;
}
.sec_reason h2::before {
    top: 10px;
    font-size: 90px;
    letter-spacing: 0.08em;
}
.sec_reason h2 {
    margin-bottom: 8px;
    font-size: 26px;
    letter-spacing: 0.15em;
    line-height: 1.2;
}
.sec_reason h2 em {
    top: -6px;
    padding: 0 18px 0 20px;
    font-size: 80px;
}
.sec_reason h2 em::before, 
.sec_reason h2 em::after {
    width: 39px;
    height: 27px;
}
.sec_reason h2 em::before {
    top: 13px;
    left: -26px;
}
.sec_reason h2 em::after {
    top: 11px;
    right: -22px;
}
.sec_reason h2 i {
    font-size: 23px;
    letter-spacing: 0.2em;
}
.top_reason_list_text h3 {
    margin-bottom: 14px;
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 1.4;
}
.top_reason_list_text h3 span {
    font-size: 28px;
    color: #bead5c;
}
.top_reason_list li:nth-of-type(odd) figure::after,
.top_reason_list li:nth-of-type(even) figure::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 44px;
    background: url("../images/top_reason_img_deco_sp.png") repeat-x left bottom/auto 100%;
}
.top_reason_list_text {
    text-align: center;
    padding: 20px 5% 30px;
}
.top_reason_list li:nth-of-type(1) .top_reason_list_text::before {
    top: -22px;
    left: calc(50% - 25px);
    width: 55px;
    height: 29px;
}
.top_reason_list li:nth-of-type(2) .top_reason_list_text::before {
    top: -22px;
    right: calc(50% - 28px);
    width: 61px;
    height: 30px;
}
.top_reason_list li:nth-of-type(3) .top_reason_list_text::before {
    top: -28px;
    left: calc(50% - 32px);
    width: 59px;
    height: 48px;
}
.top_reason_list li:nth-of-type(4) .top_reason_list_text::before {
    top: -30px;
    right: calc(50% - 34px);
    width: 73px;
    height: 42px;
}
.top_reason_list li:nth-of-type(5) .top_reason_list_text::before {
    top: -37px;
    left: calc(50% - 37px);
    width: 73px;
    height: 50px;
}
.top_reason_list li:nth-of-type(6) .top_reason_list_text::before {
    top: -32px;
    right: calc(50% - 32px);
    width: 69px;
    height: 48px;
}
.top_reason_list_text p {
    font-size: 15px;
    text-align: left;
}

/* 下層ページ */
.reason_list_item {
    display: block;
}
.reason_list_item:not(:last-of-type) {
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.reason_list_item_img {
    width: 100%;
    margin-bottom: 15px;
}
.reason_list_item_text {
    width: 100%;
}
.reason_list_item_text h3 {
    margin-bottom: 10px;
    font-size: 20px;
    letter-spacing: 0.05em;
}
.reason_list_facility {
    margin-top: 20px;
}
.reason_list_facility li {
    display: block;
}
.reason_list_facility li:not(:last-of-type) {
    margin-bottom: 21px;
}
.reason_list_facility li figure {
    margin-bottom: 10px;
    text-align: center;
}
.reason_list_facility_text {
    width: 100%;
}
.reason_list_facility_text .tit03 {
    margin-bottom: 7px;
    text-align: center;
}
.reason_list_item_text .reason_list_facility_text p {
    font-size: 14px;
}

/*==================================================================

  qa

==================================================================*/
.sec_qa {
    padding: 0 0 50px;
    background-color: #e2dfcf;
}
.top_qa_tit_wrap {
    height: 280px;
    padding: 62px 0 0;
    mask-size: auto 280px;
    -webkit-mask-size: auto 260px;
    background-size: 846px auto, cover;
}
.top_qa_bubble {
    width: 80%;
    height: auto;
    padding: 12px;
    margin: 0 auto 18px;
    line-height: 1.3;
    font-size: 19px;
    border-radius: 60px;
}
.top_qa_bubble span {
    bottom: 0;
    font-size: 22px;
}
.top_qa_bubble::before {
    top: -44px;
    left: calc(50% - 31px);
    width: 122px;
    height: 54px;
    background-size: 43px auto, 63px auto;
    background-position: left top, right 3px;
}
.sec_qa h2 {
    font-size: 26px;
}
.sec_qa h2 span {
    font-size: 54px;
}
.top_qa_list {
    gap: 12px 0;
    width: 100%;
    margin: -35px auto 0;
    padding: 0 3%;
}
.top_qa_list li {
    width: 49%;
}
.top_qa_list li a {
    width: 100%;
    height: 100%;
    padding: 15px 0 25px;
    border: 3px solid #8b7d3c;
}
.top_qa_list li a::after {
    left: calc(50% - 15px);
    bottom: 10px;
    width: 30px;
    height: 30px;
}
.top_qa_list li a h3 {
    margin-bottom: 10px;
    padding: 0 0 0;
    font-size: min(4.4vw,17px);
    letter-spacing: -0.07em;
    line-height: 1.5;
}
.top_qa_list li:nth-of-type(1) a h3, 
.top_qa_list li:nth-of-type(2) a h3 {
    padding-top: 0;
    line-height: 1.4;
}
.top_qa_list li:nth-of-type(7) a h3 {
    line-height: 1.2;
}
.top_qa_list li a h3 span {
    font-size: min(5vw,20px);
    letter-spacing: -0.07em;
}
.top_qa_list li:nth-of-type(11) a h3,
.top_qa_list li:nth-of-type(12) a h3 {
    font-size: min(3.8vw,15px);
    line-height: 1.365;
    letter-spacing: -0.1em
}
.top_qa_list li:nth-of-type(11) a h3 span,
.top_qa_list li:nth-of-type(12) a h3 span {
    font-size: min(4.2vw,18px);
    letter-spacing: -0.1em;
}

/* 下層ページ */
.qa_box:not(:last-of-type) {
    margin-bottom: 25px;
}
.qa_question {
    padding: 14px 4% 14px 25px;
    font-size: 17px;
    line-height: 1.3;
    letter-spacing: 0.04em;
}
.qa_question::before {
    top: 2px;
    left: 10px;
    font-size: 62px;
}
.qa_answer_flex {
    display: block;
    padding: 10px 4% 20px;
}
.qa_answer_flex figure {
    width: 50%;
    margin: 0 auto 10px;
}
.qa_answer_bubble {
    width: 100%;
    padding: 54px 5% 20px;
    border-radius: 20px;
    font-size: 14px;
}
.qa_answer_bubble::before {
    top: 14px;
    left: 5%;
    font-size: 44px;
}
.qa_answer_bubble::after {
    left: calc(50% - 14px);
    top: -28px;
    width: 28px;
    height: 28px;
    clip-path: polygon(100% 100%, 50% 0, 0 100%);
}
.qa_answer_bubble .layout01 .layout01_title {
    width: 100%;
}
.qa_answer_bubble .layout01 .layout01_text {
    width: 100%;
    padding: 15px 3%;
    font-size: 100%;
}
.qa_answer_flex .layout04 figure {
    width: 100%;
    margin: 0 auto;
}
.qa_answer_flex .layout04 .layout_tit {
    font-size: 110%;
}
.qa_answer_flex .layout04 .layout_tit span {
    font-size: 150%;
}

/*==================================================================

flow

==================================================================*/
.sec_flow {
    padding: 50px 0 180px;
    background-image: linear-gradient(90deg, rgba(11, 12, 24, 0.99608) 0%, rgb(25, 28, 47) 100%);
}
.sec_flow::before,
.sec_flow::after {
    height: 250px;
    background-size: cover;
    mask-size: auto 250px;
    -webkit-mask-size: auto 250px;
}
.sec_flow h2 {
    margin-bottom: 25px;
    font-size: 26px;
    letter-spacing: 0.1em;
    line-height: 1.2;
}
.sec_flow h2 span {
    bottom: -6px;
    font-size: 34px;
}
.sec_flow h2::before {
    top: -2px;
    font-size: 100px;
    letter-spacing: 0.08em;
}
.top_flow_tree_wrap {
    width: 90%;
    margin: 0 auto;
}
.top_flow_item:not(:last-of-type) {
    margin-bottom: 40px;
}
.top_flow_item::after {
    display: none;
}
.top_flow_num {
    margin-bottom: 8px;
}
.top_flow_tree_wrap .top_flow_item:nth-of-type(1) .top_flow_num,
.top_flow_tree_wrap .top_flow_item:nth-of-type(2) .top_flow_num,
.top_flow_tree_wrap .top_flow_item:nth-of-type(3) .top_flow_num,
.top_flow_tree_wrap .top_flow_item:nth-of-type(4) .top_flow_num,
.top_flow_tree_wrap .top_flow_item:nth-of-type(5) .top_flow_num {
    padding: 0 0 0 0;
}
.top_flow_tree_wrap .top_flow_item:nth-of-type(1) .top_flow_num img {
    width: 56px;
    height: auto;
}
.top_flow_tree_wrap .top_flow_item:nth-of-type(2) .top_flow_num img {
    width: 61px;
    height: auto;
}
.top_flow_tree_wrap .top_flow_item:nth-of-type(3) .top_flow_num img {
    width: 60px;
    height: auto;
}
.top_flow_tree_wrap .top_flow_item:nth-of-type(4) .top_flow_num img {
    width: 65px;
    height: auto;
}
.top_flow_tree_wrap .top_flow_item:nth-of-type(5) .top_flow_num img {
    width: 65px;
    height: auto;
}
.top_flow_text {
    margin-bottom: 15px;
}
.top_flow_text h3 {
    margin-bottom: 8px;
    font-size: 21px;
    line-height: 1.4;
}
.top_flow_text p {
    font-size: 15px;
    line-height: 2;
}
.top_flow_img {
    width: 100%;
}

/* 下層ページ */
.flow_item {
    display: block;
}
section .flow_item:not(:last-of-type) {
    margin-bottom: 40px;
}
.flow_item:not(:last-of-type)::after {
    display: none;
}
.flow_item:nth-of-type(1) .top_flow_num img {
    width: 56px;
    height: auto;
}
.flow_item:nth-of-type(2) .top_flow_num img {
    width: 61px;
    height: auto;
}
.flow_item:nth-of-type(3) .top_flow_num img {
    width: 60px;
    height: auto;
}
.flow_item:nth-of-type(4) .top_flow_num img {
    width: 65px;
    height: auto;
}
.flow_item:nth-of-type(5) .top_flow_num img {
    width: 65px;
    height: auto;
}
.flow_text h3 {
    margin-bottom: 5px;
    font-size: 20px;
    letter-spacing: 0.05em;
}
.flow_img {
    margin-top: 15px;
}

/*==================================================================

price

==================================================================*/
.sec_price {
    padding: 45px 5% 60px;
}
.sec_price h2 {
    margin-bottom: 30px;
    font-size: 26px;
    letter-spacing: 0.1em;
    line-height: 1.2;
}
.sec_price h2::before {
    top: -10px;
    font-size: 100px;
    letter-spacing: 0.08em;
}
.sec_price h2 span {
    bottom: 0;
    font-size: 34px;
}
.top_price_img {
    margin-bottom: 16px;
}
.top_price_text p {
    font-size: 15px;
    line-height: 2;
    text-align: left;
}
.top_price_text p:not(:last-of-type) {
    margin-bottom: 16px;
}
.top_price_text .top_btn {
    margin-top: 30px;
    padding-left: 0;
}
.top_btn a {
    width: 100%;
    padding: 20px 0;
    font-size: 15px;
    background-size: 20px auto;
}

/* 下層ページ */
.price_tb th, 
.price_tb td {
    padding: 15px 2%;
}

/*==================================================================

trouble

==================================================================*/
.sec_trouble h2 {
    height: auto;
    padding: 40px 4%;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0;
    text-align: left;
}
.top_trouble_cont {
    padding: 20px 5% 30px;
}
.top_trouble_cont h3,
.top_trouble_list li:nth-of-type(2) .top_trouble_cont h3 {
    margin-bottom: 16px;
    font-size: 18px;
    letter-spacing: 0.08em;
    line-height: 1.4;
}
.top_trouble_cont h3 span {
    top: 0;
    font-size: 24px;
}
.top_trouble_list li:nth-of-type(2) .top_trouble_cont h3 span {
    font-size: 22px;
}


/*==================================================================

message

==================================================================*/
.sec_message {
    padding: 80px 0 60px;
}
.sec_message::before {
    width: 100%;
    height: 90px;
    top: 85px;
}
.sec_message::after {
    height: 260px;
    mask-position: center top;
    mask-size: auto 260px;
    -webkit-mask-position: center top;
    -webkit-mask-size: auto 260px;
}
.sec_message h2 {
    margin-bottom: 130px;
    font-size: 25px;
}
.sec_message h2::before {
    top: -30px;
    font-size: 100px;
    letter-spacing: 0.08em;
}
.top_message_flex {
    display: block;
    width: 90%;
    margin-top: -80px;
}
.top_message_flex figure {
    width: 80%;
    margin: 0 auto;
}
.top_message_flex figure figcaption {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.5;
}
.top_message_text {
    width: 100%;
    padding: 20px 0 0;
}
.top_message_text h3 {
    margin-bottom: 15px;
    font-size: 20px;
    text-align: left;
}
.top_message_text p {
    font-size: 15px;
    line-height: 2;
}
.top_message_text p:not(:last-of-type) {
    margin-bottom: 16px;
}
.top_message_flex .top_btn {
    margin-top: 30px;
}

/* 下層ページ */
.doctor_flex {
    display: block;
    margin-bottom: 30px;
}
.doctor_flex figure,
.doctor_sub_flex figure {
    width: 80%;
    margin: 0 auto 15px;
}
.doctor_sub_flex {
    display: block;
}
.doctor_flex_text {
    width: 100%;
}
.doctor_sub_flex_text {
    width: 100%;
    padding-top: 0;
}
.doctor_flex_text p.name, 
.doctor_sub_flex_text p.name {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.5;
}
.doctor_sub_flex_text p.name {
    text-align: center;
}
.doctor_carr_wrap {
    flex-direction: column;
    gap: 20px 0;
}
.doctor_carr_box {
    width: 100%;
    padding: 15px 5%;
}
.clinic_slide_wrap .slick-list {
    overflow: hidden;
}
.cmn_valuation_text {
    margin-bottom: 15px;
}
.doctor_carr_box .tit02 {
    margin-bottom: 4px;
    padding: 4px 0 4px 18px;
    font-size: 19px;
}
.clinic_policy_tit {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.5;
}
.cmn_valuation_ttl {
    font-size: clamp(14px, 4.8vw, 18px);
}
.cmn_valuation_ttl {
    margin-bottom: 10px;
    font-size: clamp(14px, 4.8vw, 18px);
    line-height: 1.6;
}
.facilities_equip > dl:not(:last-of-type) {
    margin-bottom: 30px;
}
.facilities_equip.facilities_equip-1 > dl {
    padding: 20px 5%;
}

/*common*/
.pc{display:none!important}.sp{display:block!important}.pc_inline{display:none!important}.sp_inline{display:inline!important}.pc_table{display:table!important}.sp_table{display:table!important}img{max-width:100%;height:auto}.sp_mb00{margin-bottom:0!important}.sp_mr00{margin-right:0!important}.sp_ml00{margin-left:0!important}.sp_mt00{margin-top:0!important}.sp_pb00{padding-bottom:0!important}.sp_pr00{padding-right:0!important}.sp_pl00{padding-left:0!important}.sp_pt00{padding-top:0!important}.sp_center{text-align:center}

.img_fl, .img_fr {
    float: none;
    margin: 0;
    text-align: center;
}
.img_fl img, 
.img_fr img,
.img_fr.custom img{
    margin-bottom: 15px;
    width: auto;
    max-width: 100%;
    max-height: 300px;
    height: auto;
}

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