@charset "UTF-8";
* {
  box-sizing: border-box;
}

::before,
::after {
  box-sizing: inherit;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-size: rem(16);
}

body {
  margin: 0;
}

main {
  display: block;
  overflow-x: hidden;
  overflow-y: hidden;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: bottom;
}

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

select::-ms-expand {
  display: none;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable] {
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

a {
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
a:hover {
  color: #888;
}

li {
  list-style-type: none;
}

body {
  font-variant-ligatures: none;
  font-family: "小塚明朝 Pr6N", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", serif;
  overflow-x: hidden;
  color: #231815;
  font-weight: 500;
  background-position: center top;
}

main {
  background: url(../images/main-bg.jpg) repeat;
}
@media (max-width: 768px) {
  main {
    padding-top: 10.4166666667vw;
  }
}

.gothic {
  font-family: "小塚ゴシック Pr6N", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
}

img {
  max-width: 100%;
}

.block {
  display: block !important;
}

.none {
  display: none;
}

.pc {
  display: block !important;
}
@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.tab {
  display: none !important;
}
@media (max-width: 768px) {
  .tab {
    display: block !important;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex-row {
  display: flex;
  flex-wrap: wrap;
}

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

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

.section__tittle {
  padding: 10px;
  margin-top: 150px;
  margin-bottom: 50px;
  background-color: #dd668e;
  color: white;
  text-align: center;
  font-size: 23px;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .section__tittle {
    margin-top: 10.4166666667vw;
    margin-bottom: 6.5104166667vw;
  }
}
@media (max-width: 440px) {
  .section__tittle {
    font-size: 5.2272727273vw;
  }
}

.swiper--wrapper {
  /* wrapperのサイズを調整 */
  width: 100%;
  height: 300px;
}

.swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  width: 100%;
  height: auto;
  text-align: center;
}
@media (max-width: 1200px) {
  .swiper-slide {
    width: 95%;
  }
}
@media (max-width: 1200px) {
  .swiper-slide img {
    width: 83.3333333333vw;
  }
}

.swiper {
  position: relative;
  margin-top: 120px;
  margin-bottom: 100px;
}
@media (max-width: 1200px) {
  .swiper {
    margin-top: 8.3333333333vw;
    margin-bottom: 4.1666666667vw;
  }
}
@media (max-width: 768px) {
  .swiper {
    margin-top: 0vw;
  }
}

.top-swiper {
  position: relative;
  padding-bottom: 30px;
}
@media (max-width: 1200px) {
  .top-swiper {
    padding-bottom: 2.4193548387vw;
  }
}
@media (max-width: 768px) {
  .top-swiper {
    padding-bottom: 0;
  }
}

.swiper-pagination {
  position: relative !important;
  bottom: 70px !important;
  color: #00006e;
}
@media (max-width: 1200px) {
  .swiper-pagination {
    bottom: 0.78125vw !important;
  }
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: #fff;
  border: 1px solid #00006e;
  opacity: inherit;
}
@media (max-width: 1200px) {
  .swiper-pagination-bullet {
    width: 1.6129032258vw !important;
    height: 1.6129032258vw !important;
  }
}

.swiper-pagination-bullet-active {
  background: #00006e !important;
}

.main__section-tittle {
  margin-top: 0px;
}

.switch__link {
  display: flex;
  justify-content: center;
  gap: 15px;
}
@media (max-width: 1200px) {
  .switch__link {
    gap: 1.25vw;
  }
}
.switch__link-box {
  padding: 10px 90px;
  margin-bottom: 70px;
  width: 490px;
  background: white;
  border: 1px solid #dd668e;
  text-align: center;
  letter-spacing: 0.07em;
  color: #dd668e;
}
@media (max-width: 1200px) {
  .switch__link-box {
    width: 40.8333333333vw;
    margin-top: 5vw;
    padding: 0.8333333333vw 5.8333333333vw;
  }
}
@media (max-width: 768px) {
  .switch__link-box {
    width: 44.2708333333vw;
    padding: 1.3020833333vw 2.6041666667vw;
    margin-bottom: 7.8125vw;
  }
}
.switch__link-box h4 {
  font-size: 33px;
  letter-spacing: 0.1em;
}
@media (max-width: 1200px) {
  .switch__link-box h4 {
    font-size: 2.9166666667vw;
  }
}
@media (max-width: 768px) {
  .switch__link-box h4 {
    font-size: 4.296875vw;
  }
}
.switch__link-box h3 {
  margin-top: 5px;
  font-size: 19px;
}
@media (max-width: 1200px) {
  .switch__link-box h3 {
    font-size: 1.5833333333vw;
  }
}
@media (max-width: 768px) {
  .switch__link-box h3 {
    font-size: 2.4739583333vw;
  }
}

.footer {
  background: #dd668e;
  color: white;
}
@media (max-width: 768px) {
  .footer {
    padding-top: 3.90625vw;
  }
}
.footer .container {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}
@media (max-width: 1200px) {
  .footer .container {
    padding-top: 1.9166666667vw !important;
    padding: 15px 1.25vw;
  }
}
@media (max-width: 1200px) {
  .footer .container img {
    width: 19.1666666667vw;
  }
}
.footer__nav__list {
  display: flex;
}
.footer__nav__list-link {
  padding: 5px 30px;
  margin-bottom: 5px;
}
@media (max-width: 1200px) {
  .footer__nav__list-link {
    padding: 5px 2.0833333333vw;
    font-size: 1.5833333333vw;
  }
}
.footer-tabInfo {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  background-color: #dd668e;
  box-shadow: 0px -2px 10px #999;
  z-index: 100;
}
.footer-tabInfo dl {
  width: 33%;
}
.footer-tabInfo dl:nth-of-type(2) {
  border-left: 1px solid white;
  border-right: 1px solid white;
}
.footer-tabInfo dt {
  padding: 1.0416666667vw 0;
  text-align: center;
}
.footer-tabInfo dt img {
  width: 9.1145833333vw;
}
@media (max-width: 440px) {
  .footer-tabInfo dt img {
    width: 13.6363636364vw;
  }
}
@media (max-width: 768px) {
  .footer-tabInfo {
    display: flex !important;
  }
}

.recomend {
  padding-bottom: 50px;
  background: url(../images/bg02.jpg) no-repeat;
  background-size: cover;
  text-align: center;
  color: white;
}
@media (max-width: 768px) {
  .recomend {
    padding-bottom: 13.0208333333vw;
  }
}
.recomend h3 {
  padding-top: 30px;
  font-size: 25px;
}
@media (max-width: 768px) {
  .recomend h3 {
    padding-top: 6.5104166667vw;
    font-size: 3.6458333333vw;
  }
}
.recomend h4 {
  margin-top: 9px;
  padding-bottom: 30px;
  font-size: 29px;
  letter-spacing: 0.18em;
}
@media (max-width: 768px) {
  .recomend h4 {
    margin-top: 1.171875vw;
    padding-bottom: 3.90625vw;
    font-size: 4.1666666667vw;
  }
}

.footer-slider {
  position: relative;
  width: 450px;
  margin: 40px auto;
  padding: 40px 80px;
  background-color: rgba(255, 255, 255, 0.429);
}
@media (max-width: 768px) {
  .footer-slider {
    width: 58.59375vw;
    margin-bottom: 16.6666666667vw;
    margin: 1.3020833333vw auto 2.6041666667vw auto;
    padding: 3.90625vw 10.4166666667vw;
  }
}
@media (max-width: 440px) {
  .footer-slider {
    padding: 2.9545454545vw 7.7272727273vw;
  }
}
.footer-slider .swiper1 {
  position: relative;
  overflow: hidden;
  width: 296px;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .footer-slider .swiper1 {
    width: 37.7604166667vw;
  }
}
@media (max-width: 440px) {
  .footer-slider .swiper1 {
    width: 43.1818181818vw;
  }
}
@media (max-width: 768px) {
  .footer-slider .swiper1 .girlCard {
    width: 37.109375vw;
    margin: 0 auto;
  }
}
.footer-slider .swiper-button-prev {
  left: -100px !important;
  width: 50px;
}
@media (max-width: 768px) {
  .footer-slider .swiper-button-prev {
    left: -11.71875vw !important;
    width: 6.5104166667vw;
  }
}
.footer-slider .swiper-button-prev::after {
  background-image: url(../images/prev.png);
}
.footer-slider .swiper-button-next {
  right: -100px !important;
  width: 50px;
}
@media (max-width: 768px) {
  .footer-slider .swiper-button-next {
    right: -11.71875vw !important;
    width: 6.5104166667vw;
  }
}
.footer-slider .swiper-button-next::after {
  background-image: url(../images/next.png);
}
.footer-slider .swiper-button-prev:after,
.footer-slider .swiper-button-next:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 50px;
}
.footer-slider .swiper-pagination1 {
  position: relative !important;
  bottom: 30px !important;
  color: #00006e;
}
@media (max-width: 1200px) {
  .footer-slider .swiper-pagination1 {
    bottom: -0.8064516129vw !important;
  }
}
@media (max-width: 768px) {
  .footer-slider .swiper-pagination1 {
    bottom: -3.125vw !important;
  }
}
.footer-slider .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: #fff;
  border: 1px solid #00006e;
  opacity: inherit;
}
@media (max-width: 1200px) {
  .footer-slider .swiper-pagination-bullet {
    width: 0.8064516129vw !important;
    height: 0.8064516129vw !important;
  }
}
.footer-slider .swiper-pagination-bullet-active {
  background: #00006e !important;
}

.schedule__btn {
  margin: 60px 0 65px;
  background-color: #fff;
  text-align: center;
  font-size: 18px;
}
@media (max-width: 1200px) {
  .schedule__btn {
    margin: 5.8870967742vw 0 4.7580645161vw;
    font-size: 1.2903225806vw;
  }
}
@media (max-width: 768px) {
  .schedule__btn {
    margin: 0 0 9.1145833333vw;
  }
}
.schedule__btn__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.schedule__btn__list .dateactive {
  background-color: white;
  color: #00006e;
  border: solid 1px #00006e;
}
.schedule__btn__list-link {
  display: flex;
  justify-content: center;
  width: 14%;
  padding: 14px 0;
  background-color: #00006e;
  color: white;
}
@media (max-width: 1200px) {
  .schedule__btn__list-link {
    padding: 1.1290322581vw 0;
    font-size: 1.6666666667vw;
  }
}
@media (max-width: 768px) {
  .schedule__btn__list-link {
    padding: 1.5625vw 0;
    font-size: 2.34375vw;
  }
}
@media (max-width: 440px) {
  .schedule__btn__list-link {
    display: block;
    padding: 2.2727272727vw 1.3636363636vw;
    font-size: 3.4090909091vw;
    letter-spacing: 0.0227272727vw;
  }
}
.schedule__btn__list-link_date {
  display: flex;
  justify-content: center;
}
@media (max-width: 440px) {
  .schedule__btn__list-link:first-child {
    padding-top: 4.0909090909vw;
  }
}
.schedule__nav {
  margin-left: 25px;
}
@media (max-width: 1200px) {
  .schedule__nav {
    margin-left: 2.0833333333vw;
  }
}
@media (max-width: 768px) {
  .schedule__nav {
    margin-left: 0;
  }
}
.schedule__nav__list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 15px 1%;
}
@media (max-width: 1200px) {
  .schedule__nav__list {
    gap: 1.2096774194vw 1%;
  }
}

.header__top {
  background: #dd668e;
  color: white;
}
.header__top .container {
  display: flex;
  padding: 20px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .header__top .container {
    padding: 2.6041666667vw 5.2083333333vw;
    justify-content: center;
  }
}
@media (max-width: 440px) {
  .header__top .container {
    padding: 4.5454545455vw 4.5454545455vw;
  }
}
.header__top-tittle {
  display: flex;
  align-items: center;
}
.header__top-tittle h1 {
  margin-left: 15px;
  font-size: 22px;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .header__top-tittle img {
    width: 39.0625vw;
    margin-right: 52.0833333333vw;
  }
  .header__top-tittle h2 {
    padding-top: 0.390625vw;
    padding-bottom: 0.6818181818vw;
    font-size: 6.3636363636vw;
  }
}
.header__top-tel {
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: right;
}
.header__top-tel img {
  position: absolute;
  top: 5px;
  left: -50px;
  width: 43px;
  height: 28px;
}
.header__top-tel h3 {
  font-size: 34px;
  font-family: "Times New Roman", Times, serif;
}
.header__top-tel h4 {
  font-size: 22px;
  font-family: "Times New Roman", Times, serif;
}
.header__nav {
  position: relative;
}
.header__nav__list {
  position: absolute;
  display: flex;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 1160px;
  background: #00006e;
  border-radius: 0 0 15px 15px;
  color: white;
}
@media (max-width: 1200px) {
  .header__nav__list {
    width: 96.6666666667vw;
  }
}
.header__nav__list-link {
  padding: 15px 0;
  flex: 1 0 auto;
  text-align: center;
}
@media (max-width: 1200px) {
  .header__nav__list-link {
    padding: 1.25vw 0;
  }
}
@media (max-width: 1200px) {
  .header__nav__list-link p {
    font-size: 1.5vw;
  }
}
.header__nav__list-link:not(:last-child) {
  /*borderで項目ごとに区切り線を入れ、最後の項目のみ無くす*/
  border-right: 1px solid white;
}
.header__nav .fixed {
  position: fixed !important;
  z-index: 999999;
  top: 0;
}
.header__tabNav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #dd668e;
  transition: 0.6s all ease-out;
  z-index: 11;
}
.header__tabNav::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 3.125vw;
  margin-top: -2.8645833333vw;
  vertical-align: middle;
}
.header__tabNav__list {
  position: absolute;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  justify-content: center;
  gap: 4%;
  top: 0%;
  left: 50%;
  width: 100%;
  height: 100%;
  padding: 6.5104166667vw 0;
  transform: translate(-50%);
}
.header__tabNav__list-link {
  font-size: 3.125vw;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 440px) {
  .header__tabNav__list-link {
    font-size: 5.4545454545vw;
    line-height: 1.6;
  }
}
.header__tabNav-active {
  left: 0 !important;
}
.header__tabButton {
  position: fixed;
  display: block;
  width: 5.7291666667vw;
  height: 4.1666666667vw;
  right: 4.6875vw;
  top: 4.296875vw;
  z-index: 12;
}
@media (max-width: 440px) {
  .header__tabButton {
    width: 7.2727272727vw;
    height: 6.5909090909vw;
    right: 6.5909090909vw;
    top: 5.4545454545vw;
  }
}
.header__tabButton span {
  position: absolute;
  left: 0px;
  width: 110%;
  height: 0.78125vw;
  border-radius: 5px;
  background: #fff;
  transition: 0.3s all ease-in-out;
}
@media (max-width: 440px) {
  .header__tabButton span {
    height: 0.9090909091vw;
    width: 115%;
  }
}
.header__tabButton span:nth-of-type(1) {
  top: 0;
}
.header__tabButton span:nth-of-type(2) {
  top: 1.953125vw;
  width: 70%;
}
@media (max-width: 440px) {
  .header__tabButton span:nth-of-type(2) {
    top: 2.3863636364vw;
    width: 77%;
  }
}
.header__tabButton span:nth-of-type(3) {
  top: 3.3854166667vw;
  font-size: 1.8229166667vw;
  color: #fff;
  background-color: #dd668e;
}
@media (max-width: 440px) {
  .header__tabButton span:nth-of-type(3) {
    top: 4.0909090909vw;
  }
}
.header__tabButton span:nth-of-type(3)::after {
  content: "Menu";
  position: absolute;
  display: block;
  top: 0.4545454545vw;
  color: #fff;
  font-size: 1.8229166667vw;
  text-transform: uppercase;
}
@media (max-width: 440px) {
  .header__tabButton span:nth-of-type(3)::after {
    font-size: 4.3181818182vw;
    transform: scale(0.6);
    transform-origin: 0 0;
  }
}
.header__tabButton-active:nth-of-type(1) {
  top: 0.390625vw !important;
  width: 100% !important;
  transform: rotate(45deg);
}
@media (max-width: 440px) {
  .header__tabButton-active:nth-of-type(1) {
    left: 0.6818181818vw;
    top: 0.4545454545vw !important;
  }
}
.header__tabButton-active:nth-of-type(2) {
  top: 0.390625vw !important;
  width: 100% !important;
  transform: rotate(-45deg);
}
@media (max-width: 440px) {
  .header__tabButton-active:nth-of-type(2) {
    left: 0.6818181818vw;
    top: 0.4545454545vw !important;
  }
}
.header__tabButton-active:nth-of-type(3)::after {
  content: "Close" !important;
  left: -0.2604166667vw !important;
}
@media (max-width: 440px) {
  .header__tabButton-active:nth-of-type(3)::after {
    left: 0vw !important;
  }
}
.header__tabButton-bg {
  position: fixed;
  display: block;
  width: 10.4166666667vw;
  height: 10.4166666667vw;
  right: 2.2135416667vw;
  top: 1.5625vw;
  background: #dd668e;
  box-shadow: 1px 1px 1px #dd668e;
  z-index: 12;
}
@media (max-width: 440px) {
  .header__tabButton-bg {
    width: 12.5vw;
    height: 12.5vw;
    right: 3.1818181818vw;
    top: 2.2727272727vw;
  }
}
.header__tabButton-bg::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  z-index: 12;
}

.swiper--wrapper {
  /* wrapperのサイズを調整 */
  width: 100%;
  height: 300px;
}

.swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  width: 100%;
  height: auto;
  text-align: center;
}
@media (max-width: 1200px) {
  .swiper-slide {
    width: 95%;
  }
}
@media (max-width: 1200px) {
  .swiper-slide img {
    width: 83.3333333333vw;
  }
}

.swiper {
  position: relative;
  margin-top: 120px;
  margin-bottom: 100px;
}
@media (max-width: 1200px) {
  .swiper {
    margin-top: 8.3333333333vw;
    margin-bottom: 4.1666666667vw;
  }
}
@media (max-width: 768px) {
  .swiper {
    margin-top: 0vw;
  }
}

.top-swiper {
  position: relative;
  padding-bottom: 30px;
}
@media (max-width: 1200px) {
  .top-swiper {
    padding-bottom: 2.4193548387vw;
  }
}
@media (max-width: 768px) {
  .top-swiper {
    padding-bottom: 0;
  }
}

.swiper-pagination {
  position: relative !important;
  bottom: 70px !important;
  color: #00006e;
}
@media (max-width: 1200px) {
  .swiper-pagination {
    bottom: 0.78125vw !important;
  }
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: #fff;
  border: 1px solid #00006e;
  opacity: inherit;
}
@media (max-width: 1200px) {
  .swiper-pagination-bullet {
    width: 1.6129032258vw !important;
    height: 1.6129032258vw !important;
  }
}

.swiper-pagination-bullet-active {
  background: #00006e !important;
}

.main__section-tittle {
  margin-top: 0px;
}

.switch__link {
  display: flex;
  justify-content: center;
  gap: 15px;
}
@media (max-width: 1200px) {
  .switch__link {
    gap: 1.25vw;
  }
}
.switch__link-box {
  padding: 10px 90px;
  margin-bottom: 70px;
  width: 490px;
  background: white;
  border: 1px solid #dd668e;
  text-align: center;
  letter-spacing: 0.07em;
  color: #dd668e;
}
@media (max-width: 1200px) {
  .switch__link-box {
    width: 40.8333333333vw;
    margin-top: 5vw;
    padding: 0.8333333333vw 5.8333333333vw;
  }
}
@media (max-width: 768px) {
  .switch__link-box {
    width: 44.2708333333vw;
    padding: 1.3020833333vw 2.6041666667vw;
    margin-bottom: 7.8125vw;
  }
}
.switch__link-box h4 {
  font-size: 33px;
  letter-spacing: 0.1em;
}
@media (max-width: 1200px) {
  .switch__link-box h4 {
    font-size: 2.9166666667vw;
  }
}
@media (max-width: 768px) {
  .switch__link-box h4 {
    font-size: 4.296875vw;
  }
}
.switch__link-box h3 {
  margin-top: 5px;
  font-size: 19px;
}
@media (max-width: 1200px) {
  .switch__link-box h3 {
    font-size: 1.5833333333vw;
  }
}
@media (max-width: 768px) {
  .switch__link-box h3 {
    font-size: 2.4739583333vw;
  }
}

.system__container {
  margin: 0 auto;
  width: 768px;
}
@media (max-width: 768px) {
  .system__container {
    width: 98.9583333333vw;
  }
}
.system__container ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px auto;
  width: 95%;
  color: #00006e;
  border: 2px solid #00006e;
  font-size: 43px;
}
@media (max-width: 1200px) {
  .system__container ul {
    width: 88%;
    font-size: 39px;
  }
}
@media (max-width: 768px) {
  .system__container ul {
    font-size: 5.078125vw;
    border: 1.5px solid #00006e;
  }
}
.system__container ul li {
  padding: 10px 30px;
}
@media (max-width: 768px) {
  .system__container ul li {
    padding: 1.3020833333vw 3.90625vw;
  }
}
.system__container ul .price {
  position: relative;
  font-size: 53px;
  font-family: "Times New Roman", Times, serif;
}
@media (max-width: 1200px) {
  .system__container ul .price {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .system__container ul .price {
    font-size: 6.25vw;
  }
}
.system__container ul .price span {
  font-size: 30px;
}
@media (max-width: 768px) {
  .system__container ul .price span {
    font-size: 3.7760416667vw;
  }
}
.system__container ul .price::before {
  content: "";
  position: absolute;
  left: -6%;
  top: -1%;
  background: #00006e;
  width: 2px;
  height: 101%;
}
@media (max-width: 768px) {
  .system__container ul .price::before {
    width: 1.5px;
  }
}
.system__container dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1200px) {
  .system__container dl {
    justify-content: space-evenly;
  }
}
@media (max-width: 1200px) {
  .system__container dl img {
    width: 13.3333333333vw;
  }
}
@media (max-width: 768px) {
  .system__container dl img {
    width: 15.625vw;
  }
}
@media (max-width: 440px) {
  .system__container dl img {
    width: 20.4545454545vw;
  }
}
.system__container-tittle {
  margin-bottom: 60px;
  color: #dd668e;
  text-align: center;
  font-size: 65px;
  letter-spacing: 0.13em;
}
@media (max-width: 1200px) {
  .system__container-tittle {
    font-size: 5.6666666667vw;
  }
}
@media (max-width: 768px) {
  .system__container-tittle {
    font-size: 7.1614583333vw;
    margin-bottom: 6.5104166667vw;
  }
}
@media (max-width: 440px) {
  .system__container-tittle {
    font-size: 7.7272727273vw;
  }
}
.system__container-plan {
  margin-bottom: 40px;
  font-family: "Times New Roman", Times, serif;
}
@media (max-width: 1200px) {
  .system__container-plan {
    margin-bottom: 5.8333333333vw;
  }
}
@media (max-width: 768px) {
  .system__container-plan {
    margin-bottom: 5.2083333333vw;
  }
}
.system__container-plan dd {
  color: #dd668e;
  font-size: 130px;
}
@media (max-width: 1200px) {
  .system__container-plan dd {
    font-size: 11.25vw;
  }
}
@media (max-width: 768px) {
  .system__container-plan dd {
    font-size: 13.671875vw;
  }
}
@media (max-width: 440px) {
  .system__container-plan dd {
    font-size: 14.7727272727vw;
  }
}
.system__container-plan dd span {
  font-size: 90px;
}
@media (max-width: 1200px) {
  .system__container-plan dd span {
    font-size: 7.5vw;
  }
}
@media (max-width: 768px) {
  .system__container-plan dd span {
    font-size: 7.8125vw;
  }
}
.system__container-explain {
  margin: 0 auto;
  margin-bottom: 40px;
  width: 97%;
  color: #00006e;
}
@media (max-width: 1200px) {
  .system__container-explain {
    justify-content: space-between !important;
    width: 90%;
    gap: 0 3.3333333333vw;
  }
}
@media (max-width: 768px) {
  .system__container-explain {
    width: 80%;
    margin-bottom: 2.6041666667vw;
  }
}
@media (max-width: 440px) {
  .system__container-explain {
    width: 85%;
  }
}
.system__container-explain dt {
  font-size: 31px;
  letter-spacing: 0.1em;
}
@media (max-width: 1200px) {
  .system__container-explain dt {
    font-size: 3.3333333333vw;
  }
}
@media (max-width: 768px) {
  .system__container-explain dt {
    font-size: 3.90625vw;
  }
}
@media (max-width: 440px) {
  .system__container-explain dt {
    font-size: 4.7727272727vw;
  }
}
.system__container-explain dd {
  position: relative;
  font-size: 70px;
  font-family: "Times New Roman", Times, serif;
}
@media (max-width: 1200px) {
  .system__container-explain dd {
    font-size: 6.5vw;
  }
}
@media (max-width: 768px) {
  .system__container-explain dd {
    font-size: 7.8125vw;
  }
}
@media (max-width: 440px) {
  .system__container-explain dd {
    font-size: 8.1818181818vw;
  }
}
.system__container-explain dd span {
  font-size: 40px;
}
@media (max-width: 1200px) {
  .system__container-explain dd span {
    font-size: 3.3333333333vw;
  }
}
@media (max-width: 768px) {
  .system__container-explain dd span {
    font-size: 3.90625vw;
  }
}
@media (max-width: 440px) {
  .system__container-explain dd span {
    font-size: 4.5454545455vw;
  }
}
.system__container-explain dd::before {
  content: "";
  position: absolute;
  top: 40px;
  left: -160px;
  width: 130px;
  height: 1px;
  background: #00006e;
}
@media (max-width: 1200px) {
  .system__container-explain dd::before {
    top: 4.1666666667vw;
    left: -150px;
    width: 130px;
  }
}
@media (max-width: 768px) {
  .system__container-explain dd::before {
    top: 4.5572916667vw;
    left: -80px;
    width: 70px;
  }
}
@media (max-width: 440px) {
  .system__container-explain dd::before {
    top: 5.2272727273vw;
    left: -48px;
    width: 35px;
  }
}
.system__container .small {
  margin-top: -50px;
  margin-bottom: 70px;
  margin-left: 10px;
  color: #00006e;
}
@media (max-width: 1200px) {
  .system__container .small {
    font-size: 1.25vw;
    margin-left: 40px;
  }
}
@media (max-width: 768px) {
  .system__container .small {
    display: block;
    margin-left: -25px;
    margin-top: -3.90625vw;
    font-size: 10px;
    transform: scale(0.7);
    transform-origin: 0, 0;
  }
}
@media (max-width: 440px) {
  .system__container .small {
    margin-top: -3.4090909091vw;
  }
}
.system__container .star {
  position: relative;
  margin-top: 20px;
  margin-bottom: 30px;
  text-align: center;
  color: #00006e;
  font-size: 19px;
}
@media (max-width: 768px) {
  .system__container .star {
    font-size: 2.4739583333vw;
  }
}
@media (max-width: 440px) {
  .system__container .star {
    margin-top: 6.8181818182vw;
    font-size: 3.4090909091vw;
  }
}
.system__container .star::before {
  content: "★";
  position: absolute;
  left: 160px;
  top: -9px;
  font-size: 30px;
  color: rgb(231, 177, 16);
}
@media (max-width: 768px) {
  .system__container .star::before {
    left: 20.8333333333vw;
    top: -1.171875vw;
    font-size: 3.90625vw;
  }
}
@media (max-width: 440px) {
  .system__container .star::before {
    left: 11.3636363636vw;
    top: -0.4545454545vw;
  }
}
.system__container-caution {
  width: 96%;
  margin: 0 auto;
}
@media (max-width: 440px) {
  .system__container-caution {
    font-size: 12px;
  }
}
.system__container-caution p {
  line-height: 1.6;
}
.system__container-caution .para {
  margin-bottom: 30px;
}
.system__container-caution .caution-red {
  color: rgb(217, 37, 37);
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .system__container-caution {
    margin-bottom: 10.4166666667vw;
  }
}
.system .border {
  margin: 40px auto;
  height: 2px;
  background: #dd668e;
}

.card-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 20px;
}
@media (max-width: 768px) {
  .card-brand {
    margin-bottom: 5.2083333333vw;
    gap: 2.6041666667vw;
  }
}
.card-brand img {
  height: 80px;
}
@media (max-width: 768px) {
  .card-brand img {
    height: 10.4166666667vw;
  }
}
.card-brand .visa img {
  height: 100px !important;
}
@media (max-width: 768px) {
  .card-brand .visa img {
    height: 13.0208333333vw !important;
  }
}
.card-brand .amex {
  margin-left: 13px;
}
.card-brand .amex img {
  height: 60px !important;
}
@media (max-width: 768px) {
  .card-brand .amex img {
    height: 7.8125vw !important;
  }
}
.card-brand .diners {
  margin-left: 10px;
}
.card-brand .diners img {
  height: 50px !important;
}
@media (max-width: 768px) {
  .card-brand .diners img {
    height: 6.5104166667vw !important;
  }
}

.today {
  text-align: center;
}
.today__link {
  display: inline-block;
  padding: 10px 180px;
  margin: 0 auto;
  margin-bottom: 80px;
  background-color: #dd668e;
  color: white;
  text-align: center;
  font-size: 21px;
}
@media (max-width: 768px) {
  .today__link {
    padding: 1.3020833333vw 19.53125vw;
    margin-bottom: 10.4166666667vw;
    font-size: 3.3854166667vw;
  }
}

.schedule__nav__list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px 1%;
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .schedule__nav__list {
    gap: 1.6666666667vw 1%;
  }
}
@media (max-width: 768px) {
  .schedule__nav__list {
    padding: 0 10vw;
    gap: 3.90625vw 2.6041666667vw;
    margin-top: 6.5104166667vw;
    margin-bottom: 11.71875vw;
  }
}
.schedule__nav__list .girlCard {
  width: 23.8%;
  text-align: center;
  color: white;
}
@media (max-width: 768px) {
  .schedule__nav__list .girlCard {
    width: 48%;
  }
}

.girlCard-time {
  padding: 3px;
  background-color: #00006e;
  font-size: 20px;
  font-family: "Times New Roman", Times, serif;
}
@media (max-width: 1200px) {
  .girlCard-time {
    font-size: 1.75vw;
  }
}
@media (max-width: 768px) {
  .girlCard-time {
    font-size: 3.515625vw;
  }
}
@media (max-width: 440px) {
  .girlCard-time {
    font-size: 3.8636363636vw;
  }
}

.girlCard-info {
  padding: 3px;
  background-color: #231815;
  font-size: 17px;
  font-family: "Times New Roman", Times, serif;
}
@media (max-width: 1200px) {
  .girlCard-info {
    font-size: 1.4166666667vw;
  }
}
@media (max-width: 768px) {
  .girlCard-info {
    font-size: 2.8645833333vw;
  }
}
@media (max-width: 440px) {
  .girlCard-info {
    font-size: 3.4090909091vw;
  }
}

.girlCard-store {
  padding: 5px 5px;
  background-color: #dd668e;
  font-size: 18px;
  font-family: "Times New Roman", Times, serif;
}
@media (max-width: 1200px) {
  .girlCard-store {
    font-size: 1.5833333333vw;
  }
}
@media (max-width: 768px) {
  .girlCard-store {
    padding: 0.6510416667vw 0vw;
    font-size: 3.2552083333vw;
  }
}
@media (max-width: 440px) {
  .girlCard-store {
    font-size: 3.4090909091vw;
  }
}

.schedule__nav .swiper2 {
  overflow: hidden;
}
@media (max-width: 768px) {
  .schedule__nav .swiper2 {
    width: 83.3333333333vw;
    margin-left: -0.5208333333vw;
  }
}
.schedule__nav .swiper2 .swiper-slide {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .schedule__nav .swiper2 .swiper-slide {
    gap: 3.90625vw 3.515625vw;
    margin-right: 2px;
    margin-bottom: 5.2083333333vw;
  }
}
@media (max-width: 768px) {
  .schedule__nav .swiper2 .swiper-slide .girlCard {
    width: 47%;
  }
}
.schedule__nav .swiper2 .swiper-button-prev2 {
  position: relative;
}
@media (max-width: 768px) {
  .schedule__nav .swiper2 .swiper-button-prev2 {
    font-size: 4.8177083333vw;
  }
}
.schedule__nav .swiper2 .swiper-button-next2 {
  position: relative;
}
.schedule__nav .swiper2 .swiper-button-next2:after {
  position: absolute;
  content: "Next→";
}
@media (max-width: 768px) {
  .schedule__nav .swiper2 .swiper-button-next2:after {
    top: -5.859375vw;
    right: 1.3020833333vw;
    font-size: 4.8177083333vw;
  }
}

@media (max-width: 768px) {
  .access {
    padding-bottom: 3.90625vw;
  }
}
.access__nav {
  margin-top: 100px;
  margin-bottom: 200px;
}
@media (max-width: 1200px) {
  .access__nav {
    margin-top: 5vw;
    margin-bottom: 8.3333333333vw;
  }
}
.access__nav__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}
@media (max-width: 1200px) {
  .access__nav__list {
    gap: 3.3333333333vw;
  }
}
@media screen and (max-width: 630px) {
  .access__nav__list {
    gap: 6.5104166667vw;
  }
}
.access__nav__list .mapList {
  padding: 35px 52px;
  font-family: "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
  border: 6px solid #dfdfdf;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .access__nav__list .mapList {
    width: 46%;
  }
}
@media screen and (max-width: 630px) {
  .access__nav__list .mapList {
    width: 85%;
  }
}
.access__nav__list .mapList p {
  line-height: 1.3;
}
@media (max-width: 1200px) {
  .access__nav__list .mapList {
    padding: 2.75vw 4.1666666667vw;
  }
}
.access__nav__list .mapList-top-store {
  margin-bottom: 13px;
  font-size: 27px;
  font-family: "Shippori Mincho B1", serif;
}
@media (max-width: 1200px) {
  .access__nav__list .mapList-top-store {
    margin-bottom: 1.0833333333vw;
    font-size: 2.25vw;
  }
}
@media screen and (max-width: 630px) {
  .access__nav__list .mapList-top-store {
    margin-bottom: 1.3020833333vw;
    font-size: 3.90625vw;
  }
}
.access__nav__list .mapList-img {
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .access__nav__list .mapList-img {
    margin-bottom: 1.6666666667vw;
  }
}
@media screen and (max-width: 630px) {
  .access__nav__list .mapList-img {
    margin-bottom: 2.2135416667vw;
  }
}
.access__nav__list .mapList-train {
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .access__nav__list .mapList-train {
    margin-bottom: 1.6666666667vw;
    font-size: 1.4166666667vw;
  }
}
@media screen and (max-width: 630px) {
  .access__nav__list .mapList-train {
    font-size: 2.6041666667vw;
  }
}
@media (max-width: 1200px) {
  .access__nav__list .mapList-car {
    font-size: 1.4166666667vw;
  }
}
@media screen and (max-width: 630px) {
  .access__nav__list .mapList-car {
    font-size: 2.6041666667vw;
  }
}/*# sourceMappingURL=style.css.map */