@charset "UTF-8";

@import url(./sanitize.css);
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans Japanese', serif;
  font-size: 1.6rem;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #fff;
  overflow-x: hidden;
  background: url(../img/main-back-min.png) no-repeat top center;
  background-size: contain;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

a:link,
a:visited,
a:hover,
a:active {
  color: #0d75a5;
  text-decoration: none;
}

a.no-link {
  pointer-events: none;
}

picture img {
  width: 100%;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media screen and (max-width:768px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

/* 先導に戻る */
#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: 0;
  background: #0d75a5;
  opacity: 0.6;
  border-radius: 50%;
  z-index: 99;
}

#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/* スクロールバーのカスタマイズ */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, .1);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 50, .5);
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .3);
}

/* リンクのマウスオーバー */
a {
  transition: .6s;
}

a:hover {
  opacity: 0.7;
}

/* ロゴ画像*/
.logo-h1 {
  margin: 0 auto;
  width: 240px;
}

.logo-h1 img {
  width: 100%;
}

/* パーツ */
.blue-box {
  background-color: #edf6fa;
  padding: 16px 0 32px 0;
}

.button-white {
  display: block;
  width: 500px;
  height: 66px;
  margin: 0 auto;
  background-color: #fff;
  color: #0d75a5;
  border: 1px solid #0d75a5;
  text-align: center;
  line-height: 66px;
  transition: .6s;
}

.button-white::before {
  content: ">";
  margin-right: 1rem;
}

.button-white:hover {
  background-color: #0d75a5;
  color: #fff;
  opacity: 1;
}

.data-table {
  width: 100%;
  border-top: 1px solid #01a0ca;
  border-bottom: 1px solid #01a0ca;
}

.data-table tr th {
  padding: 1.5rem 1.6rem;
  word-break: keep-all;
  background-color: #edf6fa;
}

.data-table tr td {
  padding: 1.5rem 1.6rem;
}

.data-table tr:not(:last-child) th {
  border-bottom: 1px dotted #01a0ca;
}

.data-table tr:not(:last-child) td {
  border-bottom: 1px dotted #01a0ca;
}

/*タブ*/
.tab-link {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-end;
  border-bottom: 4px solid #01a0ca;
}

.tab-link-items {
  display: block;
  width: 48%;
  height: 50px;
  line-height: 50px;
  padding: 0;
  text-align: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #ddd;
  color: #fff;
}

.tab-link-items a {
  display: block;
  transition: .6s;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.tab-link-items a:hover {
  background-color: #01a0ca;
  color: #fff;
}

.tab-link-items--active {
  background-color: #01a0ca;
  color: #fff;
}

/* 箇条書き */
.c-list li {
  list-style-type: none;
  /*点を非表示*/
  position: relative;
  /*基準位置*/
  padding-left: 1em;
}

.c-list li:before {
  border-radius: 50%;
  /*丸くする*/
  width: 5px;
  /*点の幅*/
  height: 5px;
  /*点の高さ*/
  display: block;
  position: absolute;
  /*絶対配置*/
  left: 0;
  /*点の位置*/
  top: 0.6em;
  /*点の位置*/
  content: "";
  background: #55bdef;
  /*点の色*/
}

/* youtubeレスポンシブ */
.movie-wrap {
  position: relative;
  padding-bottom: 56.25%;
  /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
}

.movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 調整用 */
.mgt10 {
  margin-top: 10px !important;
}

.mgt16 {
  margin-top: 16px !important;
}

.mgt20 {
  margin-top: 20px !important;
}

.mgt30 {
  margin-top: 30px !important;
}

.mgt40 {
  margin-top: 40px !important;
}

.mgt60 {
  margin-top: 60px !important;
}

.mgt80 {
  margin-top: 80px !important;
}

.pdlr16 {
  padding-right: 16px;
  padding-left: 16px;
}

.f14 {
  font-size: 1.4rem;
}

.f16 {
  font-size: 1.6rem;
}

.f18 {
  font-size: 1.8rem;
}

.f20 {
  font-size: 2.0rem;
}

.f22 {
  font-size: 2.2rem;
}

.f24 {
  font-size: 2.4rem;
}

.f26 {
  font-size: 2.6rem;
}

.f34 {
  font-size: 3.4rem;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.under-line {
  text-decoration: underline;
}

.w100 iframe {
  width: 100%;
}

.futo {
  font-weight: bold;
}

.red {
  color: #990000;
}

.pink {
  color: #d81e8c;
}

.blue {
  color: #0d75a5;
}

.alert-box {
  border: 1px solid #990000;
  padding: 1.8rem;
  text-align: center;
}

.alert-box--blue {
  border: 1px solid#01a0ca;
  padding: 1.8rem;
  text-align: center;
}

.description-txt {
  font-size: 0.9em;
}

/* header */
header {
  width: 100%;
  height: 168px;
  background-size: cover;
  padding-top: 20px;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.header-upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-info {
  text-align: right;
}

.header-info__address {
  color: #0D75A5;
}

.header-info__tel {
  color: #0D75A5;
  font-size: 3.4rem;
  font-weight: 600;
}

.header-info__tel a {
  color: #0D75A5 !important;
}

.header-info__tel::before {
  content: url(../img/icon-tel-min.png);
  margin-right: 0.5rem;
}

/*グローバルナビ*/
.global-nav__list {
  display: flex;
  justify-content: space-between;
}

.global-nav__item a {
  display: block;
  padding: 10px 28px;
  border-radius: 60px;
  color: #0D75A5;
  transition: .6s;
}

.global-nav__item a:hover {
  color: #01a0ca;
  background-color: #dcf2fc;
  opacity: 1;
}

/*メインビジュアル*/
.mv {
  width: 100%;
  height: 700px;
  /* background:url(../img/mv-min.png) no-repeat center; */
}

.mv-slide {
  max-width: 1300px;
  height: 700px;
  margin: 20px auto 0 auto;
}

.mv-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.mv-message {
  position: absolute;
  top: 40px;
  left: 40px;
}

/* トップメッセージ */
.top-massage {
  margin-top: 30px;
  text-align: center;
  color: #104761;
  line-height: 1.8;
}

/*トップページのセクション（共通部分）*/
.top-section {
  max-width: 1100px;
  margin: 0 auto;
}

.top-section .top-section__title {
  padding-top: 60px;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.5rem;
  color: #333;
  text-align: center;
  background: url(../img/icon-mark-min.png) no-repeat center top;
}

.top-section__title--blue {
  font-weight: 600;
  color: #0d75a5;
  letter-spacing: 0.25rem;
}

/*トップページの託児サービス（利用停止）*/
.sec-takuji-inner {
  padding-top: 40px;
  background: url(../img/pic-takuji-min.png) no-repeat right;
  height: 300px;
}

.sec-takuji-info {
  width: 60%;
}

.sec-takuji-txt {
  text-align: center;
}

/*トップページの往診サービス（利用停止）*/
.sec-oushin-inner {
  padding-top: 40px;
  background: url(../img/pic-oushin02-min.png) no-repeat left;
  height: 300px;
  display: flex;
  justify-content: flex-end;
}

.sec-oushin-info {
  width: 60%;
}

.sec-oushin-txt {
  text-align: center;
}

/*トップページのトピックス*/
.sec-topics-inner {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.sec-topics-list {
  display: flex;
  justify-content: space-between;
  gap: 20px 20px;
  max-width: 1470px;
  margin: 40px auto 0 auto;
}

.topics-item {
  display: block;
  width: 24%;
  background: url(../img/topics-back.png) top center no-repeat;
  background-size: cover;
}

.topics-item-link {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 20px;
}

.topics-item-title {
  margin: 0;
  font-size: 1.8rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.topics-item-title::after {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: #104761;
  bottom: 0;
  left: 50%;
  opacity: .3;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.topics-item-img {
  margin-top: 30px;
}

.topics-item-img img {
  width: 100%;
}

.topics-item-txt {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
}

.button-arrow {
  text-align: center;
}

.button-arrow span {
  display: inline-block;
  position: relative;
}

.button-arrow span::before {
  content: "";
  width: 60px;
  height: 60px;
  position: absolute;
  background: url(../img/arrow.svg) no-repeat center center;
  top: -20px;
  right: -70px;
  z-index: 99;
  transition: all .3s;
}

.button-arrow span::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  display: block;
  background-color: #D9F6F9;
  border-radius: 999px;
  top: -18px;
  right: -70px;
  transition: all .3s;
}

.topics-item-link:hover .button-arrow span::before {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
}

.topics-item-link:hover .button-arrow span::after {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
}

.no-link .button-arrow {
  display: none;
}

/*トップページの新着情報*/
.sec-news-inner {
  display: flex;
  justify-content: space-between;
}

.facebook-unit {
  width: 530px;
  text-align: center;
}

.sec-news-blog {
  width: 530px;
  height: 300px;
  overflow-y: scroll;
  padding: 0 10px 0 0;
}

.rss-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rss-item {
  display: block;
}

.rss-item:not(:first-of-type) {
  margin-top: 60px;
}

.rss-item a {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.2em;
  font-weight: 600;
  color: #0d75a5;
}

.sec-news-contact {
  width: 530px;
  height: 410px;
  padding: 20px;
  background: url(../img/contact-back-min.png) repeat;
  border-radius: 8px;
}

.sec-news-contact__action {
  display: flex;
  justify-content: space-between;
}

.sec-news-contact__button {
  width: 48%;
  height: 200px;
  display: -webkit-flex;
}

.sec-news-contact__button a {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 1px solid #0d75a5;
  text-align: center;
  color: #0d75a5;
  font-weight: 400;
  transition: .6s;
  display: flex;
  -webkit-align-items: center;
  /* 縦方向中央揃え（Safari用） */
  align-items: center;
  /* 縦方向中央揃え */
  -webkit-justify-content: center;
  /* 横方向中央揃え（Safari用） */
  justify-content: center;
  /* 横方向中央揃え */
  flex-direction: column;
}

.sec-news-contact__button a:hover {
  background-color: #0d75a5;
  color: #fff;
}

.sec-news-contact__button-icon {
  font-size: 5.0rem;
}

.sec-news-contact__button--line a {
  border: 1px solid #07b53b;
  color: #07b53b;
}

.sec-news-contact__button--line a:hover {
  background-color: #07b53b;
}

.sec-news-contact__button--qr img {
  width: auto;
  height: 100%;
}

.sec-news-contact__button--qr a {
  border: 1px solid #07b53b;
  color: #07b53b;
}

.sec-news-contact__button--qr a:hover {
  background-color: #fff;
}

.sec-news-contact__tel {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 66px;
  background-color: #fff;
}

.sec-news-contact__tel-label span {
  display: inline-block;
  background-color: #0d75a5;
  color: #fff;
  border-radius: 60px;
  padding: 6px 15px;
}

.sec-news-contact__tel-no::before {
  content: url(../img/icon-tel-min.png);
  margin-right: 0.5rem;
}

/*トップページの診療方針*/
.sec-direction-inner {
  display: flex;
  justify-content: space-between;
}

.sec-direction-text {
  margin-right: 80px;
}

.sec-direction-doctor {
  text-align: center;
}

/* トッページの診療内容 */
.sec-medical-list {
  display: flex;
  justify-content: space-between;
}

.sec-medical-item {}

.sec-medical-item a {
  display: block;
  width: 120px;
  padding-top: 170px;
  background: url(../img/icon-tooth-min.png) no-repeat center;
  text-align: center;
  color: #0d75a5
}

/* フッター */
.footer {
  background-color: #f4fcff;
}

.footer-wrap {
  max-width: 1100px;
  padding: 60px 0;
  margin: 0 auto;
}

.footer-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer-left {
  width: 100%;
  margin-right: 40px;
}

.footer-info__tel1 {
  font-size: 2.6rem;
  font-weight: 600;
  color: #0d75a5;
}

.footer-info__tel1::before {
  content: url(../img/icon-tel-min.png);
  margin-right: 0.5rem;
}

.footer-info__time {
  width: 100%;
}

.footer-info__time tr {
  border-bottom: 1px dotted #0d75a5;
}

.footer-info__time th {
  padding: 10px;
  color: #0d75a5;
}

.footer-info__time td {
  padding: 10px;
  text-align: center;
  line-height: 1.8;
}

.footer-info__time-title {}

.footer-info__time-title span {
  display: inline-block;
  background-color: #0d75a5;
  color: #fff;
  border-radius: 60px;
  padding: 4px 40px;
}

.footer-nav {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-nav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-nav__item-img {
  width: 250px;
}

.footer-card {
  margin-bottom: 20px;
  background-color: #fff;
  padding: 16px;
  border-radius: 8px;
}

.footer-card img {
  width: 100%;
}

/* セカンダリコンテンツ */
.wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}

.second-title {
  width: 100%;
  height: 200px;
}

.second-title-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  height: 100%;
  margin: 0 auto;
  text-align: center;
}

.second-title-inner h1 {
  width: 100%;
  margin: 0;
  font-size: 3.6rem;
  text-align: center;
  letter-spacing: 1rem;
  color: #104761;
  font-family: 'Noto Sans Japanese', serif;
}

.en-title {
  display: block;
  margin-top: .5em;
  font-size: 1.4rem;
  letter-spacing: 1rem;
  color: #55bdef;
}

/* セカンダリ メイン */
.main-second {
  width: 800px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
}

.main-second-title--blue {
  font-weight: 600;
  color: #0d75a5;
  letter-spacing: 0.25rem;
  margin: 2em 0;
}

.main-second-content {
  line-height: 1.8;
}

.main-second-title2 {
  padding-top: 60px;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.5rem;
  color: #55bdef;
  text-align: center;
  background: url(../img/icon-mark-min.png) no-repeat center top;
}

.main-second-picture {
  margin: 30px auto;
  text-align: center;
  max-width: 800px;
}

.main-second-picture img {
  width: 100%;
}

.main-second-left {
  width: 55%;
}

.main-second-right {
  width: 40%;
}

/* 略歴 */
.main-second-2col {
  display: flex;
  flex-direction: row;
}

.biograph {
  width: 50%;
}

.biograph dl {
  margin-top: 32px;
}

.biograph dl dt {
  color: #0d75a5;
  font-weight: 600;
  font-size: 1.8rem;
}

.biograph dl dd {
  margin-top: 16px;
  line-height: 1.8;
}

/* 医院紹介 */
.iin-item-box {
  display: flex;
  flex-wrap: wrap;
}

.iin-item {
  width: 33%;
}

/* 診療内容 */
.main-second-2col-73 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.main-second-2col-73-r {
  flex-direction: row-reverse;
}

/* リクルート（求人情報） */
.recruit-img {
  margin: 20px 0;
  text-align: center;
}

.recruit-txt {
  text-align: center;
}

.recruit-tel {
  margin-top: 30px;
  padding: 30px;
  text-align: center;
  background-color: #fff;
}

.recrut-ctr {
  margin-top: 40px;
  padding: 40px 20px;
  background-color: #EDF6FA;
  border-radius: 8px;
}

.recruit-action {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

/* .recruit-mail, .recruit-line{
  width:48%;
  background-color:#fff;
  padding:40px 10px;
  text-align:center;
} */
.recruit-line {
  width: 100%;
  background-color: #fff;
  padding: 40px 10px;
  text-align: center;
}

/* セカンダリ 右サイド */
.aside-second {
  width: 275px;
}

/* 右サイド 予約部分 */
.aside-reserve {
  width: 275px;
  position: sticky;
  top: 0;
  padding: 16px 16px 180px 16px;
  background: url(../img/side-reserve_back.png) no-repeat center bottom;
  border-radius: 8px;
}

.aside-news-contact__action {}

.aside-news-contact__button a {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #01a0ca;
  text-align: center;
  background-color: #fff;
  transition: .6s;
}

.aside-news-contact__button a:hover {
  background-color: #0d75a5;
  color: #fff;
}

.aside-news-contact__tel {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 16px;
  height: auto;
  background-color: #fff;
}

.aside-news-contact__tel-label span {
  display: block;
  background-color: #0d75a5;
  color: #fff;
  border-radius: 60px;
  padding: 6px 15px;

}

.aside-news-contact__tel-no {
  margin-top: 8px;
}

.aside-news-contact__tel-no::before {
  content: '';
  display: inline-block;
  width: 29px;
  /*画像の幅*/
  height: 19px;
  /*画像の高さ*/
  background-image: url(../img/icon-tel-min.png);
  background-size: contain;
  vertical-align: baseline;
  margin-right: 0.25rem;
}

/* ▼SP用▼ */
@media screen and (max-width:1024px) {
  .button-white {
    width: 100%;
  }

  .global-nav {
    position: fixed;
    right: -320px;
    /* これで隠れる */
    top: 0;
    width: 300px;
    /* スマホに収まるくらい */
    height: 100vh;
    padding-top: 40px;
    background-color: #fff;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto;
    /* メニューが多くなったらスクロールできるように */
  }

  .hamburger {
    position: absolute;
    right: 8px;
    top: 32px;
    width: 40px;
    /* クリックしやすいようにちゃんと幅を指定する */
    height: 40px;
    /* クリックしやすいようにちゃんと高さを指定する */
    cursor: pointer;
    z-index: 300;
    background-color: #01a0ca;
    border-radius: 60px;
  }

  .global-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
    flex-direction: column;
  }

  .global-nav__item {
    text-align: center;
    padding: 0 14px;
  }

  .global-nav__item a {
    display: block;
    padding: 16px 0 16px 16px;
    border-bottom: 1px solid #eee;
    text-align: left;
    text-decoration: none;
    color: #111;
  }

  .global-nav__item a:hover {
    background-color: #eee;
  }

  .hamburger__line {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 1px;
    background-color: #fff;
    transition: all .6s;
  }

  .hamburger__line--1 {
    top: 14px;
  }

  .hamburger__line--2 {
    top: 20px;
  }

  .hamburger__line--3 {
    top: 26px;
  }

  .black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  .global-nav {
    margin-top: 0 !important;
  }

  .main-second-title--blue {
    font-size: 2.0rem;
  }

  /* 表示された時用のCSS */
  .nav-open .global-nav {
    right: 0;
  }

  .nav-open .black-bg {
    opacity: .8;
    visibility: visible;
  }

  .nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 20px;
  }

  .nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
  }

  .nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 20px;
  }

  /* ヘッダー */
  header {
    height: 90px;
  }

  .header-inner {
    width: 100%;
  }

  .header-info {
    display: none;
  }

  .header-upper {
    justify-content: center;
    padding-bottom: 20px;
  }

  /* メインビジュアル */
  .mv {
    height: calc(100vh - 180px);
    background-size: cover;
    position: relative;
    margin-bottom: 90px;
  }

  .mv-slide {
    height: calc(100vh - 90px);
    background-size: cover;
    position: relative;
  }

  .mv-inner {
    width: 100%;
    position: absolute;
    bottom: 80px
  }

  .mv-info {
    width: 100%;
    bottom: 8px;
    right: 6px;
    text-align: right;
  }

  .mv-info img {
    width: 45%;
  }

  .mv-message {
    display: none;
    width: 100%;
    top: auto;
    bottom: -60px;
    left: auto;
    text-align: center;
  }

  .mv-message img {
    width: 80%;
  }

  /* トップメッセージ */
  .top-massage {
    text-align: left;
    padding: 20px 10px;
  }

  /* トップページのトピックス */
  .sec-topics-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 0;
    max-width: 1470px;
    margin: 40px auto 0 auto;
  }

  .topics-item {
    display: block;
    width: 49%;
    background: url(../img/topics-back.png) top center no-repeat;
    background-size: cover;
  }

  /*トップページの託児サービス*/
  .sec-takuji-inner {
    padding-top: 40px;
    background: url(../img/pic-takuji-min.png) no-repeat right bottom;
    height: 530px;
  }

  .sec-takuji-info {
    width: 100%;
    padding: 0 16px;
  }

  .sec-takuji-info img {
    width: 100%;
  }

  .sec-takuji-txt {
    text-align: left;
  }

  /*トップページの往診サービス*/
  .sec-oushin-inner {
    padding-top: 40px;
    background: url(../img/pic-oushin-min.png) no-repeat right bottom;
    height: 530px;
  }

  .sec-oushin-info {
    width: 100%;
    padding: 0 16px;
  }

  .sec-oushin-info img {
    width: 100%;
  }

  .sec-oushin-txt {
    text-align: left;
  }

  /* 新着 */
  .top-section {
    width: 100%;
    /* margin-top:170px !important; */
  }

  .facebook-unit {
    width: 100%;
  }

  .sec-news-inner {
    flex-direction: column;
  }

  .sec-news-blog {
    width: 100%;
    padding: 16px;
  }

  /* 予約 */
  .sec-news-contact {
    width: 100%;
    height: auto;
    margin-top: 40px;
  }

  .sec-news-contact__tel {
    flex-direction: column;
    height: auto;
    padding: 16px;
  }

  /* 診療方針 */
  .sec-direction-inner {
    flex-direction: column;
  }

  .sec-direction-photo__photo img {
    width: 100%;
    max-width: 300px;
  }

  .sec-direction-text {
    margin-right: 0;
  }

  /* 診療内容 */
  .sec-medical-list {
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .sec-medical-item {
    margin: 0 4px;
  }

  .main-second-left {
    width: 100%;
  }

  /* セカンダリコンテンツ */
  .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
  }

  .second-title-inner {
    width: 100%;
    height: 100%;
  }

  .second-title-inner h1 {
    font-size: 2.8rem;
  }

  /* セカンダリ メイン */
  .main-second {
    width: 100%;
    padding: 0;
  }

  .second-title {
    height: 100px;
  }

  .main-second-title2 {
    padding-top: 60px;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.5rem;
    color: #55bdef;
    text-align: center;
    background: url(../img/icon-mark-min.png) no-repeat center top;
  }

  /* 略歴 */
  .main-second-2col {
    display: flex;
    flex-direction: column;
  }

  /* 診療内容 */
  .main-second-2col-73 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .main-second-2col-73-r {
    flex-direction: column;
  }

  ul.sec-medical-list::after {
    content: "";
    width: 120px;
  }

  .main-second-right,
  .main-second-right img {
    width: 100%;
  }

  .main-second-right {
    margin-top: 20px;
  }

  /* 求人 */
  .recruit-action {
    flex-direction: column;
  }

  /* セカンダリ 右サイド */
  .aside-second {
    width: 100%;
    margin-top: 80px;
  }

  .recruit-mail,
  .recruit-line {
    width: 100%;
  }

  .recruit-line {
    margin-top: 20px;
  }

  .recruit-mail img {
    width: 100%;
    max-width: 180px;
  }

  .recruit-line img {
    width: 100%;
    max-width: 246px;
  }

  .data-table th,
  .data-table td {
    font-size: 1.4rem;
  }

  /* 右サイド 予約部分 */
  .aside-reserve {
    width: 100%;
    padding: 16px 16px 230px 16px;
    background: url(../img/side-reserve_back.png) no-repeat center bottom;
    background-size: cover;
  }

  .biograph {
    width: 100%;
  }


  /* フッター */
  .footer {
    padding: 40px 0;
  }

  .footer-wrap {
    width: 100%;
  }

  .footer-nav {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-logo img {
    width: 200px;
  }

  .footer-info__tel1,
  .footer-info__tel2,
  .footer-info__address {
    text-align: center;
  }

  .footer-nav__list {
    flex-wrap: wrap;
  }

  .footer-info__time {
    margin-top: 24px !important;
  }

  .footer-info__time-title span {
    padding: 8px 8px;
  }

  .footer-info__time th {
    font-size: 1.2rem;
  }

  .footer-info__time td {
    font-size: 2.0rem;
    padding: 0;
  }

  .footer-left p {
    font-size: 1.2rem;
  }

  .footer-nav__list {
    justify-content: center;
  }

  li.footer-nav__item {
    margin: 8px;
  }

  /* 共通パーツ */
  .section-pd {
    padding: 0 16px;
  }

  .sp-center {
    text-align: center;
  }

  .gmap {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
  }

  .gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }

  /* 先導に戻る */
  #page_top {
    right: 4px;
  }

}

/* ▲SP用▲ */

@media(min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* スマホ用 */
@media screen and (max-width: 767px) {

  /* トップページのトピックス */
  .sec-topics-inner {
    overflow-x: scroll;
  }

  .sec-topics-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 20px 10px;
    width: 1200px;
    margin: 40px auto 0 auto;
    overflow-x: scroll;
  }

  .topics-item {
    display: block;
    width: 300px;
    background: url(../img/topics-back.png) top center no-repeat;
    background-size: cover;
  }

  .facebook-unit {
    width: 100%;
    max-width: 530px;
    text-align: center;
    overflow: hidden;
  }
}

/* スマホ用 */
@media screen and (max-width: 350px) {
  .logo-h1 {
    width: 180px;
  }
}

/* PC用 */
/* @media screen and (min-width: 768px) {
	.facebook-unit {
		width: 530px;
    text-align:center;
	}
} */


/*========= モーダル表示のためのCSS ===============*/

.modal-window {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.modal-window[aria-hidden="true"] {
  display: none;
}

/* 本体 */
.modal-window .content {
  position: relative;
  box-sizing: border-box;
  margin: 20px;
  padding: 20px;
  max-width: 600px;
  background-color: #fff;
}

/* ヘッダー */
.modal-window .content .header {
  font-size: 2.4rem;
  font-weight: bold;
}

/* コンテンツ */
.modal-window .content .body {
  margin-top: 20px;
}

/* フッター */
.modal-window .content .footer {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

/* 制御ボタン */
.modal-window .content .footer .controls {
  margin-left: auto;
}

.modal-window .content .footer .controls button {
  padding: calc(0.8rem + 0.16em) 1.6rem 0.8rem;
  background-color: #333;
  font-size: 1.6rem;
  color: #fff;
  transition: background-color 0.2s;
}

.modal-window .content .footer .controls button:nth-child(n+2) {
  margin-left: 10px;
}

.modal-window .content .footer .controls button:hover,
.modal-window .content .footer .controls button:focus {
  background-color: #444;
}

/* 閉じるボタン */
.modal-window .content .close {
  position: absolute;
  top: -10px;
  right: -10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: linear-gradient(#fff, #fff) 50% 50% / 3px 66% no-repeat, #0d75a5 linear-gradient(#fff, #fff) 50% 50% / 66% 3px no-repeat;
  font-size: 0;
  transform: rotate(45deg);
  transition: background-color 0.2s;
  border-width: 0;
}

.modal-window .content .close:hover,
.modal-window .content .close:focus {
  background-color: #444;
}

.modal-img {
  width: 100%;
}

/* フッター 診療時間変更のお知らせ */
.info-alert {
  border: 1px solid #0d75a5;
  margin-bottom: 20px;
  padding: 1em;
}

.info-alert-body {
  font-size: .9em;
}

.info-alert-title {
  font: bold;
  text-align: center;
  color: #0d75a5;
  margin-bottom: 1em;
}

/* トップページ 診療時間変更のお知らせ */
.top-info-warpper {
  padding: 0 10px;
}

.top-info {
  margin: 20px auto;
  max-width: 1300px;
  display: flex;
  align-items: stretch;
}

.top-info-title {
  background-color: #0D75A5;
  color: #fff;
  padding: .5em 1em;
  width: 8em;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-info-body {
  border: 1px solid #0D75A5;
  padding: .5em 1em;
  width: calc(100% - 8em);
}

@media screen and (max-width: 767px) {
  .top-info {
    flex-direction: column;
  }

  .top-info-title {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .top-info-body {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* フッターのバナー部分 */
.footer-nav__list--banner {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
}

.footer-nav__list--banner li a {
  display: block;
  height: 77px;
}

.footer-nav__list--banner li a img {
  width: auto;
  height: 77px;
}

@media screen and (max-width: 767px) {
  .footer-nav__list--banner {
    flex-direction: column;
  }

  .footer-nav__list--banner li {
    text-align: center;
  }
}

/* youtube埋め込み用 */
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

/* リクルートのスタッフ写真 */
#recruit-img {
  cursor: pointer;
}

/* スクロールアニメーションｓ */
.fade {
  opacity: 0;
  transform: translateY(30px); /* 少し大きめに動かすと柔らかい印象に */
  transition: opacity 1s ease-out, transform 1s ease-out; /* 時間を1秒に、ease-outで自然に */
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}
