@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: 18px;
  font-size: 1.125rem;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-feature-settings: "palt";
  color: #333;
}
@media all and (max-width: 728px) {
  body {
    font-size: 16px;
    font-size: 1rem;
  }
}

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%;
}

/* PCで電話番号リンクを無効に */
@media (min-width: 728px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*---------------------------------------------------------
汎用
---------------------------------------------------------*/
.wrap {
  position: relative;
  max-width: 830px;
  margin: 0 auto;
}
@media all and (max-width: 1030px) {
  .wrap {
    width: 90%;
  }
}
@media all and (max-width: 728px) {
  .wrap {
    width: 96%;
  }
}

.wrap2 {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
@media all and (max-width: 1030px) {
  .wrap2 {
    width: 90%;
  }
}
@media all and (max-width: 728px) {
  .wrap2 {
    width: 96%;
  }
}

.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;
  }
}
.mb30 {
  margin-bottom: 30px;
}

/* ---------------------------------------------------
カラム基本設定
---------------------------------------------------- */
.item,
a {
  transition: all 0.2s ease-in-out;
}

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

.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;
}
.photo_img__wide:before {
  padding-top: 32.96875%;
}
.photo_img__wide img {
  width: 100%;
}

.article_box {
  display: flex;
  position: relative;
  align-items: flex-start;
  margin-bottom: 46px;
}
.article_box:before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  content: "";
  width: 80%;
  height: 90%;
  background: #fdfbe1;
  border-radius: 10px;
}
.article_box .photo_img,
.article_box figure {
  margin-top: 20px;
  width: 235px;
}
.article_box .photo_img img,
.article_box figure img {
  border-radius: 20px;
}
.article_box .photo_img:before,
.article_box figure:before {
  padding-top: 126.8085106383%;
}
.article_box .text_area,
.article_box article {
  width: calc(100% - 235px);
  padding: 4%;
}
.article_box .text_area h2,
.article_box article h2 {
  margin-bottom: 30px;
}
.article_box .text_area h3,
.article_box article h3 {
  margin-bottom: 12px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 1.12px;
}
.article_box .text_area p,
.article_box article p {
  margin-bottom: 30px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.7222222222;
}
@media all and (max-width: 728px) {
  .article_box {
    flex-direction: column;
    margin-bottom: 20px;
    padding-top: 5%;
  }
  .article_box:before {
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }
  .article_box .photo_img,
  .article_box figure {
    width: 92%;
    margin: 0 auto 10px;
  }
  .article_box .text_area,
  .article_box article {
    width: 92%;
    margin: 0 auto;
    padding: 0;
  }
  .article_box .text_area h3,
  .article_box article h3 {
    margin-bottom: 5px;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.75;
  }
  .article_box .text_area p,
  .article_box article p {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.75;
  }
}

.figure_right:before {
  left: 0;
  right: auto;
  background: #ebf5f0;
}
.figure_right .photo_img,
.figure_right figure {
  order: 2;
}
.figure_right .text_area,
.figure_right article {
  order: 1;
}
@media all and (max-width: 728px) {
  .figure_right .photo_img,
  .figure_right figure {
    order: 1;
  }
  .figure_right .text_area,
  .figure_right article {
    order: 2;
  }
}

.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;
}

.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 {
  top: 45%;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
}
#open:checked ~ .toggle i {
  width: 0;
}
#open:checked ~ .toggle:after {
  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: #746d59;
  transform: rotate(-45deg);
}
#navi_main li:last-child::after {
  display: none;
}
#navi_main a {
  display: block;
  position: relative;
  text-align: center;
  color: #43bd7d;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: bold;
}
#navi_main a small {
  margin-top: 12px;
  display: block;
}
#navi_main a .mt0 {
  margin-top: 2px;
}
@media all and (max-width: 728px) {
  #navi_main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    top: -100vh;
    left: 0;
    opacity: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    padding: 30px 20px;
    background: #fff;
    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;
    font-size: 18px;
    font-size: 1.125rem;
  }
  #navi_main a i {
    vertical-align: middle;
    margin-right: 10px;
  }
  #navi_main .sp_flex {
    display: flex;
  }
  #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;
  }
  #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: 60px auto;
  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: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  font-size: 14px;
  border-radius: 50%;
  background: #43bd7d;
  opacity: 0.6;
}
.pagination a:hover,
.pagination span:hover {
  color: #fff;
  opacity: 1;
  background: #43bd7d;
}
.pagination .list_btn a {
  width: auto;
  padding: 0 30px;
  background: #43bd7d;
}
.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: 5px solid transparent;
  border-right-color: #fff;
}
.pagination .next i {
  left: 55%;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left-color: #fff;
}
.pagination .current {
  opacity: 1;
  color: #fff;
  background: #43bd7d;
}
@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: right;
}
@media all and (max-width: 728px) {
  .btn_area {
    text-align: center;
  }
}

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

.more {
  text-align: right;
}
.more a {
  padding: 5px 20px;
  color: #FFF;
  background: #43bd7d;
  border-radius: 25px;
  font-size: 12px;
  font-size: 0.75rem;
}
.more a::before {
  position: relative;
  top: -1px;
  display: block;
  content: "";
  margin-right: 10px;
  border-style: solid;
  border-width: 0 2px 2px 0;
  content: "";
  display: inline-block;
  height: 5px;
  width: 5px;
  border-color: #FFF;
  transform: rotate(-45deg);
}

.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;
}

/*---------------------------------------------------------
フォント設定
---------------------------------------------------------*/
@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 */
}
h2 {
  text-align: center;
}
h2 img {
  max-width: 262px;
}

b {
  color: #43bd7d;
}

.underline {
  margin-bottom: 40px;
}
.underline:after {
  display: block;
  content: "";
  width: 100%;
  height: 38px;
  background: repeat bottom url(../img/parts/underline.svg);
}

/*---------------------------------------------------------
header
---------------------------------------------------------*/
#header {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 36px 7vw 0;
  z-index: 4;
  background: #fdfbe1;
}
#header .header__main {
  width: calc(100% - 130px);
}
@media all and (max-width: 728px) {
  #header .header__main {
    width: 100%;
  }
}
#header .qr img {
  display: block;
  width: 100px;
}
#header .qr figcaption {
  text-align: center;
  color: #43bd7d;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media all and (max-width: 728px) {
  #header .qr {
    display: none;
  }
}
#header .header_top {
  display: flex;
  align-items: flex-end;
  margin-bottom: 25px;
}
#header .logo {
  width: 560px;
}
#header .logo img {
  width: 100%;
  display: block;
}
#header address {
  margin-left: auto;
  text-align: right;
  font-size: 12px;
  font-size: 0.75rem;
  width: 285px;
}
@media all and (max-width: 728px) {
  #header {
    padding: 15px 5%;
  }
  #header .logo {
    width: 200px;
  }
  #header .header_top {
    margin-bottom: 0;
  }
  #header address {
    display: none;
    text-align: left;
    margin-left: 0;
    width: 100%;
  }
}

.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;
}

.tel_box {
  position: fixed;
  bottom: 0;
  z-index: 3;
  width: 100%;
  background: #fdfbe1;
}
.tel_box a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  text-align: center;
  margin: 0 auto;
  padding: 12px 0;
}
.tel_box .reservation_btn {
  color: #fff;
  background: #43bd7d;
}
.tel_box .tel {
  font-size: 11px;
  font-size: 0.6875rem;
}
.tel_box .tel img {
  display: block;
  width: 85%;
  margin: auto;
}

#header.scroll_head {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 7vw;
  background: #fdfbe1;
  box-shadow: 0 2px 3px rgba(80, 77, 77, 0.16);
  animation: DownAnime 0.5s forwards;
}
#header.scroll_head .header_inner {
  display: none;
}
@media all and (max-width: 728px) {
  #header.scroll_head {
    padding: 20px 5% 25px;
  }
  #header.scroll_head .header_inner {
    display: block;
    margin-bottom: 0;
  }
}

/*　上に上がる動き　*/
.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-200%);
  }
}
/*　下に下がる動き　*/
.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-200%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*---------------------------------------------------------
右ボタン
---------------------------------------------------------*/
.fixed_btn {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 50%;
  right: -710px;
  z-index: 5;
  transform: translateY(-50%);
}
.fixed_btn h3 {
  width: 48px;
  height: 266px;
  color: #fff;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-feature-settings: initial;
  text-align: center;
  background: no-repeat 50%/contain url(../img/parts/fixed_btn@2x.png);
  border-radius: 12px 0 0 12px;
}
.fixed_btn h3 label,
.fixed_btn h3 a {
  display: block;
  padding: 2em 6px;
  cursor: pointer;
  font-size: 16px;
  font-size: 1rem;
}
.fixed_btn h3 img {
  width: 18px;
  margin-bottom: 5px;
}
.fixed_btn h3:last-child {
  margin-top: 20px;
}
.fixed_btn a {
  color: #fff;
}
.fixed_btn .hours_table {
  min-width: 670px;
}
.fixed_btn .hours_table th small, .fixed_btn .hours_table td small {
  font-size: 11px;
  font-size: 0.6875rem;
}
@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;
  align-items: center;
  transition: all 0.3s;
  right: 0;
}
.hours_box article {
  position: relative;
  padding: 8px 20px;
  background: #fff;
  transition: all 0.3s;
}
.hours_box p {
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.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: 710px;
}

/*---------------------------------------------------------
診察時間テーブル
---------------------------------------------------------*/
.hours_table {
  margin-bottom: 10px;
}
.hours_table thead th {
  text-align: center;
}
.hours_table th,
.hours_table td {
  font-size: 18px;
  font-size: 1.125rem;
  padding: 8px 0;
  font-weight: 600;
  border-bottom: 1px solid #736357;
}
.hours_table th small,
.hours_table td small {
  font-size: 14px;
  font-size: 0.875rem;
}
.hours_table th {
  padding-right: 0;
  color: #746d59;
  vertical-align: middle;
  line-height: 1.2;
}
.hours_table th:first-child {
  position: relative;
  width: 7em;
  text-align: left;
}
.hours_table th:first-child:after {
  position: absolute;
  right: 0;
  top: 3%;
  display: inline-block;
  content: "";
  width: 1px;
  height: 94%;
  background: #746d59;
}
.hours_table td {
  text-align: center;
  width: 4em;
  color: #43bd7d;
  line-height: 1;
}
.hours_table td b {
  display: block;
  color: #746d59;
}
@media all and (max-width: 728px) {
  .hours_table th {
    font-size: 11px;
    font-size: 0.6875rem;
  }
  .hours_table th small {
    font-size: 10px;
    font-size: 0.625rem;
  }
  .hours_table td {
    width: 1.6em;
    font-size: 9px;
    font-size: 0.5625rem;
  }
}

/*---------------------------------------------------------
ニュース
---------------------------------------------------------*/
.news_article article {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #746d59;
}
.news_article h3 {
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 5px;
}
.news_article h3 time {
  width: 8em;
  color: #43bd7d;
}
.news_article h3 a {
  width: calc(100% - 8em);
  color: #746d59;
}
.news_article h3 em {
  display: block;
  margin-left: auto;
  text-align: right;
  font-size: 16px;
  font-size: 1rem;
}
.news_article p {
  margin-bottom: 10px;
}
@media all and (max-width: 728px) {
  .news_article {
    padding: 0 20px;
  }
  .news_article h3 {
    flex-direction: column;
  }
  .news_article h3 time,
  .news_article h3 a {
    width: 100%;
  }
}

/*---------------------------------------------------------
院長挨拶
---------------------------------------------------------*/
.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: 60px 0;
}
footer .col {
  justify-content: center;
}
footer .logo {
  width: 292px;
}
footer .qr {
  position: absolute;
  right: 0;
  width: 80px;
}
footer p b {
  color: #c77ac7;
}
footer .copyright {
  margin-top: 20px;
  text-align: center;
}
@media all and (max-width: 728px) {
  footer {
    top: -5px;
    padding-bottom: 120px;
  }
  footer .qr {
    display: none;
  }
  footer .copyright {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}

/*---------------------------------------------------------
休日カレンダー
---------------------------------------------------------*/
.xo-month thead th {
  padding: 5px 0 !important;
  background-color: #fafafa !important;
}

.holiday-titles {
  display: flex;
  align-items: center;
}

.holiday-title {
  margin-right: 15px !important;
}

.xo-event-category {
  display: none !important;
}/*# sourceMappingURL=style.css.map */