@charset "UTF-8";

/*
Theme Name: hoc-template01-kn
Theme URI: https://platinum-site.com/shindo-dc/
Version: 1.1
Author: OWNDMEDIA.LAB
*/

/* ************************************************************************************************
  共通
************************************************************************************************ */
html,body {
  width: 100%;
  height: 100%;
  font-size: 62.5%; /*ベースを10pxに設定*/
  letter-spacing: .2em;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #454545;
  background: #fff;
  scroll-behavior: smooth;
}

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

@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: #7B7B7B;
  color: #fff;
}

/* ページ全体の余白など */
#page {
  overflow: hidden;
  width: 100%;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
}

.container2 {
  max-width: 1850px;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
}

.container3 {
  width: 100%;
  padding: 0 3rem;
}

.container4 {
  width: 100%;
}

/* 装飾線 */
.main__line {
  display: block;
  margin: 1rem auto 2rem;
}

.sub__line {
  display: block;
  margin: 1.5rem auto 3rem;
}

/* 見出し */
.index__ttl {
  text-align: center;
  margin-bottom: 6rem;
  color: #7a7a7a;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  letter-spacing: .1em;
}

.index__ttl::before {
  content: "";
  display: block;
  width: 100%;
  height: 60px;
  margin-bottom: 1.5rem;
  background: url(../images/common/icon.png) no-repeat center center / contain;
}

.index__ttl span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 1rem;
}

/* トップページヘッダー */
header {
  height: 100px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  transition: .5s;
  width: 100%;
  z-index: 10;
}

header .container2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.header__ttl {
  margin-bottom: .75rem;
}

.header__ttl a {
  display: block;
}

.header__ttl a img {
  max-width: 245px;
  width: 100%;
}

.header-nav {
  display: flex;
  align-items: stretch;
}

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

.header-nav__list .fa-size {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.header-nav__list,
.header-nav__list--single {
  display: inline-block;
  text-align: center;
  margin-right: 1rem;
  transition: .5s;
}

.header-nav__list.--gbtn {
  border-left: 1px solid #ddd;
  margin: 0;
}

.header-nav__list.--gbtn:last-child {
  border-right: 1px solid #ddd;
}

.header-nav__list.--gbtn a {
  display: grid;
  margin: 0;
  width: 100px;
}

.header-nav__item {
  display: grid;
}

.header-nav__item span:nth-child(1) {
  font-size: 1rem;
  margin-bottom: .75rem;
}

.header-nav__list {
  position: relative;
  list-style: none;
  z-index: 1;
}

.header-nav__item {
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 1em;
  overflow: hidden;
  z-index: 0;
  text-decoration: none;
}

.header-nav__item:hover {
  color: #535353;
}

.header-nav__item span {
  display: block;
  line-height: 1.2;
}

.hover-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(14, 61, 155, .3);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease, width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
  z-index: -1;
  filter: blur(5px);
  opacity: 0;
}

.header-nav__item:hover .hover-circle {
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%) scale(1);
  opacity: .8;
}

#nav-drawer {
  display: none;
}

.header-nav__list .submenu {
  display: none;
  position: absolute;
  background-color: #fff;
  top: 95%;
  left: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
  width: 465px;
  border-radius: 5px;
  padding: 0;
  overflow: hidden;
  flex-wrap: wrap;
}

.header-nav__list.has-submenu:hover .submenu {
  display: flex !important;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-nav__list .submenu {
  pointer-events: none;
}

.header-nav__list .submenu li:first-child {
  width: 100%;
}

.header-nav__list .submenu li:first-child a {
  position: relative;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  height: 100px;
  padding: 0 1.5rem;
  border-radius: 8px 8px 0 0;
  text-decoration: none;
  display: grid;
  align-content: center;
  gap: 5px;
  overflow: hidden;
  z-index: 0;
}

.header-nav__list .submenu.--insurance li:first-child a::after {
  background-image: url(../images/subpage/header_insurance_img.jpg);
}
.header-nav__list .submenu.--private li:first-child a::after {
  background-image: url(../images/subpage/header_private_img.jpg);
}

.header-nav__list .submenu li:first-child a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -2;
  transition: transform 0.5s ease;
  border-radius: 8px 8px 0 0;
}

.header-nav__list .submenu li:first-child a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(14, 62, 155, .8), transparent);
  z-index: -1;
  border-radius: 8px 8px 0 0;
}

.header-nav__list .submenu li:first-child a:hover::after {
  transform: scale(1.05);
}

.header-nav__list .submenu li:first-child a > * {
  position: relative;
  z-index: 1;
}

.header-nav__list .submenu li:first-child a span {
  font-size: 1.6rem;
  font-weight: 500;
}

.header-nav__list .submenu li a {
  display: block;
  text-align: left;
  padding: 1.5rem;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: background .3s;
}

.header-nav__list .submenu a:hover {
  background: #f0f0f0;
}

.header-nav__list .submenu li:nth-child(n+2) {
  width: 50%;
  display: flex;
  justify-content: center;
  padding: 5px;
}

.header-nav__list .submenu li:nth-child(n+2) a {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem;
  font-size: 1.4rem;
  color: #333;
  text-decoration: none;
  width: 100%;
  transition: background .3s;
  border-top: 1px solid #eee;
  width: 225px;
  height: 100px;
  background: rgb(216 219 226 / 70%);
  border-radius: 5px;
  justify-content: center;
  transition: .3s all;
}

.header-nav__list .submenu li:nth-child(n+2) a:hover {
  background: rgb(216 219 226 / 100%);
  transition: .3s all;
}

.header-nav__list .submenu li:nth-child(n+2) a img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.header-nav__list.has-submenu {
  position: relative;
}

.header-nav__list.has-submenu:hover {
  z-index: 100; 
}

.header-nav__list.has-submenu:hover .submenu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* 下層ページヘッダー */
.header-sub {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 100vw;
  height: 70vh;
  position: relative;
  margin-bottom: 10rem;
}

.header-sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 62, 155, .3);
  backdrop-filter: blur(5px);
  z-index: 1;
}

.header-sub.clinic {
  background-image: url(../images/subpage/header_clinic_img.jpg);
}
.header-sub.medical-information {
  background-image: url(../images/subpage/header_medical_img.jpg);
}
.header-sub.insurance {
  background-image: url(../images/subpage/header_insurance_img.jpg);
}
.header-sub.private {
  background-image: url(../images/subpage/header_private_img.jpg);
}
.header-sub.column {
  background-image: url(../images/subpage/header_column_img.jpg);
}
.header-sub.news {
  background-image: url(../images/subpage/header_news_img.jpg);
}
.header-sub.p-recruit {
  background-image: url(../images/subpage/header_recruit_img.jpg);
}

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

.header-sub__ttl {
  color: #fff;
  font-size: 4rem;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  letter-spacing: .1em;
}

.header-sub__txt {
  color: #fff;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  letter-spacing: .1em;
}

/* アクセス・診療時間 */
.access {
  background: linear-gradient(to top, rgba(14, 61, 155, 0.4), rgba(14, 61, 155, 0));
  padding: 12.5rem 0 0;
}

.access__container {
  max-width: 1440px;
  width: 100%;
  background: #fff;
  margin: 0 auto;
  padding: 8rem;
}

.access__map,
.access__item {
  width: calc(100% / 2 - 1rem);
}

.access__clinic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.access__logo a {
  display: block;
  margin-right: 8rem;
}

ul.access__txt {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}

ul.access__txt li {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: .5rem;
}

ul.access__txt li span {
  background-color: #E6EBF5;
  font-weight: 600;
  font-size: 1.4rem;
  padding: .5rem 1rem;
  border-radius: 5px;
  margin-right: 1rem;
}

.access__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.access__box {
  background: #E6EBF5;
  border-radius: 5px;
  padding: 2.5rem;
}

.access__ttl {
  font-weight: 600;
}

.access__map a {
  display: block;
  margin: 1rem 0;
  font-weight: 600;
  text-align: right;
}

table.access__table {
  width: 100%;
  height: 100%;
  display: inline-block;
  font-size: 1.8rem;
}

table.access__table caption {
  caption-side: bottom;
  margin: 1.5rem 0;
  text-align: right;
  font-weight: 600;
}

table.access__table th {
  border-bottom: 2px solid #fff;
  padding: 1.5rem;
  vertical-align: middle;
  width: 35%;
  text-align: center;
}

table.access__table td {
  border-bottom: 2px solid #fff;
  font-weight: 600;
  padding: 1.5rem;
  vertical-align: middle;
  width: calc(100% / 9);
  text-align: center;
}

p.aceess__detail {
  font-size: 1.6rem;
  margin-bottom: .5rem;
}

p.aceess__detail span {
  background-color: #0E3E9B;
  color: #fff;
  font-weight: 600;
  font-size: 1.4rem;
  padding: .5rem 1rem;
  border-radius: 5px;
  margin-right: 1rem;
}

.access__tel {
  margin: 2.5rem 0 0;
}

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

.access__tel p::before {
  content: "";
  background: #0E3E9B;
  display: inline-block;
  width: 50px;
  height: 1px;
  vertical-align: middle;
  margin-right: 1rem;
}

.access__tel a {
  font-size: 4rem;
  font-weight: 600;
  transition: .3s all;
}

.--blue {
  color: #0E3E9B;
}

/* フッター */
footer {
  text-align: center;
  margin-top: 8rem;
  background: #0E3E9B;
  padding-bottom: 3rem;
}

.footer__sns {
  margin-bottom: 2rem;
}

a.footer__icon {
  margin: 0 .7rem;
  display: inline-block;
  opacity: .8;
  transition: .3s all;
}

.--fa-instagram-w {
  color: #fff;
  font-size: 3rem;
}

.footer__menu {
  background: rgb(255 255 255 / 95%);
  padding: 2.5rem 1.5rem;
  margin-bottom: 3rem;
}

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

.footer__list li {
  margin: 10px 0;
}

.footer__list li a {
  display: inline-block;
  transition: .3s all;
}

.footer__list li a:hover {
  transition: .3s all;
  opacity: .7;
}

.footer__list li a::after {
  content: "|";
  padding: 0 1.5rem;
}

.footer__list li:last-child a::after {
  display: none;
}

small {
  color: #fff;
  font-size: 1.2rem;
}


/* ************************************************************************************************
  front-page.php
************************************************************************************************ */
/***** メインビジュアル *****/
.header-main {
  background-size: cover;
  background-position: 50% 50%;
  width: 100%;
  height: 100vh;
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
}

.header-main::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 50%;
  content: "";
  background: linear-gradient(to bottom, rgba(14, 62, 155, 0), rgba(14, 62, 155, .4));
  z-index: 9;
}

.header-main::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(14, 62, 155, .2);
}

.header-main .container2 {
  position: absolute;
  bottom: 20%;
  left: 2.5%;
  z-index: 10;
}

.header-main p {
  color: #fff;
  font-size: 2rem;
}

.header-main p span {
  display: block;
  font-size: 3.5rem;
  font-weight: 600;
}

.header-main h3 {
  color: #fff;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 6rem;
  margin: 3rem 0 0;
  line-height: 1.2;
}

.header-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.header-main.slide {
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.2s ease, transform 10s ease;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  z-index: 0;
}

.header-main.slide.active {
  opacity: 1;
  transform: scale(1.05);
  z-index: 1;
}

.slide1 {
  background-image: url(../images/index/index_mv_slide1.jpg);
}
.slide2 {
  background-image: url(../images/index/index_mv_slide2.jpg);
}
.slide3 {
  background-image: url(../images/index/index_mv_slide3.jpg);
}

@keyframes zoomOutSlow {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

/***** お知らせ *****/
.news {
  position: relative;
  padding: 10rem 0;
}

.news__line {
  display: block;
  margin: 0 auto;
}

.news__contents {
  background-color: #fafafa;
  border-radius: 5px;
  padding: 3rem;
}

.news__item {
  text-align: center;
}

.news__thumbnail {
  margin-bottom: 2rem;
}

.news__date {
  color: #7a7a7a;
  font-size: 1.6rem;
  font-weight: 600;
  display: block;
}

.news__date::after {
  content: "";
  width: 150px;
  height: 1px;
  background: #0E3E9B;
  display: inline-block;
  margin: 0 4rem;
  vertical-align: middle;
}

.news__txt {
  display: flex;
  align-items: center;
}

.news__ttl {
  font-size: 1.8rem;
}

/***** コンセプト *****/
.concept {
  padding: 15rem 0 20rem;
}

.concept__contents--img,
.concept__contents--txt {
  width: calc(50% - 5rem);
}

.concept__img-wrap {
  position: relative;
  display: inline-block;
  width: fit-content;
  z-index: 1;
}

.img-main {
  width: 100%;
  height: 550px;
  display: block;
  border-radius: 5px;
  object-fit: cover;
}

.img-sub {
  position: absolute;
  bottom: -12%;
  right: -5%;
  width: 315px;
  height: 205px;
  z-index: 1;
  object-fit: cover;
  border-radius: 5px;
}

.concept__contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.concept__contents--txt {
  position: relative;
}

.concept__contents--txt::after {
  content: "";
  position: absolute;
  top: -25%;
  right: 5%;
  width: 465px;
  height: 525px;
  background-color: #e6ebf5;
  transform: skewX(-20deg);
  transform-origin: top right;
  pointer-events: none;
  z-index: -1;
}

.concept__contents--txt h2 {
  color: #0E3E9B;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  margin-bottom: 3rem;
}

.concept__contents--txt p {
  font-size: 1.8rem
}

.concept__contents--txt a {
  margin: 3rem 0 0;
}

/***** 診療案内 *****/
.medical {
  background-color: #E6EBF5;
  padding: 16rem 0;
  position: relative;
  z-index: 0;
}

.medical::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 800px;
  height: 100%;
  background-color: rgba(255, 255, 255, .4);
  transform: skewX(-20deg);
  transform-origin: top right;
  pointer-events: none;
  z-index: -1;
}

.medical__contents {
  margin-bottom: 4rem;
  position: relative;
  z-index: 0;
}

.medical__contents h3 {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.medical__contents h3::before {
  content: '\f5c9';
  color: #0E3E9B;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 1rem;
}

.medical__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.medical__item {
  flex: 1 1 400px;
  max-width: 400px;
}

.medical__item a {
  width: auto;
  min-width: 280px;
  max-width: 400px;
  height: auto;
  border-radius: 5px;
  background: rgb(216 219 226 / 70%);
  display: grid;
  justify-content: center;
  align-content: center;
  justify-items: center;
  padding: 3rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.medical__item a:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  background: rgb(216 219 226 / 100%);
  transition: .3s all;
}

.medical__item img {
  width: 100px;
  height: 100px;
  margin-bottom: 2rem;
}

.medical__txt p {
  font-size: 1.8rem;
  font-weight: 600;
}

.medical__txt p::after {
  background: rgb(122 122 122 / 49%);
  content: "";
  display: block;
  width: 325px;
  height: 2px;
  margin: 1.5rem 0;
}

.medical__txt h4 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: .5rem;
  text-align: left;
}

.medical__txt h4::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  color: #0E3E9B;
  margin-right: 1rem;
}

.medical__contents2 .medical__item a {
  display: block;
  font-weight: 600;
  padding: 4rem 2rem;
}

/***** 院長挨拶＆院内紹介&アクセス・診療時間 *****/
.col3 {
  padding: 10rem 0 15rem;
}

.col3__contents {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.col3__list {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
}

.col3__item {
  width: calc(100% / 3);
  transition: transform 0.3s ease;
}

.col3__item:last-child a {
  margin-bottom: 0;
}

.col3__img {
  overflow: hidden;
  border-radius: 5px;
}

.col3__img img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.col3__item:hover .col3__img img {
  transform: scale(1.05);
}

.col3__txt {
  margin-top: 1.5rem;
}

.col3__txt h3 {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 2.25rem;
  margin-bottom: .5rem;
}

/***** 採用情報 *****/
.recruit {
  background: url(../images/index/index_recruit_bg.jpg) no-repeat 50% 50% / cover;
  padding: 16rem 0;
  position: relative;
  z-index: 1;
}

.recruit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .3);
  z-index: -1;
  overflow: hidden;
}

.recruit::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 650px;
  height: 100%;
  background-color: rgba(123, 123, 123, .6);
  transform: translateX(-30%) skewX(-20deg);
  transform-origin: top center;
  pointer-events: none;
  z-index: -1;
}

.recruit h2.index__ttl {
  color: #fff;
}

.recruit__box p {
  text-align: center;
  margin: 0 0 5rem;
  color: #fff;
}

/***** コラム *****/
.column {
  padding: 10rem 0 0;
  position: relative;
}

.column__contents {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 5rem;
}

.column__item {
  width: calc(100% / 3);
  overflow: hidden;
}

.column__item a {
  display: block;
}

.column__item a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition: transform .3s ease;
}

.column__item:hover img {
  transform: scale(1.05);
}

.column__img-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 5px;
}

.column__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.column__item:hover .column__img-wrapper img {
  transform: scale(1.05);
}

.column__txt {
  padding: 2rem 1rem;
}

.column__date {
  font-size: 1.4rem;
  font-weight: 600;
  color: #7a7a7a;
  line-height: 1;
  text-align: right;
}

.column__ttl {
  font-size: 2rem;
  text-align: left;
  line-height: 1.4;
}


/* ************************************************************************************************
　page-clinic.php（クリニック紹介）
************************************************************************************************ */
.p-message {
  margin-bottom: 15rem;
}

.p-message__contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-message__img,
.p-message__txt {
  width: calc(100% / 2 - 5rem);
}

.p-message__img picture:nth-child(1) img {
  width: 100%;
  height: auto;
  margin-bottom: 5px;
}

.p-message__img picture:nth-child(3) img,
.p-message__img picture:nth-child(5) img {
  width: calc(100% / 2 - .3rem);
}

.p-message__txt {
  position: relative;
  z-index: -1;
}

.p-message__txt::after {
  content: "";
  position: absolute;
  top: 0;
  right: 5%;
  width: 465px;
  height: 550px;
  background-color: #e6ebf5;
  transform: skewX(-20deg);
  transform-origin: top right;
  pointer-events: none;
  z-index: -1;
}

.p-message__txt h2 {
  color: #0E3E9B;
  font-weight: 600;
  margin-bottom: 3rem;
}

.p-message__txt p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

.p-message__txt p > span {
  display: block;
  font-size: 1.6rem;
  text-align: right;
}

.p-message__txt p > span span {
  font-size: 2.4rem;
}

.p-message__box {
  background: #ffff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 2.5rem;
}

.p-message__box h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.p-message__box h3::before {
  content: "";
  background: #0E3E9B;
  display: inline-block;
  width: 50px;
  height: 1px;
  vertical-align: middle;
  margin-right: 1rem;
}

.p-message__box ul li {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: .5rem;
}

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

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

.p-access__img {
  margin-bottom: 3rem;
}

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

table.p-access__table {
  width: 100%;
  height: 100%;
}

table.p-access__table th {
  border-bottom: 3px solid #0E3E9B;
  width: 30%;
  padding: 1.5rem;
  font-size: 1.8rem;
  vertical-align: middle;
  line-height: 1.8;
}

table.p-access__table td {
  border-bottom: 1px solid #ddd;
  width: 70%;
  font-size: 1.8rem;
  vertical-align: middle;
  padding: 1.5rem;
  line-height: 1.8;
}

.p-facility {
  background: #E6EBF5;
  padding: 8rem 0 15rem;
}

.p-facility ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.p-facility ul li {
  width: calc(100% / 3 - 1rem);
  height: 100%;
  position: relative;
}

.p-facility ul li a {
  display: block;
  transition: .3s all;
}

.p-facility ul li a:hover {
  opacity: .8;
  transition: .3s all;
}

.p-facility ul li img {
  width: 100%;
  height: 100%;
}

.p-facility ul li h4 {
  padding: 0 0 1rem;
  font-size: 2rem;
}

.p-facility ul li h4::before {
  content: "";
  background-color: #FFF;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 1rem;
}

.p-facility ul li p {
  font-size: 1.8rem;
  padding: 2.5rem 2.5rem 1rem 2.5rem;
  margin-top: -8%;
  background: linear-gradient(to top, rgb(255 255 255 / 65%) 0, #fff 60%, rgba(255, 255, 255, 0.7) 80%, rgba(255, 255, 255, 0.3) 90%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  position: relative;
}

.p-clinic__bg-img img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}


/* ************************************************************************************************
  page-medical-information.php（診療案内）
************************************************************************************************ */
/* スライダー */
.swiper-container {
  padding-bottom: 5rem !important;
  margin-bottom: 15rem;
  position: relative;
}

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

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

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

.p-concept {
  padding: 0 0 10rem;
}

.p-concept__ttl {
  color: #0E3E9B;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.6;
}

.p-concept__txt {
  text-align: center;
  font-size: 1.8rem;
}

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

.p-concept__gallery ul li {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

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

.p-concept__gallery ul li img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 50%;
}

.p-concept__gallery ul li > div {
  width: 55%;
  padding: 5rem;
}

.p-concept__gallery ul li > div h4 {
  font-size: 3rem;
  font-weight: 600;
}


/* ************************************************************************************************
  page-recruit.php（採用情報）
************************************************************************************************ */
.p-r_message__item {
  margin: 5rem 0;
  text-align: center;
}

.p-r_message {
  margin-bottom: 10rem;
}

.p-r_message__txt {
  font-size: 2rem;
}

.p-r_message__box {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.p-r_message__box ul {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.p-r_message__box ul li {
  width: 275px;
  height: 275px;
  font-size: 1.6rem;
  display: grid;
  align-items: center;
  background: #fafafa;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.p-r_message__box ul li:hover::before {
  width: 300px;
  height: 300px;
  opacity: 1;
}

.p-r_message__box ul li > * {
  position: relative;
  z-index: 1;
}

.p-r_message__box ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(14, 61, 155, .3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease, opacity 0.4s;
  z-index: 0;
  opacity: 0;
  filter: blur(5px);
}

.p-recruit__bg {
  background-image: url(../images/subpage/recruit_bg_img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 65vh;
}

.p-job-desc {
  background: #E6EBF5;
  padding: 15rem 3rem;
  position: relative;
  z-index: 0;
}

.p-job-desc::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 800px;
  height: 100%;
  background-color: rgba(255, 255, 255, .4);
  transform: skewX(-20deg);
  transform-origin: top right;
  pointer-events: none;
  z-index: -1;
}

.p-job-desc .container {
  background: #fff;
  border: 1px solid #ddd;
  padding: 8rem 3rem;
}

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

.p-job-desc__table tr {
  border-bottom: 1px solid #ddd;
}

.p-job-desc__table th {
  width: 25%;
  padding: 2rem;
  vertical-align: middle;
  border-bottom: 3px solid #0E3E9B;
}

.p-job-desc__table td {
  width: 75%;
  padding: 2rem;
  vertical-align: middle;
}


/* ************************************************************************************************
  page-insurance.php（保険診療）
************************************************************************************************ */
/* 診療内容一覧 */
.p-menu__summary {
  margin-bottom: 12.5rem;
}

h2.p-menu__summary__ttl {
  color: #0E3E9B;
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: 3rem;
  line-height: 1.4;
}

p.p-menu__summary__txt {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

ul.p-menu__summary__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 3vw;
}

li.p-menu__summary__item {
  width: calc(33.33% - 2vw);
}

li.p-menu__summary__item a {
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
  display: block;
  padding: 14px 40px 14px 16px;
  width: 100%;
  max-width: 300px;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
  min-width: 100%;
}

li.p-menu__summary__item a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f105';
  font-size: 1.8rem;
  color: #0E3E9B;
  position: absolute;
  right: 20px;
  top: 10px;
  text-align: right;
  z-index: 1;
  transition: right 0.3s ease;
}

li.p-menu__summary__item a::after {
  content: "";
  width: 40px;
  height: 40px;
  background-color: #E6EBF5;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  right: 7px;
  top: 0;
  transition: right 0.3s ease;
}

li.p-menu__summary__item a:hover::before {
  right: 13px;
}

li.p-menu__summary__item a:hover::after {
  right: 0px;
}

/* 診療内容 */
.p-menu__item {
  margin-bottom: 10rem;
}

.p-menu__item:nth-child(odd) {
  background-color: #E6EBF5;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  position: relative;
  z-index: 0;
}

.p-menu__item:nth-child(odd)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 800px;
  height: 100%;
  background-color: rgba(255, 255, 255, .4);
  transform: skewX(-20deg);
  transform-origin: top right;
  pointer-events: none;
  z-index: -1;
}

.p-menu__item:nth-child(even) {
  background-color: #fff;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.p-menu__bg {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 10rem 3rem;
}

#beauty .p-menu__bg {
  padding: 10rem 3rem 0;
}

.p-menu__item:nth-child(odd) h3.p-menu__ttl,
.p-menu__item:nth-child(even) h3.p-menu__ttl {
  font-size: 4rem;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.p-menu__item:nth-child(odd) h3.p-menu__ttl::before {
  content: "";
  background-color: #FFF;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: block;
  margin: 0 auto 2rem;
}

.p-menu__item:nth-child(even) h3.p-menu__ttl::before {
  content: "";
  background-color: #E6EBF5;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: block;
  margin: 0 auto 2rem;
}

p.p-menu__txt {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 5rem;
}

h4.p-menu__subttl {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
}

h4.p-menu__subttl::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 30px;
  border-radius: 10px;
  margin-right: 1.5rem;
  background: #0E3E9B;
  vertical-align: middle;
}

li.p-menu__content {
  background: #fff;
  border-radius: 5px;
  margin-bottom: 2rem;
  padding: 3rem;
  position: relative;
}

li.p-menu__content > picture img {
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  width: 115px;
  height: 115px;
  object-fit: cover;
  margin: 1.5rem 3rem 1.5rem 1.5rem;
  border: 1px solid #ddd;
  border-radius: 50%;
}

li.p-menu__content > h5 {
  color: #7a7a7a;
  font-weight: 600;
}

li.p-menu__content > h5 span {
  background-color: #0E3E9B;
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  text-align: center;
  vertical-align: middle;
}

li.p-menu__content > p {
  font-size: 1.8rem;
  padding: 1.5rem 0;
}

.p-menu__box {
  border-top: 1px solid #e1e0e0;
}

.p-menu__box > h6 {
  background: #e1e0e0;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  padding: .5rem 2rem;
}

.p-menu__box > p {
  font-size: 1.5rem;
  padding: 1rem 0;
}

.p-menu__box > p span {
  background-color: #7a7a7a;
  border-radius: 5px;
  color: #fff;
  padding: .5rem 1rem;
  margin-right: 1rem;
}

.p-menu__box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-top: 1rem;
}

.p-menu__btn,
.p-menu__btn2 {
  display: flex;
  justify-content: flex-end;
}

.p-menu__btn a,
.p-menu__btn2 a {
  width: 50px;
  height: 50px;
  font-size: 1.8rem;
  background-color: #fff;
  border: 1px solid #7a7a7a;
  border-radius: 50%;
  display: grid;
  justify-content: center;
  justify-items: center;
  align-items: center;
  transition: .3s all;
}

.p-menu__btn a:hover,
.p-menu__btn2 a:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

ul.p-menu__list2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1vw;
}

li.p-menu__item2 {
  width: calc(52% - 2vw);
  padding: 2.5rem;
  background-color: #f0f3f9;
  border-radius: 5px;
}

li.p-menu__item2.--bg-w {
  background-color: #fff;
}

li.p-menu__item2 h5 {
  font-weight: 600;
  margin-bottom: .5rem;
}

li.p-menu__item2 h5::before {
  content: '\f5c9';
  color: #0E3E9B;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 3rem;
  margin-right: 1.5rem;
  vertical-align: middle;
}

.p-menu__more {
  margin-bottom: 2.5rem;
}

ol.p-menu__flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 2vw;
  margin-bottom: 4rem;
}

li.p-menu__inner {
  width: calc(25.65% - 2vw);
}

li.p-menu__inner > picture img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

#implant li.p-menu__inner > picture img {
  background: #fff;
  height: auto;
}

li.p-menu__inner > h5 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 2rem 0 .5rem;
  border-bottom: 1px solid #ddd;
  padding: 0 0 1rem 0;
}

li.p-menu__inner > h5 span {
  background-color: #0E3E9B;
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  text-align: center;
}

li.p-menu__inner > h6 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 2rem 0 .5rem;
  border-bottom: 1px solid #ddd;
  padding: 0 0 1rem 0;
}

li.p-menu__inner > h6::before {
  content: "\f5c9";
  color: #0E3E9B;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 1rem;
}

li.p-menu__inner > p span {
  background-color: #7a7a7a;
  border-radius: 5px;
  color: #fff;
  font-size: 1.2rem;
  margin-right: 1rem;
  padding: .25rem 1rem;
}

.p-menu__desc {
  margin-bottom: 2rem;
  border-top: 1px dashed #ddd;
  border-bottom: 1px dashed #ddd;
  padding: 3rem 0;
}

.p-menu__info {
  margin-bottom: 1rem;
}

.p-menu__info p:first-child {
  font-size: 1.8rem;
  font-weight: 600;
}

.p-menu__info p:first-child::before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #0E3E9B;
  display: inline-block;
  margin-right: 1rem;
  vertical-align: middle;
}

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

.p-menu__box2 > p {
  margin-bottom: 2.5rem;
}

ul.p-menu__list3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: .5vw;
}

li.p-menu__item3 {
  width: calc(34.2% - 1vw);
  padding: 2.5rem;
  background-color: #fff;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.8;
}

li.p-menu__item3::before {
  content: "";
  background-color: #E6EBF5;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 1.5rem;
  vertical-align: middle;
}

ul.p-menu__list3.--beauty li.p-menu__item3 {
  background-color: #E6EBF5;
}

ul.p-menu__list3.--beauty li.p-menu__item3::before {
  background-color: #fff;
}

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

li.p-menu__inner2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 3rem;
}

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

li.p-menu__inner2 > picture img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  background: #fff;
  z-index: 1;
}

.p-menu__desc2 {
  padding: 4rem 6rem;
  box-sizing: border-box;
  background: #fff;
  border-radius: 5px;
}

li.p-menu__inner2:nth-child(odd) .p-menu__desc2 {
  margin-left: -2.5%;
}

li.p-menu__inner2:nth-child(even) .p-menu__desc2 {
  margin-right: -2.5%;
}

.p-menu__desc2 > h5 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.p-menu__desc2 > h5::before {
  content: "\f0e7";
  color: #0E3E9B;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 1rem;
}

.p-menu__info2-i {
  border-top: 1px solid #ddd;
}

.p-menu__info2-i > h6 {
  background: #e1e0e0;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  padding: .5rem 2rem;
}

.p-menu__info2-i > p {
  margin-bottom: 1rem;
  padding: 1rem 0;
}

.p-menu__note {
  border-top: 1px dashed #7a7a7a;
  border-bottom: 1px dashed #7a7a7a;
  padding: 3rem 0;
  margin: 3rem 0;
}

.p-menu__note > h5 {
  font-weight: 600;
}

.p-menu__note > h5::before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #0E3E9B;
  display: inline-block;
  margin-right: 1rem;
  vertical-align: middle;
}

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

.p-menu__detail2 > picture img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

ul.p-menu__list4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1vw;
  margin: 2.5rem 0;
}

li.p-menu__item4 {
  width: calc(52% - 2vw);
  padding: 2.5rem;
  background-color: #fff;
  border-radius: 5px;
}

li.p-menu__item4 > h5 {
  border-bottom: 1px solid #ddd;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

li.p-menu__item4 > h5::before {
  content: "\f62f";
  color: #0E3E9B;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 1rem;
}

.p-menu__effect {
  margin-bottom: 2rem;
}

ol.p-menu__flow3 {
  background: #fff;
  border-radius: 5px;
  padding: 4rem;
}

li.p-menu__inner3 {
  border-bottom: 1px dashed #ddd;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

li.p-menu__inner3:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

li.p-menu__inner3 > h6 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: .5rem;
  position: relative;
}

li.p-menu__inner3 > h6 span {
  background-color: #0E3E9B;
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  text-align: center;
  vertical-align: bottom;
}

ul.p-menu__list5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: .5vw;
  margin-top: 1.5rem;
}

li.p-menu__item5 {
  width: calc(51% - 1vw);
  padding: 1rem;
  background-color: #E6EBF5;
  border-radius: 5px;
  font-size: 1.4rem;
  line-height: 1.6;
}

li.p-menu__item5::before {
  content: "";
  background-color: #fff;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 1.5rem;
  margin-bottom: .5rem;
  vertical-align: middle;
}

.p-menu__img {
  margin: 3rem 0;
}

.p-menu__img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.p-menu__method > h5,
.p-menu__price > h5 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.p-menu__method > h5::before,
.p-menu__price > h5::before {
  content: "";
  background-color: #E6EBF5;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 1.5rem;
  vertical-align: middle;
  margin-bottom: .25em;
}


/* ************************************************************************************************
  page-private.php（自由診療）
************************************************************************************************ */
.p-menu__t-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

table.p-menu__table {
  min-width: 781px;
  border-collapse: collapse;
  width: 100%; 
  margin-bottom: 2rem;
}

table.p-menu__table2 {
  width: 100%;
  margin-bottom: 2rem;
}

table.p-menu__table caption,
table.p-menu__table2 caption {
  caption-side: bottom;
  font-size: 1.6rem;
  margin: 2rem 0;
  text-align: right;
}

table.p-menu__table th,
table.p-menu__table td {
  width: calc(100% / 4);
  padding: 1.5rem;
  border: 1px solid #ddd;
  line-height: 1.6;
}

table.p-menu__table th {
  background: #7a7a7a;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  vertical-align: middle;
}

table.p-menu__table td {
  background: #fff;
  font-size: 1.6rem;
  vertical-align: top;
}

table.p-menu__table td img {
  width: 100%;
  max-height: 245px;
  height: 100%;
  object-fit: cover;
}

table.p-menu__table2 th {
  border: 1px solid #ddd;
  background: #7a7a7a;
  color: #fff;
  width: 30%;
  font-size: 2.25rem;
  padding: 2rem;
  vertical-align: middle;
}

table.p-menu__table2 td {
  background-color: #fff;
  border: 1px solid #ddd;
  width: 70%;
  font-size: 2.5rem;
  padding: 2rem;
  text-align: right;
  vertical-align: middle;
}

table.p-menu__table2 td span {
  display: block;
  font-size: 1.4rem;
}

.p-menu__desc2.--space {
  padding: 0;
}

li.p-menu__inner2:nth-child(even) .p-menu__desc2.--space {
  margin-right: 0;
}

.p-menu__gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: .5vw;
  margin-bottom: 4rem;
}

.p-menu__gallery picture {
  width: calc(100% / 3 - 1rem);
}

.p-menu__gallery picture img {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.p-menu__whitening-i > h5 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.p-menu__whitening-i > h5::before {
  content: "";
  background-color: #FFF;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 1.5rem;
  vertical-align: middle;
  margin-bottom: .25em;
}

.p-menu__img2 img {
  width: 90%;
  height: 400px;
  object-fit: cover;
}

.p-menu__txt2 {
  background: #fff;
  padding: 4rem;
  border-radius: 5px;
  font-size: 1.6rem;
  width: 65%;
  margin-left: auto;
  margin-top: -5%;
  z-index: 1;
  position: relative;
  margin-bottom: 5rem;
}


/* ************************************************************************************************
  index.php&category.php&single.php（コラム）
************************************************************************************************ */
/* -----------ウィジェット */
.footer__widget {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer__widget h5 {
  margin-bottom: 1rem;
}

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

.widget-area {
  text-align: center;
  margin-bottom: 3rem;
  width: 30%;
}

.nocomments {
  display: none;
}

.breadcrumb {
  font-size: 0.9rem;
  margin: 1.5rem auto;
  color: #666;
}

/* ----------- パンくずリスト */
.breadcrumb {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto 8rem;
  padding: 0 3rem;
}

.breadcrumb > ul {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb > ul li {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}

.breadcrumb > ul li:not(:last-child)::after {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  margin: 0 1rem;
  color: #0E3E9B;
  font-weight: 600;
  font-size: 1.2rem;
}

.breadcrumb > ul li a {
  color: #454545;
  font-size: 1.6rem;
  display: block;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb > ul li a:hover {
  color: #454545;
}

/* ----------- ページャー */
ul.page-numbers {
  display: flex;
  justify-content: flex-start;
}

ul.page-numbers li {
  width: 50px;
  height: 50px;
}

ul.page-numbers li a,
ul.page-numbers li span {
  border: 1px solid #0E3E9B;
  color: #0E3E9B;
  font-size: 1.6rem;
  width: 40px;
  height: 50px;
  display: grid;
  justify-items: center;
  align-items: center;
  transition: .3s all;
}

ul.page-numbers li a:hover,
ul.page-numbers li span:hover {
  background: #0E3E9B;
  color: #fff;
  transition: .3s all;
}

ul.page-numbers li span.current {
  background: #0E3E9B;
  color: #fff;
}

/* -----------アーカイブ&カテゴリー */
.p-column {
  margin: 0 0 8rem;
}

a.p-column__thumbnail {
  display: block;
  overflow: hidden;
  border-radius: 5px;
}

.p-column__thumbnail img {
  width: 100%;
  max-height: 300px;
  min-height: 300px;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

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

.p-column .container {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.p-column__post {
  width: calc(100% / 3 - 1rem);
  text-align: center;
  margin-bottom: 5rem;
}

.p-column__contents {
  padding: 2rem 1rem;
}

.p-column__info {
  text-align: right;
  font-size: 1.2rem;
}

.p-column__ttl {
  line-height: 1.4;
  text-align: left;
}

.p-column__ttl a {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.p-column__cat a {
  background-color: #fafafa;
  border-radius: 32px;
  font-size: 1.2rem;
  display: inline-block;
  padding: .5rem 2rem;
  margin-bottom: 1rem;
  transition: .3s all;
}

.p-column__cat a:hover {
  background-color: #E6EBF5;
  transition: .3s all;
}

.p-column__cal {
  color: #7a7a7a;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: .5rem;
}

.p-column__txt {
  text-align: left;
}

/* -----------シングル */
.p-column-single {
  margin: 0 0 8rem;
}

.p-column-single__ttl {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.p-column-single__thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-column-single__contents {
  padding: 4rem;
  width: 100%;
}

.p-column-single__blog_info {
  text-align: right;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.p-column-single__cal {
  font-size: 1.8rem;
  font-weight: 600;
  color: rgb(122, 122, 122);
  line-height: 1;
  text-align: right;
  margin-bottom: 1rem;
}

.p-column-single__cat {
  margin-bottom: 2rem;
}

.p-column-single__cat a {
  background-color: #fafafa;
  border-radius: 32px;
  font-size: 1.2rem;
  display: inline-block;
  padding: .5rem 2rem;
  transition: .3s all;
}

.p-column-single__cat a:hover {
  background-color: #E6EBF5;
  transition: .3s all;
}

.p-column-single__txt {
  font-size: 1.6rem;
}

.nav-pager {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 8rem 0 0;
  gap: 2rem;
}


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

.p-news__thumbnail img {
  width: 100%;
  height: auto;
}

.p-news .container {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
}

.p-news__contents {
  margin-bottom: 8rem;
  position: relative;
}

.p-news__item {
  border-bottom: 1px solid #ddd;
  padding: 6rem 0;
  position: relative;
}

.p-news__item:first-child {
  padding-top: 0;
}

.p-news__box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;
}

.p-news__post {
  width: 45%;
  text-align: center;
  margin: 0 2rem 5rem;
  border: 7px double #F7EBEC;
}

.p-news__date {
  color: #7a7a7a;
  font-size: 1.6rem;
  font-weight: 600;
  display: block;
  margin-right: 1.5rem;
}

.p-news__cat a {
  background-color: #fafafa;
  border-radius: 32px;
  font-size: 1.2rem;
  display: block;
  padding: 0 2rem;
  transition: .3s all;
}

.p-news__cat a:hover {
  background-color: #E6EBF5;
  transition: .3s all;
}

.p-news__ttl {
  color: #0E3E9B;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.p-news__excerpt {
  width: 100%;
}

.p-news__txt {
  position: relative;
}

.p-news__txt a.entry-link {
  position: relative;
  display: block;
}

.p-news__btn {
  width: 40px;
  height: 40px;
  background-color: #E6EBF5;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: auto;
  right: 0;
  bottom: -45px;
  transition: transform 0.3s ease;
}

.p-news__btn::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f105';
  font-size: 1.6rem;
  color: #0E3E9B;
  text-align: center;
  display: grid;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.p-news__txt a:hover .p-news__btn {
  transform: translateX(5px);
}

/* ----------- シングル */
.p-news-single {
  margin: 0 0 8rem;
}

.p-news-single__ttl {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.p-news-single__thumbnail img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}

.p-news-single__contents {
  width: 90%;
  margin: 3rem auto 6rem;
}

.p-news-single__box {
  text-align: right;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.p-news-single__box ul {
  display: flex;
  text-align: right;
  gap: 2rem;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  justify-content: flex-end;
  align-items: center;
}

.p-news-single__cal {
  color: #7a7a7a;
  font-size: 1.6rem;
  font-weight: 600;
  display: block;
}

.p-news-single__cat a {
  background-color: #fafafa;
  border-radius: 32px;
  font-size: 1.2rem;
  padding: .5rem 2rem;
  transition: .3s all;
}

.p-news-single__cat a:hover {
  background-color: #E6EBF5;
  transition: .3s all;
}

.single__line {
  display: block;
  margin: 6rem auto 3rem;
}


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

.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: #7B7B7B;
  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(14,61,155,1), -21px -21px rgba(14,61,155,1), 21px -21px rgba(14,61,155,1), -21px 21px rgba(14,61,155,1);
      transform:translate(-50%, -50%) rotate(180deg) scale(1);
    }
    100%{
      opacity:.2;
      transform:translate(-50%, -50%) rotate(360deg) scale(.5);
    }
  }

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

/***** ホバーアニメーション *****/
.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,
.p-column a:hover,
.p-news a:hover,
.p-news-single a:hover {
  color: #7a7a7a;
  transition: .3s;
}
.news__ttl a:hover {
  color: #7a7a7a;
  transition: .3s;
}

.header-nav__item--second li,
.p-column a:hover,
.p-news a,
.p-news-single a,
.news__ttl a {
  transition: .5s;
}

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

img{
  transition: .6s;
}

/***** ボタン *****/
.btn1, .btn2 {
  display: block;
  width: 219px;
  height: 50px;
  border: 1px solid #0E3E9B;
  background-color: rgba(255,255,255,0.4);
  font-size: 1.4rem;
  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 {
  font-size: 1.6rem;
}

.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(14,62,155,0.7);
}

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

.nav-previous a,
.nav-archive a,
.nav-next a {
  display: block;
  font-size: 1.4rem;
}

.nav-previous a::after,
.nav-archive a::after,
.nav-next a::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(14,62,155,0.7);
  transition: all .3s;
}

.nav-previous a, .nav-archive a, .nav-next a,
.nav-previous a::before, .nav-archive a::before, .nav-next a::before,
.nav-previous a::after, .nav-archive a::after, .nav-next a::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-archive a:hover,
.nav-next a:hover {
  color: #fff;
  background: rgba(14,62,155,0.7);
}

.nav-previous a:hover::after,
.nav-archive a:hover::after,
.nav-next a:hover::after {
  top: 0;
  background-color: rgba(14,62,155,0.7);
}

/***** ヘッダースクロール *****/
header.hide {
  top: -100px;
}

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

.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: #7a7a7a;
  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: rgba(255, 255, 255, 1);
  transition: .3s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(105%);
}

#header-sp {
  margin-top: 8rem;
  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;
}


/***** ページトップに戻るボタン *****/
#page_top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  background: #7b7b7b;
  opacity: 1;
  border-radius: 50%;
  z-index: 100;
  transition: .3s all;
}

#page_top:hover {
  opacity: .8;
  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;
}
