@charset "UTF-8";

/*
Theme Name: hoc-template01-kn
Theme URI:
Version: 1.1
Author: OWNDMEDIA.LAB
*/

/* ************************************************************************************************
  共通（全ページ）
************************************************************************************************ */
html,body {
  font-size: 62.5%; /*ベースを10pxに設定*/
  letter-spacing: .2em;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  color: #333;
  background-color: #fff;
}

@font-face {
  font-family: 'Franklin';
  src: url('font/Franklin Gothic Book Regular.eot'); /* IE9以上用 */
  src: url('font/Franklin Gothic Book Regular.eot?#iefix') format('embedded-opentype'), /* IE8以前用 */
  url('font/Franklin Gothic Book Regular.woff') format('woff'), /* モダンブラウザ用 */
  url('font/Franklin Gothic Book Regular.ttf') format('truetype'); /* iOS, Android用 */
  font-weight: normal;
}

h2 {font-size: 3.2rem;}
h3 {font-size: 2.8rem; line-height: 1.8;}
h4 {font-size: 2.5rem; line-height: 1.8;}
h5 {font-size: 2rem; line-height: 1.8;}

p {
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 400;
}

a {
  font-size: 1.4rem;
  text-decoration: none;
}

::selection {
  background-color: #9ED8F6;
  color: #fff;
}

#page {
  overflow: hidden;
  width: 100%;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.container2 {
  max-width: 1750px;
  margin: 0 auto;
  width: 100%;
}

/***** 見出し *****/
.index__ttl {
  color: #555;
  text-align: center;
  margin-bottom: 10rem;
  letter-spacing: .1em;
  position: relative;
  z-index: 1;
}

.index__ttl span {
  display: block;
  font-size: 1.3rem;
  margin-top: .5rem;
  text-transform: uppercase;
}

.index__ttl::after {
  content: "";
  position: absolute;
  top: -25%;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 70px;
  height: 83px;
  opacity: .3;
  z-index: -1;
}
html.webp .index__ttl::after {
  background: url(images/common/logo-icon.png.webp) no-repeat 50% 50% / cover;
}
html.no-webp .index__ttl::after {
  background: url(images/common/logo-icon.png) no-repeat 50% 50% / cover;
}

/***** ヘッダー *****/
header {
  height: 85px;
  background-color: rgba(255,255,255,.9);
  box-shadow: 0 3px 30px #7d8bc84d;
  position: fixed;
  top: 0;
  transition: .5s;
  width: 100%;
  z-index: 10;
}

header .container2 {
  max-width: 1920px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
  position: relative;
}

header.hide {
  top: -85px;
}

.header-nav > ul {
  display: flex;
  align-items: center;
}

.header__ttl {
  display: inline-block;
  margin-left: 4%;
}

.header__ttl a {
  display: block;
}

.header-nav__list {
  display: inline-block;
  text-align: center;
  transition: .5s;
  padding: 2rem 0;
}

.header-nav__item {
  display: block;
  margin: 0 2.5rem;
  padding: 2.5rem 0 1.5rem;
  position: relative;
  display: inline-block;
}

.header-nav__list:nth-child(1) .header-nav__item::before,
.header-nav__list:nth-child(2) .header-nav__item::before,
.header-nav__list:nth-child(3) .header-nav__item::before,
.header-nav__list:nth-child(4) .header-nav__item::before,
.header-nav__list:nth-child(5) .header-nav__item::before,
.header-nav__list:nth-child(6) .header-nav__item::before,
.header-nav__list:nth-child(7) .header-nav__item::before,
.header-nav__list:nth-child(8) .header-nav__item::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: #9ED8F6;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}

.header-nav__list:hover .header-nav__item::before {
  opacity: 1;
}

.header-nav__item span {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
}

.header-nav__list:nth-last-child(3) .header-nav__item {
  margin-right: 5rem;
}

.header-nav__list:nth-last-child(2) .header-nav__item,
.header-nav__list:last-child .header-nav__item {
  width: 100px;
  height: 85px;
  color: #fff;
  display: grid;
  align-items: center;
}

.header-nav__list:nth-last-child(2) .header-nav__item {
  background-color: #0C9FDC;
  margin: 0 0 0 2%;
  padding: 0;
  transition: .3s all;
}

.header-nav__list:last-child .header-nav__item {
  background-color: #C0DD67;
  margin: 0 0 0 2%;
  padding: 0;
  transition: .3s all;
}

.header-nav__list:nth-last-child(2) .header-nav__item:hover {
  background-color: #9ED8F6;
  transition: .3s all;
}

.header-nav__list:last-child .header-nav__item:hover {
  background-color: #9ED8F6;
  transition: .3s all;
}

.header-nav__submenu {
  display: flex;
  justify-content: center;
  position: fixed;
  top: 85px;
  left: 0;
  width: 100%;
  background-color: rgba(255,255,255,.9);
  padding: 4rem 2rem;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
}

.header-nav__list:hover > .header-nav__submenu,
.header-nav__submenu:hover {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-nav__sublist {
  flex: 1;
  max-width: 25%;
  text-align: center;
  margin: 0 1rem;
}

.header-nav__sublist a {
  display: block;
  text-decoration: none;
  color: #333;
  border-radius: 3px;
  overflow: hidden;
  transition: .3s all;
  position: relative;
  overflow: hidden;
}

.header-nav__sublist img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
  filter: blur(5px);
}

.header-nav__sublist span {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.header-nav__sublist a::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(158, 216, 246, .8);
  opacity: 0;
  transition: opacity .5s ease;
  z-index: 1;
}

.header-nav__sublist a:hover img {
  transform: scale(1.1);
  filter: blur(0px);
}

.header-nav__sublist a:hover::after {
  opacity: 1;
}

.header-sp__item > span:nth-child(1) {
  color: #7a7a7a;
  display: block;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.header-sp__item > span:nth-child(2) {
  font-size: 1.6rem;
}

/***** 下層ページヘッダー *****/
.header-sub {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100vw;
  height: 75vh;
  position: relative;
}

.header-sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(158, 216, 246, .5);
  z-index: 0;
}

html.webp .header-sub.--insurance {
  background-image: url(images/subpage/header_insurance.jpg.webp);
}
html.no-webp .header-sub.--insurance {
  background-image: url(images/subpage/header_insurance.jpg);
}
html.webp .header-sub.--private {
  background-image: url(images/subpage/header_private.jpg.webp);
  background-position: 50% 60%;
}
html.no-webp .header-sub.--private {
  background-image: url(images/subpage/header_private.jpg);
  background-position: 50% 60%;
}
html.webp .header-sub.--staff {
  background-image: url(images/subpage/header_staff.jpg.webp);
  background-position: 50% 40%;
}
html.no-webp .header-sub.--staff {
  background-image: url(images/subpage/header_staff.jpg);
  background-position: 50% 40%;
}
html.webp .header-sub.--clinic {
  background-image: url(images/subpage/header_clinic.jpg.webp);
  background-position: 50% 0;
}
html.no-webp .header-sub.--clinic {
  background-image: url(images/subpage/header_clinic.jpg);
  background-position: 50% 0;
}
html.webp .header-sub.--recruit {
  background-image: url(images/subpage/header_recruit.jpg.webp);
}
html.no-webp .header-sub.--recruit {
  background-image: url(images/subpage/header_recruit.jpg);
}
html.webp .header-sub.--news {
  background-image: url(images/subpage/header_news.jpg.webp);
}
html.no-webp .header-sub.--news {
  background-image: url(images/subpage/header_news.jpg);
}
html.webp .header-sub.--blog {
  background-image: url(images/subpage/header_blog.jpg.webp);
}
html.no-webp .header-sub.--blog {
  background-image: url(images/subpage/header_blog.jpg);
}

.header-sub__item {
  text-align: center;
  position: absolute;
  width: 70%;
  height: 100px;
  top: 15%;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.header-sub__ttl {
  color: #fff;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: .1rem;
  margin-bottom: 1.5rem;
}

.header-sub__txt {
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: .1rem;
  text-transform: uppercase;
}

/***** フッター *****/
.access {
  width: 100%;
  height: auto;
  padding: 15rem 1.5rem 5rem;
  position: relative;
  z-index: 0;
}

html.webp .access {
  background: url(images/common/footer_bg.jpg.webp) no-repeat 50% 50% / cover;
}
html.no-webp .access {
  background: url(images/common/footer_bg.jpg) no-repeat 50% 50% / cover;
}

.access::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(158, 216, 246, .5);
  z-index: -1;
}

.access > .container {
  background-color: rgb(255, 255, 255, .9);
  padding: 8rem;
}

.access__contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
  gap: 30px;
}

.access__img img {
  width: 500px;
  height: 425px;
  object-fit: cover;
}

.access__box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 25px;
  margin-bottom: 2.5rem;
}

.access__ttl {
  margin-bottom: 2.5rem;
}

.access__ttl a {
  display: block;
}

.access__ttl a span {
  color: #555;
  display: inline-block;
  font-size: 1.1rem;
  margin-bottom: .5rem;
  margin-left: 1rem;
}

.access__txt {
  margin-bottom: 1rem;
}

.access__tel {
  font-size: 2.25rem;
  color: #0C9FDC;
  font-weight: bold;
  display: block;
  transition: .3s;
}

.access__tel > span {
  font-size: 4rem;
}

.access__tel > span:nth-child(2) {
  display: block;
  font-size: 1.2rem;
  text-align: right;
}

.access__schedule table {
  font-size: 1.4rem;
}

.access__schedule table caption {
  caption-side: bottom;
  font-size: 1.5rem;
  margin-top: 1.5rem;
  line-height: 1.8;
}

.access__schedule table caption .fa-leaf {
  color: #C0DD67;
}

.access__schedule table th,
.access__schedule table td {
  border-bottom: 2px solid #9ED8F6;
  padding: 1.5rem;
}

.access__schedule table th > span {
  display: block;
  font-size: 1.2rem;
}

.access__schedule table th:first-child {
  width: 32.5%;
  line-height: 1.8;
}

.access__schedule table th:nth-child(n+2) {
  text-align: center;
  vertical-align: middle;
}

.access__schedule table th {
  font-weight: 600;
}

.access__schedule table td {
  text-align: center;
  vertical-align: middle;
}

.fa-tooth::before {
    font-family: "Font Awesome 6 Free"; /* CSS 読み込み済みであればOK */
    font-weight: 900; /* solid の場合 */
    content: "\f5c9"; /* fa-tooth の Unicode */
    font-size: 20px;
    color: #333;
}

.--c-icon,
.--p-icon {
  display: block !important;
  font-size: 2rem;
  text-align: center;
  margin: 0 auto 1rem;
}

footer {
  text-align: center;
  margin-top: 4rem;
  overflow: hidden;
}

.footer__sns {
  margin-bottom: 3rem;
}

.footer__icon {
  display: inline-block;
  margin: 0 .7rem;
}

small {
  font-size: 1.4rem;
}

/***** ページトップに戻るボタン *****/
#page_top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  background-color: rgba(192,221,103,1);
  border-radius: 50%;
  transition: .3s all;
  z-index: 1;
}

#page_top:hover {
  background-color: rgba(158,216,246,1);
  transition: .3s all;
}

#page_top a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-decoration: none;
}

#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 2.5rem;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/***** 診療時間のお知らせボタン（画面右側固定追従） *****/
#shcedule_btn {
  transform: translateX(calc(100% - 80px));
  transition: all 0.4s ease-out;
  padding: 32px 64px 44px 4px;
  border-radius: 48px 0 0 48px;
  background-color: rgba(255, 255, 255, .9);
  box-shadow: 0 0 32px rgba(9, 53, 94, 0.17);
  pointer-events: auto;
  position: fixed;
  right: 0;
  top: 20%;
  z-index: 1;
}

#shcedule_btn a {
  padding: 4px 32px;
  border-right: solid 2px #ddd;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
  letter-spacing: 0.2em;
}

/***** フッターバーボタン *****/
#footer_bar {
  display: none;
}

/***** ハンバーガーメニュー *****/
#nav-drawer {
  position: relative;
  display: none;
}

.nav-unshown {
  display:none;
}

#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background-color: #333;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}

#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: .3s ease-in-out;
}

#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: 90%;
  max-width: 330px;
  height: 100%;
  background-color: rgba(255, 255, 255, .9);
  transition: .3s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(105%);
}

#header-sp {
  margin-top: 5rem;
  position: relative;
}

.header-sp__list {
  margin-bottom: 4rem;
}

.header-sp__item {
  display: block;
  text-align: center;
  margin-bottom: .8rem;
  font-size: 1.4rem;
}

#nav-input:checked ~ #nav-close {
  display: block;
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

#nav-input2:checked ~ #nav-content {
  display: none;
}

/***** パンくずリスト *****/
.breadcrumb {
  bottom: -8%;
  font-size: 1.6rem;
  position: absolute;
  padding: 0 0 0 1.5rem;
}

.breadcrumb ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  line-height: 1.8;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  font-size: 1.4rem;
}

.breadcrumb li::after {
  content: "/";
  color: #C0DD67;
  font-size: 1.4rem;
  padding: 0 2rem;
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb li a {
  font-size: 1.4rem;
  transition: .3s all;
}

.breadcrumb li a:hover {
  color: #0C9FDC;
  transition: .3s all;
}


/* ************************************************************************************************
  アニメーション
************************************************************************************************ */
/***** ローディングアニメーション *****/
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: rgba(12,159,220,1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: center;
          transform-origin: center;
  width: 120px;
  height: 120px;
}

.type5 {
  width:20px;
  height:20px;
  border-radius:50%;
  background-color: #fff;
  animation:spinner5_1 1.2s infinite linear forwards;
}

@keyframes spinner5_1 {
  0%{
    opacity:.2;
    transform:translate(-50%, -50%) rotate(0) scale(.5);
  }
  50%{
    opacity:1;
    box-shadow:21px 21px rgba(192,221,103,1), -21px -21px rgba(192,221,103,.9), 21px -21px rgba(192,221,103,1), -21px 21px rgba(192,221,103,.9);
    transform:translate(-50%, -50%) rotate(180deg) scale(1);
  }
  100%{
    opacity:.2;
    transform:translate(-50%, -50%) rotate(360deg) scale(.5);
  }
}

/***** ホバーアニメーション *****/
.header-nav__list:hover,
.header-nav__list--single:hover .header-nav__item--single,
.header-nav__item--second li:hover,
.access__tel:hover,
.recruit__tel:hover,
.news02 a:hover,
.single02 a:hover,
.news__ttl a:hover {
  color: #0C9FDC;
  transition: .3s;
}

.news02 a,
.single02 a,
.news__ttl a {
  transition: .5s;
}

a:hover img {
  transition: .6s;
}

img {
  transition: .6s;
}

/***** ボタン *****/
.btn1, .btn2 {
  display: block;
  font-size: 1.6rem;
  width: 219px;
  height: 50px;
  border: 1px solid #ddd;
  background-color: rgba(192,221,103,.9);
  margin: 0 auto;
  text-align: center;
  line-height: 50px;
  position: relative;
  z-index: 2;
  color: #333;
  overflow: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn1::before, .btn2::before,
.btn1::after, .btn2::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
}

.btn1, .btn2,
.btn1::before, .btn2::before,
.btn1::after, .btn2::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn1:hover,
.btn2:hover {
  color: #fff;
}

.btn1::after,
.btn2::after {
  top: -100%;
  width: 100%;
  height: 100%;
}

.btn1:hover::after,
.btn2:hover::after {
  top: 0;
  background-color: rgba(12,159,220,.9);
}

.nav-previous,
.nav-next {
  display: block;
  width: 180px;
  height: 50px;
  border: 1px solid rgba(12,159,220,1);
  background-color: rgba(255,255,255,0.4);
  margin: 20px;
  text-align: center;
  line-height: 50px;
  position: relative;
  z-index: 2;
  color: #333;
  overflow: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.nav-previous, .nav-next {
  font-size: 1.4rem;
}

.nav-previous a,
.nav-next a {
  display: block;
}

.nav-previous, .nav-next,
.nav-previous::before, .nav-next::before,
.nav-previous::after, .nav-next::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.nav-previous a:hover,
.nav-next a:hover {
  color: #fff;
  background-color: rgba(12,159,220,.7);
}

.nav-previous:hover::after,
.nav-next:hover::after,
.nav-previous:hover::after,
.nav-next:hover::after  {
  top: 0;
  background-color: rgba(12,159,220,.7);
}


/* ************************************************************************************************
  front-page.php（トップページ）
************************************************************************************************ */
/***** メインビジュアル *****/
.header-main {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.header-main .swiper-slide {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}

html.webp .header-main .swiper-slide.--first {
  background-image: url(images/index/index_mv01.jpg.webp);
}
html.no-webp .header-main .swiper-slide.--first {
  background-image: url(images/index/index_mv01.jpg);
}
html.webp .header-main .swiper-slide.--second {
  background-image: url(images/index/index_mv02.jpg.webp);
}
html.no-webp .header-main .swiper-slide.--second {
  background-image: url(images/index/index_mv02.jpg);
}
html.webp .header-main .swiper-slide.--third {
  background-image: url(images/index/index_mv03.jpg.webp);
}
html.no-webp .header-main .swiper-slide.--third {
  background-image: url(images/index/index_mv03.jpg);
}

.header-main .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    to bottom,
    rgba(158, 216, 246, 0) 0%,
    rgba(12, 159, 220, .95) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.header-main__txt {
  position: absolute;
  bottom: 10%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 3;
}

.header-main p:nth-child(1) {
  color: #fff;
  font-size: 5rem;
  line-height: 1.4;
}

.header-main p:nth-child(2) {
  color: #fff;
  font-size: 1.6rem;
}

/* スクロールダウン */
.scroll-down--line {
  position: absolute;
  bottom: 0;
  right: 5%;
  transform: translateX(-50%);
  z-index: 3;
  width: 1px;
  height: 150px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 3;
}

.scroll-down--line span {
  display: block;
  width: 100%;
  height: 60%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 50%, rgba(255,255,255,0) 100%);
  animation: scrollLine 3s infinite;
}

.scroll-down--line > p {
  writing-mode: vertical-rl;
  margin-left: 1rem;
  font-size: 12px !important;
  color: #fff;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: 0.7;
  animation: scrollText 2s infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

@keyframes scrollText {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

/***** お知らせ *****/
.news {
  background-color: #f0f4f8;
  padding: 12.5rem 1.5rem;
}

.news__contents {
  margin-bottom: 6rem;
}

.news__contents a {
  display: block;
  position: relative;
}

.news__item {
  text-align: center;
  position: relative;
}

.news__item::after {
  content: "\f105";
  color: #C0DD67;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  bottom: 40%;
  transition: right 0.3s ease;
}

.news__item:hover::after {
  right: 0;
}

.news__date {
  font-size: 1.8rem;
  color: #0C9FDC;
  width: 15%;
  text-align: left;
  margin-left: 3rem;
}

.news__ttl {
  font-size: 1.8rem;
}

.news__txt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid #ddd;
  padding: 1.25rem 0;
}

/***** 塚本歯科医院の特徴 *****/
.feature {
  padding: 12.5rem 0 25rem;
}

.feature__contents {
  padding: 0 1.5rem;
}

.feature__box {
  margin-bottom: 10rem;
  width: 70%;
  position: relative;
}

.feature__box::after {
  content: "";
  background-color: #f0f4f8;
  width: 500px;
  height: 375px;
  position: absolute;
  right: -43%;
  bottom: 0;
  z-index: -1;
}

.feature__ttl {
  color: #0C9FDC;
}

.feature__ttl h3 {
  font-size: 4rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.feature__txt p {
  margin-bottom: 5rem;
}

.feature__img img {
  border-radius: 5px;
  width: 100%;
  height: 485px;
  object-fit: cover;
}

.feature__box .btn1 {
  margin-left: 0;
}

/***** 診療内容 *****/
.treatment {
  background-color: #f0f4f8;
  padding: 12.5rem 0 15rem;
  position: relative;
}

.treatment::before {
  content: "";
  display: inline-block;
  max-width: 1920px;
  width: 100%;
  height: 101px;
  position: absolute;
  top: -8.25%;
  z-index: 0;
}
html.webp .treatment::before {
  background: url(./images/common/line2.png.webp) no-repeat 50% 50% / cover;
}
html.no-webp .treatment::before {
  background: url(./images/common/line2.png) no-repeat 50% 50% / cover;
}

.treatment__list.--first,
.treatment__list.--second {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.treatment__list.--second {
  gap: 25px;
}

.treatment__list.--first {
  margin-bottom: 8rem;
}

.treatment__list.--first .treatment__item {
  border-right: 1px solid #ddd;
}

.treatment__list.--first .treatment__item:last-child {
  border: none;
}

.treatment__list.--second .treatment__item {
  width: calc(100% / 5);
  height: auto;
}

.treatment__list.--first .treatment__item a {
  display: block;
  text-align: center;
  width: 300px;
  height: auto;
  position: relative;
}

.treatment__list.--second .treatment__item a {
  background-color: #fff;
  border-radius: 50%;
  width: 250px;
  height: 250px;
  display: grid;
  justify-items: center;
  align-content: center;
  position: relative;
  overflow: hidden;
  transition: .9s all cubic-bezier(0.19, 1, 0.22, 1);
}

.treatment__list.--second .treatment__item a:hover {
  transform: scale(1.1);
  background-color: #0C9FDC;
  color: #fff;
}

.treatment__list.--first .treatment__item a::after {
  content: "";
  background-color: #9ED8F6;
  border-radius: 50%;
  filter: blur(20px);
  display: block;
  padding: 2rem;
  width: 80px;
  height: 80px;
  position: absolute;
  top: -5%;
  left: 45%;
  transform: scale(1);
  transition: transform 0.3s ease-out;
}

.treatment__list.--first .treatment__item a:hover::after {
  transform: scale(1.5);
}

.treatment__list.--second .treatment__item a:hover::before {
  top: 0;
  left: 0;
  opacity: .9;
  transform: scale(1);
  z-index: 0;
}

.treatment__list.--first .treatment__item a img {
  width: 100px;
  height: 100px;
  position: relative;
  z-index: 1;
}

.treatment__list.--first .treatment__item a h3 {
  font-size: 2rem;
  margin: 2rem 0;
}

.treatment__list.--second .treatment__item a h3 {
  font-size: 1.8rem;
  z-index: 1;
  transition: .3s all;
}

.treatment__list.--second .treatment__item a p {
  z-index: 1;
  transition: .3s all;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: #999;
}

.treatment__list.--second .treatment__item a:hover h3,
.treatment__list.--second .treatment__item a:hover p {
  color: #fff;
  transition: .3s all;
}


/***** 採用情報 *****/
.recruit {
  padding: 15rem 0 25rem;
}
html.webp .recruit {
  background: url(images/index/index_recruit.jpg.webp) no-repeat 50% 50% / cover;
}
html.no-webp .recruit {
  background: url(images/index/index_recruit.jpg) no-repeat 50% 50% / cover;
}

.recruit .container {
  background-color: rgb(255 255 255 / 90%);
  width: 45%;
  padding: 8rem;
}

.recruit__contents {
  margin-top: -3%;
}

.recruit__ttl h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.recruit__txt p {
  margin-bottom: 4rem;
}

/***** ブログ *****/
.blog {
  position: relative;
  padding: 15rem 0 10rem;
}

.blog::before {
  content: "";
  display: inline-block;
  max-width: 1920px;
  width: 100%;
  height: 101px;
  position: absolute;
  top: -8.1%;
}
html.webp .blog::before {
  background: url(./images/common/line.png.webp) no-repeat 50% 50% / cover;
}
html.no-webp .blog::before {
  background: url(./images/common/line.png) no-repeat 50% 50% / cover;
}

.blog__contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  align-content: center;
  margin-bottom: 5rem;
  padding: 0 1.5rem;
}

.blog__thumbnail {
  position: relative;
  overflow: hidden;
}

.blog__thumbnail a {
  display: block;
  overflow: hidden;
}

.blog__thumbnail img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.3s ease; 
}

.blog__thumbnail a:hover img {
  transform: scale(1.1);
}

.blog__overlay {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(158, 216, 246, .8);
  display: grid;
  align-items: center;
  justify-content: center;
  transition: top 0.4s ease;
  justify-items: center;
  align-content: center;
}

.blog__thumbnail a:hover .blog__overlay {
  top: 0;
}

.blog__item {
  width: calc(100% / 3 - .7rem);
}

.blog__date {
  color: #fff;
}

.blog__date::after {
  content: "";
  background-color: #fff;
  width: 40px;
  height: 1px;
  display: block;
  text-align: center;
  margin: 0 auto;
  margin: 1.5rem auto;
}

.blog__title {
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  padding: 0 10px;
}


/* ************************************************************************************************
  page-insurance.php&page-private.php（保険診療／自由診療）
************************************************************************************************ */
h3.p-page__subttl {
  border-left: 3px solid #9ED8F6;
  border-right: 3px solid #9ed8f6;
  margin-bottom: 8rem;
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 1.5rem;
  text-align: center;
  border-radius: 50px;
}

h3.p-page__subttl2 {
  border-left: 3px solid #9ED8F6;
  border-right: 3px solid #9ED8F6;
  margin-bottom: 8rem;
  position: relative;
  z-index: 1;
  background-color: #f0f4f8;
  padding: 1.5rem;
  text-align: center;
  border-radius: 50px;
}

h3.p-page__subttl::after,
h3.p-page__subttl2::after {
  content: "";
  width: 1px;
  height: 40px;
  background-color: #ddd;
  display: block;
  position: absolute;
  bottom: -35%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.p-page__txt {
  margin-bottom: 8rem;
}

.p-treatment {
  margin: 20rem 0 0;
}

.p-treatment__box .container,
.p-treatment__box2 .container,
.p-treatment__box3 .container,
.p-treatment__box4 .container,
.p-treatment__box5 .container,
.p-treatment__box6 .container,
.p-treatment__box7 .container,
.p-treatment__box8 .container {
  padding: 0 1.5rem;
}

.p-treatment__menu {
  margin-bottom: 22rem;
}

.p-treatment__select {
  font-size: 2rem;
  color: #7a7a7a;
  margin-bottom: 4rem;
  text-align: center;
}

.p-treatment__select::before,
.p-treatment__select::after {
  content: "";
  background-color: #7a7a7a;
  display: inline-block;
  width: 5rem;
  height: 1px;
  margin: 0 2rem;
  vertical-align: middle;
}

.p-treatment__menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.p-treatment__menu ul li {
  width: calc(100% / 4 - 2rem);
  padding: 0 2rem;
  text-align: center;
}

.p-treatment__menu ul li a {
  border-radius: 32px;
  box-shadow: 0 3px 30px #7d8bc84d;
  display: block;
  padding: 2rem;
  transition: .9s all cubic-bezier(0.19, 1, 0.22, 1);
}

.p-treatment__menu ul li a:hover {
  transform: scale(1.1);
  background-color: #0C9FDC;
  color: #fff;
}

.p-treatment__menu ul li a span {
  color: #7a7a7a;
  display: block;
  font-size: 1rem;
  margin-top: .75rem;
}

.p-treatment__menu ul li a:hover span {
  color: #fff;
}

.p-treatment__box {
  background-color: #f0f4f8;
  padding: 15rem 0 30rem;
  position: relative;
}

.p-treatment__box::before {
  content: "";
  display: inline-block;
  max-width: 1920px;
  width: 100%;
  height: 101px;
  position: absolute;
  top: -1.8%;
}
html.webp .p-treatment__box::before {
  background: url(./images/common/line2.png.webp) no-repeat 50% 50% / cover;
}
html.no-webp .p-treatment__box::before {
  background: url(./images/common/line2.png) no-repeat 50% 50% / cover;
}

.p-treatment__box2 {
  background-color: #fff;
  padding: 15rem 0;
  position: relative;
}

.p-treatment__box2::before {
  content: "";
  display: inline-block;
  max-width: 1920px;
  width: 100%;
  height: 101px;
  position: absolute;
  top: -5%;
}
html.webp .p-treatment__box2::before {
  background: url(./images/common/line.png.webp) no-repeat 50% 50% / cover;
}
html.no-webp .p-treatment__box2::before {
  background: url(./images/common/line.png) no-repeat 50% 50% / cover;
}

.p-treatment__box3 {
  background-color: #f0f4f8;
  padding: 15rem 0;
  position: relative;
}

.p-treatment__box3::before {
  content: "";
  display: inline-block;
  max-width: 1920px;
  width: 100%;
  height: 101px;
  position: absolute;
  top: -4.85%;
}
html.webp .p-treatment__box3::before {
  background: url(./images/common/line2.png.webp) no-repeat 50% 50% / cover;
}
html.no-webp .p-treatment__box3::before {
  background: url(./images/common/line2.png) no-repeat 50% 50% / cover;
}

.p-treatment__box4 {
  background-color: #fff;
  padding: 15rem 0 0;
  position: relative;
}

.p-treatment__box4::before {
  content: "";
  display: inline-block;
  max-width: 1920px;
  width: 100%;
  height: 101px;
  position: absolute;
  top: -7.25%;
}
html.webp .p-treatment__box4::before {
  background: url(./images/common/line.png.webp) no-repeat 50% 50% / cover;
}
html.no-webp .p-treatment__box4::before {
  background: url(./images/common/line.png) no-repeat 50% 50% / cover;
}

.p-treatment__box5 {
  background-color: #f0f4f8;
  padding: 15rem 0 30rem;
  position: relative;
}

.p-treatment__box5::before {
  content: "";
  display: inline-block;
  max-width: 1920px;
  width: 100%;
  height: 101px;
  position: absolute;
  top: -4.5%;
}
html.webp .p-treatment__box5::before {
  background: url(./images/common/line2.png.webp) no-repeat 50% 50% / cover;
}
html.no-webp .p-treatment__box5::before {
  background: url(./images/common/line2.png) no-repeat 50% 50% / cover;
}

.p-treatment__box6 {
  background-color: #fff;
  padding: 15rem 0 30rem;
  position: relative;
}

.p-treatment__box6::before {
  content: "";
  display: inline-block;
  max-width: 1920px;
  width: 100%;
  height: 101px;
  position: absolute;
  top: -4.75%;
}
html.webp .p-treatment__box6::before {
  background: url(./images/common/line.png.webp) no-repeat 50% 50% / cover;
}
html.no-webp .p-treatment__box6::before {
  background: url(./images/common/line.png) no-repeat 50% 50% / cover;
}

.p-treatment__box7 {
  background-color: #f0f4f8;
  padding: 15rem 0 20rem;
  position: relative;
}

.p-treatment__box7::before {
  content: "";
  display: inline-block;
  max-width: 1920px;
  width: 100%;
  height: 101px;
  position: absolute;
  top: -8%;
}
html.webp .p-treatment__box7::before {
  background: url(./images/common/line2.png.webp) no-repeat 50% 50% / cover;
}
html.no-webp .p-treatment__box7::before {
  background: url(./images/common/line2.png) no-repeat 50% 50% / cover;
}

.p-treatment__box8 {
  background-color: #fff;
  padding: 15rem 0 0;
  position: relative;
}

.p-treatment__box8::before {
  content: "";
  display: inline-block;
  max-width: 1920px;
  width: 100%;
  height: 101px;
  position: absolute;
  top: -5.25%;
}
html.webp .p-treatment__box8::before {
  background: url(./images/common/line.png.webp) no-repeat 50% 50% / cover;
}
html.no-webp .p-treatment__box8::before {
  background: url(./images/common/line.png) no-repeat 50% 50% / cover;
}

.p-treatment__img img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}

.p-treatment__img2 img,
.p-treatment__img3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.p-page__img img {
  width: 100%;
  height: 485px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 5rem;
}

.p-treatment__list,
.p-treatment__list2,
.p-treatment__list3,
.p-treatment__list4 {
  margin-bottom: 10rem;
}

.p-treatment__list {
  background-color: #fff;
  padding: 5rem;
  border-radius: 5px;
  margin-bottom: 10rem;
}

.p-treatment__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6rem;
}

.p-treatment__item:nth-child(even) {
  flex-direction: row-reverse;
}

.p-treatment__item:last-child {
  margin-bottom: 0;
}

.p-treatment__txt {
  padding: 0 1rem;
  width: 80%;
}

.p-treatment__txt h4 {
  border-bottom: 1px dotted #ddd;
  color: #0C9FDC;
  margin-bottom: 1.5rem;
}

.p-treatment__txt2 {
  margin-bottom: 4rem;
  position: relative;
}

.p-treatment__item2:last-child .p-treatment__txt2 {
  margin-bottom: 0;
}

.p-treatment__txt2 h4 {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.p-treatment__txt2 h4 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent), #2f7f90);
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(43, 159, 179, 0.18);
  flex-shrink: 0;
  font-size: 16px;
  margin-right: 3rem;
}

.p-treatment__txt2 p {
  width: 80%;
}

.p-treatment__txt2 img {
  border-radius: 5px;
  width: 145px;
  height: auto;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
}

.p-treatment__list3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.p-treatment__item3 {
  width: calc(100% / 2 - 1rem);
}

.p-treatment_wrap3 h4 {
  padding: 1.5rem 0 1rem;
}

.p-treatment_wrap3 h4 span {
  color: #a5a3a3;
  display: block;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.p-treatment_wrap3 ul {
  margin: 2.5rem 0 0;
}

.p-treatment_wrap3 ul li {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 5px;
  margin-bottom: .75rem;
  font-size: 1.8rem;
}

.p-treatment_wrap3 ul li::before {
  content: "";
  background-color: #9ED8F6;
  border-radius: 50%;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 1.25rem;
}

.p-treatment__maintenance {
  background-color: #fff;
  border-radius: 5px;
  padding: 5rem 3rem;
}

.p-treatment__maintenance h3 {
  margin-bottom: 3rem;
  text-align: center;
}

.p-treatment__maintenance h3::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  margin-left: 2rem;
  background-color: #C0DD67;
}

.p-treatment__maintenance h3::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 2rem;
  background-color: #C0DD67;
}

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

.p-treatment__maintenance ul {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.p-treatment__maintenance ul li {
  background-color: #f0f4f8;
  border-radius: 5px;
  font-size: 1.4rem;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 1rem;
  line-height: 1.6;
  width: calc(100% / 3 - 1.5rem);
}

.p-treatment__message {
  margin-bottom: 5rem;
}

.p-treatment__item4 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-bottom: 5rem;
  border-bottom: 1px dotted #ddd;
  padding-bottom: 5rem;
}

.p-treatment__item4:first-child {
  border-top: 1px dotted #ddd;
  padding-top: 5rem;
}

.p-treatment__item4:last-child {
  margin-bottom: 0;
}

.p-treatment__img4 img {
  border-radius: 5px;
  width: 150px;
  height: 125px;
  object-fit: cover;
}

.p-treatment_wrap4 {
  width: calc(100% - 3rem);
  padding-right: 5rem;
}

.p-treatment_wrap4 h4 {
  margin-bottom: 1.5rem;
}

.p-treatment_wrap4 span {
  border-left: 2px solid #9ED8F6;
  border-right: 2px solid #9ED8F6;
  border-radius: 32px;
  color: #7a7a7a;
  font-size: 1.6rem;
  padding: .5rem 1rem;
  vertical-align: middle;
  margin-right: 2rem;
}

.p-treatment__list5 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  max-width: var(--max-width);
  margin: 0 auto 10rem;
  list-style: none;
  padding: 0;
}

.p-treatment__item5 {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}

.p-treatment__item5 .p-treatment__txt5 {
  position: relative;
  width: 100%;
}

.p-treatment__item5 h4 {
  font-size: 18px;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  line-height: 1.2;
}

.p-treatment__item5 h4 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(180deg,var(--accent), #2f7f90);
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(43,159,179,0.18);
  flex-shrink: 0;
  font-size: 16px;
}

.p-treatment__item5 p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}


/* ************************************************************************************************
  page-staff.php（院長・スタッフ紹介）
************************************************************************************************ */
h4.p-page__heading {
  border-bottom: 1px dotted #ddd;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}

.p-staff {
  margin: 20rem 0 0;
}

.p-staff .container {
  padding: 0 1.5rem;
}

.p-staff__list {
  margin-bottom: 15rem;
}

.p-staff__box {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5rem;
}

.p-staff__img {
  width: calc(90% / 2 - 1.5rem);
}

.p-staff__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.p-staff__box p {
  width: calc(100% / 2 - 1.5rem);
}

.p-staff__outline {
  background-color: #f1f9fe;
  padding: 5rem;
}

.p-staff__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #e2f3fc;
  padding: 4rem;
}

.p-staff__wrap table,
.p-staff__wrap ul {
  width: calc(100% / 2 - 1rem);
  font-size: 1.6rem;
}

.p-staff__wrap table caption,
.p-staff__wrap ul figcaption {
  font-size: 1.8rem;
  vertical-align: middle;
  margin-bottom: 2rem;
}

.p-staff__wrap table caption::before,
.p-staff__wrap ul figcaption::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 1rem;
  background-color: #C0DD67;
}

.p-staff__wrap table tr,
.p-staff__wrap ul li {
  line-height: 1.8;
}

.p-staff__wrap table th {
  width: 20%;
}

/***** パララックス画像 *****/
.staff__bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 100%;
  height: 50vh;
  margin-bottom: 15rem;
}

html.webp .staff__bg.--first {
  background-image: url(images/subpage/staff_bg01.jpg.webp);
}
html.no-webp .staff__bg.--first {
  background-image: url(images/subpage/staff_bg01.jpg);
}
html.webp .staff__bg.--second {
  background-image: url(images/subpage/staff_bg02.jpg.webp);
}
html.no-webp .staff__bg.--second {
  background-image: url(images/subpage/staff_bg02.jpg);
}

/***** スライダー *****/
.swiper-container {
  padding-bottom: 5rem !important;
  position: relative;
  margin-bottom: 10rem;
}

.swiper-button-next, .swiper-button-prev {
  display: none !important;
}

.swiper-pagination-bullet-active {
  background-color: #5D576B !important;
}

.swiper-slide img {
  border-radius: 5px;
  width: 100%;
  max-width: 100%;
}


/* ************************************************************************************************
  page-clinic.php（当院について）
************************************************************************************************ */
.p-clinic {
  margin: 20rem 0 5rem;
}

.p-clinic__info {
  margin-bottom: 20rem;
}

.p-clinic__info .container,
.p-clinic__guidance .container,
.p-clinic__facility .container {
  padding: 0 1.5rem;
}

.p-clinic__img {
  text-align: center;
  margin-bottom: 5rem;
}

.p-clinic__img img {
  border-radius: 5px;
  width: 75%;
  height: 475px;
  object-fit: cover;
}

.p-clinic__table {
  width: 70%;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: left;
}

.p-clinic__table th {
  border-bottom: 2px dotted #0C9FDC;
  width: 25%;
  padding: 2rem;
  vertical-align: middle;
}

.p-clinic__table td {
  border-bottom: 2px dotted #7a7a7a;
  width: 75%;
  padding: 2rem;
  vertical-align: middle;
}

.p-clinic__guidance {
  background-color: #f0f4f8;
  padding: 10rem 0 5rem;
  position: relative;
}

.p-clinic__guidance::before {
  content: "";
  display: inline-block;
  max-width: 1920px;
  width: 100%;
  height: 101px;
  position: absolute;
  top: -5.5%;
  z-index: 1;
}
html.webp .p-clinic__guidance::before {
  background: url(./images/common/line2.png.webp) no-repeat 50% 50% / cover;
}
html.no-webp .p-clinic__guidance::before {
  background: url(./images/common/line2.png) no-repeat 50% 50% / cover;
}

.p-clinic__guidance ul.p-treatment__list2 {
  background-color: #fff;
  border-radius: 5px;
  padding: 8rem;
}

.p-clinic__guidance .p-treatment__txt2 p {
  width: 100%;
}

.p-clinic__gallery {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.25rem;
  position: relative;
  margin-bottom: 4rem;
}

.p-clinic__gallery figcaption {
  background-color: #fff;
  font-size: 1.6rem;
  padding: 1.5rem 2rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.p-clinic__item {
  position: relative;
  overflow: hidden;
  width: calc(98% / 3);
}

.p-clinic__item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.p-clinic__item a .overlay {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(158, 216, 246, .8);
  transition: top 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-clinic__item a:hover img {
  transform: scale(1.05);
}

.p-clinic__item a:hover .overlay {
  top: 0;
}

.overlay-text {
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  padding: 0 0.5rem;
}

.lb-data .lb-details {
  line-height: 2em !important;
}

/***** 背景画像 *****/
.clinic__bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 50vh;
  margin-bottom: 15rem;
}
html.webp .clinic__bg {
  background-image: url(images/subpage/clinic_bg.jpg.webp);
}
html.no-webp .clinic__bg {
  background-image: url(images/subpage/clinic_bg.jpg);
}


/* ************************************************************************************************
  page-recruit.php（採用情報）
************************************************************************************************ */
.p-recruit {
  margin: 20rem 0 0;
}

.p-recruit__message {
  margin-bottom: 20rem;
}

.p-recruit__message .container,
.p-recruit__job-desc .container {
  padding: 0 1.5rem;
}

.p-recruit__job-desc {
  background-color: #f0f4f8;
  padding: 10rem 0 20rem;
  position: relative;
  margin-bottom: -3%;
}

.p-recruit__job-desc::before {
  content: "";
  display: inline-block;
  max-width: 1920px;
  width: 100%;
  height: 101px;
  position: absolute;
  top: -5.15%;
  z-index: 1;
}
html.webp .p-recruit__job-desc::before {
  background: url(./images/common/line2.png.webp) no-repeat 50% 50% / cover;
}
html.no-webp .p-recruit__job-desc::before {
  background: url(./images/common/line2.png) no-repeat 50% 50% / cover;
}

.p-recruit__table {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: left;
}

.p-recruit__table th {
  border-bottom: 2px dotted #0C9FDC;
  width: 25%;
  padding: 2rem;
  vertical-align: middle;
}

.p-recruit__table td {
  border-bottom: 2px dotted #7a7a7a;
  width: 75%;
  padding: 2rem;
  vertical-align: middle;
}

.p-recruit__txt {
  background-color: #fff;
  border-radius: 5px;
  max-width: 1024px;
  width: 100%;
  margin: 4rem auto 0;
  padding: 2.5rem;
}

.p-recruit__txt h4 {
  font-size: 2rem;
  margin-bottom: .5rem;
}

.p-recruit__txt .fa-leaf {
  color: #C0DD67;
}


/* ************************************************************************************************
  archive-news.php&single-news.php（お知らせ）
************************************************************************************************ */
/***** アーカイブページ（archive-news.php） *****/
.p-news {
  margin: 20rem 0;
}

.p-news .container {
  padding: 0 1.5rem;
}

/***** シングルページ（single-news.php） *****/
.p-news--single {
  margin: 20rem 0;
}

.p-news--single .container {
  padding: 0 1.5rem;
}

.p-news__cal {
  color: #0C9FDC;
  font-size: 2rem;
}

.p-news__ttl {
  font-size: 4rem;
  font-weight: 500;
  margin: 2rem 0;
}

.p-news__txt p {
  font-size: 1.8rem;
}

/***** ページャー *****/
.nav-below ul {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.nav-below ul li {
  display: inline-block;
}

.nav-below ul li a,
.nav-below ul li span {
  display: inline-block;
  width: 54px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border: 1px solid #c0dd67;
  border-radius: 45%;
  font-size: 16px;
  color: #c0dd67;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-below ul li a:hover {
  background-color: #c0dd67;
  color: #fff;
}

.nav-below ul li span.current {
  background-color: #c0dd67;
  color: #fff;
  font-weight: bold;
  border-color: #c0dd67;
}

.nav-below--single {
  max-width: 1280px;
  margin: 5rem auto 0;
  width: 100%;
  text-align: left;
  padding: 0 1.5rem;
}

.nav-back a {
  margin-left: 0;
}


/* ************************************************************************************************
  archive.php&category.php&single.php（ブログ）
************************************************************************************************ */
/***** アーカイブページ&カテゴリーページ（archive.php&category.php） *****/
.p-blog {
  margin: 20rem 0;
}

.p-blog .container {
  padding: 0 1.5rem;
}

.p-blog .blog__contents {
  padding: 0;
}

/***** シングルページ（single.php） *****/
.p-blog--single {
  margin: 20rem 0;
}

.p-blog--single .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding: 0 1.5rem;
}

.p-blog__post {
  width: calc(75% - 1rem);
}

.p-blog__info ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.p-blog__cal {
  color: #0C9FDC;
  font-size: 2rem;
  margin-right: 1.5rem;
}

.p-blog__cat {
  background-color: #C0DD67;
  border: 1px solid #fff;
  border-radius: 32px;
  display: inline-block;
  color: #fff;
  padding: .5rem 1.5rem;
  transition: .3s all;
}

.p-blog__cat:hover {
  background-color: #fff;
  border: 1px solid #C0DD67;
  color: #C0DD67;
}

.p-blog__ttl {
  font-size: 4rem;
  font-weight: 500;
  margin: 2rem 0;
}

.p-blog__txt p {
  font-size: 1.8rem;
}

/***** ウィジェット（サイドバー） *****/
select {
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 100%;
  height: auto;
  padding: 1.5rem;
}

.wp-block-group {
  margin-bottom: 3rem;
}

.side-widget-area a {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

ul.side-widget-area {
  margin-bottom: 3rem;
  width: calc(25% - 1rem);
}

h2.wp-block-heading {
  color: #0C9FDC;
  font-size: 2.8rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

ul.wp-block-categories-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

ul.wp-block-categories-list li {
  background-color: #C0DD67;
  border: 1px solid #fff;
  border-radius: 32px;
  display: inline-block;
  color: #fff;
  padding: .5rem 1.5rem;
  transition: .3s all;
}

ul.wp-block-categories-list li:hover {
  background-color: #fff;
  border: 1px solid #C0DD67;
  color: #C0DD67;
}

.wp-block-latest-posts__featured-image.alignleft {
  margin-right: 1.5rem !important;
}

.wp-block-latest-posts__featured-image a {
  overflow: hidden;
  margin-right: 0;
}

.wp-block-latest-posts__featured-image img {
  width: 90px !important;
  height: 90px !important;
  transition: transform 0.3s ease-in-out;
}

.wp-block-latest-posts__featured-image img:hover {
  transform: scale(1.1);
}

.wp-block-latest-posts__post-date,
select {
  font-size: 1.2rem !important;
  color: #7a7a7a;
  margin-top: .25rem;
}