/*
	Theme Name: diver_child
	Template: diver
	Description:  Diverの子テーマです。
	Theme URI: http://tan-taka.com/diver/
	Author: Takato Takagi
 */
/* カスタマイズする場合にはこれより下に追記してください  */
.js-scrollable {
    overflow-x: auto;
    white-space: nowrap;
    max-width: 100%;
}
/*-----------------------------------------------
 header area width:100%でDIVERを利用する際に必要
-----------------------------------------------*/
.header-logo, .header_small_content, .bigfooter_wrap, .footer_content {
  width: 90% !important;
  max-width: 2000px;
}
.header_small_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
ul#mainnavul .sub-menu a:hover {
  color: #fff;
  background-color: #8fa563;
}
@media(max-width:1200px) {
  .header-logo, .header_small_content, .bigfooter_wrap, .footer_content {
    width: 96% !important;
  }
}
@media(max-width:959px) {
  .header_small_content {
    display: block;
  }
}
@media(max-width:768px) {
  .header-logo, .header_small_content, .bigfooter_wrap, .footer_content {
    width: 100% !important;
    ;
  }
}
/*-----------------------------------------------
 container カスタマイズ
-----------------------------------------------*/
#container {
  min-height: inherit;
}
/*-----------------------------------------------
 drawer navigation area
-----------------------------------------------*/
.drawer-nav-btn-wrap {
  left: inherit;
  right: 0;
}
.drawer-nav .widget ul:first-child > li {
  border-bottom: 1px solid #fff;
}
.drawer-nav {
  right: -100% !important;
}
.drawer-nav.active {
  left: inherit;
  right: 0 !important;
}
.drawer-nav .widget ul:first-child > li:hover {
  background-color: #8fa563;
}
/*-----------------------------------------------
 topslider area
-----------------------------------------------*/
.topslider {
  overflow: hidden;
}
.topslider .swiper {
  width: 100vw;
}
.topslider li.swiper-slide {
  width: calc(100% + 100px) !important;
}
.topslider li.swiper-slide > div {
  background-position-x: calc(50% - 50px);
  background-position-y: center;
  background-size: cover;
  height: calc(100vh - 100px);
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.topslider li.swiper-slide.zoom-in {
  width: 100% !important;
}
.topslider li.swiper-slide-active {
  opacity: 1 !important;
}
.topslider li.swiper-slide.slide01 > div {
  background-image: url('/images/img_topslider_01.jpg');
}
.topslider li.swiper-slide.slide02 > div {
  background-image: url('/images/img_topslider_02.jpg');
}
.topslider li.swiper-slide.slide03 > div {
  background-image: url('/images/img_topslider_03.jpg');
}
@media screen and (max-width:480px) {
  .topslider li.swiper-slide > div {
    height: calc(100vh - 150px);
  }
  .topslider li.swiper-slide.slide01 > div {
    background-image: url('/images/img_topslider_01_sp.jpg');
  }
  .topslider li.swiper-slide.slide02 > div {
    background-image: url('/images/img_topslider_02_sp.jpg');
  }
  .topslider li.swiper-slide.slide03 > div {
    background-image: url('/images/img_topslider_03_sp.jpg');
  }
}
.topslider .swiper-slide-active.zoom-in > div, .topslider .swiper-slide-duplicate-active.zoom-in > div, .topslider .swiper-slide-prev.zoom-in > div {
  background-position: center center;
  animation: zoom-in 5s linear 0s normal both;
}
.topslider .swiper-slide-active.zoom-out > div, .topslider .swiper-slide-duplicate-active.zoom-out > div, .topslider .swiper-slide-prev.zoom-out > div {
  animation: zoom-out 5s linear 0s normal both;
}
.topslider .swiper-slide-active.move-right > div, .topslider .swiper-slide-duplicate-active.move-right > div, .topslider .swiper-slide-prev.move-right > div {
  animation: move-right 5s linear 0s normal both;
}
.topslider .swiper-slide-active.move-left > div, .topslider .swiper-slide-duplicate-active.move-left > div, .topslider .swiper-slide-prev.move-left > div {
  animation: move-left 5s linear 0s normal both;
}
/* スライド画像の拡大アニメーションの設定 */
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
@keyframes zoom-out {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes move-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50px);
  }
}
@keyframes move-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50px);
  }
}
/* ----------------------------------------------------------------------
 font-size - フォントサイズ
---------------------------------------------------------------------- */
.text70 {
  font-size: 70%
} /* フォントサイズ70% */
.text80 {
  font-size: 80%
}
.text90 {
  font-size: 90%
}
.text100 {
  font-size: 100%
}
.text110 {
  font-size: 110%
}
.text120 {
  font-size: 120%
}
.text130 {
  font-size: 130%
}
.text140 {
  font-size: 140%
}
.text150 {
  font-size: 150%
}
.text160 {
  font-size: 160%
}
.text170 {
  font-size: 170%
}
.text180 {
  font-size: 180%
}
.text190 {
  font-size: 190%
}
.text200 {
  font-size: 200%
}
.text210 {
  font-size: 210%
}
.text220 {
  font-size: 220%
}
.b {
  font-weight: 700
} /* 太字 */
.u {
  text-decoration: underline
} /* 下線 */
.del {
  text-decoration: line-throug
} /* 打ち消し線 */
/* ----------------------------------------------------------------------
 font-color - フォントカラー
---------------------------------------------------------------------- */
.red {
  color: red
} /* 赤色 */
.blue {
  color: #2ca9e1
} /* 青色 */
.green {
  color: #82ae46
} /* 緑色 */
.orange {
  color: #ff7d00
} /* 橙色 */
.yellow {
  color: #fff000
} /* 黄色 */
.pink {
  color: #ff0084
} /* ピンク */
.gray {
  color: #999999
} /* グレー */
/* ----------------------------------------------------------------------
 text-align - 配置
---------------------------------------------------------------------- */
.align1 {
  text-align: center !important
} /* 中央寄せ */
.align2 {
  text-align: right !important
} /* 右寄せ */
.align3 {
  text-align: left !important
} /* 左寄せ */
/* ----------------------------------------------------------------------
 margin
---------------------------------------------------------------------- */
.m0 {
  margin: 0 !important
}
.mt0 {
  margin-top: 0 !important
}
.mr0 {
  margin-right: 0 !important
}
.mb0 {
  margin-bottom: 0 !important
}
.ml0 {
  margin-left: 0 !important
}
.m0a {
  margin: 0 auto !important
}
.m5 {
  margin: 5px !important
}
.mt5 {
  margin-top: 5px !important
}
.mr5 {
  margin-right: 5px !important
}
.mb5 {
  margin-bottom: 5px !important
}
.ml5 {
  margin-left: 5px !important
}
.m10 {
  margin: 10px !important
}
.mt10 {
  margin-top: 10px !important
}
.mr10 {
  margin-right: 10px !important
}
.mb10 {
  margin-bottom: 10px !important
}
.ml10 {
  margin-left: 10px !important
}
.m15 {
  margin: 15px !important
}
.mt15 {
  margin-top: 15px !important
}
.mr15 {
  margin-right: 15px !important
}
.mb15 {
  margin-bottom: 15px !important
}
.ml15 {
  margin-left: 15px !important
}
.m20 {
  margin: 20px !important
}
.mt20 {
  margin-top: 20px !important
}
.mr20 {
  margin-right: 20px !important
}
.mb20 {
  margin-bottom: 20px !important
}
.ml20 {
  margin-left: 20px !important
}
.m25 {
  margin: 25px !important
}
.mt25 {
  margin-top: 25px !important
}
.mr25 {
  margin-right: 25px !important
}
.mb25 {
  margin-bottom: 25px !important
}
.ml25 {
  margin-left: 25px !important
}
.m30 {
  margin: 30px !important
}
.mt30 {
  margin-top: 30px !important
}
.mr30 {
  margin-right: 30px !important
}
.mb30 {
  margin-bottom: 30px !important
}
.ml30 {
  margin-left: 30px !important
}
.m35 {
  margin: 35px !important
}
.mt35 {
  margin-top: 35px !important
}
.mr35 {
  margin-right: 35px !important
}
.mb35 {
  margin-bottom: 35px !important
}
.ml35 {
  margin-left: 35px !important
}
.m40 {
  margin: 40px !important
}
.mt40 {
  margin-top: 40px !important
}
.mr40 {
  margin-right: 40px !important
}
.mb40 {
  margin-bottom: 40px !important
}
.ml40 {
  margin-left: 40px !important
}
.m45 {
  margin: 45px !important
}
.mt45 {
  margin-top: 45px !important
}
.mr45 {
  margin-right: 45px !important
}
.mb45 {
  margin-bottom: 45px !important
}
.ml45 {
  margin-left: 45px !important
}
.m50 {
  margin: 50px !important
}
.mt50 {
  margin-top: 50px !important
}
.mr50 {
  margin-right: 50px !important
}
.mb50 {
  margin-bottom: 50px !important
}
.ml50 {
  margin-left: 50px !important
}
.m55 {
  margin: 55px !important
}
.mt55 {
  margin-top: 55px !important
}
.mr55 {
  margin-right: 55px !important
}
.mb55 {
  margin-bottom: 55px !important
}
.ml55 {
  margin-left: 55px !important
}
.m60 {
  margin: 60px !important
}
.mt60 {
  margin-top: 60px !important
}
.mr60 {
  margin-right: 60px !important
}
.mb60 {
  margin-bottom: 60px !important
}
.ml60 {
  margin-left: 60px !important
}
.m65 {
  margin: 65px !important
}
.mt65 {
  margin-top: 65px !important
}
.mr65 {
  margin-right: 65px !important
}
.mb65 {
  margin-bottom: 65px !important
}
.ml65 {
  margin-left: 65px !important
}
.m70 {
  margin: 70px !important
}
.mr70 {
  margin-right: 70px !important
}
.mb70 {
  margin-bottom: 70px !important
}
.ml70 {
  margin-left: 70px !important
}
.m75 {
  margin: 75px !important
}
.mt75 {
  margin-top: 75px !important
}
.mr75 {
  margin-right: 75px !important
}
.mb75 {
  margin-bottom: 75px !important
}
.ml75 {
  margin-left: 75px !important
}
.m80 {
  margin: 80px !important
}
.mt80 {
  margin-top: 80px !important
}
.mr80 {
  margin-right: 80px !important
}
.mb80 {
  margin-bottom: 80px !important
}
.ml80 {
  margin-left: 80px !important
}
/* ----------------------------------------------------------------------
 padding
---------------------------------------------------------------------- */
.p0 {
  padding: 0 !important
}
.pt0 {
  padding-top: 0 !important
}
.pr0 {
  padding-right: 0 !important
}
.pb0 {
  padding-bottom: 0 !important
}
.pl0 {
  padding-left: 0 !important
}
.p5 {
  padding: 5px !important
}
.pt5 {
  padding-top: 5px !important
}
.pr5 {
  padding-right: 5px !important
}
.pb5 {
  padding-bottom: 5px !important
}
.pl5 {
  padding-left: 5px !important
}
.p10 {
  padding: 10px !important
}
.pt10 {
  padding-top: 10px !important
}
.pr10 {
  padding-right: 10px !important
}
.pb10 {
  padding-bottom: 10px !important
}
.pl10 {
  padding-left: 10px !important
}
.p20 {
  padding: 20px !important
}
.pt20 {
  padding-top: 20px !important
}
.pr20 {
  padding-right: 20px !important
}
.pb20 {
  padding-bottom: 20px !important
}
.pl20 {
  padding-left: 20px !important
}
.p30 {
  padding: 30px !important
}
.pt30 {
  padding-top: 30px !important
}
.pr30 {
  padding-right: 30px !important
}
.pb30 {
  padding-bottom: 30px !important
}
.pl30 {
  padding-left: 30px !important
}
.p40 {
  padding: 40px !important
}
.pt40 {
  padding-top: 40px !important
}
.pr40 {
  padding-right: 40px !important
}
.pb40 {
  padding-bottom: 40px !important
}
.pl40 {
  padding-left: 40px !important
}
.p50 {
  padding: 50px !important
}
.pt50 {
  padding-top: 50px !important
}
.pr50 {
  padding-right: 50px !important
}
.pb50 {
  padding-bottom: 50px !important
}
.pl50 {
  padding-left: 50px !important
}
.p80 {
  padding: 80px !important
}
.pt80 {
  padding-top: 80px !important
}
.pr80 {
  padding-right: 80px !important
}
.pb80 {
  padding-bottom: 80px !important
}
.pl80 {
  padding-left: 80px !important
}
/*---------------------------------------------
common Style
---------------------------------------------*/
.rich_font_type1 {
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 500;
}
.rich_font_type2 {
  font-family: Arial, "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
}
h2.catchphrase, h2.heading {
  position: relative;
  margin: 0 0 50px;
  padding-top: 65px;
  padding-bottom: 30px;
  font-size: 26px;
  text-align: center;
}
h2.catchphrase span {
  position: relative;
  font-size: 2.5rem;
  z-index: 2;
}
h2.catchphrase::before {
  content: attr(data-en);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #F5AD54;
  font-weight: bold;
  z-index: 1;
}
h2.heading span {
  position: relative;
  font-size: 2.0rem;
  z-index: 2;
}
h2.heading::after {
  content: ' ';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: #F5AD54;
}
h3.heading {
  font-size: 18px;
  height: 60px;
  line-height: 60px;
  margin: 0 0 20px 0;
  padding: 0 22px;
  border-left: 3px solid #F5AD54;
  background: #f7f7f8;
}
@media only screen and (max-width:767px) {
  h2.catchphrase {
    font-size: 16px;
    padding-top: 25px;
    padding-bottom: 15px;
  }
  h2.heading {
    font-size: 16px;
    padding-top: 40px;
    padding-bottom: 15px;
  }
  h2.catchphrase span, h2.heading span {
    font-size: 1.5rem;
  }
  h3.heading {
    font-size: 16px;
  }
}
.button-link {
  margin: 30px auto 10px;
  width: 60%;
  text-align: center;
}
.button-link .button {
  position: relative;
  display: inline-block;
  padding: 15px 15px 11px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 10px;
  border: 1px solid #999;
  border-radius: 4px;
  box-shadow: 0 4px 3px 0 rgb(0 0 0 / 8%);
  text-align: center;
  background-color: #fff;
  cursor: pointer;
  transition: background-color .5s ease, color .5s ease;
}
.icon-arrow:before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0px;
  right: 30px;
  width: 9px;
  height: 9px;
  border-top: 1px solid #333355;
  border-right: 1px solid #333355;
  transform: rotate(45deg);
  transition: 0.5s ease-out;
}
.icon-arrow:after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  width: 17px;
  height: 1px;
  background: #000;
  transition: 0.5s ease-out;
}
.button-link .button:hover {
  background: #005bab;
  color: #fff;
}
.button-link .button:hover > .icon-arrow:before {
  right: 17px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.button-link .button:hover > .icon-arrow:after {
  right: 17px;
  width: 30px;
  background: #fff;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.spbr, .tbbr {
  display: none;
}
@media only screen and (max-width:768px) {
  .tbbr {
    display: block;
  }
}
@media only screen and (max-width:480px) {
  .spbr {
    display: block;
  }
}
/*---------------------------------------------
content Style
---------------------------------------------*/
#main {
  padding: 0em !important;
}
#main-wrap {
  margin: 0 auto;
}
.content-wrap {
  padding: 80px 0;
}
section.bg-gray {
  background-color: #f0f0f0;
}
#main .infomation {
  width: 100%;
  background-color: #70b8f1;
  padding: 30px 0;
  text-align: center;
}
#main .medicalInfoWrapper {
  background: #f0f0f0;
}
#main .medicalInfo {
  width: 90%;
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
  padding: 10px 0;
  line-height: 2.2rem;
}
#main .medicalInfo span {
  background: #F5AD54;
  color: #fff;
  padding: 5px 9px;
  border-radius: 3px 12px;
  margin: 0 5px;
}
@media only screen and (max-width:768px) {
  #main .infomation img {
    max-width: 90%;
  }
  #main .medicalInfo {
    text-align: left;
  }
}
/* ----------------------------------------------------------------------
clinic スタイル
---------------------------------------------------------------------- */
section#clinic {
  position: relative;
}
section#clinic:after {
  content: "";
  width: 55%;
  height: 496px;
  position: absolute;
  z-index: -1;
  right: 0;
  top: 50.8%;
  background: rgba(112 184 241 / .3);
}
section#clinic .about, section#clinic .treatment {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
section#clinic .treatment {
  margin-top: 120px;
}
section#clinic .image {
  width: 48%;
  text-align: center;
}
section#clinic .desc {
  width: 48%;
}
section#clinic .desc h3 {
  margin: 45px 0 0;
  padding: 0;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.6em;
}
section#clinic .desc p {
  width: 420px;
  max-width: 100%;
  margin-top: 30px;
  line-height: 2em;
}
section#clinic ul.link {
  margin-top: 30px;
  font-size: 1.2rem;
  font-weight: bold;
}
section#clinic ul.link li {
  width: fit-content;
  margin-top: 15px;
}
section#clinic ul.link a {
  display: initial;
  color: #005bab;
}
section#clinic ul.link a:hover {
  opacity: 0.5;
}
section#clinic ul.link li:after {
  content: "";
  width: 40px;
  height: 2px;
  margin-top: 3px;
  background-color: #005bab;
  display: block;
  transition: all 0.5s ease;
}
section#clinic ul.link li:hover:after {
  width: 80px;
}
@media only screen and (max-width:1024px) {
  section#clinic:after {
    width: 70%;
    height: 350px;
  }
}
@media only screen and (max-width:767px) {
  section#clinic .image, section#clinic .desc {
    width: 100%;
  }
  section#clinic .about .image img, section.doc-eyecatch .image_area img {
    width: 80%;
  }
  section#clinic .desc h3 {
    font-size: 1.2rem;
    text-align: center;
  }
  section#clinic .desc p {
    width: 100%;
  }
  section#clinic .treatment {
    flex-flow: column-reverse;
  }
  section#clinic:after {
    top: 48%;
    width: 80%;
    height: 300px;
  }
  section#clinic ul.link {
    font-size: 1.0rem;
  }
}
/* ----------------------------------------------------------------------
お知らせスタイル
---------------------------------------------------------------------- */
ul.news_list {
  margin: 0 auto;
  padding: 0;
  width: 70%;
  max-width: 2000px;
}
ul.news_list li {
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  background: #fff;
}
ul.news_list li:last-child {
  border-bottom: 1px solid #ccc;
}
ul.news_list li .news_content {
  display: flex;
  justify-content: start;
  margin: 0;
  padding: 20px 30px;
}
ul.news_list li .news_content .date {
  margin-right: 30px;
  padding: 0;
  font-weight: bold;
  color: #005bab;
  white-space: nowrap;
  font-size: 0.9rem;
  line-height: 0.9rem;
}
ul.news_list li .news_content .title {
  font-size: 0.9rem;
  line-height: 0.9rem;
}
@media(max-width:768px) {
  ul.news_list {
    width: 90%;
  }
}
@media(max-width:425px) {
  ul.news_list li .news_content {
    display: block;
  }
  ul.news_list li .news_content .date {
    display: block;
    width: 100%;
    font-size: 0.8rem;
  }
  ul.news_list li .news_content .title {
    display: block;
    width: 100%;
    font-size: 0.8rem;
  }
}
/*---------------------------------------------
サブページスタイル
---------------------------------------------*/
/* タイトルエリア
----------------- */
#page-title-wrap {
  margin: 0 auto 0;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
#page-title-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
#page-title-wrap .inner {
  position: relative;
  margin: 0 auto;
  padding: 80px 0;
  max-width: 1200px;
  z-index: 1;
}
#page-title-wrap .inner h1.title {
  text-align: center;
  color: #fff;
}
#page-title-wrap.treatment {
  background-image: url("/images/img_subtop_treatment.jpg");
}
#page-title-wrap.digikar-smart {
  background-image: url("/images/img_subtop_digikarsmart.jpg");
}
/* パンくずリスト
----------------- */
.fullpage #page-main .hentry {
  box-shadow: none;
}
/* 中タイトル
----------------- */
h3.title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
  padding: 1.8rem 0 1rem;
}
h3.title::before {
  content: attr(data-en);
  position: absolute;
  top: 0;
  left: 0;
  color: #F5AD54;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: bold;
  z-index: 1;
}
h3.title::after {
  content: " ";
  display: block;
  border-bottom: solid 2px #F5AD54;
  width: 50px;
  margin-top: 10px;
}
h4.title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.0;
  margin: 0 0 10px;
  border-left: solid 5px #F5AD54;
  padding: 0.25em 0.5em;
}
.fmbox {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 80%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 80px 0;
}
.fmbox.align_c {
  align-items: center;
}
.fmbox .col2 {
  width: calc(100% / 2);
}
.fmbox .col2 .inner {
  width: 80%;
  margin: 0 auto;
}
.fmbox .image-area {
  width: 40%;
}
.fmbox .title-area {
  width: 60%;
}
.fmbox .title-area.R {
  padding-left: 50px;
}
.fmbox .title-area.L {
  padding-right: 50px;
}
.fmbox .title-area .catchphrase {
  font-size: 1.5rem;
}
.fmbox .title-area .effect {
  text-align: center;
  padding: 20px 30px;
  border-radius: 10px;
  background: #ddf1b1;
}
.fmbox .title-area .effect p {
  text-align: left;
  padding-top: 10px;
  margin-bottom: 0;
}
@media only screen and (max-width:768px) {
  h3.title {
    font-size: 1.5rem;
  }
  h3.title::before {
    font-size: 1.0rem;
  }
  h4.title {
    font-size: 1.2rem;
  }
  .fmbox {
    padding: 50px 0;
  }
  .fmbox.reverse {
    flex-flow: column-reverse;
  }
  .fmbox .col2 {
    width: 100%;
  }
  .fmbox .image-area, .fmbox .title-area {
    width: 100%;
  }
  .fmbox .title-area.R, .fmbox .title-area.L {
    padding: 0;
  }
  .fmbox .title-area .catchphrase {
    font-size: 1.2rem;
  }
}
/* お知らせコンテンツ
----------------- */
#page-title-wrap.news {
  background-image: url("/images/img_subtop_news.jpg");
}
#main-wrap.news {
  width: 80%;
  max-width: 1680px;
  margin: 80px auto 0;
}
@media only screen and (max-width:768px) {
  #main-wrap.news {
    margin: 0;
  }
}
/* 当院についてコンテンツ
----------------- */
#page-title-wrap.about {
  background-image: url("/images/img_subtop_about.jpg");
}
.doc-eyecatch {
  padding: 0px 20px 10px 20px;
  overflow: hidden;
  margin-bottom: -100px;
}
.doc-eyecatch .content {
  max-width: 1182px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.doc-eyecatch .content .image_area {
  width: 50%;
  position: relative;
  z-index: 1;
}
.doc-eyecatch .content .image_area img {
  max-width: 100%;
}
.doc-eyecatch .content .title_area {
  width: calc(50% - 20px);
  max-width: 490px;
  margin-bottom: 100px;
}
.doc-eyecatch .content .title_area .title {
  margin-bottom: 20px;
}
.doc-eyecatch .content .title_area h3.name {
  line-height: 1.4;
  font-size: 1.0rem;
  color: #555;
  display: inline-block;
  margin: 0 0 10px 0;
  padding: 10px 0 0 0;
}
.doc-eyecatch .content .title_area h3.name span {
  font-size: 1.8rem;
  color: #222;
  margin-top: 10px;
  display: block;
}
.doc-content {
  padding: 100px 20px 60px 20px;
  margin-bottom: 50px;
}
.doc-content .content {
  max-width: 1182px;
  margin: 0 auto;
}
.doc-content .list {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}
.doc-content .list > div {
  width: calc(50% - 20px);
  margin-bottom: 40px;
  background-color: #fff;
  border-radius: 12px;
  padding: 40px 45px;
  color: #666;
  box-sizing: border-box;
}
.doc-content .list h4 {
  font-size: 1.3rem;
  line-height: 1.3rem;
  color: #333;
  border-bottom: #ccc solid 1px;
  padding: 0 0 15px 0;
  margin: 0 0 20px 0;
}
.doc-content .list p {
  font-size: 1.0rem;
}
@media screen and (max-width:1250px) {
  .doc-eyecatch .content, .doc-content .content {
    max-width: 90%;
  }
}
@media screen and (max-width:760px) {
  .doc-eyecatch {
    padding: 0px 30px 10px 30px;
    margin-bottom: 0px;
  }
  .doc-eyecatch .content {
    display: block;
  }
  .doc-eyecatch .content .image_area {
    width: auto;
    text-align: center;
    padding-bottom: 10px;
  }
  .doc-eyecatch .content .image_area img {
    margin: 0 auto;
  }
  .doc-eyecatch .content .title_area {
    width: auto;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .doc-content {
    padding: 50px 15px 40px 15px;
  }
  .doc-content .list {
    display: block;
  }
  .doc-content .list > div {
    width: auto;
    margin-bottom: 15px;
    border-radius: 6px;
    padding: 25px 15px;
  }
}
@media screen and (max-width:425px) {
  .doc-eyecatch .content, .doc-content .content {
    max-width: 100%;
  }
}
section.about-clinic {
  width: 90%;
  max-width: 800px;
  margin: 0 auto 80px;
  font-size: 0.8rem;
}
.about-clinic .eyecatch {
  max-width: 800px;
  margin: 0 auto;
}
.about-clinic .eyecatch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}
.clinic-info {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
}
.clinic-info .title {
  width: 20%;
  padding: 8px 12px;
  font-weight: bold;
  white-space: nowrap;
}
.clinic-info .info {
  width: 80%;
  padding: 8px 12px;
}
@media only screen and (max-width:750px) {
  .clinic-info .title {
    width: 25%;
    padding: 8px;
  }
  .clinic-info .info {
    width: 75%;
    padding: 8px;
  }
}
@media only screen and (max-width:480px) {
  .clinic-info.wrap {
    display: block;
  }
  .clinic-info.wrap .title {
    width: 100%;
  }
  .clinic-info.wrap .info {
    width: 100%;
    padding: 0 8px 8px 8px;
  }
}
ul.biography {
  padding-left: 0;
  list-style: none;
}
ul.biography li {
  display: flex;
}
ul.biography li .date {
  white-space: nowrap;
  margin-right: 5px;
}
/* ギャラリー
----------------- */
ul.photo-gallery {
  max-width: 90%;
  width: 1182px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  columns: 4;
}
ul.photo-gallery li {
  margin-bottom: 20px;
  background: #000;
}
ul.photo-gallery li a {
  transition: 0.3s;
}
ul.photo-gallery li a:hover {
  cursor: pointer;
  opacity: 0.6;
}
ul.photo-gallery img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  margin: 0;
}
@media only screen and (max-width: 900px) {
  ul.photo-gallery {
    columns: 3;
  }
}
@media only screen and (max-width: 768px) {
  ul.photo-gallery {
    columns: 2;
    padding: 0 15px;
  }
}
.flipLeft {
  animation-name: flipLeft;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  perspective-origin: left center;
  opacity: 0;
}
@keyframes flipLeft {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
/* デジスマ診療
----------------- */
section .movie_area {
  margin: 50px auto;
}
.flowbox {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 30px 0 80px;
}
.flowbox .col4 {
  width: calc(100% / 4);
}
.flowbox .col4 .image {
  text-align: center;
}
.flowbox .col4 .desc {
  max-width: 300px;
  margin: 0 auto;
}
.flowbox .col4 .desc .note {
  font-size: 0.7rem;
  line-height: 1.2rem;
}
@media only screen and (max-width: 1023px) {
  .flowbox .col4 {
    width: calc(100% / 2);
  }
}
/*---------------------------------------------
footer access area
---------------------------------------------*/
section#access .gmap {
  max-width: 1680px;
  margin: 50px auto 30px;
}
section#access .access-info {
  max-width: 1680px;
  width: 80%;
  margin: 0 auto;
}
.access-info .address {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}
.access-info .detail {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0 0;
  flex-wrap: wrap;
}
.access-info .detail dl.desc {
  width: 50%;
  background: rgb(255, 255, 255, 0.7);
  box-shadow: 3px 3px 10px 0px rgb(0, 0, 0, 0.2);
  border-radius: 10px;
  margin: 0;
  padding: 30px 50px;
  box-sizing: border-box;
}
.access-info .detail dl.desc dt.info {
  width: 100%;
  font-size: 1.2rem;
  border-bottom: #666767 dotted 1px;
  padding: 5px 0 3px 0;
  margin: 0 0 5px;
}
.access-info .detail dl.desc dt.info2 {
  width: 100%;
  color: #005bab;
  font-weight: bold;
  padding: 5px 0 3px 0;
  margin: 0 0 5px;
}
.access-info .detail dl.desc dt.info2:before {
  content: '\f138';
  font-weight: 900;
  margin-right: 5px;
}
.access-info .detail dl.desc dd {
  margin: 0 0 15px 0;
  border: none;
  color: #333333;
}
.access-info .detail .location {
  width: 50%;
  text-align: center;
}
@media (max-width: 1023px) {
  .access-info .detail {
    flex-direction: column-reverse;
  }
  .access-info .detail dl.desc {
    width: 100%;
  }
  .access-info .detail .location {
    width: 80%;
    max-width: 350px;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  section#access .access-info {
    width: 90%;
  }
  .access-info .address {
    font-size: 1.0rem;
  }
  .access-info .detail dl.desc dt.info {
    font-size: 1.0rem;
  }
}
@media (max-width: 425px) {
  .access-info .detail dl.desc {
    padding: 30px;
  }
}
/*-----------------------------------------------
 bigfooter area
-----------------------------------------------*/
#bigfooter {
  padding: 80px 0;
}
.bigfooter_wrap {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
#bigfooter .footer_logo {
  padding: 0 20px 50px;
  text-align: center;
}
.bigfooter_colomn.left {
  width: auto !important;
}
#bigfooter .info a {
  font-size: 100%;
  color: #005bab;
}
#bigfooter .info .cta {
  font-size: 3.0rem;
}
#bigfooter .info .cta span {
  font-size: 1.5rem;
}
#bigfooter .info .mail {
  margin-bottom: 1em;
}
#bigfooter .info .mail a {
  text-decoration: underline;
}
.footer_title {
  padding: 0;
  margin-bottom: 5px;
  position: relative;
  margin-bottom: 10px;
  width: 100%;
  color: #333;
  font-weight: bold;
  text-align: left;
  border-bottom: 3px solid #c7c7c7;
}
.footer_title::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100px;
  height: 3px;
  background-color: #F5AD54;
}
table.hours {
  margin: 0 auto;
  width: auto;
  table-layout: auto;
  border-collapse: collapse;
}
table.hours th {
  width: auto;
  background-color: #9bc948;
  color: #fff;
  text-align: center;
  font-weight: normal;
  padding: 10px 18px;
  border: 1px solid #fff;
  vertical-align: middle;
  white-space: nowrap;
}
table.hours td {
  padding: 5px;
  text-align: center;
  background-color: beige;
  border: 1px solid #fff;
  color: #F5AD54;
  font-size: 1.5rem;
}
table.hours td.cxl {
  background-image: linear-gradient(to left top, transparent calc(50% - 0.5px), #999 50%, #999 calc(50% + 0.5px), transparent calc(50% + 1px));
}
span.heading {
  background-color: #F5AD54;
  color: #fff;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 10px;
  width: fit-content;
  float: left;
  margin-top: 5px;
}
.closed ul.hrlist {
  margin: 5px 0 0 10px;
  list-style: none;
  display: inline-flex;
  justify-content: start;
  flex-wrap: wrap;
}
closed ul.hrlist li {
  margin: 0 10px 0 0;
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
}
@media only screen and (max-width:1023px) {
  .bigfooter_wrap {
    justify-content: center;
  }
  #bigfooter .info .cta {
    font-size: 2.0rem;
  }
  #bigfooter .info .cta span {
    font-size: 1.0rem;
  }
}
@media only screen and (max-width:768px) {
  table.hours {
    width: 100%;
  }
}
/*-----------------------------------------------
 footer area
-----------------------------------------------*/
.footer_navi ul li a:before {
  content: "\f0da";
  margin-right: 3px;
}
/* ----------------------------------------------------------------------
 フローティングボタン
---------------------------------------------------------------------- */
.float-button__wrap {
  display: none;
  position: fixed;
  bottom: 10%;
  right: 20px;
  z-index: 10;
}
.float-button__wrap a {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  background-color: #005bab;
  box-shadow: 1px 1px 5px rgb(0 0 0 / 10%);
  cursor: pointer;
  line-height: 1.5rem;
  transition: all 0.35s;
}
.float-button__wrap a:hover {
  background-color: #000;
  opacity: 1;
}
.float-button__wrap a img {
  transition: 0.5s;
}
.float-button__wrap a:hover img {
  transform: rotateX(360deg);
}
/*---------------------------------------------
流れコンテンツ
---------------------------------------------*/
ul.flow {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1182px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
ul.flow li {
  position: relative;
  width: 25%;
  min-width: 200px;
  padding: 15px;
  box-sizing: border-box;
  line-height: 1.5rem;
}
ul.flow li .ico {
  position: relative;
  width: 180px;
  height: 180px;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto 2rem;
}
ul.flow li .ico:before {
  position: absolute;
  top: 150px;
  left: 120px;
  font-size: 5rem;
  font-family: 'design_plus';
  font-style: italic;
  color: #ccc;
  counter-increment: step;
  content: counter(step);
}
ul.flow li .ico:nth-child(6):before, ul.flow li .ico:nth-child(7):before, ul.flow li .ico:nth-child(8):before {
  content: '';
}
ul.flow li .title {
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}
ul.flow li .time {
  background-color: #fff;
  border-radius: 20px;
  padding: 5px;
  text-align: center;
  width: 150px;
  margin: 0 auto 1rem;
}
ul.flow li .desc {
  font-size: 0.8rem;
}
@media only screen and (max-width:767px) {
  ul.flow li {
    width: 80%;
  }
}