@charset "UTF-8";
.swiper-slide {
  height: 258px;
  overflow: hidden;
}
.swiper-slide > img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.3);
  transition: transform 1.9s ease;
}
.swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 61, 125, 0.1);
}
.swiper-slide-active > img {
  transform: none;
}
.swiper-slide-active .hero__title {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.hero {
  overflow: hidden;
}
.hero__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 20px));
  color: white;
  font-size: 25px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease 1s, transform 0.3s ease 1s;
}
.hero__footer {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 2;
  height: 68px;
  width: 22px;
  overflow: hidden;
}
.hero__downarrow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 6px;
  animation-name: kf-arrow-anime;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.hero__scrolltext {
  position: absolute;
  transform: rotate(90deg);
  color: rgba(255, 255, 255, 0.7);
  left: -8px;
  top: 11px;
  font-size: 1.2em;
}

@keyframes kf-arrow-anime {
  0%, 50%, 100% {
    transform: translateY(-10%);
  }
  30% {
    transform: none;
  }
}
.animate-title,
.tween-animate-title {
  opacity: 0;
}
.animate-title.inview,
.tween-animate-title.inview {
  opacity: 1;
}
.animate-title.inview .char,
.tween-animate-title.inview .char {
  display: inline-block;
}
.animate-title .char,
.tween-animate-title .char {
  opacity: 0;
}

.animate-title.inview .char {
  animation-name: kf-animate-chars;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.animate-title.inview .char:nth-child(1) {
  animation-delay: 0.04s;
}
.animate-title.inview .char:nth-child(2) {
  animation-delay: 0.08s;
}
.animate-title.inview .char:nth-child(3) {
  animation-delay: 0.12s;
}
.animate-title.inview .char:nth-child(4) {
  animation-delay: 0.16s;
}
.animate-title.inview .char:nth-child(5) {
  animation-delay: 0.2s;
}
.animate-title.inview .char:nth-child(6) {
  animation-delay: 0.24s;
}
.animate-title.inview .char:nth-child(7) {
  animation-delay: 0.28s;
}
.animate-title.inview .char:nth-child(8) {
  animation-delay: 0.32s;
}
.animate-title.inview .char:nth-child(9) {
  animation-delay: 0.36s;
}
.animate-title.inview .char:nth-child(10) {
  animation-delay: 0.4s;
}
.animate-title.inview .char:nth-child(11) {
  animation-delay: 0.44s;
}
.animate-title.inview .char:nth-child(12) {
  animation-delay: 0.48s;
}
.animate-title.inview .char:nth-child(13) {
  animation-delay: 0.52s;
}
.animate-title.inview .char:nth-child(14) {
  animation-delay: 0.56s;
}
.animate-title.inview .char:nth-child(15) {
  animation-delay: 0.6s;
}
.animate-title.inview .char:nth-child(16) {
  animation-delay: 0.64s;
}
.animate-title.inview .char:nth-child(17) {
  animation-delay: 0.68s;
}
.animate-title.inview .char:nth-child(18) {
  animation-delay: 0.72s;
}
.animate-title.inview .char:nth-child(19) {
  animation-delay: 0.76s;
}
.animate-title.inview .char:nth-child(20) {
  animation-delay: 0.8s;
}
.animate-title.inview .char:nth-child(21) {
  animation-delay: 0.84s;
}
.animate-title.inview .char:nth-child(22) {
  animation-delay: 0.88s;
}
.animate-title.inview .char:nth-child(23) {
  animation-delay: 0.92s;
}
.animate-title.inview .char:nth-child(24) {
  animation-delay: 0.96s;
}
.animate-title.inview .char:nth-child(25) {
  animation-delay: 1s;
}
.animate-title.inview .char:nth-child(26) {
  animation-delay: 1.04s;
}
.animate-title.inview .char:nth-child(27) {
  animation-delay: 1.08s;
}
.animate-title.inview .char:nth-child(28) {
  animation-delay: 1.12s;
}
.animate-title.inview .char:nth-child(29) {
  animation-delay: 1.16s;
}
.animate-title.inview .char:nth-child(30) {
  animation-delay: 1.2s;
}

@keyframes kf-animate-chars {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.cover-slide {
  position: relative;
  overflow: hidden;
}
.cover-slide::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #eaebe6;
  opacity: 0;
}
.cover-slide.inview::after {
  opacity: 1;
  animation-name: kf-cover-slide;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes kf-cover-slide {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.1% {
    transform-origin: right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.img-zoom, .bg-img-zoom {
  opacity: 0;
}
.inview .img-zoom, .inview .bg-img-zoom {
  opacity: 1;
  transition: transform 0.3s ease;
  animation-name: kf-img-show;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}
.inview .img-zoom:hover, .inview .bg-img-zoom:hover {
  transform: scale(1.05);
}

@keyframes kf-img-show {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  50.1% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
  }
}
.hover-darken::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: background-color 0.3s ease;
  pointer-events: none;
  animation-name: kf-img-show;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}
.hover-darken:hover::before {
  background-color: rgba(0, 0, 0, 0.4);
}

.bg-img-zoom {
  background-image: url(images/image-1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}

.img-bg50 {
  position: relative;
  height: 160px;
}
.img-bg50::before {
  display: block;
  content: "";
  padding-top: 50%;
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 60px;
  width: 300px;
}
.mobile-menu .header__logo {
  padding: 0 40px;
}
.mobile-menu__btn {
  background-color: unset;
  border: none;
  outline: none !important;
  cursor: pointer;
}
.mobile-menu__btn > span {
  background-color: black;
  width: 35px;
  height: 2px;
  display: block;
  margin-bottom: 9px;
  transition: transform 0.7s;
}
.mobile-menu__btn > span:last-child {
  margin-bottom: 0;
}
.mobile-menu__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s;
  cursor: pointer;
  z-index: 200;
}
.mobile-menu__main {
  padding: 0;
  perspective: 2000px;
  transform-style: preserve-3d;
}
.mobile-menu__item {
  list-style: none;
  display: block;
  transform: translate3d(0, 0, -1000px);
  padding: 0 40px;
  transition: transform 0.3s, opacity 0.2s;
  opacity: 0;
}
.mobile-menu__link {
  display: block;
  margin-top: 30px;
  color: black;
  text-decoration: none !important;
}
.mobile-menu .mobile-font {
  font-size: 23px;
}

.menu-open #container {
  transform: translate(-300px, 60px);
  box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.5);
}
.menu-open .mobile-menu__cover {
  opacity: 1;
  visibility: visible;
}
.menu-open .mobile-menu__item {
  transform: none;
  opacity: 1;
}
.menu-open .mobile-menu__item:nth-child(1) {
  transition-delay: 0.07s;
}
.menu-open .mobile-menu__item:nth-child(2) {
  transition-delay: 0.14s;
}
.menu-open .mobile-menu__item:nth-child(3) {
  transition-delay: 0.21s;
}
.menu-open .mobile-menu__item:nth-child(4) {
  transition-delay: 0.28s;
}
.menu-open .mobile-menu__item:nth-child(5) {
  transition-delay: 0.35s;
}
.menu-open .mobile-menu__btn > span {
  background-color: black;
}
.menu-open .mobile-menu__btn > span:nth-child(1) {
  transition-delay: 70ms;
  transform: translateY(11px) rotate(135deg);
}
.menu-open .mobile-menu__btn > span:nth-child(2) {
  transition-delay: 0s;
  transform: translateX(-18px) scaleX(0);
}
.menu-open .mobile-menu__btn > span:nth-child(3) {
  transition-delay: 140ms;
  transform: translateY(-11px) rotate(-135deg);
}

/******************************************************************

Stylesheet: ベーススタイル

******************************************************************/
body {
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.font-sm, .price__table .tb-bg > span, .footer__text {
  font-size: 12px;
}

.font-md {
  font-size: 16px;
}

.font-lr {
  font-size: 20px;
}

.font-lg, .sub-title, .main-title {
  font-size: 28px;
}

.intro-mb-sm, .intro__inner {
  margin-bottom: 60px;
}

.mb-sm {
  margin-bottom: 16px !important;
}

.mb-lg {
  margin-bottom: 80px !important;
}

.pt-lg, .facilities, .news, .faq, .price, .gallery, .calendar, .intro, .index-main {
  padding-top: 90px !important;
}

.pb-sm {
  padding-bottom: 16px !important;
}

.pb-lg, .facilities, .news, .faq, .price, .calendar, .info, .intro, .hero {
  padding-bottom: 80px !important;
}

.pb-footer, .footer__info {
  padding-bottom: 40px !important;
}

.mb-bg {
  margin-bottom: 63px;
}

#container {
  background-color: white;
  position: relative;
  z-index: 10;
  transition: transform 0.5s;
}

.content-width, .facilities__inner, .facilities__title, .news__title, .faq, .price, .footer, .gallery, .calendar, .info, .intro, .header__inner, .ticker, .indexHeader__ul, .indexHeader__news {
  width: 90%;
  margin: 0 auto;
  max-width: 1070px;
}

.main-title {
  color: #368DC4;
  font-weight: 600;
  margin-bottom: 0;
  display: block;
}

.sub-title {
  margin-bottom: 0;
  color: #E5F6FE;
  font-weight: 600;
  margin-top: 0px;
}

.bg-blue {
  background-color: #e5f6fe;
}

.fade-in {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.fade-in.on {
  transform: translateY(0);
  opacity: 1;
}

.indexHeader__news {
  margin-bottom: 46px;
  height: 92px;
}
.indexHeader.triggered {
  transition: box-shadow 0.8s;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
}
.indexHeader__ul {
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
  text-align: center;
  list-style: none;
  margin-top: 26px;
  margin-left: auto;
}
.indexHeader__ul > a {
  text-decoration: none;
  padding: 0 41px;
  position: relative;
  display: flex;
  align-items: center;
}
.indexHeader__ul > a:hover span {
  color: #388CC3;
}
.indexHeader__ul > a:nth-of-type(1)::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 32px;
  background-color: #707070;
  position: absolute;
  /* top:-2px; */
  left: -5px;
}
.indexHeader__ul > a:nth-of-type(2)::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 32px;
  background-color: #707070;
  position: absolute;
  /* top:-2px; */
  left: -5px;
}
.indexHeader__ul > a:nth-of-type(3)::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 32px;
  background-color: #707070;
  position: absolute;
  /* top:-2px; */
  left: -5px;
}
.indexHeader__ul > a:nth-of-type(4)::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 32px;
  background-color: #707070;
  position: absolute;
  /* top:-2px; */
  left: -5px;
}
.indexHeader__ul > a:nth-of-type(5)::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 32px;
  background-color: #707070;
  position: absolute;
  /* top:-2px; */
  left: -5px;
}
.indexHeader__ul > a:last-child::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 32px;
  background-color: #707070;
  position: absolute;
  /* top:-2px; */
  right: 0;
}
.indexHeader__ul > a {
  color: #444;
  text-decoration: none !important;
}

.business-hours {
  display: none;
}

#ticker-roll {
  width: 100%;
}

.ticker {
  padding: 13px 0px 82px 14px;
}
.ticker > p {
  font-size: 20px;
  color: #444;
}
.ticker a {
  font-size: 16px;
  text-decoration: none;
  color: #444;
}

#ticker-roll .ticker {
  height: 92px;
}

#ticker-roll {
  margin-top: 40px;
}

.businesshours {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: transparent;
  display: flex;
  align-items: center;
  z-index: 20;
}
.header.triggered {
  transition: box-shadow 0.8s;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__news {
  display: none;
}
.header__nav {
  display: none;
}
.header__ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0;
  text-align: center;
  list-style: none;
}
.header__ul > a {
  text-decoration: none;
  padding: 0 37px;
  position: relative;
  display: flex;
  align-items: center;
}
.header__ul > a:hover span {
  color: #388CC3;
}
.header__ul > a:nth-of-type(1)::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 32px;
  background-color: #707070;
  position: absolute;
  /* top:-2px; */
  left: -5px;
}
.header__ul > a:nth-of-type(2)::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 32px;
  background-color: #707070;
  position: absolute;
  /* top:-2px; */
  left: -5px;
}
.header__ul > a:nth-of-type(3)::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 32px;
  background-color: #707070;
  position: absolute;
  /* top:-2px; */
  left: -5px;
}
.header__ul > a:nth-of-type(4)::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 32px;
  background-color: #707070;
  position: absolute;
  /* top:-2px; */
  left: -5px;
}
.header__ul > a:nth-of-type(5)::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 32px;
  background-color: #707070;
  position: absolute;
  /* top:-2px; */
  left: -5px;
}
.header__ul > a:last-child::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 32px;
  background-color: #707070;
  position: absolute;
  /* top:-2px; */
  right: 0;
}
.header__li > a {
  color: #444;
  text-decoration: none !important;
}

.list__title {
  font-size: 24px;
  color: #444;
}

.list__sub {
  font-size: 16px;
  color: #444;
}

.intro {
  margin-bottom: 60px;
}
.intro__inner {
  display: flex;
  flex-wrap: wrap;
}
.intro__item {
  flex-basis: 50%;
}
.intro__text {
  font-size: 14px;
  color: #444444;
  text-align: center;
}

.info__text {
  position: relative;
  margin-bottom: 60px;
}
.info__inner {
  flex-direction: row;
}

.info-position {
  position: absolute;
  top: 28px;
  left: 74px;
}

.map-text {
  text-align: center;
  line-height: 2.2;
  margin-top: 38px;
}

.calendar__text {
  margin-bottom: 60px;
  position: relative;
}
.calendar .month {
  text-align: center;
  font-size: 28px;
  color: #368DC4;
}
.calendar .cTitleWhite {
  color: #fcfcfc;
}
.calendar .calender-wrap {
  max-width: 700px;
  margin: 3% auto;
}
.calendar .calender__iframe {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 100%;
}
.calendar .calender__iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.calendar-position {
  position: absolute;
  top: 28px;
  left: 83px;
}

.gallery__text {
  margin-bottom: 60px;
  position: relative;
}
.gallery-position {
  position: absolute;
  top: 28px;
  left: 86px;
}

.footer__nav {
  padding: 40px 0;
  text-align: center;
}
.footer__social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer__li {
  padding: 0;
  margin: 0;
  width: 10%;
}
.footer__li:nth-child(1) {
  margin-right: 10px;
}
.footer__li:nth-child(2) {
  margin-right: 10px;
}
.footer__text {
  color: #388CC3;
  text-align: center;
  margin-top: 40px;
  padding-bottom: 40px;
  line-height: 1.8;
}
.footer__text > p {
  margin: 0;
}
.footer__info {
  padding-bottom: 32px !important;
}

.logo {
  text-align: center;
}
.logo__img {
  width: 45%;
}

.price__inner {
  margin-top: 60px;
}
.price__inner__wrapper {
  margin: 0 auto;
}
.price__text {
  color: #C75959;
  text-align: left;
  margin-bottom: 40px;
}
.price__table {
  border: 1px solid #388CC3;
  border-collapse: separate;
  overflow: hidden;
  border-spacing: 0;
  border-radius: 10px;
  color: #388CC3;
}
.price__table td {
  padding: 0.4em 2em;
  vertical-align: middle;
}
.price__table td + td {
  border-left: 1px solid #388CC3;
}
.price__table .tb-bg {
  background: #E5F6FE;
}
.price__table td {
  background: #fff;
}
.price__table tr + tr td {
  border-top: 1px solid #388CC3;
}
.price__openInfo {
  margin-top: 40px;
  font-size: 14px;
  color: #444;
  margin-bottom: 0;
  text-align: left;
}
.price__openInfo > p {
  margin-bottom: 0;
}
.price-position {
  position: absolute;
  top: 30px;
  left: 47px;
}

.price__title-wrap {
  position: relative;
}

.faq__inner {
  margin-top: 60px;
}

.faq__title-wrap {
  position: relative;
}

.faq-position {
  position: absolute;
  top: 30px;
  left: 66px;
}

.accordion__wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
}

/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 96%;
  margin: 0 auto;
  padding-inline-start: 0px;
}
.accordion-area > li {
  margin-bottom: 40px;
}

/*アコーディオンタイトル*/
.title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding-bottom: 32px;
  border-bottom: 1px solid #444;
  /*アイコンの＋と×*/
  /*　closeというクラスがついたら形状変化　*/
}
.title::before, .title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #333;
}
.title::before {
  top: 48%;
  left: 95%;
  transform: rotate(0deg);
}
.title::after {
  top: 48%;
  left: 95%;
  transform: rotate(90deg);
}
.title.close::before {
  transform: rotate(45deg);
}
.title.close::after {
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
  display: none; /*はじめは非表示*/
  background: #e5f6fe;
  border-radius: 20px;
  margin: 20px 3% 3% 0;
  padding: 16px;
  color: #368dc4;
  font-size: 12px;
}

.news__title {
  position: relative;
}
.news__ul {
  padding-left: 20px;
}
.news__ul li {
  margin-bottom: 10px;
}
.news__contentsTitle {
  margin: 0 0 32px 0;
}
.news__inner {
  margin-top: 60px;
  color: #444;
}
.news__inner p {
  margin-bottom: 0;
}
.news__inner h2 {
  font-size: 20px;
}
.news__inner p {
  font-size: 14px;
}
.news__inner__item {
  width: 77%;
  margin: 0 auto;
  max-width: 1070px;
}
.news__inner__item:not(.first) {
  padding-top: 60px;
}
.news__inner__item p:first-child {
  margin-bottom: 20px;
}
.news__inner .newsItem_mb {
  padding-bottom: 60px;
}
.news__inner .newsAttention {
  color: #C75959;
}

.news-position {
  position: absolute;
  top: 30px;
  left: 77px;
}

.facilities__title {
  position: relative;
}
.facilities__text-right {
  text-align: right;
}
.facilities__inner {
  margin-top: 60px;
  color: #444;
}
.facilities__inner__title {
  font-size: 60px;
  color: #368DC4;
  margin-top: 50px;
}

.facilities-position {
  position: absolute;
  top: 30px;
  left: 77px;
}

.genderChange {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  justify-content: center;
  align-items: center;
  color: #368DC4;
}

.man {
  width: 160px;
  height: 60px;
  display: table-cell;
  text-align: center;
  border: 1px solid #368DC4;
  vertical-align: middle;
  cursor: pointer;
}
.man > p {
  padding: 20px;
}
.man:hover {
  background-color: #e5f6fe;
}

.woman {
  width: 160px;
  height: 60px;
  display: table-cell;
  text-align: center;
  border: 1px solid #368DC4;
  vertical-align: middle;
  cursor: pointer;
}
.woman > p {
  padding: 20px;
}
.woman:hover {
  background-color: #e5f6fe;
}

.tab-list-item.active {
  background-color: #e5f6fe;
}

.tab-contents-item {
  display: none;
}

.tab-contents-item.show {
  display: block;
}

.facility-explain {
  margin-top: 36px;
  text-align: center;
}

.entrance-text {
  font-size: 14px;
}

@media screen and (min-width: 481px) {
  /******************************************************************

  Stylesheet: 480px以上(スマホの横向き)のモニタで適用

  ******************************************************************/
}
@media screen and (min-width: 600px) {
  /******************************************************************

  Stylesheet: 600px以上のタブレットやモニタで適用

  ******************************************************************/
  .logo__img {
    width: 22%;
  }
  .footer__li {
    width: 5%;
  }
}
@media screen and (min-width: 960px) {
  /******************************************************************

  Stylesheet: 960px以上のモニタで適用

  ******************************************************************/
  .font-sm, .footer__text, .price__table .tb-bg > span {
    font-size: 16px;
  }
  .font-md {
    font-size: 20px;
  }
  .font-lr {
    font-size: 23px;
  }
  .font-lg, .main-title, .sub-title {
    font-size: 32px;
  }
  .intro-mb-sm, .intro__inner {
    margin-bottom: 120px;
  }
  .pt-lg, .index-main, .intro, .calendar, .gallery, .price, .faq, .news, .facilities {
    padding-top: 120px !important;
  }
  .mb-lg {
    margin-bottom: 120px !important;
  }
  .pb-lg, .hero, .intro, .info, .calendar, .price, .faq, .news, .facilities {
    padding-bottom: 120px !important;
  }
  .mb-bg {
    margin-bottom: 120px;
  }
  .cover-slide.inview {
    width: 250px;
  }
  .swiper-slide {
    height: 508px;
  }
  .business-hours {
    display: block;
  }
  .business-hours__open {
    background-color: #eb7676;
    color: #e5f6fe;
    padding: 4px;
    margin-right: 8px;
  }
  .business-hours__open-time {
    margin-right: 20px;
  }
  .business-hours__close {
    background-color: #34538b;
    color: #e5f6fe;
    padding: 4px;
    margin-right: 8px;
  }
  .business-hours__close-time {
    margin-right: 20px;
  }
  .main-visual {
    position: relative;
    width: 90%;
    margin: 0 auto;
    max-width: 1070px;
  }
  .indexHeader__news {
    position: absolute;
    top: 440px;
    right: 49px;
  }
  .index-main {
    padding-bottom: 80px !important;
  }
  .intro {
    margin-bottom: 120px;
  }
  .intro__inner {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
  }
  .intro__item {
    flex-basis: 0;
  }
  .intro__inner .img-bg50 {
    width: 250px;
    height: 250px;
  }
  .intro__text {
    margin: 0 auto;
    max-width: 600px;
    font-size: 20px;
  }
  .info {
    font-size: 20px;
  }
  .info__inner {
    display: flex;
    gap: 74px;
    align-items: center;
  }
  .info-position {
    top: 32px;
    left: 84px;
  }
  .map {
    width: 60%;
    height: 350px;
  }
  .map-iframe {
    height: 100%;
  }
  .map-text {
    margin-top: 0;
    line-height: 2;
  }
  .calendar__iframe {
    height: 600px;
  }
  .calendar .month {
    font-size: 32px;
  }
  .calendar .calender__iframe {
    padding-bottom: 0%;
    padding: 30%;
  }
  .calendar-position {
    top: 32px;
    left: 83px;
  }
  .gallery__text {
    margin-bottom: 80px;
  }
  .gallery-position {
    position: absolute;
    top: 32px;
    left: 84px;
  }
  .swiper-slide {
    box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
  }
  .footer__li {
    width: 5%;
  }
  .header__nav {
    display: block;
  }
  .mobile-menu__btn {
    display: none;
  }
  .mobile-menu > .header__logo {
    display: none;
  }
  .logo__img {
    width: 22%;
  }
  .price__inner {
    margin-top: 80px;
  }
  .price__inner__wrapper {
    margin: 0 auto;
    max-width: 568px;
    text-align: left;
  }
  .price__inner__wrapper > p {
    display: inline-block;
    text-align: left;
  }
  .price__text {
    display: inline-block;
    text-align: left;
  }
  .price__openInfo {
    display: inline-block;
    text-align: left;
  }
  .price__table td {
    padding: 1.5em 5em;
    vertical-align: middle;
  }
  .price-position {
    position: absolute;
    top: 35px;
    left: 47px;
  }
  .news-position {
    position: absolute;
    top: 35px;
    left: 85px;
  }
  .title {
    font-size: 1.25rem;
    /*アイコンの＋と×*/
  }
  .title::before, .title::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 1px;
    background-color: #333;
    transition: transform 0.3s;
  }
  .faq-position {
    position: absolute;
    top: 34px;
    left: 75px;
  }
  .box {
    font-size: 16px;
    margin: 40px 3% 3% 0%;
    padding: 24px;
  }
  .faq__inner {
    margin-top: 80px;
  }
  .news__ul {
    padding-left: 20px;
  }
  .news__ul li {
    margin-bottom: 20px;
  }
  .news__contentsTitle {
    margin: 0 0 60px 0;
  }
  .news__inner {
    margin-top: 60px;
    color: #444;
  }
  .news__inner p {
    margin-bottom: 0;
  }
  .news__inner h2 {
    font-size: 24px;
  }
  .news__inner p {
    font-size: 16px;
  }
  .news__inner__item {
    width: 77%;
    margin-left: 23%;
    max-width: 1070px;
  }
  .news__inner__item:not(.first) {
    padding-top: 80px;
  }
  .news__inner__item p:first-child {
    margin-bottom: 0px;
  }
  .news__inner .newsItem_mb {
    padding-bottom: 80px;
  }
  .news__inner .newsAttention {
    color: #C75959;
  }
  .facilities__inner__title {
    font-size: 100px;
  }
  .facilities__title {
    font-size: 32px;
  }
  .facilities__item-reverse {
    flex-direction: row-reverse;
  }
  .facilities__front-position {
    margin-top: 160px;
  }
  .facilities__dressing-position {
    margin-top: 160px;
  }
  .facilities__dryer-position {
    margin-top: 160px;
  }
  .facilities__pond-position {
    margin-top: 160px;
  }
  .facilities__woman-position {
    margin-top: 160px;
  }
  .facilities__bathtub-position {
    margin-top: 160px;
  }
  .facilities__item-wrapper {
    display: flex;
    -moz-column-gap: 260px;
         column-gap: 260px;
  }
  .facilities-position {
    position: absolute;
    top: 35px;
    left: 86px;
  }
  .genderChange {
    -moz-column-gap: 160px;
         column-gap: 160px;
  }
  .facility__entrance-position {
    margin-top: 140px;
  }
  .facility-img {
    width: 100%;
  }
  .facilities__inner__title {
    margin-top: 100px;
  }
  .facilities__inner__title > p {
    writing-mode: vertical-rl;
    margin: 0 0 0 0;
  }
  .facility-text-right {
    text-align: right;
    margin-bottom: 0;
  }
  .facility-text-left {
    text-align: left;
  }
  .br-sp {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  /******************************************************************

  Stylesheet: 1280px以上のモニタで適用

  ******************************************************************/
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /******************************************************************

  Stylesheet: Retinaディスプレイで適用

  ******************************************************************/
  /* 

  EXAMPLE 
  .icon {
  	background: url(images/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }

  */
}
@media print {
  /******************************************************************

  Stylesheet: プリンタのみに適用

  ******************************************************************/
}/*# sourceMappingURL=styles.css.map */