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

body {
  width: 100%;
  font-size: 100%;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
}

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

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

iframe {
  width: 100%;
}

a {
  text-decoration: none;
  color: #000;
}
a:hover {
  opacity: 0.6;
}

a.underline {
  text-decoration: underline;
}

li {
  list-style: none;
}

em,
address {
  font-style: normal;
}

i {
  position: relative;
}

.link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100% !important;
  height: 100%;
}

/*---------------------------------------------------------
汎用
---------------------------------------------------------*/
.wrap {
  position: relative;
  max-width: 1030px;
  margin: 0 auto;
}
@media all and (max-width: 1030px) {
  .wrap {
    width: 90%;
  }
}
@media all and (max-width: 728px) {
  .wrap {
    width: 96%;
  }
}

.wrap_inner {
  max-width: 830px;
  margin: auto;
}

.sp_only {
  display: none !important;
}

.sp_only2 {
  display: none;
}

.tab_only {
  display: none;
}

.flex {
  display: flex;
}

.col {
  display: flex;
  align-items: normal;
  flex-wrap: wrap;
}

.ml_auto {
  margin-left: auto;
}

.col_between {
  justify-content: space-between;
}

.col_center {
  justify-content: center;
}

.item_top {
  align-items: flex-start !important;
}

.item_center {
  align-items: center;
}

.item_end {
  align-items: flex-end;
}

.v_top {
  vertical-align: top;
}

.hr_red {
  border-top: 4px solid #78D78D;
}

.text_l {
  text-align: left !important;
}

.text_r {
  text-align: right !important;
}

.text_c {
  text-align: center;
}

.img_l {
  float: left;
}

.img_r {
  float: right;
}

.clear {
  clear: both;
}

.animated {
  opacity: 0;
}

@media all and (max-width: 728px) {
  .sp_only {
    display: block !important;
  }
  .sp_only2 {
    display: inline-block !important;
  }
  .pc_only {
    display: none !important;
  }
  .img_l {
    float: none;
  }
  .img_r {
    float: none;
  }
}
/* ---------------------------------------------------
カラム基本設定
---------------------------------------------------- */
.item,
a {
  transition: all 0.2s ease-in-out;
}

.col {
  display: flex;
  flex-wrap: wrap;
}
.col_2 {
  margin-left: -80px;
}
.col_2 > * {
  margin-left: 80px;
  width: calc(50% - 80px);
}

.col_3 {
  margin-left: -30px;
}
.col_3 > * {
  margin-left: 30px;
  width: calc(33.33333% - 30px);
}

.col_4 {
  margin-left: -45px;
}
.col_4 > * {
  margin-left: 45px;
  width: calc(25% - 30px);
}

@media all and (max-width: 728px) {
  .col_2 {
    margin-left: 0;
  }
  .col_2 > * {
    margin-left: 0;
    width: 100%;
  }
  .col_3 {
    margin-left: 0;
  }
  .col_3 > * {
    margin-left: 0;
    width: 100%;
  }
  .col_4 {
    margin-left: 0;
  }
  .col_4 > * {
    margin-left: 0;
    width: 100%;
  }
}

/* -----------------------------------------------------
アニメーション用
----------------------------------------------------- */
.invisible {
  opacity: 0;
  transition: all 1s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s ease;
}

.navi_open {
  overflow: hidden;
}

.fadeInUp {
  animation: fadeInUp 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.fadeOutDown {
  animation: fadeOutDown 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@keyframes fadeOutDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    transform: translateY(-40px);
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger {
  opacity: 0;
}

/*---------------------------------------------------------
個パーツ
---------------------------------------------------------*/
.photo {
  position: relative;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.photo:after {
  display: block;
  content: "";
  padding-top: 56.25%;
}

.photo_img {
  position: relative;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  border-radius: 12px;
}
.photo_img:before {
  display: block;
  content: "";
  padding-top: 100%;
}
.photo_img img {
  position: absolute;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  border-radius: 12px;
}

/*葉っぱ ------------------------------------------------------*/
.leaf_left img,
.leaf_right img {
  display: block;
  max-width: 520px;
}
@media all and (max-width: 728px) {
  .leaf_left img,
  .leaf_right img {
    max-width: 60%;
  }
}

.leaf_right img {
  margin-left: auto;
}

/*タイトルエリア ------------------------------------------------------*/
.title_area {
  display: flex;
  flex-direction: column;
}
.title_area h2 {
  margin-bottom: 30px;
}
.title_area nav {
  display: flex;
}
.title_area nav .next {
  margin-right: 15px;
}
.title_area nav i {
  font-size: 26px;
}
.title_area .btn_area {
  margin-top: auto;
  padding-bottom: 30px;
}

.article_box {
  display: flex;
  position: relative;
  align-items: center;
}
.article_box .photo_img {
  width: 40%;
}
.article_box .photo_img img {
  border-radius: 20px;
}
.article_box .photo_img:before {
  padding-top: 67.8571428571%;
}
.article_box .text_area {
  width: 60%;
  padding-left: 5%;
}
.article_box .text_area h2 {
  margin-bottom: 30px;
}
.article_box .text_area h3 {
  margin-bottom: 22px;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.0714285714;
  letter-spacing: 1.12px;
}
.article_box .text_area p {
  margin-bottom: 30px;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2.0666666667;
}
@media all and (max-width: 728px) {
  .article_box {
    flex-direction: column;
  }
  .article_box .photo_img {
    width: 100%;
    margin-bottom: 30px;
  }
  .article_box .text_area {
    width: 100%;
    padding-left: 0;
  }
  .article_box .text_area h3 {
    margin-bottom: 22px;
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.0714285714;
  }
  .article_box .text_area p {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 2.0666666667;
  }
}

.figure_right .photo_img {
  order: 2;
}
.figure_right .text_area {
  order: 1;
  padding-left: 0;
  padding-right: 10%;
}
@media all and (max-width: 728px) {
  .figure_right .photo_img {
    order: 1;
  }
  .figure_right .text_area {
    order: 2;
    padding-right: 0;
  }
}

.num_item {
  padding-top: 40px;
  counter-reset: number 0;
}
.num_item .item {
  margin-bottom: 60px;
}
.num_item .item:before {
  width: 83px;
  height: 80px;
  position: absolute;
  top: -30px;
  left: 15px;
  margin: auto;
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
  color: #fff;
  text-align: center;
  line-height: 80px;
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero) " ";
  background: no-repeat 50%/cover url(../img/parts/num_bg.svg);
}
.num_item .item figure {
  margin: auto;
}
.num_item .item figure img {
  display: block;
  margin: auto;
}
.num_item .item p {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.7647058824;
}
.num_item .item .caption {
  margin-top: auto;
  font-size: 14px;
  font-size: 0.875rem;
}

.item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 60px 15px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  border: 8px solid #e2dedc;
}
.item .photo,
.item .photo_img {
  margin-bottom: 20px;
}
.item .photo:before,
.item .photo_img:before {
  padding-top: 64.5161290323%;
}
.item h3 {
  margin-bottom: 20px;
}

.news_dl dl {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.news_dl dt,
.news_dl dd {
  font-size: 15px;
  font-size: 0.9375rem;
}
.news_dl dt time {
  margin-right: 15px;
  padding: 5px 15px;
  color: #fff;
  background: #736357;
}
.news_dl dd {
  margin-left: 15px;
  padding-left: 15px;
}
@media all and (max-width: 728px) {
  .news_dl dl {
    flex-direction: column;
    align-items: flex-start;
  }
  .news_dl dd {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
}

.cate {
  display: inline-block;
  padding: 5px 10px;
  text-align: center;
  border-radius: 6px;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  background: #fff;
}

.nami_top {
  position: absolute;
  top: 0;
  z-index: -1;
}

.nami_bottom {
  position: absolute;
  bottom: 0;
  z-index: -1;
}

.wh_box {
  padding: 60px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.15);
}
@media all and (max-width: 728px) {
  .wh_box {
    padding: 20px;
  }
}

.border_box {
  padding: 40px 60px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  border: 8px solid #e2dedc;
}
@media all and (max-width: 728px) {
  .border_box {
    padding: 20px;
  }
}

table {
  width: 100%;
  margin-bottom: 60px;
}
table th {
  padding-right: 1em;
  vertical-align: top;
  color: #736357;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?e9cmlj");
  src: url("../fonts/icomoon.eot?e9cmlj#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?e9cmlj") format("truetype"), url("../fonts/icomoon.woff?e9cmlj") format("woff"), url("../onts/icomoon.svg?e9cmlj#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-home2:before {
  content: "\e914";
}

.icon-phone2:before {
  content: "\e90c";
}

.icon-access:before {
  content: "\e90d";
}

.icon-clinic:before {
  content: "\e90e";
}

.icon-disease:before {
  content: "\e90f";
}

.icon-contact:before {
  content: "\e910";
}

.icon-doctor:before {
  content: "\e911";
}

.icon-service:before {
  content: "\e912";
}

.icon-news:before {
  content: "\e913";
}

.icon-arrow_l:before {
  content: "\e900";
}

.icon-arrow_r:before {
  content: "\e901";
}

.icon-blank:before {
  content: "\e902";
}

.icon-phone:before {
  content: "\e904";
}

.icon-new:before {
  content: "\e905";
}

.icon-free:before {
  content: "\e908";
}

.icon-fax:before {
  content: "\e90b";
}

.icon-mail2:before {
  content: "\e90a";
}

.icon-mail:before {
  content: "\e909";
}

.icon-instagram:before {
  content: "\e907";
}

.icon-facebook:before {
  content: "\e906";
}

.icon-home:before {
  content: "\e903";
}

/*---------------------------------------------------------
スマホナビ
---------------------------------------------------------*/
.toggle {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 2em;
  cursor: pointer;
  width: 45px;
  height: 45px;
  text-align: center;
  z-index: 1000;
  text-align: center;
  /* ≡ */
}
.toggle i, .toggle:before, .toggle:after {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  content: "";
  display: block;
  height: 2px;
  width: 50%;
  background: #534741;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
.toggle:before {
  top: 30%;
}
.toggle i {
  top: 50%;
}
.toggle:after {
  top: 70%;
}
@media all and (max-width: 728px) {
  .toggle {
    display: block;
  }
}

/* BG */
.bgclose {
  display: none;
}

#open {
  display: none;
  /* :checked 擬似クラスを使って、#openがチェック状態になった時に、#navi_mainが「right: 0;」になります。 */
  /* ≡ > ×アニメーション */
}
#open:checked ~ #navi_main {
  top: 0;
  opacity: 1;
}
#open:checked ~ .navi {
  z-index: 1000;
}
#open:checked ~ .toggle:before {
  background-color: #fff;
  top: 45%;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
}
#open:checked ~ .toggle i {
  width: 0;
}
#open:checked ~ .toggle:after {
  background-color: #fff;
  top: 45%;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg);
}
#open:checked ~ .bgclose {
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  text-indent: -999999px;
  overflow: hidden;
  cursor: pointer;
}

/*---------------------------------------------------------
メインナビ
---------------------------------------------------------*/
#navi_main ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  z-index: 100;
}
#navi_main li {
  display: flex;
}
#navi_main li:after {
  display: inline-block;
  content: "";
  margin: 10px 15px 0;
  width: 30px;
  height: 2px;
  background: #000;
  transform: rotate(-45deg);
}
#navi_main li:last-child::after {
  display: none;
}
#navi_main a {
  display: block;
  position: relative;
  text-align: center;
  color: #000;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: bold;
}
#navi_main a small {
  margin-top: 12px;
  display: block;
  color: #998675;
}
@media all and (max-width: 728px) {
  #navi_main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: fixed;
    top: -100vh;
    left: 0;
    opacity: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    padding: 30px 20px;
    background: #534741;
    transition: all 0.5s ease; /* アニメーション */
    overflow-y: auto;
  }
  #navi_main li {
    max-width: 100%;
    width: 100%;
  }
  #navi_main li:after {
    display: none;
  }
  #navi_main a {
    display: block;
    text-align: left;
    margin: 0 0 0;
    padding: 0 0 20px;
    color: #fff;
    font-size: 18px;
    font-size: 1.125rem;
  }
  #navi_main address {
    color: #fff;
  }
  #navi_main address .hours_p {
    margin-bottom: 15px;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.3333333333;
  }
  #navi_main address .hours_table th {
    font-size: 12px;
    font-size: 0.75rem;
    color: #fff;
  }
  #navi_main address .h_radius {
    margin-right: 10px;
    font-size: 12px;
    font-size: 0.75rem;
  }
  #navi_main address .h_radius span {
    padding: 5px 10px;
  }
  #navi_main address .tel {
    margin-bottom: 15px;
    justify-content: center;
  }
}

/*---------------------------------------------------------
ページネーション
---------------------------------------------------------*/
.pagination {
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 auto 130px;
  padding: 0 0;
  text-align: center;
}
.pagination li {
  display: inline-block;
  margin: 0 8px 0 0;
}
.pagination a,
.pagination span {
  display: inline-block;
  color: #fff !important;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 14px;
  border-radius: 5px;
  background: #989898;
}
.pagination a:hover,
.pagination span:hover {
  color: #fff;
  background: #333333;
}
.pagination .list_btn a {
  width: auto;
  padding: 0 30px;
  background: #000;
}
.pagination .prev,
.pagination .next {
  position: relative;
}
.pagination .prev i,
.pagination .next i {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.pagination .prev i {
  left: 45%;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-right-color: #fff;
}
.pagination .next i {
  left: 55%;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-left-color: #fff;
}
.pagination .current {
  color: #fff;
  background: #333333;
}
@media all and (max-width: 728px) {
  .pagination {
    margin: 20px auto;
  }
}

/*---------------------------------------------------------
ページナビ
---------------------------------------------------------*/
.page_navi {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10%;
}
.page_navi li {
  margin-left: 10%;
  margin-bottom: 30px;
  width: 23.333%;
}
.page_navi li:nth-child(even) a {
  background: no-repeat 50%/cover url(../img/parts/circle_bg02.png);
}
.page_navi li a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.4;
  font-weight: bold;
  color: #534741;
  background: no-repeat 50%/cover url(../img/parts/circle_bg01.png);
}
.page_navi li a:before {
  display: block;
  content: "";
  padding-top: 96%;
}
@media all and (max-width: 728px) {
  .page_navi {
    margin-left: -20px;
  }
  .page_navi li {
    margin-left: 20px;
    margin-bottom: 20px;
    width: calc(50% - 20px);
  }
  .page_navi li a {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }
}

/*---------------------------------------------------------
ボタン
---------------------------------------------------------*/
.btn_area {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px 0;
}

.btn {
  display: inline-block;
  padding: 10px 80px;
  border-radius: 30px;
  color: #fff;
  background: #534741;
}

.pagetop {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 60px;
  z-index: 2;
  height: 50px;
  width: 50px;
  margin: auto;
  border: solid 2px #534741;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.pagetop .pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #534741;
  border-right: 3px solid #534741;
  transform: translateY(20%) rotate(-45deg);
}
@media all and (max-width: 728px) {
  .pagetop {
    display: none;
  }
}

main {
  position: relative;
  overflow: hidden;
}

section {
  position: relative;
  z-index: 1;
}

.bg1 {
  margin-top: -12px;
  padding-top: 120px;
  mix-blend-mode: multiply;
  background: 0 0/contain url(../img/parts/bg1.jpg);
}
@media all and (max-width: 728px) {
  .bg1 {
    padding-top: 60px;
    mix-blend-mode: normal;
  }
}

.bg2 {
  margin-top: -12px;
  padding-top: 120px;
  mix-blend-mode: multiply;
  background: 0 0/contain url(../img/parts/bg2.jpg);
}
@media all and (max-width: 728px) {
  .bg2 {
    padding-top: 60px;
    mix-blend-mode: normal;
  }
}

/*---------------------------------------------------------
フォント設定
---------------------------------------------------------*/
@font-face {
  font-family: "BradleyHand";
  src: url("../fonts/BradleyHandBold.eot"); /* IE9 Compat Modes */
  src: local("Bradley Hand Bold"), url("../fonts/BradleyHandBold.eot?#iefix") format("embedded-opentype"), url("../fonts/BradleyHandBold.woff") format("woff"), url("../fonts/BradleyHandBold.ttf") format("truetype"); /* ttf - Safari, Android, iOS */
}
.h_title {
  position: relative;
  margin-bottom: 75px;
  padding-bottom: 40px;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.h_title b {
  display: block;
  font-size: 108px;
  font-size: 6.75rem;
  line-height: 1;
  letter-spacing: 0.003em;
  font-family: "BradleyHand";
  font-weight: normal;
  color: #e0dbd7;
}
.h_title small {
  display: inline-block;
}
.h_title small:after {
  display: block;
  content: "";
  margin: 20px auto 0;
  border-radius: 20px;
  width: 68px;
  height: 4px;
  background: #998675;
}
@media all and (max-width: 728px) {
  .h_title {
    margin-bottom: 30px;
    padding-bottom: 20px;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1;
  }
  .h_title b {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: 0.003em;
  }
}

.h_bg {
  margin-bottom: 40px;
  color: #736357;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.3333333333;
}
.h_bg span {
  background: 0 0/cover url(../img/parts/h_bg1.png);
}
@media all and (max-width: 728px) {
  .h_bg {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }
}

.h_bg__orn span {
  background: 0 0/cover url(../img/parts/h_bg2.png);
}

.h_border {
  color: #736357;
  position: relative;
  display: inline-block;
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.8;
}
.h_border span {
  background: linear-gradient(transparent 70%, #fff58f 0%);
}
.h_border small {
  color: #000;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2.25;
}
@media all and (max-width: 728px) {
  .h_border {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.2727272727;
  }
  .h_border small {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.2222222222;
  }
}

.h_radius {
  margin-bottom: 40px;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.5;
  color: #fff;
}
.h_radius span {
  display: inline-block;
  padding: 12px 2em;
  border-radius: 30px;
  background: #736357;
}
@media all and (max-width: 728px) {
  .h_radius {
    margin-bottom: 20px;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }
}

.underline, .medical_li li, .medical_li p {
  padding: 0 0 2px;
  background: repeat 0 0/84px 33px url(../img/parts/underline.svg);
}

.navi small {
  font-family: "BradleyHand";
  font-weight: normal;
}

.num_item .item:before {
  font-family: "BradleyHand";
  font-weight: normal;
}

.faq .q:before,
.faq .a:before {
  font-size: 54px;
  font-size: 3.375rem;
  color: #534741;
  font-family: "BradleyHand";
  font-weight: normal;
}
@media all and (max-width: 728px) {
  .faq .q:before,
  .faq .a:before {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/*---------------------------------------------------------
header
---------------------------------------------------------*/
#header {
  position: relative;
  padding-bottom: 60px;
  z-index: 4;
}
#header .header_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1020px;
  margin: 20px auto 30px;
}
#header .logo img {
  width: 100%;
  display: block;
}
#header address .add {
  text-align: right;
  font-size: 12px;
  font-size: 0.75rem;
}
#header .nami_bottom {
  filter: drop-shadow(3px 6px 3px rgba(0, 0, 0, 0.15));
}
@media all and (max-width: 728px) {
  #header {
    padding-bottom: 0;
  }
  #header .header_inner {
    margin: 0 auto;
    padding: 12px 0 20px 20px;
    align-items: center;
  }
  #header .logo img {
    width: 70%;
  }
  #header address {
    display: none;
  }
}

.tel {
  display: flex;
  align-items: center;
}
.tel span {
  display: inline-block;
  margin-left: 20px;
}

.doc,
.phone {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-top: -5px;
  margin-right: 10px;
  vertical-align: middle;
}

.doc {
  background: no-repeat 50%/cover url(../img/parts/doc.svg);
}

.phone {
  background: no-repeat 50%/cover url(../img/parts/tel.svg);
}

.font_m {
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1;
}

.font_l {
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1;
}

/*---------------------------------------------------------
右ボタン
---------------------------------------------------------*/
.fixed_btn {
  display: flex;
  flex-direction: column;
  position: fixed;
  bottom: 30px;
  right: -405px;
  z-index: 5;
}
.fixed_btn h3 {
  width: 52px;
  color: #fff;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-feature-settings: initial;
  text-align: center;
  background: #736357;
  border-radius: 12px 0 0 12px;
}
.fixed_btn h3 label,
.fixed_btn h3 a {
  display: block;
  padding: 2em 12px;
  cursor: pointer;
  font-size: 16px;
  font-size: 1rem;
}
.fixed_btn h3:last-child {
  margin-top: 20px;
}
.fixed_btn a {
  color: #fff;
}
@media all and (max-width: 728px) {
  .fixed_btn {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    transform: translateY(0);
  }
  .fixed_btn .hours_box {
    display: none;
  }
  .fixed_btn .reservation_btn {
    margin-top: 0;
    width: 100%;
    color: #fff;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    text-align: center;
    background: #736357;
    border-radius: 0;
  }
  .fixed_btn .reservation_btn a {
    padding: 1.4em 15px;
  }
}

.hours_box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  transition: all 0.3s;
  right: 0;
}
.hours_box h3 {
  height: 238px;
}
.hours_box article {
  position: relative;
  padding: 8px 20px;
  background: #fff;
  transition: all 0.3s;
}
.hours_box p {
  margin-bottom: 10px;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.4;
}
.hours_box .h_radius {
  margin-right: 10px;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1;
}
.hours_box .h_radius span {
  padding: 5px 10px;
}

#hours_open {
  display: none;
}
#hours_open:checked ~ .hours_box {
  right: 405px;
}

/*---------------------------------------------------------
診察時間テーブル
---------------------------------------------------------*/
.hours_table {
  margin-bottom: 10px;
}
.hours_table th,
.hours_table td {
  padding: 6px 0;
  border-bottom: 1px solid #736357;
}
.hours_table th {
  padding-right: 0;
  color: #000;
}
.hours_table th:first-child {
  width: 8em;
}
.hours_table td {
  text-align: center;
  color: #cfbda8;
}
.hours_table + p + p {
  margin-bottom: 0;
}

/*---------------------------------------------------------
院長挨拶
---------------------------------------------------------*/
.doctor article {
  margin-bottom: 160px;
}
.doctor article:last-child {
  margin-bottom: 0;
}
.doctor .article_box {
  margin-bottom: 30px;
}
.doctor .wh_box {
  padding-bottom: 160px;
}
.doctor .leaf_right {
  position: absolute;
  top: 40%;
  right: 0;
  z-index: 2;
}
.doctor .leaf_right img {
  margin-left: auto;
}
.doctor .clinic:before {
  padding-top: 123.8372093023%;
}
.doctor .aizawa:before {
  padding-top: 128.729281768%;
}
.doctor .greeting {
  align-items: flex-start;
}
.doctor .greeting .text_area {
  width: 80%;
}
.doctor .aizawa {
  width: 20%;
}
.doctor .doctor_h {
  margin-bottom: 140px;
}
.doctor .doctor_h .name {
  text-align: right;
  font-size: 22px;
  font-size: 1.375rem;
}
.doctor .doctor_h .name b {
  font-size: 26px;
  font-size: 1.625rem;
}
@media all and (max-width: 728px) {
  .doctor article {
    margin-bottom: 60px;
  }
  .doctor .wh_box {
    padding-bottom: 80px;
  }
  .doctor .leaf_right {
    top: 43%;
  }
  .doctor .greeting .text_area {
    width: 100%;
  }
  .doctor .aizawa {
    width: 100%;
  }
  .doctor .doctor_h {
    margin-bottom: 60px;
  }
  .doctor .doctor_h .name {
    text-align: right;
    font-size: 16px;
    font-size: 1rem;
  }
  .doctor .doctor_h .name b {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.page.doctor .leaf_right {
  top: 36%;
}
@media all and (max-width: 728px) {
  .page.doctor .leaf_right {
    top: 43%;
  }
}

/*---------------------------------------------------------
footer
---------------------------------------------------------*/
footer {
  position: relative;
  top: -10px;
  z-index: 2;
  padding: 20px 0 0;
}
footer .copyright {
  text-align: center;
}
@media all and (max-width: 728px) {
  footer {
    top: -5px;
  }
  footer .copyright {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}/*# sourceMappingURL=style.css.map */