@charset "utf-8";

/*---------------------------------------------
	リセット
---------------------------------------------*/
article,
aside,
hgroup,
header,
address,
figure,
figcaption {
  margin: 0;
  padding: 0;
}

ul {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
  padding: 0;
}
p {
  margin-block-start: 0px;
  margin-block-end: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
ul,
li,
p {
  margin-block-start: 0;
  margin-block-end: 0;
  margin: 0;
}
/*---------------------------------------------
	最小幅
---------------------------------------------*/

/*---------------------------------------------
	body
---------------------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  overflow-y: scroll;
} /* 10px */

body {
  margin: 0;
  padding: 0;
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  color: #122025;
  overflow-x: hidden;
  font-family: "Noto Sans JP";
}

/*---------------------------------------------
	Anchor
---------------------------------------------*/
a {
  outline: none;
  color: #122025;
}
a:link {
  text-decoration: none;

  text-decoration: underline;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}
a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*---------------------------------------------
 ** ON OFF hover
---------------------------------------------*/
.hover {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hover:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}

/*---------------------------------------------
 ** パンくずリスト
---------------------------------------------*/
#breadcrumb {
  width: 100%;
  margin: 0 auto 4rem;
}

#breadcrumb ul {
  display: table;
  font-size: 1.4rem;
}

#breadcrumb ul li {
  margin: 0 10px 0 0;
  font-size: 1.4rem;
  float: left;
  list-style-type: none;
}

#breadcrumb ul li a {
  color: #007ac6;
  text-decoration: none;
  font-weight: bold;
}

#breadcrumb ul li:first-child::before {
  content: "";
  padding: 0;
}

#breadcrumb ul li::before {
  padding: 0 10px 0 0;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: bold;
  font-size: 14px;
}

/*---------------------------------------------
 **  ページトップ
---------------------------------------------*/
#pageTop {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 999;
}
#pageTop a {
  display: block;
  padding: 2rem;

  border: 1px solid #006cbb;
  color: #006cbb;
  font-weight: bold;
  text-decoration: none;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#pageTop a:after {
  position: absolute;
  top: 61px;
  left: 0px;
  right: 0;
  margin: 0 auto;
  content: "pagetop";
  display: inline-block;
  font-size: 1.2rem;
  color: #006cbb;
  text-align: center;
}

/*---------------------------------------------
 ** h1
---------------------------------------------*/
h1 {
  font-size: 3rem;
  line-height: 1.45;
  margin-bottom: 1.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-align: center;
}

/*---------------------------------------------
 ** h2
---------------------------------------------*/
h2 {
  min-height: 108px;
  font-size: 2.4rem;
  line-height: 1.45;
  margin-bottom: 1.8rem;
  font-weight: 600;
  color: #006cb9;
  text-align: center;
  background: url(/img/common/img-title-bg-01.png) center top no-repeat;
  padding: 50px 0 0 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.ttl-blog-2 {
  min-height: unset;
  background: unset;
  text-align: left;
  margin: 0;
  padding: 0.5rem 0 1.5rem;
}
h2 span,
h2 strong {
  font-size: 1.2rem;
  color: #bbbbbb;
  display: block;
  text-align: center;
  letter-spacing: 2px;
  font-weight: normal;
}
/*---------------------------------------------
 ** h3
---------------------------------------------*/
h3 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #333333;
}

/*---------------------------------------------
 ** h4
---------------------------------------------*/
h4 {
  font-size: 2.1rem;
  color: #007ac6;
  padding: 4rem 0 2.6rem;
}

/*---------------------------------------------
 ** コンテンツ全体
---------------------------------------------*/
#content {
  width: 100%;
  position: relative;
}
#content:before {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  border-top: 0 solid transparent;
  border-right: calc((410px) / 1.5) solid transparent;
  border-bottom: calc((410px) / 1.5) solid transparent;
  border-left: calc((410px) / 1.5) solid #e1f4fd;
  z-index: -1;
}
@media (max-width: 767px) {
  #content:before {
    border-right: calc((410px) / 3) solid transparent;
    border-bottom: calc((410px) / 3) solid transparent;
    border-left: calc((410px) / 3) solid #e1f4fd;
  }
}

#main {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 2.5rem 0 2rem;
}

#top #main {
  padding-top: 0;
  padding-bottom: 0;
  max-width: 100%;

  padding: 0rem 0 2rem;
}

#top .col-wrapper{
  width: 90%;
}

#slideshow {
  display: none;
}
#top #slideshow {
  display: block;
}

/*---------------------------------------------
 ** セクション
---------------------------------------------*/
.section_block {
  margin-bottom: 70px;
}
.section_block_top {
  padding-top: 56px;
}

/*---------------------------------------------
 ** li list typ 消す
---------------------------------------------*/
.lst_none li {
  list-style-type: none;
}

/* 画像 */
.img_box {
  display: flex;
}

/* フォントサイズ */
.fz17 {
  font-size: 1.7rem;
}
.fz20 {
  font-size: 2rem;
}

.mal {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*=================================================================================================================================*/
/**  ここまで共通部分	*/
/*=================================================================================================================================*/

/*---------------------------------------------
 ** ナビ記述
---------------------------------------------*/
#footer .sub-menu {
  display: none;
}

/*---------------------------------------------
 ** ヘッダー
---------------------------------------------*/
#header {
  width: 100%;
}
.header_wrapper {
  position: fixed;
  top: 0;
  z-index: 10;
  background: #ffffff;
  width: 100%;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
}
/* ロゴ */
.logo a {
  display: block;
  z-index: 9;
  position: relative;
}
/* ロゴ */
.logo {
  max-width: 230.5px;
  max-height: 58px;
  display: block;
  z-index: 999;
}
.logo img {
  width: 100%;
}

/*---------------------------------------------
 ** フッター
---------------------------------------------*/
#footer {
  clear: both;
  position: relative;
  margin-top: 5rem;
}

/* footerロゴ */
#footer .logo {
  width: 100%;
  max-width: 255px;
  max-height: 226px;
  margin: 0 auto 25px;
}

/* コピーライト */
#copyright {
  font-size: 0.8em;
  width: 100%;
  text-align: center;
  letter-spacing: 3px;
  padding: 3rem 0 3rem;
  font-weight: bold;
  color: #fff;
  background: #006cbb;
}

.footer-tel-fax{
  color: #000;
    background: #f7f7f7;
    padding: 1px 0;
    margin: 4px 0 0 0px;
}

/*---------------------------------------------
 **  診療時間
---------------------------------------------*/

/* 診療時間表 */
.moumoaku_time {
  font-size: 1.4rem;
  display: inline-block;
  color: #113767;
  border-bottom: 1px solid #113767;
  padding-bottom: 1px;
  font-weight: bold;
}
.ope {
  color: #113767 !important;
  font-weight: bold;
  line-height: 1.2 !important;
}

.time_table {
  width: 100%;
  border: 2px solid #666;
  border-spacing: 0;
  border-collapse: separate;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  text-align: center;
  background: #fff;
  color: #333;
  _zoom: 1;
  overflow: hidden;
}
.time_table th {
  background: #f9be00;
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  border-top: none;
  padding: 1.2rem 1.7rem;
  font-size: 1.8rem;
}
.time_table th:last-of-type {
  border-right: none;
}
.time_table td {
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  padding: 1.2rem 0rem;
  font-size: 3rem;
  line-height: 1.6;
  color: #f9be00;
}
.time_table td:last-of-type {
  border-right: none;
}
.time_table tr:last-of-type td {
  border-bottom: none;
}
td.time_td {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  box-sizing: border-box; /*通常の記述*/
  -webkit-box-sizing: border-box; /*Google ChromeやSafariの機能を利用*/
  -moz-box-sizing: border-box; /*Firefoxの機能を利用*/
}
tr.time_tr_shyujutsu td {
  font-size: 2rem;
  color: #f29600;
}
td.time_td_shyujutsu {
  font-size: 1.6rem !important;
}
td.yasumi {
  color: #ccc !important;
  font-weight: bold;
}

.footer-address {
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  padding: 1.5rem;
}

.txt-address {
  font-size: 2.2rem;
  margin-top: 10px;
  display: block;
  font-weight: bold;
  letter-spacing: 1px;
}

/*---------------------------------------------
 **  医院紹介
---------------------------------------------*/
/* 色付き背景 */
.col-typ-01 > .item {
  width: 100%;
  background: #e1f4fd;
  padding: 3rem 4.5rem 2.5rem !important;
  margin: 0%;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

@media (max-width: 767px) {
  .col-typ-01 > .item {
    width: 100% !important;
    margin-bottom: 60px !important;
    padding: 3rem 2.5rem 2.5rem !important;
  }
  .col-typ-01 > .item:last-of-type {
    margin-bottom: 0px !important;
  }
}
/* 【 PC 】 768px ～ */
@media (min-width: 768px) {
  .col-typ-01 > .item.w20 {
    width: 20% !important;
  }
  .col-typ-01 > .item.w32 {
    width: 32% !important;
  }
  .col-typ-01 > .item.w48 {
    width: 48% !important;
    margin-bottom: 3.5rem;
  }
}

.lst-base-block li {
  display: flex;
}
.lst-base-block li:before {
  top: 4px !important;
}

/* 【 PC 】 768px ～ */
@media (min-width: 768px) {
  .lst-base-block li:before {
    left: 9px !important;
  }
}

/* 理念 */
.area-policy {
  background: #e1f4fd;
  padding: 2% 5%;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}
.lst-base.is-policy li {
  font-size: 2rem;
  border-bottom: 1px dashed #a7d1ec;
  padding-bottom: 2.3rem;
  padding-left: 6.5rem;
  padding-top: 0.8rem;
  margin-bottom: 1rem;
  position:relative;
  display: flex;
  align-items: center;
}
.lst-base.is-policy li:last-of-type{
  margin-bottom:0;
  padding-bottom:1rem;
  border-bottom:unset;
}
.lst-base.is-policy li:before {
  font-size: 2rem;
  margin-right: 1.2rem;
  font-weight: bold;
  position:absolute;
  top:0;
  background:#006cb8;
  color:#FFF;
  padding: 9px 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-border-radius:25%; -webkit-border-radius:25%; border-radius:25%;
}

.lst-base.is-policy li:nth-of-type(1):before {
  content: "1";

}
.lst-base.is-policy li:nth-of-type(2):before {
  content: "2";
}
.lst-base.is-policy li:nth-of-type(3):before {
  content: "3";
}
.lst-base.is-policy li:nth-of-type(4):before {
  content: "4";
}

/*---------------------------------------------
 **  歴史・沿革
---------------------------------------------*/
.area-history-wrapper {
  border: 3px solid #c4e9fa;
  padding: 3% 2% 0.5%;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .area-history-wrapper {
    border: 3px solid #c4e9fa;
    padding: 5% 5% 3%;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
  }
}

/*---------------------------------------------
 **  背景100％
---------------------------------------------*/
.col-full-width-ptn-01 {
  padding: 10rem 0 6.5rem;
  background: #e1f4fd;
}
.col-typ-01-bg-01 {
  background: #fff !important;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
}

.ttl-typ-01 {
  font-size: 2.4rem;
  position: relative;
  color: #006cb8;
  letter-spacing: 5px;
  border-bottom: 1px solid #fff;
  margin: 0.5rem 0 2.5rem;
}
.ttl-typ-main {
  position: absolute;
  bottom: 16px;
  right: 0;
}
.is-logo-icon {
  right: unset;
  left: 0;
}

.ttl-typ-sub {
  position: absolute;
  bottom: 7px;
  left: 0;
  font-size: 4rem;
}
/* ロゴアイコン */
.is-logo-icon {
  width: 81px;
  height: 94px;
}
.is-L {
  right: unset;
  left: 100px;
}

.is-L-0 {
  right: unset;
  left: 0;
}
.is-L-40 {
  right: unset;
  left: 40px;
}
@media (max-width: 767px) {
  .is-L {
    font-size: 2rem;
  }
}

/* 流れ 三角形 */
.arrow-r .item:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: -20px;
  width: 0;
  height: 0;
  border-top: 35px solid transparent;
  border-right: 0px solid transparent;
  border-bottom: 35px solid transparent;
  border-left: 20px solid #f29600;
  z-index: 3;
}
@media (max-width: 767px) {
  .arrow-r .item:after {
    content: "";
    position: absolute;
    top: unset;
    bottom: -25px;
    margin: 0 auto;
    right: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 25px solid #f29600;
    border-right: 30px solid transparent;
    border-bottom: 0px solid transparent;
    border-left: 30px solid transparent;
    z-index: 3;
  }
}
.arrow-af-none:after {
  display: none;
}

.area-bd-TB-01 {
  border-top: 1px solid #f29600;
  border-bottom: 1px solid #f29600;
  color: #f29600;
  padding: 1%;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  flex-direction: column;
}
.area-bd-TB-01 span{
  font-size: 1.4rem;
  color: #666;
}

/*---------------------------------------------
 **  診療案内
---------------------------------------------*/
.ttl-fist-letter-01 {
  font-size: 2.4rem;
  color: #000000;
}

.guid-nbr-wrap .ttl-fist-letter-01:before {
  color: #006cba;
}
.guid-nbr-wrap :nth-of-type(1) .ttl-fist-letter-01:before {
  content: "01.";
}
.guid-nbr-wrap :nth-of-type(2) .ttl-fist-letter-01:before {
  content: "02.";
}
.guid-nbr-wrap :nth-of-type(3) .ttl-fist-letter-01:before {
  content: "03.";
}
.guid-nbr-wrap :nth-of-type(4) .ttl-fist-letter-01:before {
  content: "04.";
}
.guid-nbr-wrap :nth-of-type(5) .ttl-fist-letter-01:before {
  content: "05.";
}
.guid-nbr-wrap :nth-of-type(6) .ttl-fist-letter-01:before {
  content: "06.";
}
.guid-nbr-wrap :nth-of-type(7) .ttl-fist-letter-01:before {
  content: "07.";
}
.guid-nbr-wrap :nth-of-type(8) .ttl-fist-letter-01:before {
  content: "08.";
}

/*---------------------------------------------
 **  ドクター紹介
---------------------------------------------*/
.doctor-name-txt {
  font-size: 2.4rem;
  font-weight: bold;
}

/* ドクター経歴 */
.lst-doctor-info {
  display: flex;
  flex-wrap: wrap;
}
.lst-doctor-info li {
  margin-right: 1.5rem;
  font-weight: normal;
}

/*---------------------------------------------
 **  医療関係者さまへ
---------------------------------------------*/
.is-col-typ-02 > .item {
  padding: 2rem 3rem 2.5rem !important;
}
.is-typ-02 {
  font-size: 2.4rem;
  border-bottom: unset;
  text-align: center;
  margin: 0.5rem 0 1.5rem;
}

.is-typ-main-02 {
  position: relative;
  bottom: 0;
}

.is-tel-block {
  margin: 0 auto !important;
  padding-top: 0rem;
}
.is-tel-block .tel-nbr {
  font-size: 2.8rem !important;
}

/* 案内チラシ */
.is-icon-pdf {
  width: 37px;
  height: 45px;
  bottom: 15px;
}

/*=================================================================================================================================*/
/**  共通パーツ	*/
/*=================================================================================================================================*/

/*=================================================================================================================================*/
/**  アニメーション	*/
/*=================================================================================================================================*/
.effect-fade.fadeInUp {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s;
}
.effect-fade.fadeInDown {
  opacity: 0;
  transform: translateY(-30px);
  transition: 2s;
}
.effect-fade.SlideInLeft {
  opacity: 0;
  transform: translateX(-30px);
  transition: 2s;
}
.effect-fade.SlideInRight {
  opacity: 0;
  transform: translateX(30px);
  transition: 2s;
}
.effect-fade.FadeIn {
  opacity: 0;
  transform: translateX(-30px);
  transition: 2s;
}
/* ディレイ */
.effect-fade.delay-lv1 {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.effect-fade.delay-lv2 {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.effect-fade.delay-lv3 {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

/*---------------------------------------------
 **  診療案内　緑内障
---------------------------------------------*/
/* 緑背景　ボックス */
.box-wrap-ptn-01 {
  background: #daeddc;
  padding: 3rem 3rem 1.6rem;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.box-wrap-ptn-01-inner {
  background: #ffffff;
  padding: 3% 4% 2.3%;
}

@media (max-width: 767px) {
  .box-wrap-ptn-01 {
    padding: 1.5rem 1.5rem 1.6rem;
  }
}

/*---------------------------------------------
 **  コンタクトレンズ
---------------------------------------------*/
@media (max-width: 767px) {
  /* 製品タイトル */
  #lens .ttl-ptn-05,
  #lens .ttl-ptn-05 + p{
    text-align:center;
  }

}

.is-ico-question {
  width: 50px;
  height: 50px;
}
.area-lens-list .item {
  width: 48% !important;
}
.area-lens-list {
  max-width: 210px !important;
}
.area-lens-list li {
  background: #f9be00;
  color: #ffffff;
  box-sizing: border-box; /*通常の記述*/
  -webkit-box-sizing: border-box; /*Google ChromeやSafariの機能を利用*/
  -moz-box-sizing: border-box; /*Firefoxの機能を利用*/
  list-style: none;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

.area-lend-wrapper > .item {
  margin-bottom: 5rem !important;
}
@media (max-width: 767px) {
  .area-lend-wrapper > .item {
    margin-bottom: 3rem !important;
  }
}
/*================================================================================================================================*/
/**  TOPコンテンツ	*/
/*=================================================================================================================================*/

/*---------------------------------------------
 **  お知らせ
---------------------------------------------*/
/* カルーセル */
.slider {
  width: 100%;
  margin: 0 auto;
}
.slick-slide {
  margin: 0px 20px;
}
/* お知らせ */
.news_wrapper {
  padding: 3rem 0 2.5rem;
  color: #ffffff;
  box-sizing: border-box; /*通常の記述*/
  -webkit-box-sizing: border-box; /*Google ChromeやSafariの機能を利用*/
  -moz-box-sizing: border-box; /*Firefoxの機能を利用*/
}
/* お知らせ a文字色 */
.news_wrapper a {
  color: #ffffff;
  text-decoration: none;
}
.news_wrapper a:hovr {
  text-decoration: underline;
}

/* お知らせ 日付 左 */
.news_L {
    flex-basis: 81px !important;
    max-width: 81px !important;
  min-height: 65px;
  border: 1px solid #fff;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  text-align: center;
  line-height: 1;
  padding-top: 1rem;
}
.news-date-top {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.news-date-bottom {
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
  font-weight: bold;
  min-width: 46px;
}
button.slick-prev,
button.slick-next {
  width: 33px;
  height: 33px;
  border: none !important;
}

/* ボタン 1*/
button.slick-prev:hover,
button.slick-prev:focus,
button.slick-prev {
  background: url(/img/common/icon-arrow-01-prev.png) 0 0 no-repeat;
  background-size: contain;
}
button.slick-next:hover,
button.slick-next:focus,
button.slick-next {
  background: url(/img/common/icon-arrow-01-next.png) 0 0 no-repeat;
  background-size: contain;
}

/* ボタン 2*/
.slider-ptn-02 button.slick-prev:hover,
.slider-ptn-02 button.slick-prev:focus,
.slider-ptn-02 button.slick-prev {
  background: url(/img/common/icon-arrow-02-prev.png) 0 0 no-repeat;
  background-size: contain;
}
.slider-ptn-02 button.slick-next:hover,
.slider-ptn-02 button.slick-next:focus,
.slider-ptn-02 button.slick-next {
  background: url(/img/common/icon-arrow-02-next.png) 0 0 no-repeat;
  background-size: contain;
}

/* TOPページギャラリー */
.slider-ptn-02 .item img {
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

/* ■■■【 PC 】 768px ～ */
@media (min-width: 768px) {
  .news_item_wrapper {
    margin-top: 20px;
  }
}


/* 当院の診療内容 */
.ttl-fz-26 {
    font-size: 2.6rem;
    letter-spacing: -1px;
}

/*---------------------------------------------
 **  ドクター紹介 （TOPページ）
---------------------------------------------*/
/* TOPページ ドクター紹介 */
.top-doctor-name {
  text-align: right;
  padding: 5rem 0 4rem;
}
.top-doctor-name-01 {
  font-size: 2rem;
  margin-right: 2rem;
}
.top-doctor-name-02 {
  font-size: 4rem;
}
.top-doctor-name-03 {
  font-size: 1.2rem;
  display: block;
}
/* TOPページ */
.bg-top-doctor-01 {
  background: url(/img/top/bg-top-sec-doctor-01.jpg) no-repeat;
  background-position: -220px 0px;
}

@media (min-width: 768px) {
  .bg-top-doctor-01 {
    min-height: 500px;
    background-position: center top;
  }
}

/*---------------------------------------------
**  当院の診療内容
---------------------------------------------*/
a.top-treat-btn {
  max-width: 234px;
  margin: -4rem auto 0;
}

@media (max-width: 767px) {
  .treat-btn-col .item {
    width: calc((97% / 2)) !important;
  }
  .treat-btn-col a {
    font-size: 1.4rem;
    padding: 1rem 1rem;
  }
}

/* フッター 左 医院情報 */
/* 【 PC 】 768px ～ */
@media (min-width: 768px) {
  .footer-area-info {
    margin-top: -90px;
  }
}
.footer-info-title,
.footer-info-txt {
  text-align: center;
}
.footer-info-title {
  background: #0099e2;
  color: #ffffff;
  padding: 0.2rem 0.4rem 0.3rem;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  font-weight: bold;
}
.footer-info-txt {
  color: #333333;
  padding: 0.5rem 5% 1.4rem;
}

/* フッター TEL */
.tel-ptn-01.tel {
  background: unset;
}

.tel-ptn-01 .tel-nbr {
  color: #f29600;
  font-weight: bold;
  padding: 0rem 0 0rem 0;
}
.tel-ptn-01 .icon_tel::before {
  background: url(/img/common/icon-tel-02.png) 0 0 no-repeat;
  background-size: contain;
  top: 5px;
}

/*---------------------------------------------
 **  クリニック紹介 history
---------------------------------------------*/
/* 背景 しましま */
.common-bg-stripes-01-item {
  background: #e1f4fd;
  padding: 1rem 0 0;
}
.common-bg-stripes-01-item:nth-of-type(2n) {
  background: #f0f0f0;
}
.common-bg-stripes-01-title {
  font-weight: bold;
  color: #006cb8;
}

/*---------------------------------------------
 **  一般眼科
---------------------------------------------*/
/* 一般眼科 */
.general-senmon-wrapper .item {
  margin-bottom: 30px !important;
}
.general-senmon-wrapper {
  justify-content: left !important;
}

/*=================================================================================================================================*/
/**  追加ブロックスタイル	*/
/*=================================================================================================================================*/
/* アウトライン 白抜きボタン */
.is-style-icon-btn .wp-block-button__link {
  background: #fff;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  border: 1px solid #104583;
  font-size: 1.9rem;
  color: #104583 !important;
  font-weight: bold;
  padding: 1rem 0.5rem;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
}
/* アウトライン 白抜きボタン 並んだ時 */
.is-style-icon-btn {
  display: inline-block;
  min-width: 250px;
}

.is-style-icon-btn + .is-style-icon-btn {
  margin-left: 0;
  margin-top: 20px;
}

/* アイコン戻るボタン */
.is-style-icon-btn_back .wp-block-button__link {
  width: 100%;
  max-width: 300px;
  padding: 1.2rem 4rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  text-decoration: none !important;
  font-size: 2rem;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin: 0 6px 0 0;
  background: #e3f1fe;
  box-shadow: 2px 2px #a6a6a6;
  position: relative;
}
.is-style-icon-btn_back .wp-block-button__link:after {
  width: 2rem;
  height: 2rem;
  margin-left: 1rem;
  position: absolute;
  top: 38%;
  left: 2rem;
  background: url(../img/common/icon_next_deep_blue.png) no-repeat;
  background-size: contain;
  content: "";
  transform: rotate(180deg);
}

/* 見出し h2 */
.is-style-h2_cs_01 {
  color: #113766;
  background-color: #a9cbf3;
  letter-spacing: 1px;
  text-shadow: unset;
  padding: 1.7rem 5rem 1.8rem;
  box-sizing: border-box; /*通常の記述*/
  -webkit-box-sizing: border-box; /*Google ChromeやSafariの機能を利用*/
  -moz-box-sizing: border-box; /*Firefoxの機能を利用*/
  margin-bottom: 0;
}

/* 見出し h2 */
.is-style-h2_cs_02 {
  color: #113766;
  letter-spacing: 3px;
  text-shadow: unset;
  margin: 0;
}
.is-style-h2_cs_02 + p {
  margin: 0;
  letter-spacing: 3px;
  font-size: 1.2rem;
  margin-bottom: 5rem;
}

/* 見出し 背景薄水色 */
.is-style-h_bg_lb {
  background: #eefaff;
}
/* 見出し 背景薄グレー */
.is-style-h_bg_lg {
  background: #f2f2ea;
}

@media (min-width: 768px) {
  .clounm_3 .wp-block-column:not(:first-child) {
    margin-left: 45px !important;
  }
  .clounm_3 .wp-block-column:nth-child(2n) {
    margin-left: 45px !important;
  }
}

@media (max-width: 768px) {
  .clounm_3 .wp-block-column:not(:last-child) {
    margin-bottom: 39px;
  }
  .clounm_3 .wp-block-column:nth-child(2n) {
    margin-bottom: 39px;
  }
}

/* ヘッダ固定時のページ内リンクのずれを解消 */
#flow01,
#flow02 {
  margin-top: -125px;
  padding-top: 125px;
}

/*=================================================================================================================================*/
/*---------------------------------------------
 **  メイン画像
---------------------------------------------*/
.main_img {
  width: 100%;
  position: relative;
  background: rgb(240, 240, 240);
}
#top .main_img {
  background: unset;
}
.main_h1_wrapper {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 150px 5% 0;
}
#top .main_h1_wrapper {
  padding: 100px 0 80px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10%;
  margin: auto 0;
  z-index: 1;
}

.main_h1 {
  display: block;
  text-align: left;
  text-shadow: 1px 1px 0 rgba(255, 255, 2550, 0.5),
    -1px -1px 0 rgba(255, 255, 2550, 0.2), -1px 1px 0 rgba(255, 255, 2550, 0.5),
    1px -1px 0 rgba(255, 255, 2550, 0.2), 0px 1px 0 rgba(255, 255, 2550, 0.5),
    0-1px 0 rgba(255, 255, 2550, 0.2), -1px 0 0 rgba(255, 255, 2550, 0.5),
    1px 0 0 rgba(255, 255, 2550, 0.2);
}
#top .main_h1 {
  display: none;
}

.main-top-p {
  max-width: 600px;
  width: 70%;
}

/* 【 PC 】 768px ～ */
@media (min-width: 768px) {
  .main-top-p {
    max-width: 600px;
    margin-top: 124px;
  }
}

/*---------------------------------------------
 **  TOPページスライドショー
---------------------------------------------*/
.slideshow {
  height: 600px;
  list-style-type: none;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 auto;
  padding: 0;
}
.slideshow > li {
  opacity: 0;
  position: absolute;
  transition: opacity 3s ease-in-out; /*フェード時間・イージング*/
  text-indent:100%; white-space:nowrap; overflow:hidden;
}

.slideshow > li.showSlide {
  opacity: 1;
}

.slideshow > li {
  width: 100%;
  height: 100%;
}

/* SP用メディアクエリ */
@media screen and (max-width: 767px) {
  .slideshow {
    width: 100%; /* スライドショー幅（SP）*/
    height: 270px;
  }
}

.main_img_slide_01 {
  background: url(/img/main_img/img-main-01.jpg?0427) center top no-repeat;
}
.main_img_slide_02 {
  background: url(/img/main_img/img-main-02.jpg) center top no-repeat;
}
.main_img_slide_03 {
  background: url(/img/main_img/img-main-03.jpg?0427) center top no-repeat;
}
.main_img_slide_04 {
  background: url(/img/main_img/img-main-04.jpg) center top no-repeat;
}
.main_img_slide_05 {
  background: url(/img/main_img/img-main-05.jpg?0428) center top no-repeat;
}
.main_img_slide_06 {
  background: url(/img/main_img/img-main-06.jpg) center top no-repeat;
}
.main_img_slide_07 {
  background: url(/img/main_img/img-main-07.jpg) center top no-repeat;
}
.main_img_slide_01,
.main_img_slide_02,
.main_img_slide_03,
.main_img_slide_04,
.main_img_slide_05,
.main_img_slide_06,
.main_img_slide_07 {
  background-size: cover;
}


/* メイン画像 内部ページ */
.main_img {
  background: url(/img/main_img/news.jpg) 0 center no-repeat !important;
}
#top .main_img {
  background: unset !important;
}

body#about .main_img {
  background: url(/img/main_img/about.jpg) 0 center no-repeat !important;
}
body#history .main_img {
  background: url(/img/main_img/history.jpg) 0 center no-repeat !important;
}
body#guide .main_img {
  background: url(/img/main_img/guide2.jpg) 0 center no-repeat !important;
}
body#general .main_img {
  background: url(/img/main_img/guide.jpg) 0 center no-repeat !important;
}
body#cataract .main_img {
  background: url(/img/main_img/surgery.jpg) 0 center no-repeat !important;
}
body#retina .main_img {
  background: url(/img/main_img/surgery.jpg) 0 center no-repeat !important;
}
body#macular-treatment .main_img {
  background: url(/img/main_img/surgery.jpg) 0 center no-repeat !important;
}
body#retinal-treatment .main_img {
  background: url(/img/main_img/surgery.jpg) 0 center no-repeat !important;
}
body#glaucoma .main_img {
  background: url(/img/main_img/surgery.jpg) 0 center no-repeat !important;
}

body#lens .main_img {
  background: url(/img/main_img/lens.jpg) 0 center no-repeat !important;
}
body#doctor .main_img {
  background: url(/img/main_img/doctor.jpg) 0 center no-repeat !important;
}
body#news .main_img {
  background: url(/img/main_img/news.jpg) 0 center no-repeat !important;
}
body#access .main_img {
  background: url(/img/main_img/access.jpg) 0 center no-repeat !important;
}
body#cooperation .main_img {
  background: url(/img/main_img/cooperation.jpg) 0 center no-repeat !important;
}

@media (max-width: 767px) {
  /* メイン画像 内部ページ */

  /* 指定のない場合の背景画像 */
    .main_img {
    background: url(/img/main_img/news.jpg) 0 center no-repeat !important;
    background-size: 280% !important;
    background-position: 20% 0% !important;
  }

  body#about .main_img {
    background: url(/img/main_img/about.jpg) 0 center no-repeat !important;
    background-size: 280% !important;
    background-position: 35% 30% !important;
  }
  body#history .main_img {
    background: url(/img/main_img/history.jpg) 0 center no-repeat !important;
    background-size: 280% !important;
    background-position: 43% 30% !important;
  }
  body#guide .main_img {
    background: url(/img/main_img/guide2.jpg) 0 center no-repeat !important;
    background-size: 280% !important;
    background-position: 33% 56% !important;
  }
  body#general .main_img {
    background: url(/img/main_img/guide.jpg) 0 center no-repeat !important;
    background-size: 280% !important;
    background-position: 45% 0% !important;
  }
  body#cataract .main_img {
    background: url(/img/main_img/surgery.jpg) 0 center no-repeat !important;
    background-size: 280% !important;
    background-position: 33% 0% !important;
  }
  body#retina .main_img {
    background: url(/img/main_img/surgery.jpg) 0 center no-repeat !important;
    background-size: 280% !important;
    background-position: 33% 0% !important;
  }
  body#macular-treatment .main_img {
    background: url(/img/main_img/surgery.jpg) 0 center no-repeat !important;
    background-size: 280% !important;
    background-position: 33% 0% !important;
  }
  body#retinal-treatment .main_img {
    background: url(/img/main_img/surgery.jpg) 0 center no-repeat !important;
    background-size: 280% !important;
    background-position: 33% 0% !important;
  }
  body#glaucoma .main_img {
    background: url(/img/main_img/surgery.jpg) 0 center no-repeat !important;
    background-size: 280% !important;
    background-position: 33% 0% !important;
  }

  body#lens .main_img {
    background: url(/img/main_img/lens.jpg) 0 center no-repeat !important;
    background-size: 280% !important;
    background-position: 45% 0% !important;
  }
  body#doctor .main_img {
    background: url(/img/main_img/doctor.jpg) 0 center no-repeat !important;
    background-size: 280% !important;
    background-position: 53% 0% !important;
  }
  body#news .main_img {
    background: url(/img/main_img/news.jpg) 0 center no-repeat !important;
    background-size: 280% !important;
    background-position: 20% 0% !important;
  }
  body#access .main_img {
    background: url(/img/main_img/access.jpg) 0 center no-repeat !important;
    background-size: 280% !important;
    background-position: 10% 0% !important;
  }
  body#cooperation .main_img {
    background: url(/img/main_img/cooperation.jpg) 0 center no-repeat !important;
    background-size: 262% !important;
    background-position: 45% 0% !important;
  }
}



.coop-area{
  justify-content: left !important;
}

.coop-area li{
  font-size: 1.8rem !important;
}


.area-coop-lst{
  background: #ffffff;
  border: 3px solid #006cb8;
}

.area-coop-lst li{
  padding-top: .5rem !important;
  padding-bottom: 1.6rem !important;
  margin-bottom: 1.3rem !important;
  border-bottom: 3px solid #006cb8;
  border-color: #006cb8 !important;
}
.area-coop-lst li:last-of-type{
  margin-bottom:0  !important;
  padding-bottom:1rem !important;
  border-bottom:unset !important;
}



.lens-wrapper-img img{
  width: 80% !important;
  height: auto;
}


.access-parking{
  font-weight: bold;
  display: inline-block;
  font-size: 130%;
  color: #006cbb;
}


.time-bottom-p{
  font-weight: bold;
}
.time-bottom-p span{
  color: #f9be00;
}

.time-txt-size-s{
  font-size: 65%;
}


.flow-col{
  display: flex;
  justify-content: space-between;
}
.flow-col .main{
    max-width: 35rem;
    width: 100%;
  }
  .flow-col .sub{
    max-width: 800px;
    width: 100%;
  padding-left: 30px;
}

@media (max-width: 767px) {
  .flow-col{
    flex-direction: column;
  }
  .flow-col .main{
    max-width: 100%;
    width: 100%;
  }
  .flow-col .sub{
    width: 100%;
    padding-left: unset;
    padding-top: 20px;
  }
}