@charset "utf-8";

/*================================

　ここから全サイズ適用

================================*/

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 1.6em;
  text-align: justify;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #333;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #222;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:active {
  color: #999;
  text-decoration: none;
}

p {
  line-height: 2;
  letter-spacing: 0.1rem;
}

/* -----font----- */
/* @font-face {
	font-family: "KiwiMaru";
	src: url(/common/font/KiwiMaru-Regular.woff2) format("eot"), url(/common/font/KiwiMaru-Regular.woff2) format("woff");
} */

.kiwimaru {
  /* font-family: "KiwiMaru";
	font-display: swap; */
  font-family: "Kiwi Maru", serif;
}

/* -----ページ内リンク位置調整----- */
.anchor-link {
  display: block;
  padding-top: 60px;
  margin-top: -60px;
}

.body__inner {
  padding: 0 90px;
}

/*=======================
 header
========================*/
.header__left {
  position: fixed;
  top: 0;
  width: 90px;
  height: 100%;
  background: #1a2959;
  z-index: 5;
  text-align: center;
}

.header__right {
  position: fixed;
  right: 0;
  width: 90px;
  height: 100%;
  background: #898989;
  z-index: 10;
}

.header__logo {
  position: fixed;
  top: 0;
  left: 0;
}

.header__right-list {
  position: relative;
}
.header__right-list-item {
  width: 90px;
  height: 90px;
}
.header__right-list-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.header__right-list-item span {
  margin: auto;
}
.header__right-list-item.-web {
  background: #c8a359;
}
.header__right-list-link.-web {
  color: #fff;
  text-align: center;
  justify-content: center;
}

.header__right-list-item.-hours {
  background: #fff;
}
.header__right-list-link.-hours {
  color: #1a2959;
}

.copyright {
  color: #fff;
  font-size: 14px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin: 200px auto 0;
  display: inline-block;
}

/*=======================
  drawer-menu
========================*/

.drawer-menu__nav {
  position: fixed;
  top: 0;
  right: 0;
  padding: 150px 0 0;
  width: 35%;
  height: 100%;
  background: #fff;
  /* overflow: auto; */
  overflow-x: hidden;
  overflow-y: auto;
  transform: translateZ(0);
  transform: translateX(100%);
  -webkit-overflow-scrolling: touch;
  transition: all 0.3s;
  z-index: -1;
}

.drawer-menu__open .drawer-menu__nav {
  right: 90px;
}

.drawer-menu__open .drawer-menu__nav {
  transform: translateX(0);
}

.drawer-menu__link {
  transform: translateZ(0);
}

.drawer-menu__open .drawer-menu__link {
  animation: slide-link 0.4s 0.2s backwards;
}

.drawer-menu__open .drawer-menu__item:nth-of-type(2) .drawer-menu__link {
  animation-delay: 0.3s;
}

.drawer-menu__open .drawer-menu__item:nth-of-type(3) .drawer-menu__link {
  animation-delay: 0.4s;
}

.drawer-menu__open .drawer-menu__item:nth-of-type(4) .drawer-menu__link {
  animation-delay: 0.5s;
}

.drawer-menu__open .drawer-menu__item:nth-of-type(5) .drawer-menu__link {
  animation-delay: 0.6s;
}

@keyframes slide-link {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.drawer-menu__item {
  position: relative;
  margin: 0;
}

.drawer-menu__item.-logo {
  margin-bottom: 40px;
}

.drawer-menu__link {
  position: relative;
  display: block;
  padding: 20px 100px;
  transition-duration: 0.2s;
}

.drawer-menu__jp-label {
  font-size: 22px;
  color: #333;
  display: block;
}
.drawer-menu__en-label {
  font-size: 14px;
  color: #1a2959;
  display: block;
}

.drawer-menu__link:after {
  border-right: 2px solid #c8a359;
  border-top: 2px solid #c8a359;
  bottom: 0;
  content: "";
  display: inline-block;
  height: max(8px, 0.5em);
  margin: auto 0;
  position: absolute;
  right: 40px;
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: max(8px, 0.5em);
}

.drawer-menu__link:hover {
  background: #e4e4e4;
}

.drawer-menu__logo {
  text-align: center;
  margin-bottom: 20px;
}
.drawer-menu__logo-link {
  display: inline-block;
}

/* -----toggle-btn----- */

.toggle-btn__wrapper {
  background: #1a2959;
  width: 90px;
  height: 90px;
}
.toggle-btn {
  display: block;
  position: fixed;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 999;
}
.toggle-btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: #fff;
  border-radius: 4px;
  transition: all 0.5s;
}
.toggle-btn span:nth-child(1) {
  top: 4px;
}
.toggle-btn span:nth-child(2) {
  top: 14px;
}
.toggle-btn span:nth-child(3) {
  bottom: 4px;
}
.drawer-menu__open .toggle-btn span {
  background-color: #fff;
}
.drawer-menu__open .toggle-btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.drawer-menu__open .toggle-btn span:nth-child(2) {
  opacity: 0;
}
.drawer-menu__open .toggle-btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}

/* -----drawer-menu__mask----- */
.drawer-menu__mask {
  opacity: 0.5;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: -2;
}

.drawer-menu__open .drawer-menu__mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  visibility: visible;
}

/* -----診療内容サブメニュー----- */
.drawer-menu__sub {
  text-align: left;
  height: auto;
}

.drawer-menu__sub-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 50px 0 100px;
}

.drawer-menu__sub-item {
  width: 45%;
  margin-bottom: 10px;
  position: relative;
}

.drawer-menu__sub-item:hover {
  background: #e4e4e4;
}

.drawer-menu__sub-item a {
  font-size: 16px;
  position: relative;
  width: 100%;
  display: inline-block;
  padding: 10px;
}

.drawer-menu__sub-item:after {
  border-right: 2px solid #1a2959;
  border-top: 2px solid #1a2959;
  bottom: 0;
  content: "";
  display: inline-block;
  height: max(8px, 0.5em);
  margin: auto 0;
  position: absolute;
  right: 10px;
  top: 0;
  transform: rotate(45deg);
  width: max(8px, 0.5em);
}

.acd-label {
  display: block;
}

.acd-content {
  height: 0;
  opacity: 0;
  transition: 0.5s;
  visibility: hidden;
}

.acd-check:checked + .acd-label + .acd-content {
  height: 100%;
  opacity: 1;
  padding: 10px;
  visibility: visible;
}

.acd-check {
  display: none;
}

/*=======================
  footer
========================*/

.footer__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
}
.footer__information {
  text-align: center;
  margin-right: 40px;
}

.footer__logo-icon img {
  display: inline-block;
  margin-bottom: 10px;
}
.footer__logo-text {
  font-size: 36px;
  margin-bottom: 30px;
  line-height: 1;
}

.footer__access {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 30px;
}

a.footer__telephone-link {
  display: inline-block;
  font-size: 24px;
  margin-bottom: 30px;
  line-height: 1;
}

div.footer__web-reservation-link {
  display: inline-block;
  font-size: 24px;
  color: #fff;
  padding: 10px 80px;
  background: #1a2959;
  border: 1px solid #1a2959;
  margin-bottom: 20px;
  transition: 500ms ease all;
}
div.footer__web-reservation-link:hover {
  background: #fff;
  color: #1a2959;
}

.footer__onlineinsurancecard img {
  margin-left: auto;
  margin-right: auto;
}

.googlemap {
  line-height: 1;
}
.footer__calendar {
  flex: none;
}

/* -----news----- */
.news {
  border: 1px solid #1a2959;
  padding: 40px;
  width: calc(100% / 2 - 20px);
}
.news__heading {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
}
.news__heading:after {
  content: "";
  width: 70px;
  height: 1px;
  display: block;
  background: #333;
}
.news__heading-jp {
  margin-right: 10px;
}
.news__heading-en {
  color: #758ba1;
}

/* -----地域情報----- */

.eria {
  background: #647c94;
}
.eria__inner {
  background: url(./../../topimg/eria_bg.png?202101) no-repeat right top /
    contain;
}
.eria-content {
  max-width: 1100px;
  margin: 0 90px;
  color: #fff;
  padding: 40px 40px 40px 60px;
}

.eria__heading {
  font-size: 18px;
  padding-bottom: 5px;
  margin-bottom: 20px;
  border-bottom: 1px solid #fff;
}

.eria__paragraph {
  font-size: 14px;
}

.copyright__sp {
  display: none;
}

/* -----ページTOPへ戻る----- */
.pagetop {
  background: url(./../img/pagetop.jpg) no-repeat center / contain;
  width: 51px;
  height: 51px;
  position: fixed;
  z-index: 9999;
  right: 20px;
  bottom: 20px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media screen and (max-width: 1200px) {
  .body__inner {
    padding: 0;
  }

  /*=======================
	  drawer-menu
	========================*/
  .drawer-menu__open .drawer-menu__nav {
    right: 0;
  }
  .drawer-menu__nav {
    width: 60%;
  }

  /*=======================
    header
  ========================*/

  .header__left {
    position: relative;
  }

  .header__right {
    width: auto;
    height: auto;
    background: none;
  }
  .header__right-list {
    position: absolute;
    top: 0;
    right: 90px;
    display: flex;
  }
  /* -----copyright----- */
  .copyright {
    display: none;
  }
  .copyright__sp {
    display: block;
    font-size: 14px;
    color: #fff;
    padding: 10px 20px;
    background: #1a2959;
    text-align: center;
  }
}

@media screen and (max-width: 1024px) {
  /*=======================
    header
  ========================*/

  .header__logo {
    position: absolute;
  }
  .header__left {
    position: relative;
    width: 120px;
  }

  /*=======================
	  drawer-menu
	========================*/

  /*=======================
	  footer
	========================*/

  .footer__inner {
    padding: 0 40px;
  }

  div.footer__web-reservation-link {
    padding: 10px 40px;
  }

  .eria-content {
    margin: 0;
  }
}

/*================================

　ここからPC適用

================================*/
@media screen and (min-width: 897px) {
  .pc-none {
    display: none !important;
  }

  .pcTab-none {
    display: none !important;
  }

  /*=======================
  footer
  ========================*/
  .footer__onlineinsurancecard {
    max-width: 93%;
    margin-left: auto;
    margin-right: auto;
  }
}

/*================================

　ここからTABLET・SP適用

================================*/
@media screen and (max-width: 896px) {
  .tabSp-none {
    display: none !important;
  }

  .header__right-list-link {
    font-size: 14px;
  }

  .header__right-list-item.-telphone-sp {
    background: #647c94;
    width: 120px;
    height: 90px;
  }

  .header__right-list-link.-telphone {
    color: #fff;
  }

  .header__right-list-link.-telphone span:before {
    content: "";
    background: url(./../img/header_telphone_sp.svg) no-repeat center left /
      contain;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 3px;
    margin-left: 4px;
  }

  .drawer-menu__nav {
    width: 80%;
  }
  /*=======================
	  footer
	========================*/

  .footer-content {
    flex-direction: column;
  }

  .footer__information {
    margin-right: 0;
    margin-bottom: 40px;
  }

  .footer__calendar {
    text-align: center;
    margin: 0 auto;
  }

  .news {
    padding: 40px;
    width: 100%;
    margin-bottom: 40px;
  }

  /* -----地域情報----- */
  .eria__inner {
    background: url(./../../topimg/eria_bg.png?202101) no-repeat right bottom /
      contain;
  }
}
/*================================

　ここからTABLETのみ適用
　※この中には基本的に書き込まないでください

================================*/
@media (max-width: 896px) and (min-width: 481px) {
  .pcTab-none {
    display: none !important;
  }
  .tab-none {
    display: none !important;
  }
}
/*================================

　ここからSP適用

================================*/
@media screen and (max-width: 480px) {
  .tabSp-none {
    display: none !important;
  }

  .sp-none {
    display: none !important;
  }

  p {
    font-size: 14px;
  }

  .header__right-list-link {
    font-size: 12px;
  }
  .header__logo {
    width: 90px;
  }
  .header__right-list {
    right: 60px;
  }

  .header__right-list-item {
    width: 60px;
    height: 60px;
  }

  .header__right-list-item.-telphone-sp {
    background: #647c94;
    width: 80px;
    height: 60px;
  }

  .header__right-list-link.-telphone {
    color: #fff;
  }

  .header__right-list-link.-telphone span:before {
    content: "";
    background: url(./../img/header_telphone_sp.svg) no-repeat center left /
      contain;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 3px;
    margin-left: 4px;
  }

  /*=======================
	  drawer-menu
	========================*/
  .toggle-btn__wrapper {
    background: #1a2959;
    width: 60px;
    height: 60px;
  }

  .toggle-btn {
    top: 15px;
    right: 15px;
    width: 25px;
  }
  .toggle-btn span {
    width: 25px;
  }
  .drawer-menu__nav {
    width: 80%;
    padding-top: 80px;
  }
  .drawer-menu__nav {
    width: 80%;
    padding-top: 80px;
  }

  .drawer-menu__logo img {
    width: 80px;
  }
  .drawer-menu__link {
    padding: 10px 30px;
  }
  .drawer-menu__jp-label {
    font-size: 16px;
  }
  .drawer-menu__en-label {
    font-size: 12px;
  }

  .drawer-menu__sub-list {
    padding: 0 0 0 20px;
  }
  .drawer-menu__sub-item a {
    font-size: 14px;
    padding: 5px;
  }
  .drawer-menu__sub-item {
    width: 49%;
  }
  /*=======================
  footer
========================*/
  .footer__inner {
    padding: 0 20px;
  }
  .footer__logo-text {
    font-size: 22px;
  }
  .footer__logo-icon img {
    width: 80px;
  }

  .footer__access {
    font-size: 16px;
  }

  div.footer__web-reservation-link {
    font-size: 16px;
  }

  .footer__calendar {
    width: 100%;
  }
  .footer__calendar iframe {
    width: 100%;
    height: 400px;
  }

  .googlemap iframe {
    height: 350px;
  }

  .footer-content {
    padding-bottom: 60px;
  }
  .news {
    padding: 40px 20px;
  }

  .copyright__sp {
    font-size: 12px;
  }

  /* -----ページTOPへ戻る----- */
  .pagetop {
    width: 41px;
    height: 41px;
    right: 10px;
    bottom: 20px;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  /* -----地域情報----- */
  .eria-content {
    padding: 40px 20px 60px;
  }
  .eria__inner {
    background: url(./../../topimg/eria_bg.png?202101) no-repeat right bottom /
      contain;
  }
  .eria__paragraph {
    font-size: 12px;
  }
}

@media screen and (max-width: 320px) {
}

/* -----予約フォームできたら消す----- */
.header__right-list-item.-web {
  position: relative;
}
.dummy-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  padding-top: 30px;
  color: #fff;
  text-align: center;
}
.footer__web-reservation-link {
  position: relative;
}
.dummy-text02 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  padding-top: 5px;
  color: #fff;
  text-align: center;
}

div.footer__web-reservation-link:hover {
  background: #1a2959;
  color: #fff;
}

.open {
  cursor: pointer;
  /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}

.checkbox {
  display: none;
  /* label でコントロールするので input は非表示に */
}

.overlay {
  display: none;
  /* input にチェックが入るまでは非表示に */
}

.checkbox:checked + .overlay {
  display: block;
  z-index: 9999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}

.window {
  width: 90vw;
  /* max-width: 600px; */
  height: 90vh;
  background-color: #ffffff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close {
  cursor: pointer;
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 40px;
  padding: 0px 20px;
  background: #1a2959;
}

.window .link_bg {
  background: #e4d2ae;
  padding: 30px 10px;
  color: #1a2959;
  width: 100%;
  text-align: left;
}
.window .link_bg a {
  text-align: center;
  display: block;
  color: #1a2959;
  font-weight: 500;
  font-size: 24px;
}
.window .link_bg p {
  max-width: 610px;
  margin: 0 auto 20px;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 24px;
}

.window .link_bg span {
  border-bottom: solid #f00;
}

.window .link_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: #1a2959;
  font-family: "Kiwi Maru", serif;
}

.window .link_flex p {
  color: #1a2959;
  font-weight: 500;
  font-size: 24px;
  font-family: "Kiwi Maru", serif;
}

.window div.footer__web-reservation-link {
  width: 50%;
}

.window div.footer__web-reservation-link a {
  color: #fff;
  display: block;
}

@media screen and (max-width: 480px) {
  .window .link_bg a {
    text-align: center;
  }
  .window .link_bg {
    text-align: left;
    margin-bottom: 20px;
  }

  .window .link_bg p {
    font-size: 18px;
  }

  .close {
    font-size: 20px;
    padding: 5px 10px;
  }

  .window div.footer__web-reservation-link {
    width: 100%;
  }
}

/* -----/予約フォームできたら消す----- */
