@charset "UTF-8";
/*+++++++++++++++++++++
// 変数
+++++++++++++++++++++*/
/*+++++++++++++++++++++ font 
+++++++++++++++++++++*/
@font-face { font-family: "zenkaku"; src: url("font/ZenKakuGothicNew-Medium.ttf"); }
@font-face { font-family: "Montserrat"; src: url("font/Montserrat-Regular.ttf"); }
/*+++++++++++++++++++++ @mixin 
+++++++++++++++++++++*/
/* ----------------------------------------------------------------------------------
リセット　_reset.scss
---------------------------------------------------------------------------------- */
html { -webkit-box-sizing: border-box; box-sizing: border-box; }

*, *::before, *::after { -webkit-box-sizing: inherit; box-sizing: inherit; }

ol, ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0; font-weight: normal; font-size: inherit; }

img { max-width: 100%; height: auto; vertical-align: bottom; }

/* ----------------------------------------------------------------------------------
モジュール　_module.scss
---------------------------------------------------------------------------------- */
/*----------------- clearfix  ------------------------ */
.cf::before, .cf::after { content: ""; display: block; }

.cf::after { clear: both; }

/*---------------------
float 
------------------------ */
.fl_l { float: left; }

.fl_r { float: right; }

/*---------------------- txt ----------------------- */
.txt_c { text-align: center; }

.txt_l { text-align: left; }

.txt_r { text-align: right; }

.point { font-weight: bold; font-size: 1.5rem; color: #63513e; }
.point.red { color: red; }
.point.green { color: #00d55f; }
@media all and (min-width: 48em), print { .point { font-size: 1.8rem; } }

/*-------------------- img  ---------------------- */
.img_c { display: block; max-width: 100%; height: auto; margin: 1rem auto; }

.img_l, .img_r { display: block; max-width: 80%; height: auto; margin: 1rem auto; }

@media all and (min-width: 48em), print { .img_l { float: left; margin: 0 2rem 2rem 0; }
  .img_r { float: right; margin: 0 0 2rem 2rem; } }
/*--------------------- PC・SP　表示・非表示  ---------------------- */
.sp_n { display: none; }

@media all and (min-width: 48em), print { .sp_n { display: block; }
  .pc_n { display: none; } }
/*----------------- マージン・パディング回り  ------------------------ */
.mt50 { margin-top: 5rem; }

.mt40 { margin-top: 4rem; }

.mt30 { margin-top: 3rem; }

.mt20 { margin-top: 2rem; }

.mt10 { margin-top: 1rem; }

.mt00 { margin-top: 0 !important; }

.mb50 { margin-bottom: 5rem; }

.mb40 { margin-bottom: 4rem; }

.mb30 { margin-bottom: 3rem; }

.mb20 { margin-bottom: 2rem; }

.mb10 { margin-bottom: 1rem; }

.mb00 { margin-bottom: 0 !important; }

section { margin: 0 0 1rem 0; }

@media all and (min-width: 48em), print { .mt50 { margin-top: 10rem; }
  .mt40 { margin-top: 8rem; }
  .mt30 { margin-top: 6rem; }
  .mt20 { margin-top: 4rem; }
  .mt10 { margin-top: 2rem; }
  .mt00 { margin-top: 0rem !important; }
  .mb50 { margin-bottom: 10rem; }
  .mb40 { margin-bottom: 8rem; }
  .mb30 { margin-bottom: 6rem; }
  .mb20 { margin-bottom: 4rem; }
  .mb10 { margin-bottom: 2rem; }
  .mb00 { margin-bottom: 0rem !important; }
  section { margin: 0 0 2rem 0; } }
/*------------------ グーグルマップ  ----------------------- */
.gmap { width: 100%; }
.gmap iframe { width: 100%; height: 100%; border: none; }

/* -------------------
フレックス回り ------------------------  */
@media all and (min-width: 48em), print { .flex2 { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -ms-flex-wrap: wrap; flex-wrap: wrap; }
  .flex2 > section, .flex2 > ul, .flex2 > li { width: 48%; margin: 0 !important; } }
/* --------------------------
ボタン　リンク関係
-----------------------------*/
.link_box { width: 100%; padding: 0.5rem 1rem; margin: 2em auto; color: #fff; background: #107831; /*背景色*/ -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32); box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32); /*影*/ text-align: center; }
.link_box .tit { font-size: 1.5rem; border-bottom: 1px dashed #fff; text-align: center; font-weight: bold; padding-bottom: 0.5rem; margin: 0.5rem 0; }
.link_box .text { font-size: 1.6rem; font-weight: bold; }
.link_box .text a { text-decoration: none !important; }
.link_box .text::before { content: "\e809"; font-family: "fontello"; margin-right: 0.5rem; }

@media all and (min-width: 48em), print { .link_box { width: 60%; margin: 2em auto; }
  .link_box .tit { font-size: 2rem; padding-bottom: 1rem; margin: 1rem 0; }
  .link_box .text { font-size: 2.2rem; } }
.btn_box { text-align: center; padding: 1rem 0; }

.link_btn { text-align: center; display: inline-block; padding: 0.8rem 1.5rem; text-decoration: none !important; border: 2px solid #b48667; color: #fff; border-radius: 5px; background-color: #b48667; }
.link_btn span::after { content: ""; background: url("../img/btn_arrow.svg") no-repeat center center/contain; display: inline-block; width: 1.5rem; height: 1.5rem; margin: 0 0 0 0.5rem; vertical-align: middle; -webkit-transition: all 0.3s; transition: all 0.3s; }
.link_btn:hover span::after { -webkit-transform: translateX(3px); transform: translateX(3px); }

@media all and (min-width: 48em), print { .btn_box { text-align: initial; padding: 1rem 0; }
  .link_btn { display: inline-block; width: 280px; padding: 1rem 1.5rem; text-decoration: none !important; border-radius: 5px; position: relative; font-size: 2.2rem; }
  .link_btn span::after { content: ""; background: url("../img/btn_arrow.svg") no-repeat center center/contain; display: inline-block; width: 2.8rem; height: 2.8rem; margin: 0 0 0 1rem; -webkit-transition: all 0.3s; transition: all 0.3s; } }
.link_a { display: inline-block; color: #63513e; font-weight: bold; margin: 0 0.5rem; }

/*--------------------------------- リスト回り
-------------------------------------- */
.lst_ul01 li { line-height: 1.8; /*display: flex;*/ position: relative; padding: 0 0 0 1.5rem; -webkit-box-sizing: border-box; box-sizing: border-box;     /* &:last-of-type::before { content: none; }     +/ span:nth-child(1) { flex-shrink: 0; margin-right: 0.8rem; } }
}

@include pc { .lst_ul01 { li { &::before { margin-right: 0.5rem; padding: 0.2rem 0 0 0; } span:nth-child(1) { flex-shrink: 0; margin-right: 1.3rem; } } }
}

.lst_ul01_two { li { // text-indent: -1.5rem; // padding-left: 1.5rem; line-height: 1.8; /*display: flex;*/ }
.lst_ul01 li::before { content: "●"; color: #c4e2a2; margin-right: 0.3rem; padding: 0.18rem 0 0 0; font-size: 80%; vertical-align: baseline; position: absolute; left: 0; }
.lst_ul01 li::before { content: "●"; color: #c4e2a2; margin-right: 0.3rem; padding: 0.18rem 0 0 0; font-size: 80%; vertical-align: baseline; }
.lst_ul01 li span:nth-child(1) { -ms-flex-negative: 0; flex-shrink: 0; margin-right: 0.8rem; }

@media all and (min-width: 48em), print { .lst_ul01 li { line-height: 1.8; /*display: flex;*/ position: relative; padding: 0 0 0 2rem; -webkit-box-sizing: border-box; box-sizing: border-box; /*
&:last-of-type::before { content: none;
}    
*/ }
  .lst_ul01 li::before { content: "●"; color: #c4e2a2; margin-right: 0.3rem; padding: 0.18rem 0 0 0; font-size: 80%; vertical-align: baseline; position: absolute; left: 0; }
  .lst_ul01 li span:nth-child(1) { -ms-flex-negative: 0; flex-shrink: 0; margin-right: 0.8rem; }
  .lst_ul01_two { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -ms-flex-wrap: wrap; flex-wrap: wrap; }
  .lst_ul01_two li { width: 48%; }
  .lst_ul01_two li::before { margin-right: 0.5rem; padding: 0.2rem 0 0 0; }
  .lst_ul01_two li span:nth-child(1) { -ms-flex-negative: 0; flex-shrink: 0; margin-right: 1.3rem; } }
.lst_ul02 { padding: 1.7rem 1rem 0.5rem 1.5rem; background-color: #f5f1ea; margin: 0 0 2rem 0; }
.lst_ul02 li { text-indent: -1.5rem; padding-left: 1.5rem; padding-bottom: 1rem; line-height: 1.4; }
.lst_ul02 li::before { content: "●"; color: #c4e2a2; margin-right: 0.4rem; font-size: 80%; vertical-align: 6%; }
.lst_ul02 li:last-of-type::before { content: none; }
.lst_ul02.all li:last-of-type::before { content: "●"; }

.lst_ul03 { padding: 1.5rem 0.5rem 0.5rem 1.5rem; background-color: #f5f1ea; display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -ms-flex-wrap: wrap; flex-wrap: wrap; width: 100%; }
.lst_ul03 li { padding: 0 1rem 1rem 0; }
.lst_ul03 li::before { content: "●"; margin-right: 0.4rem; color: #c4e2a2; font-size: 80%; vertical-align: 6%; }

.lst_ul04 { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-pack: distribute; justify-content: space-around; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.lst_ul04 li { width: 45%; margin: 0.5rem 0; }
.lst_ul04 li a { text-align: center; display: inline-block; width: 100%; height: 100%; padding: 0.5rem 1rem 0.5rem 0.5rem; text-decoration: none !important; background: #b48667; border: 1px solid #b48667; color: #fff; position: relative; font-weight: bold; }
.lst_ul04 li a::after { content: "\77"; font-family: "fontello"; position: absolute; top: 13%; right: 5%; }
.lst_ul04 li a:hover { background-color: #fff; border: 1px solid #b48667; color: #b48667; }

@media all and (min-width: 48em), print { .lst_ul04 { -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
  .lst_ul04 li { width: 23.3%; margin: 1rem; }
  .lst_ul04 li a { font-size: 2rem; padding: 1rem 0; }
  .lst_ul04 li a::after { top: 18%; right: 5%; font-size: 100%; }
  .lst_ul04.block_2::after { content: ""; display: block; width: 48%; margin: 1rem 0; } }
.lst_ul05 li { position: relative; padding: 1.5rem; margin: 0 0 6rem 0; border: 2px solid #8dcb8f; border-radius: 5px; }
.lst_ul05 li:last-child { margin: 0 0 0 0; }
.lst_ul05 li:not(:last-child)::after { content: ""; display: block; position: absolute; top: 115%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); border-left: 20px solid transparent; border-right: 20px solid transparent; border-top: 20px solid #8dcb8f; }
.lst_ul05 li dl dt { font-family: "zenkaku"; color: #007731; font-size: 1.7rem; }
.lst_ul05 li dl dd { margin: 0; }

@media all and (min-width: 48em), print { .lst_ul05 li { position: relative; padding: 1.5rem; margin: 0 0 10rem 0; }
  .lst_ul05 li:last-child { margin: 0 0 0 0; }
  .lst_ul05 li:not(:last-child)::after { content: ""; display: block; top: 135%; border-left: 30px solid transparent; border-right: 30px solid transparent; border-top: 30px solid #8dcb8f; } }
.lst_ul06 { padding: 1rem; display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -ms-flex-wrap: wrap; flex-wrap: wrap; width: 100%; }
.lst_ul06 li { margin-right: 0.8rem; }
.lst_ul06 li::before { content: "●"; margin-right: 0.4rem; color: #c4e2a2; font-size: 80%; vertical-align: 8%; }

.lst_ul07 { padding: 0.5rem; width: 100%; font-size: 0; }
.lst_ul07 li { text-indent: -1.4rem; padding-left: 1.4rem; font-size: 1.4rem; }
@media all and (min-width: 48em), print { .lst_ul07 li { text-indent: -1.8rem; padding-left: 1.8rem; font-size: 1.8rem; } }
.lst_ul07 li::before { content: "・"; font-family: "fontello"; font-size: 100%; vertical-align: 0%; }

.lst_ol01 { counter-reset: number; list-style-type: none !important; /*数字を一旦消す*/ padding: 0 1rem; }
.lst_ol01 li { padding-bottom: 1rem; text-indent: -2.7rem; padding-left: 2.2rem; }
.lst_ol01 li::before { counter-increment: number; content: counter(number); /*数字のデザイン変える*/ display: inline-block; background: #63513e; color: #fff; width: 2.2rem; height: 2.2rem; border-radius: 50%; text-align: center; margin-right: 0.5rem; line-height: 2.2rem; text-indent: -2.2rem; padding-left: 2.2rem; font-size: 1.2rem; font-weight: bold; }

@media all and (min-width: 48em), print { .lst_ol01 { padding: 1rem; }
  .lst_ol01 li { padding-bottom: 1.5rem; text-indent: -3.5rem; padding-left: 2.2rem; }
  .lst_ol01 li::before { width: 2.5rem; height: 2.5rem; text-align: center; margin-right: 1rem; line-height: 2.5rem; font-size: 1.6rem; } }
.lst_dl01 { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-top: 0; line-height: 1.8; }
.lst_dl01 dt { width: 38%; }
.lst_dl01 dt::before { content: "●"; margin-right: 0.3rem; color: #c4e2a2; font-size: 80%; vertical-align: 5%; }
.lst_dl01 dd { width: 61%; margin: 0; }

@media all and (min-width: 48em), print { .lst_dl01 { margin: 0; }
  .lst_dl01 dt { width: 24%; }
  .lst_dl01 dt::before { margin-right: 0.5rem; }
  .lst_dl01 dd { width: 75%; margin: 0; } }
.lst_dl02 dt { background-color: #999999; padding: 0.5rem 1rem; font-weight: bold; border: 1px solid #999999; color: #fff; }
.lst_dl02 dd { margin: 0; padding: 1rem; border: 1px solid #999999; border-top: none; border-bottom: none; }
.lst_dl02 dd:last-of-type { border-bottom: 1px solid #999999; }

/*数字*/
dl.num_list { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-sizing: border-box; box-sizing: border-box; margin: 0 0 2rem 0; line-height: 160%; width: 100%; background-color: #f5f1ea; padding: 1rem; }
dl.num_list dt { width: 6%; margin: 0 0 1rem 0; }
dl.num_list dd { width: 92%; margin: 0 0 1rem 0; }

@media all and (min-width: 48em), print { dl.num_list { width: 1200px; background-color: #f5f1ea; padding: 20px; -webkit-box-sizing: border-box; box-sizing: border-box; margin: 0 0 15px 0; }
  dl.num_list dt { width: 30px; }
  dl.num_list dd { width: 1130px; } }
/*点*/
dl.point_list { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-sizing: border-box; box-sizing: border-box; margin: 0 0 2rem 0; line-height: 160%; width: 100%; background-color: #f5f1ea; padding: 1rem; }
dl.point_list dt { width: 18%; margin: 0 0 1rem 0; }
dl.point_list dd { width: 82%; margin: 0 0 1rem 0; }

@media all and (min-width: 48em), print { dl.point_list { width: 1200px; background-color: #f5f1ea; padding: 20px; -webkit-box-sizing: border-box; box-sizing: border-box; margin: 0 0 15px 0; }
  dl.point_list dt { width: 60px; }
  dl.point_list dd { width: 1100px; } }
/*-------------------- タイムテーブル
------------------------*/
.tbl_time { width: 100%; border-collapse: separate; border-spacing: 0; table-layout: fixed; -webkit-box-sizing: border-box; box-sizing: border-box; }
.tbl_time caption { padding: 1rem 0 0 0; caption-side: bottom; text-align: left; font-size: 1.3rem; line-height: 1.4; }
.tbl_time tr th { background-color: #999999; font-weight: normal; color: #fff; font-size: 1.2rem; padding: 0.8rem 0; font-weight: bold; }
.tbl_time tr th:first-child { width: 34%; }
.tbl_time tr td { text-align: center; padding: 0.8rem 0; line-height: 1.3; font-size: 1.3rem; color: #444444; border-bottom: 1px solid #999999; }
.tbl_time tr td.time { color: #444444; font-size: 1.3rem; color: #444444; }
.tbl_time tr td.doctor span { -ms-writing-mode: tb-rl; -webkit-writing-mode: vertical-rl; writing-mode: vertical-rl; white-space: pre; display: inline-block; }
.tbl_time tr td.doctor span span { -webkit-writing-mode: horizontal-tb; -ms-writing-mode: lr-tb; writing-mode: horizontal-tb; }

@media all and (min-width: 48em), print { .tbl_time { width: 100%; font-size: 1.8rem; }
  .tbl_time caption { width: 100%; font-size: 1.8rem; }
  .tbl_time tr th { padding: 1rem 0; font-size: 1.8rem; }
  .tbl_time tr th:first-child { width: 20%; }
  .tbl_time tr th.close { width: auto; }
  .tbl_time tr td { font-size: 1.8rem; }
  .tbl_time tr td.time { text-align: center; font-size: 1.8rem; padding: 1.4rem 0; }
  .tbl_time tr td.doctor span { -ms-writing-mode: horizontal-tb; -webkit-writing-mode: horizontal-tb; writing-mode: horizontal-tb; } }
.tbl_time_checkup { width: 100%; border-collapse: collapse; border-spacing: 0; table-layout: fixed; -webkit-box-sizing: border-box; box-sizing: border-box; line-height: 1.6; }
.tbl_time_checkup caption { caption-side: top; text-align: center; font-size: 1.5rem; font-weight: bold; padding: 1rem 0; }
.tbl_time_checkup tr th { font-weight: normal; color: #91bc31; font-size: 1.2rem; padding: 0.5rem 0; font-weight: bold; border: 1px solid #ccc; }
.tbl_time_checkup tr th:nth-of-type(1) { width: 31%; }
.tbl_time_checkup tr th:nth-of-type(2) { width: 22%; }
.tbl_time_checkup tr th:nth-of-type(3) { width: 19%; }
.tbl_time_checkup tr td { text-align: center; padding: 0.5rem; line-height: 1.3; font-size: 1rem; background-color: #ffffff; border: 1px solid #ccc; }
.tbl_time_checkup tr td:nth-of-type(4) { text-align: left; }

.tbl_time_checkup_age { border-collapse: collapse; }
.tbl_time_checkup_age tr th { background-color: #00d55f; font-weight: normal; color: #fff; font-size: 1.2rem; padding: 0.5rem; font-weight: bold; border: 1px solid #ccc; }
.tbl_time_checkup_age tr td { text-align: center; padding: 1rem; line-height: 1.3; font-size: 1rem; background-color: #ffffff; border: 1px solid #ccc; }
.tbl_time_checkup_age tr td:nth-of-type(4) { text-align: left; }

@media all and (min-width: 48em), print { .tbl_time_checkup { width: 100%; font-size: 1.6rem; }
  .tbl_time_checkup caption { width: 100%; font-size: 1.6rem; }
  .tbl_time_checkup tr th { padding: 1.4rem 0; font-size: 1.6rem; }
  .tbl_time_checkup tr th:nth-of-type(1) { width: 22%; }
  .tbl_time_checkup tr th:nth-of-type(2) { width: 18%; }
  .tbl_time_checkup tr th:nth-of-type(3) { width: 9%; }
  .tbl_time_checkup tr td { font-size: 1.6rem; padding: 1rem; }
  .tbl_time_checkup tr td.time { text-align: center; font-size: 1.8rem; padding: 1.4rem 0; }
  .tbl_time_checkup_age tr th { padding: 1.4rem 0; font-size: 1.6rem; }
  .tbl_time_checkup_age tr td { font-size: 1.6rem; padding: 1rem; }
  .tbl_time_checkup_age tr td.time { text-align: center; font-size: 1.8rem; padding: 1.4rem 0; } }
/* --------------------------- タイトル回り
------------------------------ */
.tit_p { color: #fff; font-size: 1.8rem; margin: 0 0 1rem; font-weight: bold; padding: 1rem 2rem; background: #0181bd; }

.tit_01 { font-size: 2.2rem; }

.tit_02 { font-size: 2rem; padding: 1rem 0; margin: 0 0 1.5rem 0; color: #666666; font-family: "zenkaku", YuGothic, "游ゴシック", "Yu Gothic", sans-serif; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
.tit_02::before { content: ""; background: url("../img/h2_l.png") no-repeat center center/contain; width: 3.2rem; height: 3.2rem; margin: 0.2rem 0.5rem 0 0; }
.tit_02::after { content: ""; display: inline-block; background: url("../img/h2_r.png") no-repeat center center/contain; width: 3.2rem; height: 3.2rem; margin: 0.2rem 0 0 0.5rem; }

.h2_kaso { font-size: 2.2rem; padding: 1rem 0 0 0; margin: 3rem 0; color: #666666; font-family: "zenkaku", YuGothic, "游ゴシック", "Yu Gothic", sans-serif; line-height: 1.3; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
.h2_kaso::before { content: ""; background: url("../img/h2_l.png") no-repeat center center/contain; width: 3.2rem; height: 3.2rem; margin: 0.2rem 1rem 0 0; }
.h2_kaso::after { content: ""; display: inline-block; background: url("../img/h2_r.png") no-repeat center center/contain; width: 3.2rem; height: 3.2rem; margin: 0.2rem 0 0 1rem; }

.tit_03 { font-size: 1.9rem; margin: 2.8rem 0 1rem 0; padding: 0.3rem 0; color: #645b52; border-bottom: 3px solid #b48667; position: relative; -webkit-box-sizing: border-box; box-sizing: border-box; font-family: "zenkaku", YuGothic, "游ゴシック", "Yu Gothic", sans-serif; }
.tit_03::after { content: ""; display: block; width: 100%; height: 3px; background-color: #645b52; position: absolute; bottom: 0; left: 0; }

.tit_04 { font-size: 1.7rem; margin: 2.7rem 0 1rem 0; border-bottom: 3px solid #007731; color: #007731; font-family: "zenkaku", YuGothic, "游ゴシック", "Yu Gothic", sans-serif; }

.tit_05 { font-size: 1.6rem; margin: 2.6rem 0 1rem 0; color: #2db132; border-bottom: 2px dotted #2db132; font-family: "zenkaku", YuGothic, "游ゴシック", "Yu Gothic", sans-serif; }

.tit_06 { font-size: 1.4rem; margin: 2.5rem 0 1rem 0; color: #b48667; font-family: "zenkaku", YuGothic, "游ゴシック", "Yu Gothic", sans-serif; }

@media all and (min-width: 48em), print { .tit_p { font-size: 2.6rem; }
  .tit_01 { font-size: 4rem; }
  .tit_02 { font-size: 3.2rem; margin: 3rem 0 2.5rem 0; }
  .tit_02::before { content: ""; background: url("../img/h2_l.png") no-repeat center center/contain; width: 4rem; height: 4rem; margin: 0.2rem 1rem 0 0; }
  .tit_02::after { content: ""; display: inline-block; background: url("../img/h2_r.png") no-repeat center center/contain; width: 4rem; height: 4rem; margin: 0.2rem 0 0 1rem; }
  .h2_kaso { font-size: 3.2rem; margin: 7.5rem 0 2.5rem 0; }
  .h2_kaso::before { content: ""; background: url("../img/h2_l.png") no-repeat center center/contain; width: 4rem; height: 4rem; margin: 0.2rem 5rem 0 0; }
  .h2_kaso::after { content: ""; display: inline-block; background: url("../img/h2_r.png") no-repeat center center/contain; width: 4rem; height: 4rem; margin: 0.2rem 0 0 5rem; }
  .tit_03 { font-size: 3rem; margin: 6rem 0 2.5rem 0; padding: 0.9rem 0; border-bottom: 5px solid #b48667; }
  .tit_03::after { content: ""; display: block; width: 100%; height: 5px; background-color: #645b52; position: absolute; bottom: 0; left: 0; }
  .tit_04 { font-size: 2.8rem; margin: 5.5rem 0 1.5rem 0; border-bottom: 5px solid #2db132; }
  .tit_05 { font-size: 2.6rem; margin: 5rem 0 1.3rem 0; border-bottom: 4px dotted #178a7e; }
  .tit_06 { font-size: 2.4rem; margin: 4.5rem 0 1rem 0; color: #b48667; font-family: "zenkaku", YuGothic, "游ゴシック", "Yu Gothic", sans-serif; } }
/* -------------------------- BOX関係
-----------------------------*/
/* ------------------
共通　_common.scss
--------------------- */
html { font-size: calc(100vw / 32); font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif; overflow: auto; }

body { background: #fff; color: #444444; overflow: hidden; width: 100%; }

a { color: inherit; text-decoration: none; }

h1 { text-align: center; font-weight: bold; }

h2 { text-align: center; font-size: 2rem; padding: 0 0 1rem 0; }

h3 { font-size: 1.8rem; }

.main { font-size: 1.4rem; line-height: 1.6; }
.main a:not([href*="tel"]) { text-decoration: underline; }
.main a[class*="btn_"] { text-decoration: none; }

.wrap { padding: 0 1rem; margin: auto; }

@media all and (min-width: 48em), print { html { font-size: 62.5%; }
  body { min-width: 1200px; position: relative; }
  a { -webkit-transition: 0.2s; transition: 0.2s; }
  a:hover { opacity: 0.8; }
  h2 { font-size: 2.7rem; }
  h3 { font-size: 2.5rem; }
  .wrap { width: 1200px; padding: 0; }
  .main { font-size: 1.8rem; } }
@media all and (min-width: 48em) and (max-width: 74em), print { .wrap { width: 1200px; margin: auto; padding: 0 1rem; } }
/*--------------------------
アイコンフォント ---------------------------- */
@font-face { font-family: "fontello"; src: url("fontello/font/fontello.eot"); src: url("fontello/font/fontello.eot#iefix") format("embedded-opentype"), url("fontello/font/fontello.woff2") format("woff2"), url("fontello/font/fontello.woff") format("woff"), url("fontello/font/fontello.ttf") format("truetype"), url("fontello/font/fontello.svg#fontello") format("svg"); }
/*----------------------------
ヘッダー 
------------------------------- */
.header .wrap { padding: 0 0.5rem; }
.header .wrap .header_l .logo { display: block; padding: 1.2rem 5.5rem 0 0; margin: auto; }
.header .wrap .header_l .logo a img { margin: auto; max-width: 100% !important; width: 100%; }
.header .wrap .header_r { padding: 1.5rem 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }
.header .wrap .header_r .header_r_info { text-align: center; width: 75%; }
.header .wrap .header_r .header_r_info .header_access { font-size: 1.5rem; margin: 0 0 0.3rem 0; }
.header .wrap .header_r .header_r_info .tel_box { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; }
.header .wrap .header_r .header_r_info .tel_box .tel_text { background-color: #2db132; color: #ffffff; padding: 0.4rem 0.4rem; -webkit-box-sizing: border-box; box-sizing: border-box; width: auto; margin: 0 0.5rem 0 0; border-radius: 0.3rem; display: inline !important; font-weight: bold; }
.header .wrap .header_r .header_r_info .tel_box .header_tel a { color: #2db132; font-size: 1.8rem; font-weight: bold; }
.header .wrap .header_r .header_r_info .tel_box .header_tel a::before { content: "\e809"; font-family: "fontello"; font-size: 80%; margin: 0 0.5rem 0 0; }
.header .wrap .header_r .header_r_parking { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; width: 28%; font-size: 1.4rem; color: #fff; font-weight: bold; padding: 0.5rem; background-color: #645b52; border-radius: 5px; }
.header .wrap .header_r .header_r_parking::after { content: "\e87e"; font-family: "fontello"; display: block; font-size: 1.8rem; }

@media all and (min-width: 48em), print { .header { width: 100%; padding: 71rem 0 0 0; }
  .header .wrap { padding: 1.5rem 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }
  .header .wrap .header_l { width: 40%; position: relative; height: 100%; padding: 0; margin: 0; }
  .header .wrap .header_l .logo { display: block; padding: 0; margin: 0; width: 100%; }
  .header .wrap .header_l .logo a { display: block; width: 100%; height: 100%; }
  .header .wrap .header_l .logo a img { margin: 0; width: 100%; }
  .header .wrap .header_r { padding: 0; /*width: 36%;*/ width: 484px; height: 74.13px; }
  .header .wrap .header_r .header_r_info { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; text-align: right; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; padding: 0 1.8rem 0 0; position: relative; width: auto; }
  .header .wrap .header_r .header_r_info .header_access { font-size: 2rem; }
  .header .wrap .header_r .header_r_info .tel_box { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; margin: 0 -10px 0 0; }
  .header .wrap .header_r .header_r_info .tel_box .tel_text { background-color: #2db132; color: #ffffff; padding: 0; -webkit-box-sizing: border-box; box-sizing: border-box; width: auto; margin: 0 8px 0 0; border-radius: 3px; display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; width: 90px; height: 35px; font-size: 2.2rem; font-weight: bold; }
  .header .wrap .header_r .header_r_info .tel_box .header_tel { color: #2db132; font-size: 3.8rem; font-weight: bold; /* &::before { content: "\e809"; font-family: "fontello"; font-size: 90%; }
*/ }
  .header .wrap .header_r .header_r_parking { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; /*width: 26%;*/ width: 112.31px; font-size: 1.8rem; color: #fff; font-weight: bold; padding: 0.5rem 0.8rem; background-color: #645b52; border-radius: 5px; }
  .header .wrap .header_r .header_r_parking::after { content: "\e87e"; font-family: "fontello"; display: block; font-size: 3rem; } }
@media all and (min-width: 48em) and (max-width: 74em), print { .header { width: 100%; padding: 53rem 0 0 0; }
  .header .wrap { padding: 1.5rem 1rem; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }
  .header .wrap .header_l { width: 40%; position: relative; height: 100%; padding: 0; margin: 0; }
  .header .wrap .header_l .logo { display: block; padding: 0; margin: 0; width: 100%; }
  .header .wrap .header_l .logo a { display: block; width: 100%; height: 100%; }
  .header .wrap .header_l .logo a img { margin: 0; width: 100%; }
  .header .wrap .header_r { width: 50%; padding: 0; }
  .header .wrap .header_r .header_r_info { width: 60%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; text-align: right; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; padding: 0 1.8rem 0 0; }
  .header .wrap .header_r .header_r_info .header_access { font-size: 2rem; margin: 0 2rem 0.3rem 0; }
  .header .wrap .header_r .header_r_info .header_tel { color: #2db132; font-weight: bold; }
  .header .wrap .header_r .header_r_info .header_tel a { font-size: 2.2rem; }
  .header .wrap .header_r .header_r_parking { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; width: 21%; font-size: 1.8rem; color: #fff; font-weight: bold; padding: 0.5rem 0.8rem; background-color: #645b52; border-radius: 5px; }
  .header .wrap .header_r .header_r_parking::after { content: "\e87e"; font-family: "fontello"; display: block; font-size: 3rem; } }
/*----------------------------------------- SP ドロップダウンメニュー -------------------------------------- */
.btn_sp_box { position: absolute; top: 1.2%; right: 2%; z-index: 9999; }

.btn-trigger { position: relative; width: 4.8rem; height: 4.8rem; padding: 0.2rem; cursor: pointer; background-color: #5b4228; }
.btn-trigger::after { position: absolute; bottom: 0.3rem; left: 50%; -webkit-transform: translateX(-50%); transform: translateX(-50%); content: "MENU"; font-size: 0.85rem; font-weight: bold; color: #fff; letter-spacing: 1.5px; }
.btn-trigger.active::after { content: "CLOSE"; }
.btn-trigger.active { position: fixed; top: 1.2%; right: 2%; }

.btn-trigger span { position: absolute; left: 50%; width: 70%; height: 3px; background-color: #fff; border-radius: 4px; -webkit-transform: translateX(-50%); transform: translateX(-50%); }

.btn-trigger, .btn-trigger span { display: inline-block; -webkit-transition: all 0.5s; transition: all 0.5s; -webkit-box-sizing: border-box; box-sizing: border-box; }

.btn-trigger span:nth-of-type(1) { top: 2vw; }

.btn-trigger span:nth-of-type(2) { top: 5.5vw; }

.btn-trigger span:nth-of-type(3) { top: 8.8vw; }

#btn_sp span:nth-of-type(1) { -webkit-animation: btn_sp-bar01 0.75s forwards; animation: btn_sp-bar01 0.75s forwards; }

@-webkit-keyframes btn_sp-bar01 { 0% { -webkit-transform: translateY(10px) translateX(-50%) rotate(45deg); transform: translateY(10px) translateX(-50%) rotate(45deg); }
  50% { -webkit-transform: translateY(10px) translateX(-50%) rotate(0); transform: translateY(10px) translateX(-50%) rotate(0); }
  100% { -webkit-transform: translateY(0) translateX(-50%) rotate(0); transform: translateY(0) translateX(-50%) rotate(0); } }
@keyframes btn_sp-bar01 { 0% { -webkit-transform: translateY(10px) translateX(-50%) rotate(45deg); transform: translateY(10px) translateX(-50%) rotate(45deg); }
  50% { -webkit-transform: translateY(10px) translateX(-50%) rotate(0); transform: translateY(10px) translateX(-50%) rotate(0); }
  100% { -webkit-transform: translateY(0) translateX(-50%) rotate(0); transform: translateY(0) translateX(-50%) rotate(0); } }
#btn_sp span:nth-of-type(2) { -webkit-transition: all 0.25s 0.25s; transition: all 0.25s 0.25s; opacity: 1; }

#btn_sp span:nth-of-type(3) { -webkit-animation: btn_sp-bar03 0.75s forwards; animation: btn_sp-bar03 0.75s forwards; }

@-webkit-keyframes btn_sp-bar03 { 0% { -webkit-transform: translateY(-10px) translateX(-50%) rotate(-45deg); }
  50% { -webkit-transform: translateY(-10px) translateX(-50%) rotate(0); }
  100% { -webkit-transform: translateY(0) translateX(-50%) rotate(0); } }
@keyframes btn_sp-bar03 { 0% { -webkit-transform: translateY(-10px) translateX(-50%) rotate(-45deg); transform: translateY(-10px) translateX(-50%) rotate(-45deg); }
  50% { -webkit-transform: translateY(-10px) translateX(-50%) rotate(0); transform: translateY(-10px) translateX(-50%) rotate(0); }
  100% { -webkit-transform: translateY(0) translateX(-50%) rotate(0); transform: translateY(0) translateX(-50%) rotate(0); } }
#btn_sp.active span:nth-of-type(1) { -webkit-animation: active-btn_sp-bar01 0.75s forwards; animation: active-btn_sp-bar01 0.75s forwards; }

@-webkit-keyframes active-btn_sp-bar01 { 0% { -webkit-transform: translateY(0) translateX(-50%) rotate(0); }
  50% { -webkit-transform: translateY(3.5vw) translateX(-50%) rotate(0); }
  100% { -webkit-transform: translateY(3.5vw) translateX(-50%) rotate(45deg); } }
@keyframes active-btn_sp-bar01 { 0% { -webkit-transform: translateY(0) translateX(-50%) rotate(0); transform: translateY(0) translateX(-50%) rotate(0); }
  50% { -webkit-transform: translateY(3.5vw) translateX(-50%) rotate(0); transform: translateY(3.5vw) translateX(-50%) rotate(0); }
  100% { -webkit-transform: translateY(3.5vw) translateX(-50%) rotate(45deg); transform: translateY(3.5vw) translateX(-50%) rotate(45deg); } }
#btn_sp.active span:nth-of-type(2) { opacity: 0; }

#btn_sp.active span:nth-of-type(3) { -webkit-animation: active-btn_sp-bar03 0.75s forwards; animation: active-btn_sp-bar03 0.75s forwards; }

@-webkit-keyframes active-btn_sp-bar03 { 0% { -webkit-transform: translateY(0) translateX(-50%) rotate(0); }
  50% { -webkit-transform: translateY(-3.5vw) translateX(-50%) rotate(0); }
  100% { -webkit-transform: translateY(-3.5vw) translateX(-50%) rotate(-45deg); } }
@keyframes active-btn_sp-bar03 { 0% { -webkit-transform: translateY(0) translateX(-50%) rotate(0); transform: translateY(0) translateX(-50%) rotate(0); }
  50% { -webkit-transform: translateY(-3.5vw) translateX(-50%) rotate(0); transform: translateY(-3.5vw) translateX(-50%) rotate(0); }
  100% { -webkit-transform: translateY(-3.5vw) translateX(-50%) rotate(-45deg); transform: translateY(-3.5vw) translateX(-50%) rotate(-45deg); } }
#nav { position: fixed; top: 0; right: 0; z-index: 9998; width: 100%; height: 100%; padding: 6rem 0 1rem; overflow: auto; background: #fff; -webkit-transform: translateY(-3rem); transform: translateY(-3rem); visibility: hidden; opacity: 0; -webkit-transition: 0.45s cubic-bezier(0.03, 0.1, 0.15, 0.78); transition: 0.45s cubic-bezier(0.03, 0.1, 0.15, 0.78); }
#nav.show { position: fixed; -webkit-transform: translateX(0); transform: translateX(0); visibility: visible; opacity: 1; -webkit-transition: 0.6s cubic-bezier(0.29, 0.19, 0.1, 0.85); transition: 0.6s cubic-bezier(0.29, 0.19, 0.1, 0.85); }
#nav ul.gnav { width: 100%; padding: 0 1rem; margin: auto; }
#nav ul.gnav li #sub_menu01 { z-index: 9998; display: none; }
#nav ul.gnav li #sub_menu01 ul { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -ms-flex-wrap: wrap; flex-wrap: wrap; }
#nav ul.gnav li #sub_menu01 ul li { width: 50%; }
#nav ul.gnav li #sub_menu01 ul li a { display: block; width: 100%; height: 100%; padding: 1.2rem 0 1.2rem 0.8rem; font-size: 1.5rem; color: #fff; background-color: rgba(91, 66, 40, 0.8); border-bottom: 1px dotted #fff; border-right: 1px dotted #fff; }
#nav ul.gnav li #sub_menu01 ul li a:hover { background-color: #5b4228; }
#nav ul.gnav li #sub_menu01 ul li:nth-child(even) a { border-right: none; }
#nav ul.gnav li #sub_menu01 ul li:nth-last-child(-n + 2) a { border-bottom: none; }
#nav ul.gnav > li > a { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -ms-flex-align: center; align-items: center; width: 100%; height: 100%; font-size: 1.6rem; padding: 1rem 0; border-bottom: 1px solid #ccc; color: #5b4228; }
#nav ul.gnav > li.treat_point { position: relative; }

@media all and (min-width: 48em), print { #nav { display: block; position: relative; -webkit-transform: none; transform: none; visibility: visible; overflow: visible; opacity: 1; padding: 2rem 0 0 0; width: 100%; }
  #nav ul.gnav { width: 1200px; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-pack: distribute; justify-content: space-around; padding: 0; }
  #nav ul.gnav li { width: 20%; position: relative; border-bottom: none; padding: 0; }
  #nav ul.gnav li #sub_menu01 { position: absolute; width: 40rem; top: 100%; left: 0; z-index: 9998; text-align: left; display: none; font-size: 0; }
  #nav ul.gnav li #sub_menu01 ul { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -ms-flex-wrap: wrap; flex-wrap: wrap; }
  #nav ul.gnav li #sub_menu01 ul li { width: 50%; }
  #nav ul.gnav li #sub_menu01 ul li a { font-size: 1.8rem; text-align: left; height: 6rem; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; background-color: rgba(99, 81, 62, 0.8); border-bottom: 1px dotted #fff; border-right: 1px dotted #fff; }
  #nav ul.gnav li #sub_menu01 ul li a:hover { background-color: #63513e; opacity: 1; }
  #nav ul.gnav > li { text-align: center; }
  #nav ul.gnav > li:nth-last-of-type(1) > a { border-right: 2px dotted #8e806f; }
  #nav ul.gnav > li > a { display: block; width: 100%; height: 100%; font-size: 2rem; border-left: 2px dotted #8e806f; border-bottom: none; padding: 1.8rem 0; }
  #nav ul.gnav > li.treat_point { cursor: pointer; position: relative; } }
@media all and (min-width: 48em) and (max-width: 74em), print { #nav ul.gnav { width: 99%; } }
/*-------------------------- クリニック概要
---------------------------- */
.overview { padding: 2rem 0 0 0; background: url("../img/overview_bgimg.jpg") no-repeat center center/cover; }
.overview .wrap { padding: 0 1rem 2rem 1rem; }
.overview .wrap .clinic_name { width: 100%; }
.overview .wrap .clinic_name img { width: 80%; }
.overview .wrap .overview_box { margin-top: 2rem; }
.overview .wrap .overview_box .overview_l { border-left: 1px solid #707070; padding: 0 0 0 0.8rem; }
.overview .wrap .overview_box .overview_l dl.overview_dl { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; -ms-flex-wrap: wrap; flex-wrap: wrap; margin: 0; line-height: 1.4; }
.overview .wrap .overview_box .overview_l dl.overview_dl > dt { width: 30%; padding: 0.8rem 0; font-size: 1.4rem; color: #645b52; font-weight: bold; }
.overview .wrap .overview_box .overview_l dl.overview_dl > dd { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; -ms-flex-wrap: wrap; flex-wrap: wrap; width: 69%; padding: 0.8rem 0; margin: 0; font-size: 1.4rem; font-weight: 500; }
.overview .wrap .overview_box .overview_l dl.overview_dl > dd.big { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.overview .wrap .overview_box .overview_l dl.overview_dl > dd.big p.tel_text { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -ms-flex-wrap: wrap; flex-wrap: wrap; width: auto; height: auto; padding: 0.4rem 0.4rem 0.4rem 0.4rem; -webkit-box-sizing: border-box; box-sizing: border-box; font-size: 1.2rem; font-weight: bold; background-color: #2db132; color: #ffffff; line-height: 100%; border-radius: 0.3rem; margin: 0 0.5rem 0 0; }
.overview .wrap .overview_box .overview_l dl.overview_dl > dd.big span.tel { font-size: 1.8rem; color: #2db132; font-weight: bold; }
.overview .wrap .overview_box .overview_r { border-left: 1px solid #707070; padding: 0 0 0 0.8rem; }
.overview .wrap .overview_box .overview_r dl.overview_dl { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; -ms-flex-wrap: wrap; flex-wrap: wrap; margin: 0; }
.overview .wrap .overview_box .overview_r dl.overview_dl > dt { width: 30%; padding: 0.8rem 0; font-size: 1.4rem; color: #645b52; font-weight: bold; }
.overview .wrap .overview_box .overview_r dl.overview_dl > dd { width: 70%; padding: 0.8rem 0; margin: 0; font-size: 1.4rem; }
.overview .wrap .overview_box .overview_r dl.overview_dl > dd .overview_access_dl { margin: 0; font-weight: 500; }
.overview .wrap .overview_box .overview_r dl.overview_dl > dd .overview_access_dl dt { color: #007731; }
.overview .wrap .overview_box .overview_r dl.overview_dl > dd .overview_access_dl dt:nth-of-type(1) { padding: 0 0 0.5rem 0; }
.overview .wrap .overview_box .overview_r dl.overview_dl > dd .overview_access_dl dt:nth-of-type(2) { padding: 0.8rem 0 0.5rem 0; }
.overview .wrap .overview_box .overview_r dl.overview_dl > dd .overview_access_dl dd { margin: 0; }
.overview .wrap .overview_box .overview_r dl.overview_dl > dd .overview_access_dl dd ul li { line-height: 1.4; }
.overview .overview_table { padding: 2rem 0 1rem 0; }
.overview .overview_table dl { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -ms-flex-wrap: wrap; flex-wrap: wrap; margin: 0; }
.overview .overview_table dl dt { font-size: 1.4rem; color: #645b52; font-weight: bold; width: 100%; padding: 0 0 0.5rem 0; }
.overview .overview_table dl dd { width: 100%; margin: 0; }
.overview .overview_table dl dd .tbl_time caption br.caption_br_none { display: none; }

.map_box { text-align: center; }
.map_box .googlemap { width: 100%; height: 28rem; border: none; }

@media all and (min-width: 48em), print { .overview { padding: 10rem 0 0 0; }
  .overview .wrap { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -ms-flex-wrap: wrap; flex-wrap: wrap; padding: 0; }
  .overview .wrap .clinic_name img { width: 32%; margin: 0 auto; }
  .overview .wrap .overview_box { padding: 3rem 0 0 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -ms-flex-wrap: wrap; flex-wrap: wrap; }
  .overview .wrap .overview_box .overview_l { width: 49%; padding: 0 0 0 1.5rem; }
  .overview .wrap .overview_box .overview_l dl.overview_dl { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; -ms-flex-wrap: wrap; flex-wrap: wrap; margin: 0; }
  .overview .wrap .overview_box .overview_l dl.overview_dl > dt { width: 18%; padding: 1rem 0; font-size: 1.75rem; }
  .overview .wrap .overview_box .overview_l dl.overview_dl > dt.big { padding: 2rem 0 1rem 0; }
  .overview .wrap .overview_box .overview_l dl.overview_dl > dd { width: 82%; margin: 0; padding: 1rem 0; font-size: 1.75rem; }
  .overview .wrap .overview_box .overview_l dl.overview_dl > dd.big { padding: 0.5rem 0 1.5rem 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -ms-flex-wrap: wrap; flex-wrap: wrap; }
  .overview .wrap .overview_box .overview_l dl.overview_dl > dd.big p.tel_text { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -ms-flex-wrap: wrap; flex-wrap: wrap; width: 90px; height: 35px; padding: 0; -webkit-box-sizing: border-box; box-sizing: border-box; font-size: 2.2rem; font-weight: bold; background-color: #2db132; color: #ffffff; line-height: 100%; border-radius: 3px; margin: 0 8px 0 0; }
  .overview .wrap .overview_box .overview_l dl.overview_dl > dd.big span.tel { font-size: 3.8rem; font-weight: bold; }
  .overview .wrap .overview_box .overview_r { width: 49%; padding: 0 0 0 1.5rem; }
  .overview .wrap .overview_box .overview_r dl.overview_dl { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; -ms-flex-wrap: wrap; flex-wrap: wrap; margin: 0; }
  .overview .wrap .overview_box .overview_r dl.overview_dl > dt { width: 18%; font-size: 1.75rem; padding: 1rem 0; }
  .overview .wrap .overview_box .overview_r dl.overview_dl > dd { width: 82%; margin: 0; padding: 1rem 0; font-size: 1.75rem; line-height: 1.4; }
  .overview .wrap .overview_box .overview_r dl.overview_dl > dd .overview_access_dl { margin-top: -0.2rem; }
  .overview .wrap .overview_box .overview_r dl.overview_dl > dd .overview_access_dl dt:nth-of-type(1) { padding: 0 0 0.5rem 0; }
  .overview .wrap .overview_box .overview_r dl.overview_dl > dd .overview_access_dl dt:nth-of-type(2) { padding: 1.8rem 0 0.5rem 0; }
  .overview .wrap .overview_box .overview_r dl.overview_dl > dd .overview_access_dl dd { margin: 0; }
  .overview .wrap .overview_box .overview_r dl.overview_dl > dd .overview_access_dl dd ul li { line-height: 1.4; }
  .overview .overview_table { padding: 2.5rem 0 10rem 0; }
  .overview .overview_table dl { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -ms-flex-wrap: wrap; flex-wrap: wrap; margin: 0; }
  .overview .overview_table dl dt { font-size: 1.8rem; font-weight: bold; width: 100%; padding: 0 0 1rem 0; }
  .overview .overview_table dl dd { width: 100%; margin: 0; }
  .overview .overview_table dl dd .tbl_time caption br.caption_br_none { display: none; }
  .map_box { text-align: center; }
  .map_box .googlemap { width: 100%; height: 50rem; border: none; } }
@media all and (min-width: 48em) and (max-width: 74em), print { .overview .wrap { padding: 0 1rem; } }
/*---------------------
footer グローバルナビ
---------------------- */
.footer_menu { background-color: #024418; width: 100%; display: block; }
.footer_menu .inner ul { display: none; }

@media all and (min-width: 48em), print { .footer_menu { text-align: center; margin-bottom: -0.1rem; }
  .footer_menu .inner { display: inline-block; padding: 5rem 0 2rem 0; width: 1200px; height: auto; }
  .footer_menu .inner .item { text-align: center; padding: 0 0 1.8rem 0; }
  .footer_menu .inner .item ul { display: inline-block; }
  .footer_menu .inner .item ul li { display: inline-block; border-right: 1px solid #fff; padding: 0 0.8rem; }
  .footer_menu .inner .item ul li:nth-last-of-type(1) { border-right: none; }
  .footer_menu .inner .item ul li a { display: block; width: 100%; height: 100%; font-size: 1.8rem; color: #fff; }
  .footer_menu .inner .item ul li a:hover { text-decoration: underline; opacity: 1; } }
/*------------------- ページUP
--------------------- */
.rsv_up { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; position: fixed; bottom: 0; left: 0; width: 100%; background-color: rgba(255, 255, 255, 0.8); font-size: 1.5rem; text-align: center; z-index: 999; }
.rsv_up .ft_tel { width: 65%; color: #fff; background-color: #2db132; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; }
.rsv_up .ft_tel::before { width: 27%; content: "予約制"; font-size: 1.2rem; font-weight: bold; text-align: center; background-color: #fff; color: #2db132; padding: 0.2rem; border-radius: 0.3rem; margin: 0 0 0 3%; }
.rsv_up .ft_tel a { width: 70%; width: 100%; height: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: left; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding: 1rem 0 1rem 1rem; }
.rsv_up .ft_tel a::before { text-align: left; content: "\e809"; font-family: "fontello"; margin-right: 0.3rem; }
.rsv_up .ft_top { width: 35%; color: #fff; background-color: #5b4228; }
.rsv_up .ft_top a { width: 100%; height: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding: 1rem 0; }

.pageup { display: none; }
.pageup a { display: none; }

@media all and (min-width: 48em), print { .rsv_up { display: none; }
  .pageup { cursor: pointer; position: fixed; bottom: 15rem; right: 6vw; z-index: 9999; }
  .pageup a { display: block; text-align: center; width: 100%; } }
@media all and (min-width: 48em) and (max-width: 74em), print { .rsv_up { display: none; }
  .pageup { cursor: pointer; position: fixed; bottom: 15rem; right: 2vw; z-index: 9999; }
  .pageup a { display: block; font-size: 2.5rem; text-align: center; width: 100%; } }
/*----------------------------
フッター
----------------------------- */
.footer { padding-bottom: 3.8rem; background-color: #024418; }
.footer .copy { display: block; padding: 0.8rem; font-size: 1.1rem; font-weight: normal; text-align: center; color: #fff; }
.footer ul { display: none; }

@media all and (min-width: 48em), print { .footer { text-align: center; padding-bottom: 0; }
  .footer .copy { width: 100%; padding: 4rem 0; font-size: 1.8rem; } }
/* -----------------------------
トップ　_top.scss
------------------------------- */
/*------------------ 共通項目 -------------------- */
/*-------------------- キービジュアル -------------------- */
.keyvsl { margin: auto; max-width: 100%; position: relative; -webkit-box-shadow: 0px -5px 5px -1px rgba(0, 0, 0, 0.16) inset; box-shadow: 0px -5px 5px -1px rgba(0, 0, 0, 0.16) inset; }
.keyvsl #slider { width: 100%; height: 55vw; background: url("../img/kv001.jpg"); position: relative; background-size: cover; background-position: center center; }
.keyvsl #slider .wrap { width: 100%; height: 100%; padding: 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: end; -ms-flex-align: end; align-items: flex-end; }

.kv_pop_sp { width: 100%; color: #fff; padding: 0.5rem 1rem; background: rgba(2, 68, 24, 0.75) url("../img/top_kv_bklogo.svg") no-repeat center center/15%; }
.kv_pop_sp p { margin: 0; font-size: 1.4rem; font-weight: bold; line-height: 1.4; }

@media all and (min-width: 48em), print { .keyvsl { position: absolute; top: 0; left: 0; width: 100%; margin: 0 auto; }
  .keyvsl #slider { height: 700px; }
  .keyvsl #slider::after { content: ""; width: calc((100% - 1200px) / 2); height: 100%; background-color: rgba(2, 68, 24, 0.75); display: block; position: absolute; top: 0; right: 0; }
  .keyvsl #slider .wrap { width: 1200px; height: 100%; margin: auto; position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding: 0; }
  .keyvsl #slider .wrap .kv_pop { width: 400px; height: 100%; padding: 0.5rem 1rem; background: rgba(2, 68, 24, 0.75) url("../img/top_kv_bklogo.svg") no-repeat center center/80%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
  .keyvsl #slider .wrap .kv_pop p { color: #fff; -webkit-writing-mode: vertical-rl; -ms-writing-mode: tb-rl; writing-mode: vertical-rl; margin: 0; font-size: 3rem; font-weight: bold; line-height: 2.5; } }
@media all and (min-width: 48em) and (max-width: 74em), print { .keyvsl { position: absolute; top: 0; left: 0; width: 100%; margin: 0 auto; }
  .keyvsl #slider { width: 100%; height: 47vw; }
  .keyvsl #slider::after { content: none; }
  .keyvsl #slider .wrap { width: 100%; height: 100%; margin: auto; position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding: 0; }
  .keyvsl #slider .wrap .kv_pop { width: 400px; height: 100%; padding: 0.5rem 1rem; background: rgba(2, 68, 24, 0.75) url("../img/top_kv_bklogo.svg") no-repeat center center/80%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
  .keyvsl #slider .wrap .kv_pop p { margin: 0; font-size: 2.5rem; font-weight: bold; line-height: 2; } }
.bx-wrapper { -webkit-box-shadow: none; box-shadow: none !important; border: 0px solid #fff; background: transparent; margin-bottom: 0; }

.bx-wrapper .bx-pager { text-align: right; display: none; }

.bx-wrapper .bx-pager.bx-default-pager a { background: #c9c9c9; border-radius: 0px; }

.bx-wrapper .bx-pager.bx-default-pager a.active { background: #1e90ff; }

/* --------------------
お知らせ ---------------------- */
.info .wrap { padding: 3rem 1rem; }
.info .wrap .info_box { border-top: 1px solid #999999; border-bottom: 1px solid #999999; padding: 1rem 0; }
.info .wrap .info_box dl { width: 100%; margin: 0 auto; }
.info .wrap .info_box dl dt.news_title { font-size: 1.4rem; cursor: pointer; }
.info .wrap .info_box dl dt.news_title .title_box { font-weight: bold; }
.info .wrap .info_box dl dt.news_title .title_box a { text-decoration: none; }
.info .wrap .info_box dl dt.news_title .title_box::before { content: "▼"; font-family: "fontello"; color: #024418; font-size: 1.6rem; }
.info .wrap .info_box dl dt.news_title .title_box span.new { display: none; }
.info .wrap .info_box dl dt.news_title .title_box span.info_date { display: none; }
.info .wrap .info_box dl dt.news_title .title_box span.info_title { color: #024418; }
.info .wrap .info_box dl dt.news_title.open .title_box { font-weight: bold; }
.info .wrap .info_box dl dt.news_title.open .title_box::before { content: "▲"; }
.info .wrap .info_box dl dd { margin: 0; padding: 0 0 1rem 0; }
.info .wrap .info_box dl dd:nth-of-type(n + 4) { display: none; }
.info .wrap .info_box dl dd p { font-size: 1.3rem; margin: 0 0 0 0; }

@media all and (min-width: 48em), print { .info { padding: 9rem 0 0 0; }
  .info .wrap { margin: auto; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; padding: 0; }
  .info .wrap h2.tit_02 { margin: -1.2rem 0 0 0; padding: 0; width: 20%; }
  .info .wrap .info_box { width: 78%; padding: 1.5rem 0; }
  .info .wrap .info_box dl { margin: 0 auto; }
  .info .wrap .info_box dl dt.news_title { padding: 0; font-size: 2rem; }
  .info .wrap .info_box dl dt.news_title .title_box::before { font-size: 2rem; }
  .info .wrap .info_box dl dt.news_title .title_box span.new { display: none; }
  .info .wrap .info_box dl dt.news_title .title_box span.info_date { margin-right: 0.7rem; }
  .info .wrap .info_box dl dt.news_title .title_box span.info_title { -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; }
  .info .wrap .info_box dl dd { margin: 0; padding: 0 0 1.5rem 0; }
  .info .wrap .info_box dl dd p { font-size: 1.8rem; margin: 0 0 0 0; } }
@media all and (min-width: 48em) and (max-width: 74em), print { .info { padding: 6rem 0 1rem 0; }
  .info .wrap { width: 100%; padding: 0 1rem; } }
/*------------------------- 特長
---------------------------- */
.features { padding: 0 0 0 0; }
.features .wrap { padding: 0; }
.features .wrap .item_box .item { margin: 0; }
.features .wrap .item_box .item .img_box img { width: 100%; display: block; margin: 0 auto; }
.features .wrap .item_box .item .text_box { padding: 4rem 1rem; background: #ccbeaa url("../img/top_features_bklogo.svg") no-repeat center center/48%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; line-height: 1.4; }
.features .wrap .item_box .item .text_box h3 { color: #ebf4fc; font-family: "Montserrat", YuGothic, "游ゴシック", "Yu Gothic", sans-serif; font-size: 2.6rem; }
.features .wrap .item_box .item .text_box p { margin: 0.5rem 0; color: #fff; font-weight: 500; font-size: 1.6rem; }
.features .wrap .item_box .item .text_box p span { font-size: 2rem; font-weight: bold; color: #645b52; }
.features .wrap .item_box .item .text_box p.feature_p04 { text-indent: -1.4rem; padding-left: 1.4rem; }
.features .wrap .item_box:nth-of-type(2) .item .text_box, .features .wrap .item_box:nth-of-type(4) .item .text_box { background: #8dcb8f url("../img/top_features_bklogo.svg") no-repeat center center/48%; }
.features .wrap .item_box:nth-of-type(2) .item .text_box p span, .features .wrap .item_box:nth-of-type(4) .item .text_box p span { color: #024418; }

@media all and (min-width: 48em), print { .features { padding: 5rem 0; }
  .features .wrap { padding: 0; }
  .features .wrap .item_box { background-color: #ccbeaa; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
  .features .wrap .item_box .item { width: 1200px; margin: auto; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }
  .features .wrap .item_box .item .img_box { width: 50%; }
  .features .wrap .item_box .item .img_box img { display: block; margin: 0 auto; }
  .features .wrap .item_box .item .text_box { width: 50%; padding: 0 0.8rem 0 1.5rem; height: auto; background: #ccbeaa url("../img/top_features_bklogo.svg") no-repeat center center/50%; line-height: 1.5; }
  .features .wrap .item_box .item .text_box h3 { font-size: 5rem; }
  .features .wrap .item_box .item .text_box p { margin: 2rem 0 0 0; font-size: 2.2rem; }
  .features .wrap .item_box .item .text_box p span { font-size: 2.8rem; }
  .features .wrap .item_box .item .text_box p.feature_p04 { text-indent: -2.2rem; padding-left: 2.2rem; }
  .features .wrap .item_box:nth-of-type(2), .features .wrap .item_box:nth-of-type(4) { background-color: #8dcb8f; }
  .features .wrap .item_box:nth-of-type(2) .item .img_box, .features .wrap .item_box:nth-of-type(4) .item .img_box { -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; }
  .features .wrap .item_box:nth-of-type(2) .item .text_box, .features .wrap .item_box:nth-of-type(4) .item .text_box { width: 50%; padding: 0 1.5rem 0 0.8rem; -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; height: auto; background: #8dcb8f url("../img/top_features_bklogo.svg") no-repeat center center/50%; }
  .features .wrap .item_box:nth-of-type(2) .item .text_box p, .features .wrap .item_box:nth-of-type(4) .item .text_box p { font-size: 2.2rem; }
  .features .wrap .item_box:nth-of-type(2) .item .text_box p span, .features .wrap .item_box:nth-of-type(4) .item .text_box p span { font-size: 2.8rem; } }
@media all and (min-width: 48em) and (max-width: 74em), print { .features { padding: 3rem 0; }
  .features .wrap { padding: 0; }
  .features .wrap .item_box { background-color: #ccbeaa; margin-left: 0; margin-right: 0; }
  .features .wrap .item_box .item { width: 100%; } }
/*------------------- 診療案内
------------------------ */
body.index .main .treatments { padding: 3rem 0; }
body.index .main .treatments .wrap nav.menu_box { padding: 1rem 0 0 0; }
body.index .main .treatments .wrap nav.menu_box > ul { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -ms-flex-wrap: wrap; flex-wrap: wrap; }
body.index .main .treatments .wrap nav.menu_box > ul > li { width: 47%; margin-bottom: 2rem; }
body.index .main .treatments .wrap nav.menu_box > ul > li > a { width: 100%; height: 100%; display: block; padding: 1.5rem 0; text-decoration: none; text-align: center; background-color: #f5f1ea; -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.16); box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.16); }
body.index .main .treatments .wrap nav.menu_box > ul > li > a:hover { -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.16); box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.16); }
body.index .main .treatments .wrap nav.menu_box > ul > li > a > span { display: block; height: 2.5rem; line-height: 1.2; font-weight: 500; }
body.index .main .treatments .wrap nav.menu_box > ul > li > a::before { content: ""; display: block; width: 10rem; height: 10rem; margin: 0 auto 1rem auto; }
body.index .main .treatments .wrap nav.menu_box > ul > li > a.naika::before { background: url("../img/top_treatments_naika.svg") no-repeat center center/contain; }
body.index .main .treatments .wrap nav.menu_box > ul > li > a.tounyo::before { background: url("../img/top_treatments_tonyo.svg") no-repeat center center/contain; }
body.index .main .treatments .wrap nav.menu_box > ul > li > a.kouketu::before { background: url("../img/top_treatments_kouketu.svg") no-repeat center center/contain; }
body.index .main .treatments .wrap nav.menu_box > ul > li > a.sisitu::before { background: url("../img/top_treatments_sisitu.svg") no-repeat center center/contain; }
body.index .main .treatments .wrap nav.menu_box > ul > li > a.tufu::before { background: url("../img/top_treatments_tufu.svg") no-repeat center center/contain; }
body.index .main .treatments .wrap nav.menu_box > ul > li > a.zensoku::before { background: url("../img/top_treatments_zensoku.svg") no-repeat center center/contain; }
body.index .main .treatments .wrap nav.menu_box > ul > li > a.riumati::before { background: url("../img/top_treatments_riumati.svg") no-repeat center center/contain; }
body.index .main .treatments .wrap nav.menu_box > ul > li > a.kafun::before { background: url("../img/top_treatments_kafun.svg") no-repeat center center/contain; }
body.index .main .treatments .wrap nav.menu_box > ul > li > a.check::before { background: url("../img/top_treatments_check.svg") no-repeat center center/contain; }
body.index .main .treatments .wrap nav.menu_box > ul > li > a.yobo::before { background: url("../img/top_treatments_yobo.svg") no-repeat center center/contain; }

@media all and (min-width: 48em), print { body.index .main .treatments { padding: 0 0 7rem 0; }
  body.index .main .treatments .wrap { padding: 0; }
  body.index .main .treatments .wrap nav.menu_box { padding: 1rem 0 0 0; }
  body.index .main .treatments .wrap nav.menu_box > ul { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -ms-flex-wrap: wrap; flex-wrap: wrap; }
  body.index .main .treatments .wrap nav.menu_box > ul > li { width: 16.7%; margin: 0 0 5rem 0; }
  body.index .main .treatments .wrap nav.menu_box > ul > li > a > span { height: 6rem; font-size: 2.2rem; }
  body.index .main .treatments .wrap nav.menu_box > ul > li > a::before { content: ""; width: 14rem; height: 14rem; margin: 0 auto 2rem auto; } }
@media all and (min-width: 48em) and (max-width: 74em), print { body.index .main .treatments .wrap { padding: 0 1rem; } }
/* ----------------------------------------------------------------------------------
下層共通_lower.scss
---------------------------------------------------------------------------------- */
body:not(.index) .main { padding: 1rem 0 3rem 0; display: block; }
body:not(.index) .main .wrap { padding: 0 1rem; }
body:not(.index) .main .wrap .img_l.kaso, body:not(.index) .main .wrap .img_r.kaso { margin: 1.5rem auto; }
body:not(.index) .main .wrap .img_c.kaso { margin: 1.5rem auto; width: 80%; }
body:not(.index) .main .wrap .breadcrumb { margin: 0; padding: 0; list-style: none; }
body:not(.index) .main .wrap .breadcrumb li { display: inline; list-style: none; font-size: 1.3rem; }
body:not(.index) .main .wrap .breadcrumb li::after { content: ">"; padding: 0 0.2rem; color: #63513e; }
body:not(.index) .main .wrap .breadcrumb li:last-child::after { content: ""; }
body:not(.index) .main .wrap .breadcrumb li a { text-decoration: none; color: #63513e; }
body:not(.index) .main .wrap .breadcrumb li a:hover { text-decoration: underline; }

@media all and (min-width: 48em), print { body:not(.index) #nav { margin-top: 0; }
  body:not(.index) .header { padding: 28rem 0 0 0; }
  body:not(.index) .main { padding: 2rem 0 8rem 0; }
  body:not(.index) .main .wrap { padding: 0; }
  body:not(.index) .main .wrap .img_r.kaso { width: 30%; margin: 0 0 2rem 2rem; }
  body:not(.index) .main .wrap .img_l.kaso { width: 30%; margin: 0 2rem 2rem 0; }
  body:not(.index) .main .wrap .img_c.kaso { width: 30%; margin: 2rem auto; } }
@media all and (min-width: 48em) and (min-width: 48em) and (max-width: 74em), print { body:not(.index) .main .wrap { padding: 0 1rem; } }
@media all and (min-width: 48em), print { body:not(.index) .main .wrap .breadcrumb li { font-size: 1.6rem; }
  body:not(.index) .main .wrap .breadcrumb li::after { padding: 0 0.2rem; } }
@media all and (min-width: 48em) and (max-width: 74em), print { body:not(.index) .header { padding: 22rem 0 0 0; } }
/* -------------------
下層ページKV設定
------------------- */
body:not(.index) .keyvsl_kaso { background: url("../img/kv_kaso.jpg") no-repeat center center/cover; -webkit-box-shadow: 0px -5px 5px -1px rgba(0, 0, 0, 0.16) inset; box-shadow: 0px -5px 5px -1px rgba(0, 0, 0, 0.16) inset; }
body:not(.index) .keyvsl_kaso h1 { color: #63513e; padding: 3rem 0; font-family: "zenkaku"; }
@media all and (min-width: 48em), print { body:not(.index) .keyvsl_kaso h1 { width: 100%; position: absolute; top: 0; left: 0; padding: 11rem 0; background: url("../img/kv_kaso.jpg") no-repeat center center/cover; -webkit-box-shadow: 0px -5px 5px -1px rgba(0, 0, 0, 0.16) inset; box-shadow: 0px -5px 5px -1px rgba(0, 0, 0, 0.16) inset; } }
@media all and (min-width: 48em) and (max-width: 74em), print { body:not(.index) .keyvsl_kaso h1 { width: 100%; position: absolute; top: 0; left: 0; padding: 8rem 0; background: url("../img/kv_kaso.jpg") no-repeat center center/cover; -webkit-box-shadow: 0px -5px 5px -1px rgba(0, 0, 0, 0.16) inset; box-shadow: 0px -5px 5px -1px rgba(0, 0, 0, 0.16) inset; padding: 8rem 0; } }

@media all and (min-width: 48em), print { body:not(.index) .keyvsl_kaso h1 { width: 100%; position: absolute; top: 0; left: 0; padding: 11rem 0; } }
@media all and (min-width: 48em) and (max-width: 74em), print { body:not(.index) .keyvsl_kaso h1 { width: 100%; position: absolute; top: 0; left: 0; padding: 8rem 0; } }
/*---------------------
院長紹介
-----------------------*/
body.doctor .wrap .cf p { text-align: justify; }
body.doctor .wrap .doctor_imgbox { padding: 0 0 1rem 0; }
body.doctor .wrap .doctor_imgbox img { margin: 1rem auto; width: 80%; }

@media all and (min-width: 48em), print { body.doctor .wrap .doctor_imgbox { width: 31%; padding: 0 0 0 2rem; }
  body.doctor .wrap .doctor_imgbox img { margin: 0 auto 1rem auto; width: 100%; } }
/*---------------------- クリニック紹介 ---------------------- */
body.clinic .sp-layer.sp-black.sp-padding { text-align: center; font-size: 2.3rem; }
body.clinic .kikai { margin-top: -2rem; }

@media all and (min-width: 48em), print { body.clinic .sp-layer.sp-black.sp-padding { text-align: center; font-size: 2.2rem; }
  body.clinic .kikai { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
  body.clinic .kikai .item { width: 48%; } }
#clinicslide img, #clinicslide p, #clinicslide_1 img, #clinicslide_1 p, #clinicslide_2 img, #clinicslide_2 p { display: none; }

.sp-selected-thumbnail { border: 4px solid #000; }

/*------------------------- 初めての方へ --------------------------- */
/* -------------------------
診療時間・アクセス
--------------------------- */
body.access .access_timetable { margin: 2rem 0 0 0; }
body.access .access_timetable .tbl_time caption .caption_br_none { display: none; }
body.access .access_dl > dt { background-color: #999999; padding: 0.5rem 1rem; font-weight: bold; border: 1px solid #999999; color: #fff; }
body.access .access_dl > dd { margin: 0; padding: 1rem; border: 1px solid #999999; border-top: none; border-bottom: none; }
body.access .access_dl > dd:last-of-type { border-bottom: 1px solid #999999; }
body.access .access_dl > dd .access_dl_station { margin: 0; }
body.access .access_dl > dd .access_dl_station dt { color: #007731; }
body.access .access_dl > dd .access_dl_station dd { margin: 0; padding-left: 1.6rem; }
body.access .access_tel::before { content: "\e809"; font-family: "fontello"; color: #63513e; margin: 0 0.5rem 0 0; }
body.access .access_map { text-align: center; }
body.access .access_map iframe { display: block; width: 100%; border: none; margin: 0 0 2rem 0; height: 20rem; }
body.access .access_map .btn_box { text-align: center; }
body.access .overview { display: none; }

@media all and (min-width: 48em), print { body.access .access_dl { margin: 0 0 2rem 0; }
  body.access .access_dl > dt { background-color: #999999; padding: 0.5rem 1rem; font-weight: bold; border: 1px solid #999999; color: #fff; }
  body.access .access_dl > dd { margin: 0; padding: 1rem; border: 1px solid #999999; border-top: none; border-bottom: none; }
  body.access .access_dl > dd:last-of-type { border-bottom: 1px solid #999999; }
  body.access .access_dl > dd .access_dl_station { margin: 0; }
  body.access .access_dl > dd .access_dl_station dt { color: #007731; }
  body.access .access_dl > dd .access_dl_station dd { margin: 0; padding-left: 2rem; }
  body.access .access_map { text-align: center; }
  body.access .access_map iframe { display: block; width: 100%; border: none; margin: 0 0 3rem 0; height: 40rem; } }
/*追加*/
.red_text { color: #FF0004; }

.bold_text { font-weight: bold; }

.link_text { color: #2db132; }
.link_text:hover { opacity: 0.6; }
