@charset "utf-8";
/* CSS Document */
body {
  font-family: "Meiryo UI", "メイリオ", "sans-serif";
  font-size: 16px;
  color: #707070;
  position: relative;
}
a {
  text-decoration: none;
  color: #707070;
}
img {
  max-width: 100%;
  vertical-align: bottom;
  display: block;
}
ul {
  list-style: none;
}
.wrap {
  width: 85%;
  margin: 0 auto;
}
.center {
  text-align: center;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex-2 {
  width: 48%;
}
.flex-3 {
  width: 31%;
}
.even {
  flex-direction: row-reverse;
}
.en {
  font-family: "Lithos Pro", serif;
}
.ja {
  font-family: "Zen Maru Gothic", "Zen Maru Gothic Black",
    "Zen Maru Gothic Light", "Zen Maru Gothic Medium",
    "A P-OTF 丸ツデイ+ ProN DB";
}
.txt p {
  margin-bottom: 20px;
  line-height: 1.8;
}
.white {
  color: #fff;
}

/*==================================================
ヘッダー
===================================*/
#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: rgba(255, 255, 255, 1);
}
.header-wrap {
  display: flex;
  width: 98%;
  margin: 0 auto;
  align-items: center;
  padding: 10px 0;
}
.header-left {
  width: 20%;
}
.header-right {
  width: 75%;
  margin-left: auto;
}
.header-right .top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 70%;
  margin-left: auto;
  margin-bottom: 5px;
}
.header-right .block {
  display: block;
  width: 27%;
  font-size: 20px;
}
.header-right .block:hover {
  opacity: 0.7;
}
.header-right .top .reserve {
  padding: 5px 0;
  background: #eca936;
  color: #fff;
  text-align: center;
  border-radius: 10px;
}
/*==================================================
グローバルメニュー
===================================*/
.bottom {
  position: relative;
  padding: 10px 0;
  z-index: 1;
}

.nav-menu-wrap {
  width: 100%;
  margin-left: auto;
  padding-bottom: 10px;
}
.menu {
  position: relative;
  width: 100%;
  text-align: center;
}
.menu > li {
  float: left;
  width: 14.2%;
  position: relative;
}

.menu > li a {
  display: block;
  color: #555;
  font-size: 16px;
  position: relative;
  font-family: "Zen Maru Gothic";
}

.menu > li:hover::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d46c45;
  position: absolute;
  bottom: -12px;
  right: 50%;
  transform: translateX(50%);
}

ul.menu__second-level {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}

.menu > li:hover {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.menu__second-level li a:hover {
  background: #eca936;
  color: #ffffff;
}

/* floatクリア */
.menu:before,
.menu:after {
  content: " ";
  display: table;
}

.menu:after {
  clear: both;
}

.menu {
  *zoom: 1;
}

.menu > li.menu__single {
  position: relative;
}

li.menu__single ul.menu__second-level {
  position: absolute;
  top: 40px;
  width: 100%;
  background: #f1ecdf;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 99;
}

li.menu__single:hover ul.menu__second-level {
  top: 60px;
  visibility: visible;
  opacity: 1;
  z-index: 99;
}
.menu__second-level li a {
  padding: 10px 0;
  color: #707070;
}

/*==================================================
メインビジュアル
===================================*/
#mv {
  position: relative;
}
.slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: 100vh; /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*　背景画像設定　*/

.slider-item01 {
  background: url("../img/top/mv01.jpg");
}

.slider-item02 {
  background: url("../img/top/mv02.jpg");
}

.slider-item03 {
  background: url("../img/top/mv03.jpg");
}

.slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 100vh; /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}

.cp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.mv-list {
  position: absolute;
  bottom: 15%;
  transform: translateY(50%);
  right: 30px;
  z-index: 4;
}
.mv-list ul {
  display: flex;
  align-items: center;
}
.mv-list .circle {
  position: relative;
  z-index: 1;
  font-size: 25px;
  font-weight: 600;
  margin-right: 20px;
  text-align: center;
  width: 220px;
}
.mv-list .circle::after {
  content: "";
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(236, 169, 54, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.mv-list .c-2::after {
  background: rgba(239, 171, 136, 0.5);
}

/*==================================================
お知らせ、インフォメーション
===================================*/
#index-info {
  background: #f1ecdf;
  position: relative;
  z-index: 1;
  padding: 100px 0 0;
  margin-bottom: 175px;
}
#index-info::after {
  content: "";
  background-image: url("../img/top/info_bg.png");
  width: 100%;
  height: 175px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  position: absolute;
  bottom: -175px;
  right: 0;
  z-index: -1;
}
.index-ttl {
  font-size: 40px;
  color: #8d2d09;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
.index-ttl span,
.fea-ttl span {
  position: relative;
  z-index: 1;
}
.index-ttl span::before,
.fea-ttl span::before {
  content: "";
  background-image: url("../img/top/ttl01.png");
  width: 100px;
  height: 90px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 0;
  left: -30px;
  z-index: -1;
}
.index-ttl .ttl01::before,
.fea-ttl .ttl01::before {
  background-image: url("../img/top/ttl01.png");
}
.index-ttl .ttl02::before,
.fea-ttl .ttl02::before {
  background-image: url("../img/top/ttl02.png");
}
.index-ttl .ttl03::before,
.fea-ttl .ttl03::before {
  background-image: url("../img/top/ttl03.png");
}

#index-info .top {
  position: relative;
  z-index: 1;
}
#index-info .top::after {
  content: "";
  background-image: url("../img/top/info01.png");
  width: 190px;
  height: 180px;
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
#index-info .top .wrap {
  max-width: 900px;
}
.calendar {
  padding-bottom: 100px;
  text-align: center;
}

#index-info .btm {
  position: relative;
  z-index: 1;
}
#index-info .btm::before {
  content: "";
  background-image: url("../img/top/info02.png");
  width: 125px;
  height: 115px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#index-info .btm::after {
  content: "";
  background-image: url("../img/top/info03.png");
  width: 195px;
  height: 190px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
#index-info .btm .wrap {
  max-width: 1500px;
}

.news-content {
  margin-bottom: 50px;
  padding-right: 8px;
  height: 360px;
  overflow-y: scroll;
}
.news-item {
  margin-bottom: 15px;
  border-bottom: 1px dashed #707070;
  padding-bottom: 10px;
}
.news-item .date {
  margin-bottom: 10px;
}

/* single */
#news-single {
  display: flex;
  justify-content: center;
  width: 100%;
}

.news-content-single {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.news-item-single {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  margin-left: 5px;
}

.date-single {
  width: 100px;
  text-align: left;
  flex-shrink: 0;
}

.news-ttl-single {
  margin-left: 20px;
}

.title-single {
  margin: 0 0 8px 0;
}

/*  */
.news-body p {
  margin-top: 0;
}

.news-body p + p {
  margin-top: 1.5em;
}

.news-body p:first-of-type + p {
  margin-top: 0 !important; /* 前半の余白対策 */
}

.news-body p:last-of-type {
  margin-top: 0 !important; /* 後半の余白対策 */
}
/*  */

.excerpt.has-title {
  margin-top: 0;
}

.excerpt.no-title {
  margin-top: 0;
}

.excerpt p {
  margin: 0;
}

.excerpt p + p {
  margin-top: 1.5em;
}

.excerpt br + br {
  display: block;
  content: "";
  margin-top: 1.5em;
}

/* single 詳細ナビ ここから */
.news-detail__content-flex {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 20px;
  margin-left: 5px;
}

.news-detail__content-flex > *:not(:first-child) {
  margin-left: 40px;
}

.news-detail__content-flex > * {
  text-decoration: none;
  color: inherit;
}
/* single 詳細ナビ ここまで */

.time-table {
  width: 85%;
  max-width: 580px;
  margin-top: 20px;
}
.biz-hour {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 20px;
}
.ryu {
  position: relative;
}
.biz-hour td,
.biz-hour th {
  text-align: center;
  padding: 14px 5px;
}
.table-txt {
  display: block;
  max-width: 580px;
  margin-top: 5px;
  width: 85%;
}

/*==================================================
初めての方へ
===================================*/
#first-time {
  padding-top: 120px;
}
#first-time a img {
  margin: 0 auto;
}
#first-time a:hover {
  opacity: 0.7;
}

/*==================================================
コロナウイルス対策
===================================*/
#covid19 {
  padding: 5rem 0;
}
.accordion-001 {
  max-width: 1300px;
  margin: 0 auto;
}
.accordion-001 summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 1em 0;
  margin: 0 auto;
  background: #f1ecdf;
  font-weight: 500;
  font-size: 30px;
  cursor: pointer;
  font-family: "Zen Maru Gothic", "Zen Maru Gothic Black",
    "Zen Maru Gothic Light", "Zen Maru Gothic Medium",
    "A P-OTF 丸ツデイ+ ProN DB";
}

.accordion-001 summary::-webkit-details-marker {
  display: none;
}

.accordion-001 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 11px;
  height: 11px;
  margin-top: 2rem;
  border-bottom: 3px solid #d46c45;
  border-right: 3px solid #d46c45;
  content: "";
  transition: transform 0.3s;
}

.accordion-001[open] summary::after {
  transform: rotate(225deg);
}

.accordion-open {
  transform: translateY(-10px);
  opacity: 1;
  margin: 0;
  background: #f1ecdf;
  padding: 1em 2em 2em 2em;
  transition: transform 0.5s, opacity 0.5s;
}

.accordion-open[open] {
  transform: none;
  opacity: 1;
}
.covid19-flex {
  display: flex;
  justify-content: space-between;
  align-content: center;
  flex-wrap: wrap;
}
.covid19-list {
  width: 30%;
  margin: 0 auto;
  padding: 30px 0;
  text-align: center;
}
.covid19-list img {
  width: 55%;
  margin: 0 auto;
}
.covid19-list span {
  display: inline-block;
  text-align: center;
  padding: 5px 0;
}

.accordion-open .txt {
  max-width: 715px;
  margin: 0 auto;
}
.corona-btm {
  max-width: 850px;
  margin: 0 auto;
  padding: 20px 0;
}
.corona-btm p,
.corona-btm ul {
  margin-bottom: 15px;
}
.corona-btm li {
  margin-bottom: 10px;
  list-style: disc;
}

.corona-table {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}
.corona-table table {
  border-collapse: collapse; /* セルの線を重ねる */
  background: #ffffff;
  width: 100%;
  table-layout: fixed; /* セルの幅計算指定 */
}
.corona-table th,
.corona-table td {
  padding: 10px;
}
.corona-table tr:nth-child(odd) {
  background-color: #f3f3f3; /* 背景色指定 */
}

/*==================================================
ご挨拶
===================================*/
#greeting {
  padding: 200px 0 100px;
  position: relative;
  z-index: 1;
}
#greeting::before {
  content: "";
  background-image: url("../img/top/greeting02.png");
  width: 195px;
  height: 170px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#greeting::after {
  content: "";
  background-image: url("../img/top/greeting03.png");
  width: 200px;
  height: 170px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
#greeting .wrap {
  max-width: 1500px;
}
#greeting .index-ttl {
  font-size: 32px;
}
.doc-img {
  position: relative;
  z-index: 1;
}
.doc-img img {
  margin: 0 auto;
}
.doc-name {
  text-align: center;
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  z-index: 1;
}
.doc-name span {
  display: block;
}
.doc-name .ja {
  font-size: 30px;
}
.doc-name .en {
  font-size: 23px;
}
.doc-name::after {
  content: "";
  background-image: url("../img/doctor_bg.png");
  width: 300px;
  height: 200px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 50%;
  right: 50%;
  transform: translate(50%, 50%);
  z-index: -1;
}

.more {
  width: 70%;
  margin: 70px auto 0;
  max-width: 290px;
}
.more-btn {
  display: block;
  border: 1px solid #eca936;
  background: #fff;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  text-align: center;
  font-display: 25px;
  padding: 15px 0;
}
.more-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 30px;
  border: 1px dashed #eca936;
  position: absolute;
  top: 57%;
  left: 52%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.more-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid #eca936;
  position: absolute;
  bottom: 50%;
  right: 10px;
  transform: translateY(50%);
  z-index: 1;
}
.more-btn:hover {
  opacity: 0.7;
}

/*==================================================
当院の特徴
===================================*/
#index-feature {
  position: relative;
  z-index: 1;
  background: rgba(241, 236, 223, 0.4);
  margin-top: 300px;
}
#index-feature::before {
  content: "";
  background-image: url("../img/top/feature_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  height: 285px;
  position: absolute;
  top: -284px;
  left: 0;
  z-index: -1;
}
#index-feature .index-ttl .en {
  font-size: 70px;
}
#index-feature .index-ttl .ja {
  font-size: 30px;
  font-weight: normal;
  color: #707070;
}
#index-feature .index-ttl {
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}
#index-feature .index-ttl::before {
  content: "";
  background-image: url("../img/top/fea-ttl01.png");
  width: 150px;
  height: 150px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  position: absolute;
  bottom: 0;
  left: 17%;
  transform: translateX(-50%);
  z-index: -1;
}
#index-feature .index-ttl::after {
  content: "";
  background-image: url("../img/top/fea-ttl02.png");
  width: 150px;
  height: 150px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  position: absolute;
  top: -25%;
  right: 17%;
  transform: translate(50%, -50%);
  z-index: -1;
}
#index-feature .wrap {
  max-width: 1500px;
  margin-top: 90px;
}
.fea-item {
  margin-bottom: 130px;
  align-items: center;
}
.fea-img {
  position: relative;
  z-index: 1;
}
.fea-img::after {
  content: "";
  background-image: url("../img/top/fea01-2.png");
  width: 180px;
  height: 175px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  position: absolute;
  bottom: -1%;
  right: -1%;
  transform: translate(50%, 50%);
  z-index: 1;
}
.fea-ttl {
  font-size: 30px;
  margin-bottom: 25px;
  color: #8d2d09;
}
.fea-ttl .en {
  font-size: 70px;
}
.fea-img.fea-img02::after {
  content: "";
  background-image: url("../img/top/fea02-2.png");
  width: 190px;
  height: 165px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: -1%;
  left: -1%;
  transform: translate(-50%, 50%);
  z-index: 1;
}
.fea03 {
  position: relative;
  z-index: 1;
  margin-bottom: 130px;
}
.fea03 .wrap {
  max-width: 1000px;
}
.fea03 img {
  margin: 0 auto;
}
.fea03 .txtbox {
  padding-top: 70px;
}
.fea03::before {
  content: "";
  background-image: url("../img/top/fea03-2.png");
  width: 205px;
  height: 200px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}
.fea03::after {
  content: "";
  background-image: url("../img/top/fea03-3.png");
  width: 185px;
  height: 180px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.fea-btm {
  padding-bottom: 60px;
}
.fea-btm .txtbox {
  padding-top: 120px;
}
.fea-btm img {
  margin: 0 auto;
}
.fea-img.fea-img04::after {
  background-image: url("../img/top/fea04-2.png");
  width: 150px;
  height: 155px;
  right: 95%;
}
.fea-img.fea-img05::after {
  background-image: url("../img/top/fea05-2.png");
  width: 200px;
  height: 200px;
}

/*==================================================
診療案内
===================================*/
#index-medical-top {
  background-image: url("../img/top/medical-top.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#index-medical-top .index-ttl {
  text-align: center;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  padding: 50px 0 100px;
  margin: 0 auto;
}
#index-medical {
  background: #f1ecdf;
  margin-top: 125px;
  position: relative;
  z-index: 1;
}
#index-medical::before {
  content: "";
  background-image: url("../img/top/medical-top_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  height: 235px;
  position: absolute;
  top: -200px;
  left: 0;
  z-index: -1;
}
#index-medical .index-ttl {
  margin-bottom: 90px;
}
#index-medical .index-ttl .en {
  font-size: 70px;
}
#index-medical .index-ttl .ja {
  font-size: 30px;
  font-weight: normal;
  color: #707070;
}
#index-medical .wrap {
  max-width: 1500px;
}
.med-item .img img {
  margin: 0 auto -30px;
}
.med-ttl {
  text-align: center;
  font-size: 50px;
  color: #8d2d09;
  border-bottom: 1px solid #707070;
  margin-bottom: 25px;
}
.med-ttl span {
  display: block;
  font-size: 30px;
  color: #d46c45;
}
.med-item ul {
  margin-top: 35px;
  background: #e6daba;
  padding: 20px 10px;
}
.med-item ul li {
  margin-bottom: 10px;
}
.medical-btm {
  padding: 90px 0;
}
.medical-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
}
.medical-list li {
  width: 16%;
  display: flex;
  align-items: stretch;
}
.medical-list a {
  display: block;
  text-align: center;
  background: #ffffff;
  padding: 35px 0;
  border-radius: 15px;
  width: 100%;
}
.medical-list img {
  margin: 0 auto;
}
.medical-list .ja {
  color: #8d2d09;
  font-size: 22px;
  margin-top: 15px;
}

/*==================================================
ギャラリー
===================================*/
.gallery {
  margin: 80px auto;
}
/*
右から左へ
----------------------------*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/*
IE11対策
----------------------------*/
_:-ms-lang(x)::-ms-backdrop,
.d-demo {
  display: -ms-grid;
  overflow: hidden;
}
/*----------------------------*/

.d-demo__wrap {
  display: flex;
  overflow: hidden;
}

.d-demo__list {
  display: flex;
  list-style: none;
}

.d-demo__list--left {
  animation: infinity-scroll-left 95s infinite linear 0.5s both;
}

.d-demo__item {
  width: calc(150vw / 6);
}
.d-demo__item > img {
  width: 95%;
}

/*==================================================
採用情報
===================================*/
#index-recruit {
  margin-bottom: 180px;
}
#index-recruit .wrap {
  max-width: 1500px;
  position: relative;
  z-index: 1;
}
#index-recruit .wrap::before {
  content: "";
  width: 90%;
  max-width: 1300px;
  height: 95%;
  background: #f1ecdf;
  border-radius: 50px;
  position: absolute;
  bottom: -30px;
  left: 0;
  z-index: -1;
}
#index-recruit .flex {
  align-items: flex-end;
  position: relative;
  z-index: 1;
  width: 95%;
  margin: 0 auto;
}
#index-recruit .index-ttl .en {
  font-size: 70px;
  display: inline-block;
  position: relative;
  z-index: 1;
}
#index-recruit .index-ttl .ja {
  font-size: 30px;
  font-weight: normal;
  color: #707070;
  display: inline-block;
}
#index-recruit .index-ttl .en::before {
  content: "";
  background-image: url("../img/top/recruit02.png");
  width: 105px;
  height: 105px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  position: absolute;
  top: -55px;
  left: -20px;
  z-index: -1;
}
#index-recruit .img img {
  margin-left: auto;
}
#index-recruit .img::after {
  content: "";
  background-image: url("../img/top/recruit03.png");
  width: 225px;
  height: 225px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  bottom: -5%;
  right: 3%;
  transform: translate(50%, 50%);
  z-index: 1;
}

/*==================================================
フッター
===================================*/
#footer {
  margin-top: 440px;
  background: #8d2d09;
  position: relative;
  z-index: 1;
}
#footer::before {
  content: "";
  background-image: url("../img/top/footer_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 280px;
  position: absolute;
  top: -275px;
  left: 0;
  z-index: -1;
}
.foot-top .wrap {
  max-width: 1500px;
}
.foot-top .left {
  width: 45%;
  text-align: center;
  color: #fff;
}
.foot-logo img {
  margin: 0 auto 5px;
}
.foot-top .ttl {
  padding: 7px 0;
  border-radius: 20px;
  background: #f1ecdf;
  color: #707070;
  width: 40%;
  margin: 15px auto;
}
.foot-top .reserve li {
  margin-bottom: 15px;
}
.foot-top .tel {
  color: #ffffff;
  font-size: 23px;
}
.foot-top .web {
  padding: 7px 15px;
  background: #eca936;
  border-radius: 10px;
  display: inline-block;
  color: #fff;
  font-size: 23px;
}
.medical-doc {
  display: inline-block;
}
.foot-top .right {
  width: 50%;
}
.foot-top .table-txt {
  color: #ffffff;
}
.foot-map {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
}
.copyright {
  text-align: center;
  padding: 20px 0;
  color: #ffffff;
  font-size: 14px;
}

/*==================================================
ページトップボタン
===================================*/
#page_top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 20px;
  bottom: 30px;
  background: #ecc440;
  border-radius: 50%;
  z-index: 999;
}
#page_top a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-decoration: none;
}
#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f106";
  font-size: 30px;
  color: #fff;
  position: absolute;
  width: 30px;
  height: 30px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/*==================================================
クリニック紹介ページ
===================================*/
#mainvisual {
  background-image: url("../img/subpage_bg.jpg");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 50vh;
  z-index: 1;
}
.page-ttl {
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
}
.page-ttl .en {
  font-size: 70px;
}
.page-ttl .ja {
  font-size: 35px;
  font-weight: normal;
}

.section {
  padding-top: 100px;
}
.sec-ttl {
  position: relative;
  z-index: 1;
  font-size: 35px;
  padding: 30px 0 65px;
  text-align: center;
  margin-bottom: 90px;
}
.sec-ttl::before {
  content: "";
  background-image: url("../img/sec-ttl01.png");
  width: 340px;
  height: 185px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.sec-ttl::after {
  content: "";
  background-image: url("../img/sec-ttl02.png");
  width: 180px;
  height: 15px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 30%;
  right: 50%;
  transform: translate(50%, 50%);
  z-index: -1;
}

.section .fea-item {
  position: relative;
  z-index: 1;
}
.feature01::before {
  content: "";
  background-image: url("../img/clinic/fea01-2.png");
  width: 150px;
  height: 145px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.feature02::before {
  content: "";
  background-image: url("../img/clinic/fea02-2.png");
  width: 130px;
  height: 130px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: -40px;
  left: 0;
  z-index: -1;
}
.feature02::after,
.feature04::after {
  content: "";
  background-image: url("../img/clinic/feature_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 725px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -3;
}
.feature03::before {
  content: "";
  background-image: url("../img/clinic/fea03-2.png");
  width: 110px;
  height: 100px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.feature04::before {
  content: "";
  background-image: url("../img/clinic/fea04-2.png");
  width: 150px;
  height: 145px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: -40px;
  left: 0;
  z-index: -1;
}
.feature05::before {
  content: "";
  background-image: url("../img/clinic/fea05-2.png");
  width: 110px;
  height: 105px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

#facility .wrap {
  max-width: 1500px;
  justify-content: flex-start;
}
#facility .flex-3 {
  max-width: 450px;
  margin-bottom: 70px;
  margin-left: 25px;
}
#facility .flex-3 img {
  width: 100%;
}
#facility .ttl {
  color: #fff;
  padding: 15px 0;
  background: #d46c45;
  width: 100%;
}
#facility .flex-3 p {
  background: #f1ecdf;
  padding: 25px 3%;
  width: 100%;
  height: 150px;
}

#facility .btm .item {
  margin-bottom: 100px;
}
#facility .btm .ttl {
  padding: 20px;
  background: #efab88;
  border-left: 5px solid #8d2d09;
  font-size: 20px;
  margin-bottom: 65px;
}
#facility .btm .item h4 {
  font-size: 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid #8d2d09;
}

#flow .wrap {
  max-width: 1300px;
}
.flow-item {
  background: #f1ecdf;
  border-radius: 30px;
  margin-bottom: 90px;
  padding: 50px 4%;
  position: relative;
  z-index: 1;
}
.flow-item::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 40px solid #d46c45;
  position: absolute;
  bottom: -65px;
  right: 50%;
  transform: translateX(50%);
}
.flow-item:last-child::after {
  display: none;
}
#flow .flow-item .ttl {
  border-bottom: 3px solid #8d2d09;
  margin-bottom: 25px;
  font-size: 28px;
}
#flow .flow-item .ttl .en {
  color: #8d2d09;
  font-size: 40px;
}

/*==================================================
院長紹介ページ
===================================*/
#doctor .ttl {
  font-size: 35px;
  color: #8d2d09;
  margin-bottom: 20px;
}
#doctor .wrap.flex {
  max-width: 1500px;
  margin: 0 auto 90px;
  align-items: center;
}
#doctor .doc-name {
  bottom: -65px;
}
#doctor .bg-beige {
  max-width: 1000px;
  margin: 150px auto 0;
}
#doctor .bg-beige .ttl {
  font-size: 20px;
}
.skill {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.skill dt {
  width: 170px;
  margin-bottom: 20px;
}
.skill dd {
  width: calc(100% - 170px);
  margin-bottom: 20px;
}

/*==================================================
採用情報ページ
===================================*/
.bg-beige {
  border-radius: 30px;
  background: #f1ecdf;
  padding: 50px 2%;
  margin: 0 auto 30px;
}

#receuit .bg-beige {
  max-width: 1300px;
}
#receuit p {
  font-size: 35px;
  text-align: center;
  padding: 100px 0;
}

/*==================================================
診療時間・アクセスページ
===================================*/
#information {
  position: relative;
  z-index: 1;
}
#information::after {
  content: "";
  background-image: url("../img/access_bg.png");
  width: 100%;
  height: 70%;
  max-height: 690px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
#information .img img {
  margin: 0 auto 40px;
}

#access .bg-beige {
  max-width: 900px;
  margin: 50px auto;
}
#access .bg-beige .ttl {
  font-size: 20px;
  color: #8d2d09;
  border-bottom: 1px solid #8d2d09;
  margin-bottom: 20px;
}
#access .bg-beige ul li {
  margin-bottom: 15px;
}

/*==================================================
診療案内ページ
===================================*/
#perio,
#preventive,
#wisdom,
#implant {
  background-image: url("../img/medical/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 60px 0 30px;
}

.medical .flex {
  margin-bottom: 90px;
}
.m-ttl {
  font-size: 25px;
  margin-bottom: 25px;
  color: #8d2d09;
}
.medical .img img {
  margin-left: auto;
}
.medical .bg-beige {
  max-width: 1300px;
  margin-bottom: 90px;
}
.medical .bg-beige .item {
  margin-bottom: 40px;
}
.medical .bg-beige .item h4.ja {
  font-size: 20px;
  border-bottom: 1px solid #8d2d09;
  margin-bottom: 15px;
}
.medical ul {
  margin: 30px auto;
}
.medical ul li {
  margin-bottom: 15px;
}
.medical .bg-beige img {
  margin: 20px auto;
}

#fee .wrap {
  max-width: 1300px;
}
#fee .item {
  margin-bottom: 30px;
}
#fee h3.ttl {
  font-size: 20px;
  border-bottom: 1px solid #8d2d09;
  margin-bottom: 20px;
}
.fee-content {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  width: 100%;
}
.fee-item {
  width: 33.3%;
}
.fee-item div {
  border: 1px solid #707070;
  padding: 15px 0;
}
.fee-item .white {
  background: #d46c45;
}
#fee .risk {
  margin-bottom: 45px;
}
#fee .risk .ttl,
.cp_container .ttl {
  font-weight: 600;
  margin-bottom: 10px;
}

.cp_box *,
.cp_box *:before,
.cp_box *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.cp_box {
  position: relative;
}
.cp_box label {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  height: 140px; /* グラデーションの高さ */
  cursor: pointer;
  text-align: center;
  /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
  background: linear-gradient(
    to bottom,
    rgba(250, 252, 252, 0) 0%,
    rgba(250, 252, 252, 0.95) 90%
  );
}
.cp_box input:checked + label {
  background: inherit; /* 開いた時にグラデーションを消す */
}
.cp_box label:after {
  line-height: 2.5rem;
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 50%;
  width: 16rem;
  font-family: FontAwesome;
  content: "\f13a"" 続きをよむ";
  transform: translate(-50%, 0);
  letter-spacing: 0.05em;
  color: #ffffff;
  border-radius: 20px;
  background-color: #eca936;
}
.cp_box input {
  display: none;
}
.cp_box .cp_container {
  overflow: hidden;
  height: 250px; /* 開く前に見えている部分の高さ */
  transition: all 0.5s;
}
.cp_box input:checked + label {
  /* display: none ; 閉じるボタンを消す場合解放 */
}
.cp_box input:checked + label:after {
  font-family: FontAwesome;
  content: "\f139"" 閉じる";
}
.cp_box input:checked ~ .cp_container {
  height: auto;
  padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
  transition: all 0.5s;
}

.cp_box .cp_container p,
.cp_box .cp_container ul li {
  margin-bottom: 10px;
}

/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 上から */

.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 左から */

.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右から */

.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}
.ai_btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 9999;
  max-width: 200px;
}
/*------モーダルウィンドウ-------*/
/*infoエリアをはじめは非表示*/
#infobtn {
  display: none;
}

/*モーダルの横幅を変更したい場合*/
.modaal-container {
  max-width: 400px;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}
#infobtn h2 {
  font-size: max(1.2vw, 2rem);
  color: #d46c45;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d46c45;
  text-align: center;
}
#infobtn p {
  font-size: 19px;
  text-align: center;
  margin-bottom: 10px;
}
.modaal_btn {
  background: #d46c45;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}
.modaal_btn button {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
.modaal_btn p {
  color: #ffffff;
}
