@charset "utf-8";
/* ===================================================================
 File Name  : page.css
 Style Info : ページに関するスタイル指定
=================================================================== */

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

/*ローディングアニメーション*/

/* 初期状態（初回アクセス） */
.home #page {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all 1.5s ease-in-out 0.8s;
}

/* アクセス済み（2回目以降）で遅延なし */
.home.accessed.is-repeat #page {
  transition: all 1.5s ease-in-out 0s;
}

/* 表示状態 */
.home.accessed #page {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.loading {
  width: 100%;
  height: 100%;
  transition: all 2s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  padding-bottom: 60px;
}
.loading.is-active {
  opacity: 0;
  visibility: hidden;
}
.loading-animation {
  width: 100%;
  height: 100%;
  transition: all 1.5s;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}
.loading-logo {
  opacity: 0;
  transition: all 2s ease-in-out 0s;
  text-align: center;
}
.loading-animation.is-active .loading-logo {
  opacity: 1;
}
  @media screen and (max-width: 999px) {
    .loading {
      padding-bottom: 9.33vw;
    }
    .loading-logo img {
      width: 69.33vw;
      height: auto;
    }
  }

#mainVisual {
  position: relative;
  margin-bottom: 60px;
  height: calc(var(--vh, 1vh) * 100 - 120px); /* PC基準 */
}

@media screen and (max-width: 1200px) and (min-width: 1000px) {
  #mainVisual {
    height: calc(var(--vh, 1vh) * 100 - 60px);
  }
}
@media screen and (max-width: 999px) {
  #mainVisual {
    height: calc(var(--vh, 1vh) * 100) !important; /* スマホ: 下部メニュー分ガタつき回避 */
    margin-bottom: 0;
  }
}
/* モダンブラウザでは svh を優先 */
@supports (height: 100svh) {
  #mainVisual {
    height: calc(100svh - 120px);
  }
  @media screen and (max-width: 1200px) and (min-width: 1000px) {
    #mainVisual {
      height: calc(100svh - 60px);
    }
  }
  @media screen and (max-width: 999px) {
    #mainVisual {
      height: 100svh !important;
    }
  }
}

.mv_ttl_wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.mv_ttl {
  text-align: center;
  color: #fff;
  font-size: min(4.5vw,6.3rem);
  letter-spacing: 0.15em;
  font-weight: 500;
  line-height: 1.7;
}
.mv_media {
  height: 100%;
}
.mv_media > * {
  width: 100%;
  height: 100%!important;
  object-fit: cover;
  border-radius: 10px;
}
  @media screen and (max-width: 999px) {
    .mv_media > * {
      border-radius: 0;
    }
  }
  @media screen and (max-width: 599px) {
    .mv_ttl_wrap {
      justify-content: flex-start;
      padding-top: 28vw;
    }
    .mv_ttl {
      text-align: left;
      font-size: 6.93vw;
      line-height: 2.2;
      writing-mode: vertical-rl;
      text-orientation: upright;
    }
    .mv_ttl span {
      display: block;
      white-space: nowrap;
    }
    .mv_ttl br {
      display: none;
    }
  }

#index_location {
  padding: 100px 0;
  border-radius: 10px 10px 0 0;
}
.index_location-block {
  align-items: center;
  padding-bottom: 80px;
}
.index_location-lead h3 {
  font-size: 2rem;
  margin: 12px 0 20px;
}
.index_location-lead p {
  font-size: min(1.8vw,2.1rem);
  margin-bottom: 30px;
}
.index_location-lead p:last-child {
  margin-bottom: 0;
}
.index_location-features {
  padding-top: 50px;
}
.index_location-features dl {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  border: solid 1px #ec6c0e;
  color: #ec6c0e;
  width: 290px;
  height: 290px;
  transition: all 0.2s ease-in-out 0s;
}
.index_location-features dt {
  line-height: 1.6;
  margin-bottom: 15px;
}
.index_location-features dt small {
  display: block;
  font-size: min(1.4vw,1.6rem);
}
.index_location-features dt span {
  display: block;
  font-size: min(2.6vw,2.8rem);
}
.index_location-features dd {
  font-size: min(1.2vw,1.4rem);
  font-feature-settings: "palt";
}
.index_location-features01 {
  right: -25px;
}
.index_location_img {
  border-radius: 10px;
  overflow: hidden;
}
  @media screen and (max-width: 1129px) {
    .index_location-features dl {
      width: 25vw;
      height: 25vw;
      letter-spacing: 0.05em;
    }
  }
  @media screen and (max-width: 999px) {
    #index_location {
      padding: 13.33vw 0 0;
      border-radius: 0;
    }
    .index_location-block {
      padding-bottom: 6.66vw;
    }
    .index_location-lead {
      padding-bottom: 9.33vw;
    }
    .index_location-lead h3 {
      font-size: 4.26vw;
      margin: 6.66vw 0 4vw;
    }
    .index_location-lead p {
      font-size: 4.8vw;
      margin-bottom: 5.33vw;
    }
    .index_location-features {
      padding-top: 0;
      display: block;
    }
    .index_location-features dl {
      width: 60.8vw;
      height: 60.8vw;
      margin: 0 auto;
    }
    .index_location-features dt {
      line-height: 1.6;
      margin-bottom: 2.66vw;
    }
    .index_location-features dt small {
      font-size: 3.46vw;
    }
    .index_location-features dt span {
      font-size: 5.86vw;
    }
    .index_location-features dd {
      font-size: 3.2vw;
    }
    .index_location-features01 {
      right: 0;
    }
    .index_location-features02 {
      top: -7.46vw;
    }
    .index_location_img {
      border-radius: 0;
      margin-left: -9.33vw;
      margin-right: -9.33vw;
    }
  }

#index_clinic {
  padding: 100px 0;
}
#index_clinic .sub_ttl01 {
  margin-bottom: 15px;
}
.index_clinic-block {
  margin-top: 40px;
}
.index_clinic-list {
  width: 48.8%;
  max-width: 582px;
}
.index_clinic-box h3 {
  color: #fff;
  font-size: 3.1rem;
  line-height: 1.3;
  padding: 0 20px;
}
.index_clinic-box li {
  padding: 5px 0;
  border-bottom: solid 1px #989898;
}
.index_clinic01 li:last-child {
  border-bottom: none!important;
}
.index_clinic-box a {
  /*pointer-events: none;*/
  display: block;
  width: 100%;
  padding: 10px 20px;
  text-decoration: none;
  color: #323232;
}
.index_clinic-box a:hover {
  background-color: rgba(236, 108, 14, 0.1);
}
.index_clinic-box dl {
  display: flex;
}
.index_clinic-box dt {
  position: relative;
  top: 8px;
  height: 100%;
  background: #fff;
  color: #f49e0e;
  border: solid 1px #f49e0e;
  width: 38px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-align: center;
  transition: all 0.2s ease-in-out 0s;
}
.index_clinic-box a:hover dt {
  background: #f49e0e;
  color: #fff;
}
.index_clinic-box dt span {
  font-size: 2.3rem;
}
.index_clinic-box dt small {
  font-size: 1.9rem;
}
.index_clinic-box dd {
  position: relative;
  padding-left: 40px;
  width: calc(100% - 38px);
  line-height: 1.6;
}
.index_clinic-box dd::before {
  position: absolute;
  left: 12px;
  top: 18px;
  z-index: 5;
  content: "";
  width: 16px;
  height: 10px;
  border-style:solid;
  border-width: 5px 0 5px 16px;
  border-color: transparent transparent transparent #f49e0e;
}
.index_clinic-box dd p span {
  display: inline-block;
  font-size: 1.8rem;
}
.index_clinic-box dd p b {
  font-weight: 400;
  font-size: 1.4rem;
}
.index_clinic-box dd p small {
  display: inline-block;
  font-size: 1.5rem;
}
.index_clinic-img {
  width: 47.5%;
  max-width: 568px;
}
.index_clinic-img img {
  border-radius: 10px 10px 0 0;
}
  @media screen and (max-width: 1299px) {
    .index_clinic-box h3 {
      padding: 0 12px;
    }
    .index_clinic-box a {
      padding: 12px;
      letter-spacing: 0.05em;
    }
  }
  @media screen and (max-width: 999px) {
    #index_clinic {
      padding: 13.33vw 0;
    }
    #index_clinic .sub_ttl01 {
      margin-bottom: 6.66vw;
    }
    .index_clinic-block {
      margin-top: 9.33vw;
    }
    .index_clinic-list {
      width: 100%;
      max-width: 100%;
    }
    .index_clinic-box h3 {
      font-size: 8.26vw;
      padding: 0 5.33vw;
    }
    .index_clinic-box li {
      padding: 1.5vw 0;
    }
    .index_clinic-box a {
      width: 100%;
      padding: 4.5vw 4vw 4.5vw 5.33vw;
    }
    .index_clinic-box dl {
      align-items: flex-start;
    }
    .index_clinic-box dt {
      top: 1.33vw;
      width: 10.13vw;
      letter-spacing: 0;
    }
    .index_clinic-box dt span {
      font-size: 6.13vw;
    }
    .index_clinic-box dd p b {
      font-size: 3.46vw;
    }
    .index_clinic-box dt small {
      font-size: 5vw;
    }
    .index_clinic-box dd {
      padding-left: 3.33vw;
      width: calc(100% - 10.13vw);
    }
    .index_clinic-box dd::before {
      display: none;
    }
    .index_clinic-box dd p span {
      font-size: 4.26vw;
    }
    .index_clinic-box dd p small {
      font-size: 3.73vw;
    }
    .index_clinic-img {
      display: none;
    }
  }

.index_clinic-img {
  position: relative;
}

/* 初期：00番 */
.index_clinic-img {
  position: relative;
  background: url("../img/index/index_clinic-info00.png") center top no-repeat;
  background-size: 100% auto;
}

/* 一度でもホバーが発生したら00番を消す */
.index_clinic-img.is-active {
  background: none;
}

/* 中の情報はフェード切り替え */
.index_clinic-info {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}
.index_clinic-info.is-active {
  opacity: 1;
  visibility: visible;
}

/* 重ねる中身 */
.index_clinic-info {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.index_clinic-info.is-active {
  opacity: 1;
  visibility: visible;
}


.index_clinic01 h3 {
  background : linear-gradient(90deg, rgba(244, 158, 14, 1) 0%, rgba(251, 216, 159, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F49E0E',endColorstr='#FBD89F' , GradientType=1);
}
.index_clinic01 li:last-child a {
  border-bottom: none;
}

.index_clinic02 h3 {
  background : linear-gradient(90deg, rgba(237, 121, 80, 1) 0%, rgba(248, 201, 185, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ED7950',endColorstr='#F8C9B9' , GradientType=1);
}
.index_clinic02 dt {
  color: #ed7950;
  border: solid 1px #ed7950;
}
.index_clinic02 a:hover dt {
  background: #ed7950;
}
.index_clinic02 a:hover {
  color: #ed7950;
}
.index_clinic02 dd::before {
  border-color: transparent transparent transparent #ed7950;
}

.index_clinic-txt {
  background: #FEF5EE;
  padding: 25px 8.5% 50px;
  border-radius: 0 0 10px 10px;
}
.index_clinic-txt dt {
  font-size: 2rem;
  padding-bottom: 20px;
  line-height: 1.6;
}
.index_clinic-txt dd {
  border-top: solid 1px #5a6464;
  padding: 15px 0;
}
  @media screen and (max-width: 1169px) {
    .index_clinic-txt {
      letter-spacing: 0.01em;
    }
  }

.index_clinic_lead {
  position: relative;
}
.index_clinic_lead .btn01 {
  position: absolute;
  right: 0;
  top: 34px;
}
  @media screen and (max-width: 999px) {
    .index_clinic_lead .btn01 {
      position: static;
      margin-top: 4.26vw;
    }
  }

#index_gallery {
  position: relative;
  padding: 70px 0;
  background: #fff;
}
#index_gallery figure img {
  width: 100%;
  height: auto;
}
.index_gallery-ttl {
  position: absolute;
  top: 30%;
  white-space: nowrap;
  font-size: 8.1rem;
  color: #f08e45;
  margin: 0;
  padding: 0;
  z-index: 10;
}
.marquee {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  opacity: 0;
  transition: opacity 2s ease 1.8s;
}
#index_gallery.active .marquee {
  animation: marquee 25s linear infinite;
  animation-delay: 1.5s;
  opacity: 1;
}
.js-tick-item {
  display: inline-block;
  padding-right: 2rem;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
  @media screen and (max-width: 999px) {
    #index_gallery {
      padding: 8vw 9.33vw;
    }
    .index_gallery-ttl {
      top: 42vw;
      font-size: 10.66vw;
    }
    .js-tick-item {
      padding-right: 5vw; /* アイテム間の余白調整 */
    }
  }

/* 初期状態 */
.index_gallery01,
.index_gallery02 {
  opacity: 0;
  filter: blur(14px);
}

/* 親にactiveが付与されたとき発火 */
#index_gallery.active .index_gallery01 {
  animation: ani_blur 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s forwards;
}

#index_gallery.active .index_gallery02 {
  animation: ani_blur 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 1.2s forwards;
}

/* 共通アニメーション */
@keyframes ani_blur {
  0% {
    opacity: 0;
    filter: blur(14px);
    transform: translateZ(0);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateZ(0);
  }
}

#index_news {
  padding: 100px 0;
}
#index_news .sub_ttl01 {
  margin-bottom: 10px;
}
#index_news .btn01 {
  position: absolute;
  right: 30px;
  top: 30px;
}
.news_list li {
  border-top: solid 1px #989898;
  padding: 5px 0;
}
.news_list li:last-child {
  border-bottom: solid 1px #989898;
}
.news_list a {
  text-decoration: none;
  color: #323232;
  column-gap: 15px;
  align-items: center;
  padding: 13px 4.6%;
}
.news_list a:hover {
  background-color: rgba(236, 108, 14, 0.1);
}
.news_list a time {
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
.cat_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 240px;
  padding: 5px 12px;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.4;
  min-height: 46px;
  background: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;;
}
.news_list a h3 {
  font-weight: 400;
  /*overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;*/
}
  @media screen and (max-width: 1199px) {
    .news_list a {
      padding: 27px 2%;
    }
  }
  @media screen and (max-width: 999px) {
    #index_news {
      padding: 13.33vw 0;
    }
    #index_news .sub_ttl01 {
      margin-bottom: 8vw;
    }
    #index_news .btn01 {
      right: 9.33vw;
      top: 11.12vw;
    }
    .news_list li {
      padding: 1.5vw 0;
    }
    .news_list a {
      padding: 3vw 5vw;
    }
    .news_list a:hover {
      color: #ec6c0e;
    }
    .news_list a time {
      display: block;
      font-size: 3.46vw;
      margin-bottom: 1.33vw;
    }
    .cat_box {
      width: 64vw;
      padding: 1.33vw 2.66vw;
      font-size: 3.46vw;
      min-height: 12.26vw;
    }
    .news_list a h3 {
      margin-top: 2.66vw;
      line-height: 2;
    }
  }

/*----------------------------------------------------
  COMING SOON comingsoon
--------------------------------------------------- */
.comingsoon-block {
  height: 574px;
  padding: 100px 0;
  text-align: center;
}
.comingsoon-block h2 {
  font-size: 3.6rem;
  margin-bottom: 10px;
  letter-spacing: 0.26em;
}
  @media screen and (max-width: 999px) {
    .comingsoon-block {
      height: 112vw;
      padding: 13.33vw 0;
      font-size: 3.73vw;
    }
    .comingsoon-block h2 {
      font-size: 7.2vw;
      margin-bottom: 1.33vw;
      letter-spacing: 0.26em;
    }
  }

/*----------------------------------------------------
  当施設について about
--------------------------------------------------- */
#about_map {
  width: 100%;
  position: relative;
  background: url("../img/about/about_map_bg_pc.jpg") center center no-repeat;
  background-size: cover;
  border-radius: 10px 10px 0 0;
  padding: 80px 0 90px;
}
#about_map::after {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  content: "";
  width: 100%;
  height: 100%;
  background: url("../img/about/about_map01_pc.png") right top no-repeat;
  background-size: 1400px auto;
  mix-blend-mode: multiply;
}
.about_map02 {
  position: absolute;
  right: 0;
  top: 0;
  width: 1400px;
}
  @media screen and (max-width: 1600px) {
    #about_map::after {
      background-size: 100% auto;
    }
    .about_map02 {
      width: 100%;
    }
  }
  @media screen and (max-width: 1160px) {
    #about_map::after {
      background-size: 97% auto;
    }
    .about_map02 {
      width: 97%;
    }
  }
  @media screen and (max-width: 999px) {
    #about_map {
      background: url("../img/about/about_map_bg_sp.jpg") center center no-repeat;
      background-size: cover;
      border-radius: 0;
      padding: 13.33vw 0 0 0;
    }
    #about_map::after {
      top: auto;
      bottom: 58.66vw;
      height: 117.33vw;
      background: url("../img/about/about_map01_sp.png") center center  no-repeat;
      background-size: 100% auto;
    }
    .about_map02 {
      position: absolute;
      right: 0;
      top: auto;
      bottom: 115vw;
      width: 100%;
      text-align: center;
    }
    .about_map02 img {
      width: 85.86vw;
      height: auto;
    }
  }

.about_map_box {
  position: relative;
}
.about_map_box h2 {
  font-size: min(4.4vw,5rem);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  color: #ec6c0e;
}
.about_map_box dl {
  width: 47.5%;
}
.about_map_box dt {
  font-size: min(1.7vw,2.3rem);
  margin-bottom: 15px;
  line-height: 2.2;
}
.about_map_box dd {
  font-feature-settings: "palt";
  letter-spacing: 0.14em;
  line-height: 2.5;
}
.about_map_img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  max-width: 600px;
}
  @media screen and (max-width: 999px) {
    .about_map_box {
      padding-bottom: 170vw;
    }
    .about_map_box h2 {
      font-size: 6.4vw;
      margin-bottom: 4vw;
    }
    .about_map_box dl {
      width: 100%;
    }
    .about_map_box dt {
      font-size: 4.8vw;
      margin-bottom: 3.33vw;
      line-height: 2;
    }
    .about_map_box dt br {
      display: none;
    }
    .about_map_box dd {
      letter-spacing: 0.1em;
      line-height: 2;
    }
    .about_map_img {
      left: -9.33vw;
      bottom: 0;
      width: calc(100% + 18.66vw);
      max-width: calc(100% + 18.66vw);
    }
  }

.about_info-list {
  padding: 100px 0;
}
.about_info-box {
  margin-bottom: 100px;
}
.about_info-box:last-child {
  margin-bottom: 0;
}
.about_info-txt {
  width: 47.5%;
  max-width: 550px;
}
.about_info-txt h3 {
  margin-bottom: 18px;
}
.about_info-txt p {
  font-feature-settings: "palt";
}
.about_info-btn {
  margin-top: 30px;
  align-items: center;
}
.about_info-btn .btn02 {
  margin-right: 20px;
}
.about_info-btn .btn02:last-child {
  margin-right: 0;
}
.about_info-btn small {
  font-size: 1.3rem;
}
.about_info-box figure {
  width: 50%;
  max-width: 600px;
}
  @media screen and (max-width: 999px) {
    .about_info-list {
      padding: 16vw 0;
    }
    .about_info-box {
      margin-bottom: 16vw;
    }
    .about_info-txt {
      width: 100%;
      max-width: 100%;
    }
    .about_info-txt h3 {
      margin-bottom: 4.4vw;
    }
    .about_info-btn {
      margin-top: 5vw;
      align-items: center;
    }
    .about_info-btn .btn02 {
      margin-right: 0;
    }
    .about_info-btn small {
      display: block;
      font-size: 3.2vw;
      margin-top: 1.33vw;
    }
    .about_info-box figure {
      width: 100%;
      max-width: 100%;
      margin-top: 8vw;
    }
  }

/*----------------------------------------------------
  お知らせ news
--------------------------------------------------- */
.news_wrap {
  border-radius: 10px 10px 0 0;
  padding: 90px 0 100px 0;
}
  @media screen and (max-width: 999px) {
    .news_wrap {
      border-radius: 0;
      padding: 16vw 0;
    }
  }

.news_single-box {
  max-width: 1200px;
  margin: 0 auto;
}
.entry-content-wrap {
  background: #FEF5EE;
  padding: 5% 20px;
}
.news_single-ttl {
  font-size: 2.6rem;
  margin-bottom: 30px;
  line-height: 1.6;
  letter-spacing: 0.2em;
}
.news_single-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}
.news_single-info time {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  margin-right: 25px;
}
.news_single-info .cat_box {
  min-height: auto;
}
.news_single-box .btn01 {
  margin-top: 25px;
}
  @media screen and (max-width: 999px) {
    .news_single-box {
      max-width: 100%;
    }
    .entry-content-wrap {
      padding: 6.66vw 8vw;
    }
    .news_single-ttl {
      font-size: 5.33vw;
      margin-bottom: 5.33vw;
      letter-spacing: 0.1em;
    }
    .news_single-info {
      display: block;
      margin-bottom: 8vw;
    }
    .news_single-info time {
      font-size: 3.46vw;
      margin-right: 0;
    }
    .news_single-box .btn01 {
      margin-top: 6.66vw;
    }
  }

/*----------------------------------------------------
  フロアガイド floorguide
--------------------------------------------------- */
#floorguide {
  padding: 100px 0;
  border-radius: 10px 10px 0 0;
}
.floor_map {
  background: #FEF5EE;
  margin-bottom: 30px;
}
.floor_map_box {
  display: block;
  position: relative;
  text-decoration: none;
  color: #323232!important;
}
.floor_map_zoom {
  position: absolute;
  left: 0;
  bottom: 15px;
  z-index: 5;
  width: 100%;
  text-align: center;
}
.floor_map_zoom span {
  display: inline-block;
  background: url("../img/common/ico/ico_zoom01.svg") 0 center no-repeat;
  background-size: 16px auto;
  padding-left: 22px;
}
  @media screen and (max-width: 999px) {
    #floorguide {
      padding: 16vw 0;
      border-radius: 0;
    }
    .floor_map {
      margin-bottom: 8vw;
    }
    .floor_map_box {
      min-height: 52vw;
    }
    .floor_map_box img {
      opacity: 1!important;
    }
    .floor_map_zoom {
      bottom: 1.33vw;
    }
    .floor_map_zoom span {
      font-size: 3.46vw;
      background-size: 4.26vw auto;
      padding-left: 5.86vw;
    }
  }

#floorguide .index_clinic-box ul {
  border-top: solid 1px #323232;
  width: 48.5%;
  max-width: 582px;
}
#floorguide .index_clinic-box li {
  border-bottom: solid 1px #323232;
}
#floorguide .index_clinic-box li a {
  height: 100%;
}
#floorguide01 {
  padding-bottom: 100px;
}
  @media screen and (max-width: 999px) {
    #floorguide .index_clinic-box {
      border-top: solid 1px #323232;
    }
    #floorguide .index_clinic-box ul {
      border-top: none;
      width: 100%;
      max-width: 100%;
    }
    #floorguide .index_clinic-box li a {
      height: auto;
      padding: 4.5vw 3.33vw;
    }
    #floorguide01 {
      padding-bottom: 16vw;
    }
  }

/*----------------------------------------------------
  アクセス access
--------------------------------------------------- */
#access {
  padding: 100px 0;
  border-radius: 10px 10px 0 0;
}
.access_info-box {
  padding-bottom: 100px;
  border-bottom: solid 1px #323232;
}
.access_info-txt {
  width: 47.5%;
  max-width: 550px;
}
.access_info-ttl h3 {
  font-size: 2.3rem;
  margin-bottom: 22px;
  line-height: 1.8;
}
.access_info-ttl p {
  font-feature-settings: "palt";
}
.access_info-add {
  border-top: solid 1px #323232;
  padding-top: 20px;
  margin-top: 25px;
}
.access_info-map {
  width: 50%;
  max-width: 600px;
}
#gmap iframe{
  width: 100%;
}
  @media screen and (max-width: 999px) {
    #access {
      padding: 16vw 0;
      border-radius: 0;
    }
    .access_info-box {
      padding-bottom: 16vw;
    }
    .access_info-txt {
      width: 100%;
      max-width: 100%;
    }
    .access_info-ttl h3 {
      font-size: 5.33vw;
      margin-bottom: 4vw;
      line-height: 1.65;
    }
    .access_info-add {
      padding-top: 6.66vw;
      margin-top: 6.66vw;
    }
    .access_info-map {
      width: 100%;
      max-width: 100%;
      margin-top: 6.66vw;
    }
    #gmap iframe {
      height: 62vw;
    }
    .access_info-map .btn01 {
      margin-top: 4vw;
    }
  }

.access_ttl {
  font-size: 2.3rem;
}
#access_train {
  padding-top: 40px;
}
#access_train .access_ttl {
  margin-bottom: 25px;
}
.access_train-box {
  padding-bottom: 100px;
  border-bottom: solid 1px #323232;
}
.access_train-box figure img {
  border-radius: 10px;
}
.access_train-txt p {
  margin-bottom: 30px;
}
  @media screen and (max-width: 999px) {
    .access_ttl {
      font-size: 4.8vw;
      padding-left: 5.5vw;
      text-indent: -5.5vw;
    }
    #access_train {
      padding-top: 6.66vw;
    }
    #access_train .access_ttl {
      margin-bottom: 4vw;
    }
    .access_train-box {
      padding-bottom: 16vw;
    }
    .access_train-txt p {
      margin-bottom: 5vw;
      font-feature-settings: "palt";
      line-height: 1.9;
    }
    .access_train-box figure img {
      border-radius: 0;
    }
    .access_map_box {
      display: block;
      position: relative;
      color: #323232!important;
      background: #FEF5EE;
      padding-bottom: 8vw;
    }
    .access_map_zoom {
      position: absolute;
      left: 0;
      bottom: 1.33vw;
      z-index: 5;
      width: 100%;
      text-align: center;
    }
    .access_map_zoom span {
      font-size: 3.46vw;
      display: inline-block;
      background: url("../img/common/ico/ico_zoom01.svg") 0 center no-repeat;
      background-size: 4.26vw auto;
      padding-left: 5.86vw;
    }
  }

/*タブ機能*/
.tabMenu {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 25px;
}
.tabMenu li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  text-align: center;
  color: #F0893E;
  border: solid 1px #F0893E;
  background: #FCE9DB;
  width: calc(33.33% - 15px);
  font-size: 1.6rem;
  line-height: 1.4;
  border-radius: 8px;
  min-height: 60px;
  padding: 6px 10px;
  transition: all 0.2s ease-in-out 0s;
}
.tabMenu li:hover {
  background: #F0893E;
  color: #fff;
}
.tabMenu li.active {
  background: #F0893E!important;
  color: #fff;
}
  @media screen and (max-width: 1199px) {
    .tabMenu li br.pc_none {
      display: block;
    }
  }
  @media screen and (max-width: 999px) {
    .tabMenu {
      display: block;
      padding: 0 0 3vw;
    }
    .tabMenu li {
      width: 100%;
      font-size: 3.46vw;
      border-radius: 2.13vw;
      min-height: 13.33vw;
      padding: 0.8vw 2.66vw;
      margin-bottom: 2.33vw;
    }
  }

.tabContent {
  opacity: 0;
  height: 0;
  z-index: -1;
  overflow: hidden;
}
.tabContent.active {
  opacity: 1;
  z-index: 5;
  height: auto;
  overflow: visible; 
}
.tabInner {
  opacity: 0;
  transition: all 0.6s ease-in-out 0s;
}
.tabContent.active .tabInner {
  opacity: 1;
}

#access_car {
  padding-top: 40px;
}
#access_car .access_ttl {
  margin-bottom: 35px;
}
.access_car-img {
  width: 52.5%;
  max-width: 630px;
}
.access_car-img figure img {
  border-radius: 10px;
}
.access_car-txt {
  width: 45%;
  max-width: 500px;
}
.access_car-info {
  padding-bottom: 20px;
}
.access_car-txt {
  font-feature-settings: "palt";
}
.access_car-txt tr {
  border-top: solid 1px #323232;
  border-bottom: solid 1px #323232;
}
.access_car-txt th {
  text-align: left;
  font-weight: 400;
  width: 23%;
  min-width: 90px;
  padding: 18px 0;
}
.access_car-txt td {
  padding: 18px 0;
}
.access_car-note {
  padding-top: 20px;
}
  @media screen and (max-width: 999px) {
    #access_car {
      padding-top: 5.8vw;
    }
    #access_car .access_ttl {
      margin-bottom: 5.8vw;
    }
    .access_car-img {
      width: 100%;
      max-width: 100%;
      margin-bottom: 5.8vw;
    }
    .access_car-img a {
      display: block;
      position: relative;
      color: #323232!important;
      background: #FEF5EE;
      padding-bottom: 8vw;
    }
    .access_car-img figure img {
      width: 100%;
      height: auto;
      border-radius: 0;
    }
    .access_car-txt {
      width: 100%;
      max-width: 100%;
    }
    .access_car-info {
      padding-bottom: 5.8vw;
    }
    .access_car-txt table,
    .access_car-txt tbody,
    .access_car-txt tr,
    .access_car-txt th,
    .access_car-txt td {
      display: block;
      width: 100%!important;
      min-width: 100%!important;
    }
    .access_car-txt tr {
      border-top: solid 1px #323232;
      border-bottom: none;
    }
    .access_car-txt tr:last-child {
      border-bottom: solid 1px #323232;
    }
    .access_car-txt th {
      padding: 5vw 0 0 0;
    }
    .access_car-txt td {
      padding: 0 0 5vw 0;
    }
    .access_car-note {
      padding-top: 5.33vw;
      letter-spacing: 0.05em;
    }
  }

/*----------------------------------------------------
  サイトポリシー sitepolicy
--------------------------------------------------- */
#sitepolicy {
  padding: 100px 0;
  border-radius: 10px 10px 0 0;
}
.sitepolicy-wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.sitepolicy-lead h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 25px;
}
.sitepolicy-lead {
  padding-bottom: 45px;
  border-bottom: solid 1px #323232;
}
.sitepolicy-box {
  padding: 40px 0;
  border-bottom: solid 1px #323232;
}
.sitepolicy-box:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.sitepolicy-box h3 {
  font-size: 2.3rem;
  margin-bottom: 15px;
}
.sitepolicy-txt {
  letter-spacing: 0.08em;
}
.sitepolicy-txt > *:last-child {
  margin-bottom: 0!important;
}
.sitepolicy-txt p {
  margin-bottom: 25px;
}
.sitepolicy-txt dl {
  margin-bottom: 25px;
}
.sitepolicy-txt dd a {
  color: #323232;
  text-decoration: none;
}
.sitepolicy-txt dd a:hover {
  color: #ec6c0e;
}
  @media screen and (max-width: 999px) {
    #sitepolicy {
      padding: 16vw 0;
      border-radius: 0;
    }
    .sitepolicy-wrap {
      max-width: 100%;
    }
    .sitepolicy-lead h2 {
      font-size: 6.13vw;
      margin-bottom: 5vw;
    }
    .sitepolicy-lead {
      padding-bottom: 9.33vw;
    }
    .sitepolicy-lead p {
      letter-spacing: 0.08em;
    }
    .sitepolicy-box {
      padding: 9.33vw 0;
    }
    .sitepolicy-box h3 {
      font-size: 5.33vw;
      margin-bottom: 3.33vw;
      letter-spacing: 0.1em;
    }
    .sitepolicy-txt {
      font-feature-settings: "palt";
    }
    .sitepolicy-txt p {
      margin-bottom: 5.33vw;
    }
    .sitepolicy-txt dl {
      margin-bottom: 5.33vw;
    }
  }

/*----------------------------------------------------
  クリニック個別ページ
--------------------------------------------------- */
.page-template-page-clinic .content_wrap {
  padding-bottom: 100px;
}
#clinic_main {
  padding-top: 35px;
}
.clinic_main-box {
  position: relative;
  padding-left: 65px;
}
.floor_no {
  position: absolute;
  left: -65px;
  top: 10px;
  background: #fff;
  color: #f49e0e;
  border: solid 1px #f49e0e;
  width: 50px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: center;
  transition: all 0.2s ease-in-out 0s;
}
.floor_no.floor-6 {
  color: #ed7950;
  border: solid 1px #ed7950;
}
.floor_no span {
  font-size: 2.9rem;
}
.floor_no small {
  font-size: 2.5rem;
}
  @media screen and (max-width: 999px) {
    .page-template-page-clinic .content_wrap {
      padding-bottom: 16vw;
    }
    .page-template-page-clinic #crumbs {
      padding-left: 0;
      padding-right: 0;
    }
    #clinic_main {
      padding-top: 16vw;
    }
    .clinic_main-box {
      padding-left: 0;
    }
    .floor_no {
      position: static;
      width: 10.66vw;
      line-height: 1.4;
    }
    .floor_no span {
      font-size: 5.86vw;
    }
    .floor_no small {
      font-size: 5vw;
    }
  }

.clinic_main-ttl {
  position: relative;
  margin: 10px 40px 5px 0;
}
.clinic_main-ttl h2 span {
  display: block;
  font-size: 3.4rem;
  line-height: 1.4;
  font-weight: 400;
}
.clinic_main-ttl h2 em {
  display: block;
  font-size: 2.3rem;
  margin: 5px 0 20px;
  font-style: normal;
}
.clinic_main-ttl h2 small {
  display: block;
  font-size: 1.5rem;
  margin-top: 8px;
  font-weight: 400;
}
.clinic_main-ttl h2 b {
  display: block;
  font-size: 2.3rem;
  margin-top: 10px;
  font-weight: 400;
}
.clinic_main-box figure {
  padding: 15px 0 5px 0;
}
  @media screen and (max-width: 999px) {
    .clinic_main-ttl {
      margin: 1.66vw 0 0 0;
    }
    .clinic_main-ttl h2 span {
      font-size: 6.13vw;
      line-height: 1.4;
    }
    .clinic_main-ttl h2 em {
      font-size: 4.8vw;
      margin: 0 0 4.26vw;
    }
    .clinic_main-ttl h2 small {
      font-size: 3.46vw;
      margin-top: 2.33vw;
    }
    .clinic_main-ttl h2 b {
      font-size: 4.8vw;
      margin-top: 3vw;
    }
    .clinic_main-box figure {
      padding: 5.33vw 0 0 0;
    }
  }

#clinic_info {
  border-top: solid 1px #323232;
  padding-top: 40px;
}
.clinic_info-txt {
  width: 48%;
  max-width: 540px;
}
.clinic_info-txt h2 {
  font-size: 2.3rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.linic_info-tbl {
  width: 49.5%;
  max-width: 590px;
}
  @media screen and (max-width: 999px) {
    #clinic_info {
      padding-top: 6.66vw;
    }
    .clinic_info-txt {
      width: 100%;
      max-width: 100%;
      margin-bottom: 8vw;
    }
    .clinic_info-txt h2 {
      font-size: 4.8vw;
      line-height: 1.7;
      margin-bottom: 4.26vw;
      letter-spacing: 0.06em;
    }
    .linic_info-tbl {
      width: 100%;
      max-width: 100%;
    }
  }

.tbl01 table {
  font-size: 1.6rem;
  font-feature-settings: "palt";
  text-align: center;
  line-height: 1.8;
}
.tbl01 tr:first-child th:first-child {
  width: 28%;
}
.tbl01 tr th:first-child {
  text-align: left;
  border-left: none;
  padding: 20px 5px 20px 0;
}
.tbl01 tr *:last-child {
  border-right: none;
}
.tbl01 th {
  vertical-align: middle;
  font-weight: 400;
  border: solid 1px #323232;
}
.tbl01 th small {
  font-size: 1.5rem;
  display: block;
  line-height: 1.2;
}
.tbl01 td {
  vertical-align: middle;
  border: solid 1px #323232;
  padding: 15px 5px;
}
  @media screen and (max-width: 1199px) {
    .tbl01 table {
      letter-spacing: 0.03em;;
    }
  }
  @media screen and (max-width: 999px) {
    .tbl01 table {
      font-size: 3.73vw;
      line-height: 1.4;
      letter-spacing: 0;
    }
    .tbl01 tr:first-child th:first-child {
      width: 23%;
    }
    .tbl01 tr th:first-child {
      padding: 2vw 1vw 2vw 0;
    }
    .tbl01 th small {
      font-size: 3.46vw;
      line-height: 0.9;
    }
    .tbl01 td {
      padding: 2vw 1vw;
    }
  }

.tbl-col8 tr:first-child th:not(:first-child) {
  width: 10.28%;
  letter-spacing: 0;
}
  @media screen and (max-width: 999px) {
    .tbl-col8 tr:first-child th:not(:first-child) {
      width: 11%;
      padding: 2vw 1vw;
      letter-spacing: 0;
    }
  }

.tbl-col9 tr:first-child th:not(:first-child) {
  width: 9%;
  letter-spacing: 0;
}
  @media screen and (max-width: 999px) {
    .tbl-col9 tr:first-child th:not(:first-child) {
      width: 9.625%;
      padding: 2vw 1vw;
      letter-spacing: 0;
    }
  }

.tbl01_note {
  margin: 20px 0;
}
  @media screen and (max-width: 999px) {
    .tbl01_note {
      margin: 5.33vw 0;
    }
  }

.tbl02 {
  margin-top: 40px;
}
.tbl02 table {
  font-feature-settings: "palt";
}
.tbl02 th {
  width: 28%;
  text-align: left;
  vertical-align: middle;
  font-weight: 400;
  border: solid 1px #323232;
  border-left: none;
  padding: 22px 5px 22px 0;
}
.tbl02 td {
  vertical-align: middle;
  border-top: solid 1px #323232;
  border-bottom: solid 1px #323232;
  padding: 22px 0 22px 4.5%;
}
.tbl02 td a {
  text-decoration: none;
}
.tbl02 td a:hover {
  text-decoration: underline;
}
  @media screen and (max-width: 1199px) {
    .tbl02 table {
      letter-spacing: 0.03em;;
    }
  }
  @media screen and (max-width: 999px) {
    .tbl02 {
      margin-top: 8vw;
    }
    .tbl02 table {
      font-feature-settings: "palt";
      line-height: 1.4;
      letter-spacing: 0;
    }
    .tbl02 th {
      width: 23%;
      padding: 6.66vw 1vw 6.66vw 0;
    }
    .tbl02 td {
      padding: 5.33vw 0 5.33vw 4vw;
      word-break: break-all;
      overflow-wrap: anywhere;
    }
  }

.tbl02-floor dl {
  align-items: center;
  margin-right: 18px;
}
.tbl02-floor dt {
  margin-right: 10px;
}
.tbl02-floor dd {
  color: #fff;
  width: 25px;
  height: 20px;
  line-height: 1;
  background: #f49e0e;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tbl02-floor dd.floor-6 {
  background: #ED7950;
}
.tbl02-floor dd small {
  font-size: 1.3rem;
}
  @media screen and (max-width: 999px) {
    .tbl02-floor dl {
      margin-right: 3.33vw;
    }
    .tbl02-floor dt {
      margin-right: 3.33vw;
    }
    .tbl02-floor dd {
      width: 6.66vw;
      height: 5.33vw;
    }
    .tbl02-floor dd small {
      font-size: 3.46vw;
    }
  }

#clinic_gallery {
  padding-top: 50px;
}
#clinic_gallery li {
  width: 49.2%;
  max-width: 590px;
}
  @media screen and (max-width: 999px) {
    #clinic_gallery {
      padding-top: 8.53vw;
    }
    #clinic_gallery li {
      width: 100%;
      max-width: 100%;
      margin-bottom: 5.33vw;
    }
    #clinic_gallery li img {
      width: 100%;
      height: auto;
    }
    #clinic_gallery li:last-child {
      margin-bottom: 0;
    }
  }

/*----------------------------------------------------
  共通WP
--------------------------------------------------- */
/* img */
.aligncenter {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.alignright { float: right; }
.alignleft { float: left; }
img[class*="wp-image-"],
img[class*="attachment-"] {
  height: auto;
  max-width: 100%;
}
img.alignleft {
  margin-right: 25px;
}
img.alignright {
  margin-left: 25px;
}
/* 左右寄せ画像の直後の要素で回り込みを解除 */
p:has(> img.alignleft) + *,
p:has(> img.alignright) + * {
  clear: both;
}

/*投稿詳細用*/
.entry-content {
  max-width: 1000px;
  margin: 0 auto;
}
.entry-content:after {
  content: ""; 
  display: block; 
  clear: both;
}
.entry-content > *:last-child {
  margin-bottom: 0!important;
}
  @media screen and (max-width: 999px) {
    .entry-content {
      line-height: 1.8;
    }
  }

.entry-content h1 {
  font-size: 2.4rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
  @media screen and (max-width: 999px) {
    .entry-content h1 {
      font-size: 5vw;
      margin-bottom: 3.33vw;
    }
  }
 
.entry-content h2 {
  font-size: 2.2rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
  @media screen and (max-width: 999px) {
    .entry-content h2 {
      font-size: 4.8vw;
      margin-bottom: 3.33vw;
    }
  }

.entry-content h3 {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
  @media screen and (max-width: 999px) {
    .entry-content h3 {
      font-size: 4.6vw;
      margin-bottom: 3vw;
    }
  }

.entry-content h4 {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
  @media screen and (max-width: 999px) {
    .entry-content h4 {
      font-size: 4.4vw;
      margin-bottom: 3vw;
    }
  }

.entry-content h5 {
  font-size: 1.7rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
  @media screen and (max-width: 999px) {
    .entry-content h5 {
      font-size: 4.2vw;
      margin-bottom: 3vw;
    }
  }

.entry-content h6 {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
  @media screen and (max-width: 999px) {
    .entry-content h6 {
      font-size: 4vw;
      margin-bottom: 3vw;
    }
  }

.entry-content p {
  margin-bottom: 20px;
}
  @media screen and (max-width: 999px) {
    .entry-content p {
      margin-bottom: 4vw;
    }
  }

.entry-content p a {
  text-decoration: none;
  color: #2d2d2d;
}
.entry-content p a:hover {
  color: #0011CC;
}

.entry-content img {
  margin-bottom: 20px;
}
  @media screen and (max-width: 999px) {
    .entry-content img {
      margin-bottom: 4vw;
    }
  }

.entry-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}
.entry-content ul li {
  list-style-type: disc;
}
.entry-content ul li ul {
  margin-bottom: 10px;
  font-size: 93%;
}
.entry-content ul li ul li {
  list-style-type:circle;
}
  @media screen and (max-width: 999px) {
    .entry-content ul {
      margin-bottom: 4vw;
      padding-left: 5.4vw;
    }
    .entry-content ul li ul {
      margin-bottom: 2vw;
    }
  }

.entry-content ol {
  counter-reset: section;
  margin-bottom: 20px;
}
.entry-content ol li {
  list-style: none;
}
.entry-content ol > li:before {
  content : counters(section, '-') '. ';
  counter-increment : section;
}
.entry-content ol li ol {
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 93%;
}
  @media screen and (max-width: 999px) {
    .entry-content ol {
      margin-bottom: 4vw;
    }
    .entry-content ol li ol {
      padding-left: 5.4vw;
      margin-bottom: 2vw;
    }
  }

.entry-content table {
  width:100%;
  margin:0 0 20px 0;
}
.entry-content th {
  text-align: left;
  padding:7px 10px;
  border:solid 1px #eee;
}
.entry-content td {
  padding:7px 10px;
  border:solid 1px #eee;
}
  @media screen and (max-width: 999px) {
    .entry-content table {
      margin:0 0 4vw 0;
      font-size: 93%;
    }
    .entry-content th {
      padding:2vw;
    }
    .entry-content td {
      padding:2vw;
    }
  }

.entry-content table img {
  margin-bottom: 0;
}

.entry-content blockquote {
  position: relative;
  border: solid 3px #d7d7d7;
  padding: 20px 20px 20px 50px;
  margin-bottom: 20px;
}
.entry-content blockquote::before {
  position: absolute;
  left: 18px;
  top: 20px;
  content: "“";
  line-height: 1;
  font-size: 5rem;
  color: #d7d7d7;
}
  @media screen and (max-width: 999px) {
    .entry-content blockquote {
      border: solid 3px #d7d7d7;
      padding: 4vw 3.33vw 4vw 9.33vw;
      margin-bottom: 5vw;
    }
    .entry-content blockquote::before {
      left: 2vw;
      top: 4vw;
      font-size: 12.33vw;
    }
  }

.entry-content u {
  text-decoration: underline;
}

.entry-content .wp-caption.alignright {
  margin-left: 25px;
}
.entry-content .wp-caption.alignleft {
  margin-right: 25px;
}
  @media screen and (max-width: 999px) {
    .entry-content .wp-caption {
      width: 100%!important;
      float: none!important;
      margin: 0 0 5vw 0!important;
    }
  }

.entry-content .wp-caption img {
  margin-bottom: 5px;
}
.entry-content .wp-caption p {
  font-size: 90%;
  color: #757575;
  font-style: italic;
}
  @media screen and (max-width: 999px) {
    .entry-content .wp-caption img {
      margin-bottom: 2vw;
    }
  }

/*ページ分割ナビ*/
.wp-pagenavi {
  padding: 50px 0 0 0;
  text-align: center;
  overflow: hidden;
}
.wp-pagenavi a, .wp-pagenavi span {
  display: inline-block;
  width: 40px;
  line-height: 40px;
  background: #fff;
  color: #EC6C0E;
  margin: 0 2px 10px 2px;
  text-decoration: none;
  font-size: 1.8rem;
}
.wp-pagenavi span {
  background: #EC6C0E;
  color: #fff;
}
.wp-pagenavi a:hover {
  background: #EC6C0E;
  color: #fff;
}
.wp-pagenavi .first, .wp-pagenavi .last {
  line-height: 1;
  width: auto;
  border: none;
  background: none;
}
.wp-pagenavi .first:hover, .wp-pagenavi .last:hover {
  border: none;
  color: #EC6C0E;
  background: none;
  text-decoration: underline;
}
.wp-pagenavi .extend {
  line-height: 1;
  width: auto;
  border: none;
  color: #323232;
  background: none;
}
  @media screen and (max-width: 999px) {
    .wp-pagenavi {
      padding: 8vw 0 0 0;
    }
    .wp-pagenavi a, .wp-pagenavi span {
      width: 9vw;
      line-height: 9vw;
      margin: 0 0.53vw 2.66vw 0.53vw;
      font-size: 4.26vw;
    }
  }

/*記事詳細ナビ*/
.wp-detailnavi {
  position: relative;
  padding: 50px 0 0 0;
  text-align: center;
}
.wp-detailnavi a {
  display: block;
  text-decoration: none;
  color: #000;
  border: solid 1px #000;
  line-height: 40px;
  padding: 5px;
}
.wp-detailnavi a:hover {
  color: #fff;
  background: #000;
}
.prev_link {
  width: 33%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.next_link {
  width: 33%;
  position: absolute;
  right: 0;
  bottom: 0;
}
.list_link {
  width: 34%;
  margin: 0 auto;
}
.list_link a {
  color: #fff;
  background: #000;
}
  @media screen and (max-width: 999px) {
    .wp-detailnavi {
      padding-top: 8vw;
    }
    .wp-detailnavi a {
      line-height: 9.33vw;
    }
    .prev_link {
      width: calc(32% - 1px);
    }
    .next_link {
      width: calc(32% - 1px);
    }
    .list_link {
      width: 36%;
    }
  }

/*----------------------------------------------------
  404 Not Found
--------------------------------------------------- */
#notfound {
  padding-bottom: 60px;
}
#notfound p {
  padding-bottom: 20px;
}
#notfound .btn01 {
  margin-top: 40px;
}
  @media screen and (max-width: 999px) {
    #notfound {
      padding-bottom: 10.66vw;
    }
    #notfound p {
      padding-bottom: 4vw;
    }
    #notfound .btn01 {
      margin-top: 6.66vw;
    }
  }
