@charset "UTF-8";

/*===============================================
 reset.css
===============================================*/

/* Box sizing rules */

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap');

*, *::before, *::after{
  box-sizing: border-box;
}

/* Remove default padding */

ul, ol{
  padding: 0;
}

/* Remove default margin */

body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd{
  margin: 0;
}

/* Set core body defaults */

body{
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul[class], ol[class]{
  list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]){
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img, picture{
  display: block;
  max-width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + *{
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input, button, textarea, select{
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */

/*===============================================
 base
===============================================*/

html{
  font-size: 62.5%;
}

body{
  background-color: #f7f7f7;
  color: #333;
  font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
  font-size: 1.6rem;
}

/* sticky footer
-----------------------------------------------*/

html{
  display: flex;
  flex-direction: column;
}

body{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main{
  flex: 1 1 auto;
}

/*===============================================
 moduls
===============================================*/

/* ヘッダー
-----------------------------------------------*/

header{
  align-items: center;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, .2);
  display: flex;
  height: 100px;
  padding: 0 20px;
  position: fixed;
  transition: all .3s;
  width: 100%;
  z-index: 200;
}

/* ロゴ */
.header_logo{
  /* flex-shrink: 0; */
  margin-right: auto;
  position: relative;
  transition: all .2s;
  z-index: 1000;
}

.logo_pc{
  width: 380px;
  transition: all .2s;
}

.logo_sp{
  width: 240px;
  transition: all .2s;
}

/* 電話番号 */
.header_tel{
  display: flex;
  align-items: center;
  margin: 10px;
  flex-wrap: wrap;
}

.header_tel__label{
  border: 2px solid #1fabac;
  border-radius: 100px;
  display: inline-block;
  color: #1fabac;
  font-size: 1.1rem;
  line-height: 1;
  margin: 8px;
  padding: 6px 8px;
  font-weight: bold;
}

.header_tel .tel{
  align-items: center;
  color: #1fabac;
  display: flex;
  font-family: 'Roboto', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}

.header_tel .tel::before{
  content: "\f2a0";
  font-family: "Font Awesome 5 Free";
  font-size: .8em;
  font-weight: 900;
  margin-right: .2em;
}

/* ナビ */
.header_gnav{
  display: flex;
}

.header_gnav li{
  width: 100px;
}

.header_gnav li:not(:last-child){
  border-right: 1px solid rgba(0, 0, 0, .15);
}

.header_gnav li a{
  align-items: center;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.header_gnav li a img{
  margin-bottom: 5px;
  opacity: .6;
  transition: opacity .3s;
  width: 40px;
}

.header_gnav li a span{
  color: #333;
  color: #555;
  font-size: 1.3rem;
  font-weight: bold;
}

.header_gnav li a:hover img{
  opacity: 1;
}

.is-fixed{
  background-color: rgba(255, 255, 255, .9);
  height: 76px;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.is-fixed .logo_pc{
  width: 300px;
}

.is-fixed .logo_sp{
  width: 200px;
}

.is-fixed .header_gnav img{
  display: none;
}

/* フッター
-----------------------------------------------*/

footer{
  padding: 40px 20px;
}

.footer_info{
  display: flex;
  justify-content: center;
}

.footer_info__logo{
  flex-shrink: 0;
  margin-right: 30px;
  width: 240px;
}

.footer_info__list{
  font-size: 1.3rem;
}

.footer_info__list li{
  margin-bottom: 4px;
}

.footer_gnav{
  border-top: 1px solid rgba(0, 0, 0, .15);
  display: flex;
  font-size: 1.4rem;
  justify-content: center;
  margin-top: 20px;
  padding-top: 15px;
}

.footer_gnav li{
  margin: 0 10px;
}

.footer_gnav li a{
  color: #333;
  text-decoration: none;
}

/* ドロワー
-----------------------------------------------*/

/* トグルボタン */

.drawer_toggle{
  cursor: pointer;
  height: 24px;
  position: relative;
  z-index: 1000;
}

.drawer_toggle div{
  position: relative;
  width: 32px;
}

.drawer_toggle div span{
  background: #666;
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  top: 0;
  transition: transform .2s ease-in-out, top .3s ease;
  width: 100%;
}

.drawer_toggle div span:nth-child(2){
  top: 11px;
}

.drawer_toggle div span:nth-child(3){
  top: 22px;
}

/* ドロワーナビ */

.drawer_nav{
  align-items: center;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: all .3s;
  visibility: hidden;
  z-index: 990;
}

/* オープン時 */

.js-drawer_open{
  overflow: hidden;
}

.js-drawer_open .drawer_toggle span{
  background: #666;
  top: 11px !important;
}

.js-drawer_open .drawer_toggle span:nth-child(1){
  transform: rotate(45deg);
}

.js-drawer_open .drawer_toggle span:nth-child(2){
  display: none;
}

.js-drawer_open .drawer_toggle span:nth-child(3){
  transform: rotate(-45deg);
}

.js-drawer_open .drawer_nav{
  opacity: 1;
  visibility: visible;
}

.js-drawer_open .drawer_nav__list{
  opacity: 1;
  transform: translateX(0);
}

/* ドロワーデザイン */

.drawer_nav{
  background: #fff;
  color: #333;
}

.drawer_nav__list{
  display: flex;
  flex-direction: column;
  font-size: 1.6rem;
  font-weight: bold;
  justify-content: center;
  margin-left: -15px;
  opacity: 0;
  transform: translateX(100px);
  transition: all .6s;
}

.drawer_nav__list li{
  margin-bottom: 15px;
}

.drawer_nav__list li a{
  align-items: center;
  color: #333;
  display: flex;
  text-decoration: none;
}

.drawer_nav__list li a img{
  margin-right: 10px;
  width: 32px;
}

.topic_path{
  align-items: center;
  background: linear-gradient(to right, rgba(31, 171, 172, .6), rgba(31, 171, 172, .4));
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.3rem;
  line-height: 1.4;
  padding: 6px 20px;
}

.topic_path li{
  align-items: center;
  display: flex;
  margin: 3px 0;
}

.topic_path li:not(:last-child)::after{
  color: rgba(255, 255, 255, .6);
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-size: 1rem;
  font-weight: 900;
  margin: 0 6px;
}

.topic_path li a{
  color: #fff;
  text-decoration: none;
}

.topic_path li a.topic_path__home{
  align-items: center;
  display: flex;
}

.topic_path li a.topic_path__home::before{
  background: url("../img//common//icon_home.svg") no-repeat center/cover;
  content: "";
  display: block;
  height: 10px;
  margin-right: 3px;
  margin-top: -2px;
  width: 10px;
}

/* 見出し
-----------------------------------------------*/

.headline{
  border-left: 4px solid #1fabac;
  font-size: 2.2rem;
  margin-bottom: 30px;
  padding: 13px 20px;
}

.headline_info {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.8rem;
}

/* ノーマルボタン
-----------------------------------------------*/

.btn{
  display: flex;
  justify-content: center;
  margin: 20px auto;
}

.btn.left{
  justify-content: flex-start;
}

.btn.right{
  justify-content: flex-end;
}

.btn a{
  background-color: #1fabac;
  border-radius: 4px;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  min-width: 130px;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s;
}

.btn a::after{
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: .3em;
}

.btn a:hover{
  background-color: #23c0c2;
}

.btn a:not(:first-child){
  margin-left: 10px;
}

.tag{
  background-color: rgba(31, 171, 172, .7);
  border-radius: 100px;
  color: #fff;
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 4px 10px;
  text-decoration: none;
  transition: background-color .2s;
}

.tag:hover{
  background-color: #1fabac;
}

/* ページャー
-----------------------------------------------*/

.pager{
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0;
  text-align: center;
}

.pager a{
  align-items: center;
  background-color: rgba(0, 0, 0, .05);
  border-radius: 3px;
  color: #888;
  display: flex;
  font-size: 1.3rem;
  height: 30px;
  justify-content: center;
  margin: 3px;
  text-decoration: none;
  transition: all .3s;
  width: 30px;
}

.pager a:hover{
  background-color: rgba(0, 0, 0, .08);
}

.pager a.active{
  background-color: #1fabac;
  color: #fff;
}

.pager a.active:hover{
  background-color: #178081;
}

/* トップへ戻るボタン
-----------------------------------------------*/

.back_to_top_btn{
  bottom: 30px;
  display: none;
  position: fixed;
  right: 20px;
  z-index: 60;
}

.back_to_top_btn a{
  align-items: center;
  background-color: rgba(95, 194, 171, .8);
  border-radius: 100%;
  color: #fff;
  display: flex;
  font-size: 1.3rem;
  height: 60px;
  justify-content: center;
  text-decoration: none;
  transition: background-color .3s;
  width: 60px;
}

.back_to_top_btn a:hover{
  background-color: rgba(95, 194, 171, .9);
}

/* js control
-----------------------------------------------*/

/* fadein */

.js-scroll-fade{
  opacity: 0;
  transition: opacity 1s;
}

.js-scroll-up{
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s, opacity 1s;
}

.js-scroll-up.done, .js-scroll-fade.done{
  opacity: 1;
  transform: translate(0, 0);
}

.js-load-fade{
  opacity: 0;
  transition: opacity 2s;
}

.js-load-up{
  opacity: 0;
  transform: translateY(20px);
  transition: transform 1s, opacity 1s;
}

.js-load-up.done, .js-load-fade.done{
  opacity: 1;
  transform: translate(0, 0);
}

/*===============================================
 pages
===============================================*/

/* トップページ index.php
-----------------------------------------------*/

/* トップ メインビジュアル */

.top_mv{
  position: relative;
}

.top_mv__contents{
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  height: 100%;
  background: linear-gradient(to right, rgba(31, 171, 172, .8), rgba(31, 171, 172, .5));
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 60px;
}

.mv_txt__ttl{
  font-size: 2.8rem;
  line-height: 2;
  font-weight: bold;
  text-shadow: 0 0 5px #1fabac;
}

.slick-slide{
  outline:none !important;
}

/* お知らせ */

.mv_news{
  align-items: center;
  background-color: #5fc2ab;
  color: #fff;
  display: flex;
  font-weight: bold;
  line-height: 1.4;
  margin-top: auto;
  padding: 16px 32px;
  text-decoration: none;
  transition: background-color .2s;
}

.mv_news span{
  border: 2px solid #fff;
  border-radius: 100px;
  color: #fff;
  display: inline-block;
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  margin-right: 10px;
  padding: 8px 12px;
}

.mv_news span::before{
  content: "\f0f3";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  margin-right: .3em;
}

.mv_news:hover{
  background-color: #21b8b9;
}

/* トップ お知らせ */

.top_topics{
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 15px;
}

.top_topics__desc{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-right: 30px;
}

.top_topics__desc h5{
  color: #1fabac;
  font-size: 1.6rem;
  margin: 0 0 10px;
}

.top_topics__desc .btn{
  margin: 0;
}

.top_topics__list{
  max-width: 600px;
  width: 100%;
}

.top_topics__list li:not(:last-child){
  border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.top_topics__list li a{
  color: #333;
  display: flex;
  font-size: 1.5rem;
  padding: 6px;
  text-decoration: none;
  transition: color .2s;
  width: 100%;
  line-height: 1.4;
}

.top_topics__list li a:hover{
  color: #1fabac;
}

.top_topics__list li a time{
  color: #777;
  font-family: 'Roboto', sans-serif;
  font-size: .9em;
  font-weight: 300;
  line-height: 1;
  margin-left: auto;
  padding-left: 10px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.top_topics__list li a::before{
  color: rgba(31, 171, 172, .3);
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: .6em;
}

/* トップ カテゴリー */

.top_cat{
  display: flex;
  position: relative;
}

.top_cat__item{
  align-items: center;
  background: linear-gradient(45deg, rgba(95, 194, 171, .3), rgba(95, 194, 171, .1));
  display: flex;
  flex-direction: column;
  padding: 40px 20px 110px;
  width: 50%;
}

.top_cat__item .cat_icon{
  margin-bottom: 30px;
}

.top_cat__item__txt{
  margin: 0 auto;
  max-width: 400px;
  width: 100%;
}

.top_cat__item__txt h5{
  font-size: 2.3rem;
  font-weight: normal;
  line-height: 1.7;
  margin: 0 0 20px;
  text-align: center;
}

.top_cat__item__txt p{
  line-height: 1.8;
}

.top_cat .top_cat__link{
  bottom: 20px;
  left: 0;
  position: absolute;
  width: 100%;
}

/* 診療アイコン */

.cat_icon{
  align-items: center;
  background: linear-gradient(45deg, #1fabac, #5fc2ab);
  background-color: #1fabac;
  border-radius: 8px;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 120px;
  justify-content: center;
  width: 120px;
}

/* トップ ごあいさつ */

.top_greeting__img{
  display: flex;
}

.top_greeting__img__item{
  background: no-repeat  center / cover;
  height: 350px;
  width: 30%;
}

.top_greeting__img__item:nth-child(2){
  width: 40%;
}

.top_greeting__txt{
  padding: 40px 20px;
}

.top_greeting__txt h5{
  font-size: 2.3rem;
  font-weight: normal;
  margin: 0;
  margin-bottom: 15px;
  text-align: center;
}

.top_greeting__txt p{
  line-height: 2;
  margin-bottom: 30px;
  text-align: center;
}

/* トップ インフォメーション */

.top_info{
  background-color: #fff;
  display: flex;
  justify-content: center;
}

.top_info__clinic{
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  width: 50%;
}

.top_info__clinic h5{
  font-size: 2.2rem;
  margin: 6px 0;
}

.top_info__clinic .tel{
  align-items: center;
  color: #1fabac;
  display: flex;
  font-family: 'Roboto', sans-serif;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: 20px;
  margin-top: 10px;
}

.top_info__clinic .tel::before{
  content: "\f2a0";
  font-family: "Font Awesome 5 Free";
  font-size: .8em;
  font-weight: 900;
  margin-right: .2em;
}

.top_info__clinic .btn{
  margin-bottom: 0;
}

.top_info__map{
  align-content: stretch;
  width: 50%;
  padding: 40px;
}

.top_info__map iframe{
  height: 100%;
  width: 100%;
}

.time_table{
  border-collapse: collapse;
  max-width: 500px;
  width: 100%;
}

.time_table tr:first-child{
  background-color: rgba(31, 171, 172, .15);
}

.time_table tr:not(:first-child){
  border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.time_table th, .time_table td{
  line-height: 1.3;
  padding: 8px 12px;
  text-align: center;
}

.time_table th{
  font-size: 1.2rem;
}

.time_table th:first-child{
  border-radius: 100px 0 0 100px;
}

.time_table th:last-child{
  border-radius: 0 100px 100px 0;
}

.time_table td{
  font-size: 1.6rem;
}

.time_table td i{
  color: #1fabac;
}

.time_caption{
  font-size: 1.4rem;
  margin-top: 15px;
}

.time_caption_table{
  margin-top: 15px;
}

.time_caption_table th,
.time_caption_table td{
  font-size: 1.4rem;
}

/* 当院について abuot.php
-----------------------------------------------*/

/* 施設紹介 */

.about_clinic__item{
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, .1);
  display: flex;
  min-height: 250px;
}

.about_clinic__item:not(:last-child){
  margin-bottom: 30px;
}

.about_clinic__item__img{
  background: no-repeat center / cover;
  flex-shrink: 0;
  min-height: 250px;
  width: 380px;
}

.about_clinic__item__txt{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.about_clinic__item__txt h3{
  color: #1fabac;
  margin-bottom: 15px;
}

.about_clinic__item__txt p{
  font-size: 1.5rem;
  line-height: 1.8;
}

.about_clinic__item__txt ul{
  font-size: 1.5rem;
  padding-left: 18px;
}

.about_clinic__item__txt ul:not(:last-child){
  margin-bottom: 15px;
}

/* ごあいさつ */

.page_greeting{
  align-items: flex-start;
  display: flex;
}

.page_greeting__img{
  flex-shrink: 0;
  margin-right: 30px;
  width: 250px;
}

.page_greeting__txt h5{
  font-size: 1.8rem;
  margin: 0;
  margin-bottom: 20px;
}

.page_greeting__txt__msg{
  border-bottom: 1px solid rgba(0, 0, 0, .15);
  line-height: 1.8;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.page_greeting__txt__prof{
  font-size: 1.4rem;
  line-height: 1.8;
}

/* 診療のご案内 medical.php
-----------------------------------------------*/

/* 診療科目 見出し */

.medical_cat{
  align-items: center;
  display: flex;
  margin-bottom: 30px;
}

.medical_cat .cat_icon{
  flex-shrink: 0;
  margin-right: 30px;
}

.medical_cat p{
  font-size: 1.6rem;
  line-height: 1.8;
}

/* 診療内容 */

.medical_cat_set{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px 40px;
}

.medical_cat_set__item{
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, .1);
  margin: 0 20px 0;
  width: calc(50% - 40px);
}

.medical_cat_set__item img{
  width: 100%;
}

.medical_cat_set__item__txt{
  padding: 30px;
}

.medical_cat_set__item__txt h5{
  color: #1fabac;
  font-size: 1.8rem;
  margin: 0;
  margin-bottom: 20px;
}

.medical_cat_set__item__txt p{
  line-height: 1.8;
}

/* 追加 */
.medical_other{
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, .1);
  padding: 30px;
  margin-bottom: 40px;
}

.medical_other__item:not(:last-child){
  margin-bottom: 40px;
}

.medical_other__item h3{
  color: #1fabac;
  background-color: rgba(31, 171, 172,.2);
  padding: 15px 22px;
  border-radius: 6px;
  margin-bottom: 15px;
}

.medical_other__item ul{
  list-style-type: none;
  /* padding: 0 10px; */
  line-height: 1.5;
}

.medical_other__item ul li{
  padding: 8px;
}

.medical_other__item ul li:not(:last-child){
  border-bottom: 1px solid #ddd;
}


.medical_other__item p{
  padding: 0 18px;
  margin-top: 15px;
  line-height: 1.6;
}

.medical_item{
  display: flex;
  margin-bottom: 30px;
}

.medical_item_img{
  width: 300px;
  margin-right: 30px;
  flex-shrink: 0;
}

.medical_item_txt{
  width: 100%;
}

.medical_item_txt p{
  padding: 0;
  margin: 0;
  line-height: 1.8;
  font-size: 1.7rem;
}



/* 診療時間 */

.medical_schedule{
  display: flex;
}

.medical_schedule .time_table{
  margin-right: 30px;
}

.medical_schedule .time_caption{
  font-size: 1.5rem;
  margin: 0;
}

.medical_schedule .time_caption_table{
  margin: 0;
}

.medical_schedule .time_caption_table th,
.medical_schedule .time_caption_table td{
  font-size: 1.5rem;
}

/* お知らせ一覧 list.php
-----------------------------------------------*/

.article_list__item{
  align-items: center;
  display: flex;
  text-decoration: none;
}

.article_list__item:not(:last-child){
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  margin-bottom: 12px;
  padding-bottom: 12px;
}

.article_list__item__img{
  background: no-repeat center / cover;
  flex-shrink: 0;
  height: 100px;
  margin-right: 15px;
  width: 100px;
}

.article_list__item__txt__ttl{
  color: #333;
  font-size: 1.7rem;
  font-weight: normal;
}

.article_list__item__txt__time{
  color: #999;
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  margin-top: 5px;
}

/* 記事詳細 article.php
-----------------------------------------------*/

/* 記事 header */

.article__header{
  margin-bottom: 40px;
}

.article__header .tag{
  margin-bottom: 15px;
  margin-right: 8px;
}

.article__header time{
  color: #888;
  display: block;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  margin-bottom: 10px;
}

.article__header h1{
  font-size: 2.6rem;
  font-weight: normal;
  line-height: 1.6;
}

/* 記事 body */

.article__body__img{
  margin-bottom: 60px;
}

.article__body__img a{
  display: block;
  transition: opacity .3s;
}

.article__body__img a img{
  width: 100%;
}

.article__body__img a:hover{
  opacity: .8;
}

.article__body__img__caption{
  display: flex;
  font-size: 1.3rem;
  justify-content: center;
  margin-top: 10px;
}

.article__body > p{
  line-height: 2;
  margin: 1em 0 2em;
}

.article__body > p a{
  color: #1fabac;
}

.article__body > p + .article__body__img{
  margin-top: 60px;
}


/* イメージフロート
-----------------------------------------------*/

/* 基本設定 */
img.img_center,
div.img_center   { max-width:100%; margin:4% auto; display:block; text-align:center; }
img.img_center_s,
div.img_center_s { max-width: 50%; margin:4% auto; display:block; text-align:center; }
img.img_left,
div.img_left     { max-width: 48%; margin:8px 4% 4% 0; display:block; clear:both; float:left; }
img.img_right,
div.img_right    { max-width: 48%; margin:8px 0 4% 4%; display:block; clear:both; float:right; }
.img_center p,
.img_right p,
.img_left p      { font-size:85% !important; color:#888 !important; margin-top:10px !important; }
.img_center img,
.img_left img,
.img_right img   { width:100%; }
p.caption        { font-size:78% !important; color:#888 !important; margin:-18px 0 2.2em 0 !important; }


/* アクセス access.php
-----------------------------------------------*/

.access__contents{
  margin-bottom: 40px;
}

.access__contents p{
  line-height: 1.8;
  margin-bottom: 2em;
}

.access__contents .transportation{
  border-collapse: collapse;
  width: 100%;
}

.access__contents .transportation tr:not(:last-child){
  border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.access__contents .transportation tr th, .access__contents .transportation tr td{
  padding: 15px 10px;
}

.access__contents .transportation tr th{
  align-items: center;
  display: flex;
  font-size: 1.5rem;
  line-height: 1;
  width: 110px;
}

.access__contents .transportation tr th i{
  font-size: 2rem;
  margin-right: 8px;
}

.access__contents .transportation tr td{
  font-size: 1.5rem;
  width: 100%;
}

.access_map{
  height: 500px;
}

.access_map iframe{
  height: 100%;
  width: 100%;
}

/* 404ページ 404.php
-----------------------------------------------*/

#notfound main{
  background-color: #fff;
}

.notfound_contents{
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.notfound_contents i{
  color: rgba(31, 171, 172, .7);
  font-size: 4rem;
  margin-bottom: 20px;
}

.notfound_contents h2{
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-align: center;
}

.notfound_contents p{
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
}

.notfound_contents__list{
  line-height: 1.6;
  margin-top: 30px;
}

.notfound_contents__list li{
  margin-bottom: 6px;
}

.notfound_contents__list li a{
  color: #1fabac;
}

/* ページ共通
-----------------------------------------------*/

main{
  margin-top: 100px;
}

/* ページ メインビジュアル */

.pages_mv{
  align-items: center;
  display: flex;
  justify-content: center;
  height: 400px;
  margin-bottom: 50px;
  position: relative;
}

.pages_mv__contents{
  align-items: center;
  justify-content: center;
  background: rgba(31, 171, 172, .8);
  background: linear-gradient(to bottom,  rgba(31, 171, 172, .7) ,  rgba(31, 171, 172, .9));
  color: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 360px;
  width: 100%;
  padding: 40px;
  position: absolute; 
}

.pages_mv__contents img{
  margin-bottom: 10px;
  width: 50px;
}

.pages_mv__contents h1{
  font-size: 2.6rem;
  margin-bottom: 6px;
  padding: 0 10px 6px;
  border-bottom: 1px solid  rgb(255, 255, 255,.8);
}

.pages_mv__contents p{
  line-height: 1.8;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  letter-spacing: .1em;
  font-size: 2rem;
}

.pages_mv__img{
  display: flex;
  height: 100%;
  width: 100%;
}

.pages_mv__img__item{
  background: no-repeat center / cover;
  height: 100%;
  width: 50%;
}

/* ページ コンテンツブロック */

.pages_block:not(:last-child){
  margin-bottom: 60px;
}

/* ページ コンテンツブロック 白背景 */

.pages_block.white{
  background-color: #fff;
}

/* ページ インナー */

.inner{
  margin: 0 auto;
  max-width: 1000px;
  padding: 0 20px;
  width: 100%;
}

/* ページ インナー 白背景の場合 paddingいれる */

.white .inner{
  padding-bottom: 40px;
  padding-top: 40px;
}

/* 記事リスト・記事詳細用 カラムレイアウト */

.column_wrap{
  display: flex;
}

.column_wrap__main{
  background-color: #fff;
  padding: 40px 20px;
  width: 100%;
}

.column_wrap__main .column_inner{
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}

.column_wrap__side{
  background-color: rgba(31, 171, 172, .06);
  flex-shrink: 0;
  width: 340px;
}

/* 右カラム タグ・アーカイブ */

.archive__set__ttl{
  align-items: center;
  background-color: rgba(31, 171, 172, .8);
  color: #fff;
  display: flex;
  font-size: 1.5rem;
  padding: 10px;
}

.archive__set__ttl img{
  margin-right: 6px;
  width: 20px;
}

.archive__set__list{
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 15px 20px;
}

.archive__set__list li:not(:last-child){
  border-bottom: 1px solid rgba(31, 171, 172, .2);
}

.archive__set__list li a{
  align-items: center;
  color: #333;
  display: flex;
  padding: 6px;
  text-decoration: none;
  transition: color .2s;
}

.archive__set__list li a::before{
  color: rgba(31, 171, 172, .6);
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-size: .6em;
  font-weight: 900;
  margin-right: .5em;
}

.archive__set__list li a span{
  color: #666;
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  margin-left: auto;
  padding-left: 8px;
}

.archive__set__list li a:hover{
  color: #1fabac;
}

.archive__set__list li.list_more__btn{
  cursor: pointer;
  display: inline-block;
  font-size: 1.3rem;
  margin-top: 10px;
  padding-left: 1em;
}

.archive__set__tag{
  display: flex;
  flex-wrap: wrap;
  padding: 15px 20px;
}

.archive__set__tag .tag{
  margin: 4px;
}

/*youtube動画埋め込み*/
.youtube_if{
  position: relative;
  width: 100%;
  height: auto;
  float: none;
  margin: 20px 0;
}

.youtube_if::before{
  content:"";
  display: block;
  padding-top: 56.25%;
}

.youtube_if iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*===============================================
 responsive layout
===============================================*/

@media (min-width: 769px){
  .pc_none{
    display: none !important;
  }
}

@media (max-width: 768px){
  .sp_none{
    display: none !important;
  }

  .footer_info{
    align-items: center;
    flex-direction: column;
  }

  .footer_info__logo{
    margin-bottom: 20px;
    margin-right: 0;
    width: 180px;
  }

  .footer_info__list{
    font-size: 1.1rem;
  }

  .footer_gnav{
    font-size: 1.2rem;
  }

  .footer_gnav li{
    margin: 0 5px;
  }

  .headline{
    font-size: 1.8rem;
    padding: 10px 15px;
  }

  .mv_news{
    font-size: 1.3rem;
    padding: 10px;
  }

  .mv_news span{
    border: 1px solid #fff;
    font-size: 1rem;
    padding: 6px 8px;
  }

  .top_topics{
    display: block;
  }

  .top_topics__desc{
    margin-right: 0;
    margin-bottom: 20px;
  }

  .top_topics__list{
    max-width: 100%;
  }

  .top_topics__list li a{
    font-size: 1.4rem;
  }

  .top_cat{
    display: block;
  }

  .top_cat__item{
    padding: 40px 20px;
    width: 100%;
  }

  .top_cat__item .cat_icon{
    margin-bottom: 20px;
  }

  .top_cat__item__txt h5{
    font-size: 1.8rem;
  }

  .top_cat .top_cat__link{
    position: static;
  }

  .cat_icon{
    border-radius: 6px;
    height: 80px;
    width: 80px;
  }

  .cat_icon img{
    width: 30px;
  }

  .cat_icon p{
    font-size: 1.4rem;
  }

  .top_greeting__img__item:not(:nth-child(2)){
    display: none;
  }

  .top_greeting__img__item:nth-child(2){
    height: 200px;
    width: 100%;
  }

  .top_greeting__txt h5{
    font-size: 2rem;
  }

  .top_greeting__txt p{
    text-align: left;
  }

  .top_info{
    display: block;
  }

  .top_info__clinic{
    width: 100%;
  }

  .top_info__clinic h5{
    font-size: 1.8rem;
  }

  .top_info__clinic p{
    font-size: 1.4rem;
  }

  .top_info__clinic .tel{
    font-size: 2.6rem;
  }

  .top_info__map{
    height: 300px;
    width: 100%;
    padding: 20px;
  }

  .time_table th, .time_table td{
    padding: 6px 8px;
  }

  .time_table th{
    font-size: 1rem;
  }

  .time_table td{
    font-size: 1.4rem;
  }

  .about_clinic__item{
    flex-direction: column;
    min-height: auto;
  }

  .about_clinic__item__img{
    height: 200px;
    width: 100%;
  }

  .about_clinic__item__txt{
    padding: 20px;
  }

  .page_greeting{
    display: block;
  }

  .page_greeting__img{
    margin: 0 auto 20px;
  }

  .page_greeting__txt h5{
    text-align: center;
  }

  .medical_cat{
    align-items: flex-start;
  }

  .medical_cat p{
    font-size: 1.4rem;
    line-height: 1.7;
  }

  .medical_cat_set__item{
    width: 100%;
  }

  .medical_cat_set__item:not(:last-child){
    margin-bottom: 40px;
  }

  .medical_cat_set__item__txt{
    padding: 20px;
  }

  .medical_schedule{
    display: block;
  }

  .medical_schedule .time_table{
    margin-bottom: 20px;
    margin-right: 0;
  }

  .article_list__item__img{
    height: 90px;
    width: 90px;
  }

  .article_list__item__txt__ttl{
    font-size: 1.5rem;
  }

  .article__header h1{
    font-size: 2.2rem;
  }

  .article__body > p{
    line-height: 1.8;
  }

  .access_map{
    height: 300px;
  }

  .notfound_contents h2{
    font-size: 1.8rem;
  }

  .pages_mv{
    margin-bottom: 20px;
    height: 200px;
  }

  .pages_mv__contents{
    max-width: 100%;
  }

  .pages_mv__contents h1{
    font-size: 1.8rem;
  }

  .pages_mv__contents p{
    font-size: 1.4rem;
  }

  .column_wrap{
    display: block;
  }

  .column_wrap__side{
    width: 100%;
  }

  /* 追加 */
  .medical_other{
    padding: 15px;
  }
  
  .medical_other__item:not(:last-child){
    margin-bottom: 20px;
  }
  
  .medical_other__item h3{
    font-size: 1.6rem;
    padding: 10px 15px;
    margin-bottom: 10px;
  }
  
  .medical_other__item ul{
    font-size: 1.4rem;
    padding: 0 5px;
  }
  
  .medical_other__item ul li{
    padding: 8px 4px;
  }
  
  .medical_other__item p{
    padding: 0 9px;
    font-size: 1.4rem;
  }

  .top_mv__contents{
    position: static;
    background: linear-gradient(to right, rgba(31, 171, 172, .8), rgba(31, 171, 172, .5));
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .top_mv__contents .mv_txt__ttl{
    font-size: 2rem;
    line-height: 1.8;
    text-align: center;
  }

  .medical_item{
    display: block;
    margin-bottom: 30px;
  }
  
  .medical_item_img{
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .medical_item_txt p{
    font-size: 1.6rem;
  }
}

@media (prefers-reduced-motion: reduce){
  *{
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
