@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  common

---------------------------------*/
body {}
#content {
  margin-left: auto;
  width: calc(100% - var(--nav-width));
}
:root {
  --col-bl: #20A7DF; /* #1ea0d0 #297bc1 */
  --col-ye: #DCB84D; /* #daa33f */
  --col-re: #e93e40;
  --col-gb: #eef3ee;
  --nav-width: 18rem;
  --toggle-height: 11rem;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1024px) {
  :root {
    --nav-width: 15rem;
    --toggle-height: 9rem;
  }
}
@media screen and (max-width: 896px) {
  :root {
    --nav-width: 11rem;
    --toggle-height: 7rem;
  }
}
@media screen and (max-width: 480px) {
  #content {
    width: 100%;
  }
  :root {
    --nav-width: 6rem;
    --toggle-height: 6rem;
  }
}
/*---------------------------------

  header

---------------------------------*/
header {
  padding-left: var(--nav-width);
}
header #logo {
  padding: 2rem 2.5%;
  pointer-events: none;
  position: fixed;
  top: 0;
  right: 0;
  width: calc(100% - var(--nav-width));
  z-index: 99;
}
header #logo::after {
  content: '';
  background: url("../images/data.svg") no-repeat top -8rem right 9.5rem/contain;
  transform: scale(-1, 1);
  position: absolute;
  top: 0;
  right: 0;
  width: 50rem;
  height: 35rem;
  z-index: 10;
}
header #logo h1 {
  max-width: 40rem;
  width: 100%;
}
header #logo a {
  display: block;
  pointer-events: auto;
}
header #logo img {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1024px) {
  header #logo {
    padding: 1rem 2.5%;
  }
  header #logo::after {
    background-position: top -8rem right 9.5rem;
    width: 40rem;
    height: 25rem;
  }
  header #logo h1 {
    max-width: 30rem;
  }
}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  header #logo h1 {
    max-width: 26rem;
    position: relative;
    z-index: 11;
  }
  header #logo::after {
    width: 35rem;
    height: 20rem;
  }
}
/*---------------------------------
  グローバルナビゲーション（横固定）
---------------------------------*/
header #mainGnav {
  background: var(--col-bl);
  padding-top: var(--toggle-height);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: var(--nav-width);
  z-index: 99;
}
header #mainGnav nav {
  border-top: 1px dotted var(--col-gb);
  height: calc(100vh - var(--toggle-height));
  overflow-x: auto;
}
header #mainGnav ul {
  display: grid;
  gap: 4rem;
  text-align: center;
  padding: 3rem 2rem;
}
header #mainGnav ul li {}
header #mainGnav ul li a {
  color: #fff;
  display: block;
  font-weight: 600;
}
header #mainGnav ul li:not(._contact) a span {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
}
header #mainGnav ul li:not(._contact) a span._icon {
  margin: auto;
  width: 4rem;
  height: 4rem;
  position: relative;
  transition-duration: .4s;
}
header #mainGnav ul li:not(._contact) a span._ttl {
  margin-top: 1rem;
}
header #mainGnav ul li:not(._contact) a span._icon._home {
  background-image: url("../images/menu_icon_home.svg");
}
header #mainGnav ul li:not(._contact) a span._icon._first {
  background-image: url("../images/menu_icon_first.svg");
}
header #mainGnav ul li:not(._contact) a span._icon._about {
  background-image: url("../images/menu_icon_clinic.svg");
}
header #mainGnav ul li:not(._contact) a span._icon._medical {
  background-image: url("../images/menu_icon_medical.svg");
}
header #mainGnav ul li:not(._contact) a span._icon._access {
  background-image: url("../images/menu_icon_access.svg");
}
header #mainGnav ul li:not(._contact) a span._icon::after {
  background: #4A96D8;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity .5s, transform 0s;
  transition-delay: 0s, .3s;
}
header #mainGnav ul li:not(._contact) a:hover {
  color: #FFE536;
}
header #mainGnav ul li:not(._contact) a:hover span._icon::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.5);
  transition-delay: 0s;
  transition: opacity .8s, transform .6s ease-in-out;
}
header #mainGnav ul li._contact {
  border: 1px solid;
  color: #fff;
  cursor: pointer;
  font-size: .9em;
  padding: .5rem;
}
header #mainGnav ul li._contact span {
  background: url("../images/i_tel.svg") no-repeat center left/1.5rem;
  display: block;
  padding-left: 1.7rem;
}
@media screen and (max-width: 1440px) {
  header #mainGnav ul {
    gap: 2rem;
    font-size: 1.6rem;
    padding: 2rem 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  header #mainGnav ul {}
}
@media screen and (max-width: 896px) {
  header #mainGnav ul li:not(._contact) a span._icon {
    width: 3rem;
    height: 3rem;
  }
  header #mainGnav ul li:not(._contact) a span._ttl {
    font-size: .8em;
    margin-top: .5rem;
  }
}
@media screen and (max-width: 480px) {}
/*---------------------------------
  お問い合わせ　モーダル
---------------------------------*/
#contact {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  width: calc(100% - var(--nav-width));
  height: 100%;
  pointer-events: none;
}
#contact > div {
  display: none;
  pointer-events: auto;
}
#contact .con_overlay {
  background: rgba(0, 0, 0, 0.50);
  -webkit-backdrop-filter: blur(10px); /* ぼかしエフェクト */
  backdrop-filter: blur(10px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
#contact .conBox {
  background: #fff;
  border-radius: 2rem;
  max-width: 65rem;
  height: fit-content;
  width: 90%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#contact .conBox .con_colse {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 5rem;
  height: 5rem;
}
#contact .conBox .con_colse::before, #contact .conBox .con_colse::after {
  content: '';
  background: #aaa;
  border-radius: 1rem;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 1.5em;
  height: 0.1em;
}
#contact .conBox .con_colse::before {
  transform: rotate(-45deg);
}
#contact .conBox .con_colse::after {
  transform: rotate(45deg);
}
#contact .conBox .inner {
  margin: auto;
  max-width: fit-content;
  padding: 8rem;
}
#contact .conBox .inner > p {
  border: 1px solid;
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 3rem;
  padding: .5rem;
  text-align: center;
}
#contact .conBox dl {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 1rem 0;
}
#contact .conBox dl dt {
  background: var(--col-re);
  border-radius: 2rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  width: 8rem;
}
#contact .conBox dl dd {
  font-size: 2.3rem;
  font-weight: 700;
}
#contact .conBox dl dd a {
  color: #333;
  display: inline-block;
  font-size: 3.5rem;
  line-height: 1;
  pointer-events: none;
}
#contact .conBox dl dd span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  #contact .conBox dl dd a {
    pointer-events: auto;
  }
}
/*---------------------------------
  トグルメニュー
---------------------------------*/
#gnav::before {
  content: '';
  background: var(--col-bl);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: var(--nav-width);
  height: 100%;
  z-index: 9991;
}
#gnav.content-open::before {
  display: block;
}
.navToggle {
  background: var(--col-bl);
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: block;
  width: var(--nav-width);
  height: var(--toggle-height);
  -moz-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  text-align: center;
}
.navToggle::after {
  content: 'MENU';
  font-size: 1rem;
  line-height: 1;
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  margin: auto;
}
.navToggle span {
  background: #fff;
  display: block;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  width: 30px;
  height: 2px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.navToggle span:nth-of-type(1) {
  top: 40px;
}
.navToggle span:nth-of-type(2) {
  top: 50px;
}
.navToggle span:nth-of-type(3) {
  top: 60px;
}
.navToggle.active::after {
  content: 'CLOSE';
}
.navToggle.active span:nth-of-type(1) {
  display: none;
}
.navToggle.active span:nth-of-type(2) {
  -moz-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  top: 50px;
  right: 0;
}
.navToggle.active span:nth-of-type(3) {
  -moz-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 50px;
  right: 0;
}
header .overlay {
  background: rgba(0, 0, 0, 0.50);
  -webkit-backdrop-filter: blur(10px); /* ぼかしエフェクト */
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh);
  display: none;
  z-index: 100;
}
header .overlay.active {
  display: block;
  animation-name: fade-in;
  animation-duration: .5s;
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.panelactive {
  transform: translate(0);
  left: var(--nav-width);
}
nav.globalMenuSp {
  background: #fff;
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0%;
  max-width: 75rem;
  width: 90%;
  height: calc(100vh);
  transform: translate(-75rem);
  transition: all 0.6s;
  padding: 3rem 2.5%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
nav.globalMenuSp::-webkit-scrollbar {
  display: none;
}
header #gnav {}
header #gnav ul {
  margin-bottom: 2rem;
}
header #gnav ul li:not(:last-child) {
  border-bottom: 1px solid #e8efea;
}
header #gnav ul li a {
  color: var(--col-bl);
  display: flex;
  gap: 3rem;
  font-weight: 600;
  padding: 2rem 0;
}
header #gnav ul li a span {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
}
header #gnav ul li a span._icon {
  width: 6rem;
  height: 6rem;
}
header #gnav ul li a span._icon._home {
  background-image: url("../images/gnav_icon_home.svg");
}
header #gnav ul li a span._icon._first {
  background-image: url("../images/gnav_icon_first.svg");
}
header #gnav ul li a span._icon._about {
  background-image: url("../images/gnav_icon_clinic.svg");
}
header #gnav ul li a span._icon._medical {
  background-image: url("../images/gnav_icon_medical.svg");
}
header #gnav ul li a span._icon._access {
  background-image: url("../images/gnav_icon_access.svg");
}
header #gnav ul li a ._ttl {
  font-size: 1.2em;
  margin-top: .5rem;
}
header #gnav ul li a ._ttl span {
  color: #666;
  display: block;
  font-size: .7em;
  letter-spacing: 3px;
  text-transform: uppercase;
}
header #gnav ul li.dropdownmenu {
  position: relative;
}
header #gnav ul li.dropdownmenu a {}
header #gnav ul li.dropdownmenu .__childBtn {
  aspect-ratio: 1;
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
  height: 103px;
  cursor: pointer;
}
header #gnav ul li.dropdownmenu .__childBtn::before, header #gnav ul li.dropdownmenu .__childBtn::after {
  background: #6da9ca;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 1.5em;
  height: 0.1em;
  border-radius: 0.1em;
  transition: all .3s;
}
header #gnav ul li.dropdownmenu .__childBtn::before {}
header #gnav ul li.dropdownmenu .__childBtn::after {
  transform: rotate(90deg);
}
header #gnav ul li.dropdownmenu .__childBtn.active::before {
  opacity: 0;
}
header #gnav ul li.dropdownmenu .__childBtn.active::after {
  transform: rotate(360deg);
}
header #gnav ul li.dropdownmenu .__childMenu {
  display: none;
  background: #6da9ca;
  margin: 0;
  padding: 2rem 2rem;
}
header #gnav ul li.dropdownmenu .__childMenu li {
  border-color: #B7D5E4;
}
header #gnav ul li.dropdownmenu .__childMenu li a {
  color: #fff;
  padding: 1.5rem 1rem;
}
header #gnav ul li.dropdownmenu .__childMenu li a:hover {
  background: #6398B5;
}
header #gnav ._schedule {
  max-width: 55rem;
}
header #gnav ._schedule figure {
  margin-bottom: 1rem;
}
header #gnav ._schedule p {
  font-size: .8em;
  text-indent: -1em;
  margin-left: 1em;
}
header #gnav ._info {
  margin-top: 3rem;
}
header #gnav ._info dl {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 1rem 0;
}
header #gnav ._info dl dt {
  background: var(--col-re);
  border-radius: 2rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  width: 8rem;
}
header #gnav ._info dl dd {
  font-size: 2.3rem;
  font-weight: 700;
}
header #gnav ._info dl dd a {
  color: #333;
  display: inline-block;
  font-size: 3.5rem;
  line-height: 1;
  pointer-events: none;
}
header #gnav ._info dl dd span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1024px) {
  .navToggle span:nth-of-type(1) {
    top: 30px;
  }
  .navToggle span:nth-of-type(2) {
    top: 40px;
  }
  .navToggle span:nth-of-type(3) {
    top: 50px;
  }
  .navToggle.active span:nth-of-type(2), .navToggle.active span:nth-of-type(3) {
    top: 40px;
  }
  .navToggle::after {
    bottom: 2rem;
  }
  nav.globalMenuSp {
    max-width: 60rem;
  }
}
@media screen and (max-width: 896px) {
  .navToggle span:nth-of-type(1) {
    top: 20px;
  }
  .navToggle span:nth-of-type(2) {
    top: 30px;
  }
  .navToggle span:nth-of-type(3) {
    top: 40px;
  }
  .navToggle.active span:nth-of-type(2), .navToggle.active span:nth-of-type(3) {
    top: 30px;
  }
  .navToggle::after {
    bottom: 1rem;
  }
  nav.globalMenuSp {
    max-width: 50rem;
  }
}
@media screen and (max-width: 480px) {
  header #mainGnav {
    display: none;
  }
  #gnav::before {
    content: none;
  }
  .navToggle span:nth-of-type(1) {
    top: 10px;
  }
  .navToggle span:nth-of-type(2) {
    top: 20px;
  }
  .navToggle span:nth-of-type(3) {
    top: 30px;
  }
  .navToggle.active span:nth-of-type(2), .navToggle.active span:nth-of-type(3) {
    top: 20px;
  }
  nav.globalMenuSp {
    padding: 6rem 5%;
  }
  nav.globalMenuSp.panelactive {
    transform: translate(0);
    left: 0;
  }
  header #gnav ul li.dropdownmenu .__childBtn {
    aspect-ratio: 0.8;
  }
  header #gnav ul li.dropdownmenu .__childMenu {
    padding: 1rem 1rem;
  }
  header #gnav ._info dl dd a {
    pointer-events: auto;
  }
}
/*---------------------------------

	access

---------------------------------*/
#access {
  position: relative;
}
#access iframe {
  width: 100%;
  height: 60rem;
  vertical-align: bottom;
}
#access ._infoBox {
  background: var(--col-bl);
  color: #fff;
  padding: 3rem 5rem;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 896px) {
  #access iframe {
    height: 50rem;
  }
}
@media screen and (max-width: 480px) {
  #access iframe {
    height: 45rem;
  }
}
/*---------------------------------

	footer

---------------------------------*/
footer {
  background: #fff;
  padding: 7rem 0;
}
footer .l-inner {
  max-width: 120rem;
  margin: auto;
  width: 90%;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 7rem;
}
footer ._info {}
footer ._info .logo {}
footer ._info .logo img {
  width: 100%;
  vertical-align: bottom;
}
footer ._info address {
  font-style: normal;
  font-weight: 500;
  margin: 2rem 0;
}
footer ._info dl {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 1rem 0;
}
footer ._info dl dt {
  background: var(--col-re);
  border-radius: 2rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  width: 8rem;
}
footer ._info dl dd {
  font-size: 2.3rem;
  font-weight: 700;
}
footer ._info dl dd a {
  color: #333;
  display: inline-block;
  font-size: 3.5rem;
  line-height: 1;
  pointer-events: none;
}
footer ._info dl dd span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
}
footer ._schedule {
  flex-basis: 60rem;
}
footer ._schedule .table {
  margin-bottom: 1.5rem;
}
footer ._schedule .table img {
  width: 100%;
  vertical-align: bottom;
}
footer ._schedule .aside p {
  font-size: .9em;
  text-indent: -1em;
  margin-left: 1em;
}
footer .copylight {
  font-size: .8em;
  margin: auto;
  margin-top: 7rem;
  text-align: center;
  width: 90%;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  footer .wrap {
    flex-direction: column;
    gap: 3rem;
  }
  footer ._info {
    margin: auto;
  }
  footer ._info .logo {
    max-width: 40rem;
  }
  footer ._schedule {
    flex-basis: auto;
    margin: auto;
    max-width: 50rem;
  }
}
@media screen and (max-width: 480px) {
  footer ._info dl dd a {
    pointer-events: auto;
  }
}
/*---------------------------------

	pagetop

---------------------------------*/
#page-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
}
#page-top a {
  background: var(--col-re);
  text-decoration: none;
  color: #fff;
  width: 5rem;
  height: 5rem;
  text-align: center;
  display: block;
  border-radius: 50%;
  position: relative;
}
#page-top a .arrow {
  display: block;
}
#page-top a .arrow::before {
  content: '';
  width: 2rem;
  height: 2rem;
  background: url("../images/pagetop_arrow.svg") no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all .3s;
}
#page-top a:hover {
  background: var(--col-ye);
  opacity: 1;
}
#page-top a:hover .arrow::before {
  top: -10px;
}
/*---------------------------------

	btn

---------------------------------*/
.btn {
  max-width: 30rem;
}
.btn a {
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 200% auto;
  background-image: linear-gradient(to right, var(--col-ye) 0%, var(--col-ye) 50%, var(--col-re) 50%, var(--col-re) 100%);
  border-radius: 5rem;
  color: #fff;
  display: block;
  padding: 1.5rem 1.5rem;
  text-align: center;
  transition: background-position ease 0.4s;
}
.btn a span {
  background: url("../images/arr_w.svg") no-repeat center right .5rem/2rem;
  display: block;
  padding-right: 3rem;
  transition: all .3s;
}
.btn a:hover {
  background-position: 0 0;
}
.btn a:hover span {
  background-position: center right 0;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .btn a span {
    background-size: 1.5rem;
    padding-right: 2.5rem;
  }
}
/*---------------------------------

	inview

---------------------------------*/
.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}
.fadeIn_up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s, transform .8s;
}
.fadeIn_up.is-show {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .5s;
}