@charset "UTF-8";
/* rem単位でのクランプをvw単位に変換 */
@font-face {
  font-family: "mgen";
  src: url(../font/mgenplus-1c-medium.ttf) format("truetype");
}
a {
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
a:hover {
  opacity: 0.5;
}

html {
  scroll-behavior: auto;
  overscroll-behavior: auto;
  height: 100%;
}

li {
  list-style-type: none;
}

.main-top {
  padding-top: 114px;
}
@media (max-width: 1500px) {
  .main-top {
    padding-top: 6.6666666667vw;
  }
}
@media (max-width: 1280px) {
  .main-top {
    padding-top: 5.8333333333vw;
  }
}
@media (max-width: 768px) {
  .main-top {
    margin-top: 15.625vw;
    padding-top: 0;
  }
}

#chamo-window .chamo-chatlog-wrapper {
  overscroll-behavior: auto;
}

main {
  flex: 1 0 auto;
  width: 100%;
  background-image: url(../img/bg.png);
  background-size: cover;
  background-position: top center;
  background-repeat: repeat;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  main {
    background-image: unset;
    padding-bottom: 29.9479166667vw;
  }
}
main > * {
  margin-top: 0;
  margin-bottom: 0;
}
main .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  main .container {
    max-width: 100%;
  }
}

.quotation {
  margin-left: -14px;
  margin-right: -14px;
}

.fixed {
  position: fixed !important;
  width: 100%;
  background: #d00000;
  top: 0;
  z-index: 90;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background-position: top center;
  font-variant-ligatures: none;
  font-family: "mgen", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: #000;
  background-size: cover;
}
@media (max-width: 768px) {
  body {
    background: url(../img/main-bg-sp.jpg) no-repeat top center;
    background-size: cover;
    background-position: top center;
  }
}

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;
  }
}

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

.sp-words {
  display: none !important;
}
@media (max-width: 440px) {
  .sp-words {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .recruit {
    padding-top: 17.7083333333vw;
  }
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1280px) {
  .container {
    max-width: 93.75vw;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 96%;
  }
}

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

.flex-low {
  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;
}

/* ボタンで表示・非表示JSで値操作 */
[data-display=hide] {
  display: none;
}

[data-display=show] {
  display: block;
}

.fadeUp {
  opacity: 0;
  transform: translateY(15px);
}

.fadeUp.show-fadeUp {
  animation: fadeUp 1.2s ease-in-out forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeIn1 {
  opacity: 0;
}

.fadeIn1.show-fadeIn1 {
  animation: fadeIn 1.1s ease-in-out forwards;
}

.fadeIn2 {
  opacity: 0;
}

.fadeIn2.show-fadeIn2 {
  animation: fadeIn 1.1s 0.6s ease-in-out forwards;
}

.fadeIn3 {
  opacity: 0;
}

.fadeIn3.show-fadeIn3 {
  animation: fadeIn 1.1s 1.1s ease-in-out forwards;
}

.fadeIn4 {
  opacity: 0;
}

.fadeIn4.show-fadeIn4 {
  animation: fadeIn 1.1s 1.7s ease-in-out forwards;
}

.fadeIn5 {
  opacity: 0;
}

.fadeIn5.show-fadeIn5 {
  animation: fadeIn 0.8s ease forwards;
}

[data-fade],
[data-animate] {
  opacity: 0;
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

@media (max-width: 768px) {
  [data-fade],
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bound1 {
  opacity: 0;
}

.bound1.show-bound1 {
  animation: bound 2s 0.6s linear forwards;
}

.bound2 {
  opacity: 0;
}

.bound2.show-bound2 {
  animation: bound 2s 1s linear forwards;
}

.bound3 {
  opacity: 0;
}

.bound3.show-bound3 {
  animation: bound 2s 1.6s linear forwards;
}

@keyframes bound {
  0% {
    transform: translate(0%, -48%);
    opacity: 0;
  }
  30% {
    transform: translate(0%, 0%) scale(0.95);
  }
  40% {
    transform: translate(0%, -12%);
    opacity: 1;
  }
  55% {
    transform: translate(0%, 0%) scale(0.95);
  }
  60% {
    transform: translate(0%, -6%);
  }
  70% {
    transform: translate(0%, 0%) scale(0.95);
  }
  75% {
    transform: translate(0%, -2.4%);
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  right: 10px;
  top: 10px;
  text-align: center;
  font-size: 20px;
  color: #06007f;
  font-weight: bold;
  writing-mode: vertical-rl;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 7.2033898305vw;
    writing-mode: horizontal-tb;
    top: 0;
    right: unset;
    left: 3.3854166667vw;
  }
}
.section-title::before {
  content: "";
  display: block;
  width: 2px;
  height: 50px;
  background-color: #06007f;
}
@media (max-width: 768px) {
  .section-title::before {
    width: 10vw;
    height: 0.1694915254vw;
    margin-top: 4.5572916667vw;
  }
}
.section-title::after {
  content: "";
  display: block;
  background-image: url(../img/section-title-deco.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 27px 27px;
  width: 27px;
  height: 27px;
}
@media (max-width: 768px) {
  .section-title::after {
    width: 6.4406779661vw;
    height: 6.4406779661vw;
    background-size: 6.4406779661vw 6.4406779661vw;
  }
}

* {
  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: 16px;
}

body {
  margin: 0;
}

main {
  display: block;
  overflow-y: hidden;
  overflow-x: 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;
}

dt {
  font-weight: bold;
}

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;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 30px 20px;
}
@media (max-width: 768px) {
  .header__inner {
    padding: 2.6041666667vw 1.3020833333vw;
  }
}
.header__title {
  font-size: 24px;
  font-weight: bold;
  flex: 1;
}
.header__title img {
  width: 238px;
}
@media (max-width: 768px) {
  .header__title img {
    width: 52.0833333333vw;
  }
}
.header__btn {
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .header__btn {
    display: none;
  }
}
.header__btn-modal {
  display: block;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.header__btn-modal:hover {
  opacity: 0.8;
}
.header__nav {
  background-color: #f897b8;
  position: relative;
  width: 100%;
  padding: 25px 0;
}
.header__nav-item {
  width: 20%;
}
.header__nav::after {
  content: "";
  background-image: url(../img/dots-bg.png);
  background-size: 945px 525px;
  background-repeat: repeat-x;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 75px;
}
.header__nav-list {
  display: flex;
  justify-content: space-around;
}
.header__nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  height: 70px;
  width: auto;
}
.header__nav-link img {
  max-height: 40px;
  height: 100%;
  text-align: center;
}
.header__nav-link span {
  color: #fff;
  font-size: 17px;
  font-weight: 400;
}
.header__tabNav-hamburger-menu {
  position: fixed;
  top: 3.90625vw;
  right: 3.90625vw;
  z-index: 1002;
  width: 14.3229166667vw;
  height: 14.3229166667vw;
  border: none;
  border-radius: 50%;
  background-color: #f08ac8;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s;
}
.header__tabNav-hamburger-menu:hover {
  transform: scale(1.05);
}
.header__tabNav-hamburger-menu-line {
  position: absolute;
  left: 50%;
  width: 6.5104166667vw;
  height: 0.5208333333vw;
  border-radius: 999px;
  background-color: #fff;
  transform: translateX(-50%);
  transition: transform 0.3s, opacity 0.3s, top 0.3s, width 0.3s;
}
.header__tabNav-hamburger-menu-line:nth-child(1) {
  top: 3.90625vw;
}
.header__tabNav-hamburger-menu-line:nth-child(2) {
  top: 5.859375vw;
  left: 54%;
  width: 5.2083333333vw;
}
.header__tabNav-hamburger-menu-line:nth-child(3) {
  top: 7.8125vw;
  left: 58%;
  width: 3.3854166667vw;
}
.header__tabNav-hamburger-menu-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.4739583333vw;
  color: #fff;
  font-size: 2.0833333333vw;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}
.header__tabNav-hamburger-menu-text-open {
  display: block;
}
.header__tabNav-hamburger-menu-text-close {
  display: none;
}
.header__tabNav-hamburger-menu.is-open {
  width: 14.3229166667vw;
  height: 14.3229166667vw;
}
.header__tabNav-hamburger-menu.is-open .header__tabNav-hamburger-menu-line {
  width: 4.5572916667vw;
}
.header__tabNav-hamburger-menu.is-open .header__tabNav-hamburger-menu-line:nth-child(1) {
  top: 5.859375vw;
  right: 55%;
  transform: translateX(-50%) rotate(45deg);
}
.header__tabNav-hamburger-menu.is-open .header__tabNav-hamburger-menu-line:nth-child(2) {
  opacity: 0;
}
.header__tabNav-hamburger-menu.is-open .header__tabNav-hamburger-menu-line:nth-child(3) {
  top: 5.9895833333vw;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
}
.header__tabNav-hamburger-menu.is-open .header__tabNav-hamburger-menu-text {
  bottom: 2.4739583333vw;
  font-size: 2.0833333333vw;
}
.header__tabNav-hamburger-menu.is-open .header__tabNav-hamburger-menu-text-open {
  display: none;
}
.header__tabNav-hamburger-menu.is-open .header__tabNav-hamburger-menu-text-close {
  display: block;
}
.header__tabNav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background-color: rgba(35, 35, 35, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.header__tabNav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.header__tabNav-content {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__tabNav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7.5520833333vw;
}
.header__tabNav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3020833333vw;
  color: #fff;
  font-size: 3.6458333333vw;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  transition: opacity 0.3s;
}
.header__tabNav-link:hover {
  opacity: 0.75;
}
.header__tabNav-link img {
  width: 7.8125vw;
  height: 7.8125vw;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}

.authModal {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  transition: opacity 0.3s;
}
.authModal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.authModal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
}
.authModal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(520px, 100% - 40px);
  max-height: calc(75vh - 40px);
  overflow-y: auto;
  border: 4px solid #f897b8;
  border-radius: 24px;
  background-color: #fff;
  box-shadow: 0 20px 60px rgba(248, 151, 184, 0.35);
  padding: 36px 42px;
  transform: translate(-50%, -50%) scale(0.96);
  transition: transform 0.3s;
}
.authModal.is-open .authModal__content {
  transform: translate(-50%, -50%) scale(1);
}
.authModal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background-color: #f897b8;
  cursor: pointer;
}
.authModal__close::before, .authModal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background-color: #fff;
}
.authModal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.authModal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.authModal__head {
  text-align: center;
  padding-bottom: 24px;
}
.authModal__label {
  color: #f897b8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.authModal__title {
  color: #f897b8;
  font-size: 30px;
  font-weight: 700;
  padding-top: 4px;
}
.authModal__lead {
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  padding-top: 12px;
}
.authModal__tabs {
  display: flex;
  gap: 10px;
  padding-bottom: 24px;
}
.authModal__tab {
  flex: 1;
  border: 2px solid #f897b8;
  border-radius: 999px;
  background-color: #fff;
  color: #f897b8;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 10px;
}
.authModal__tab.is-active {
  background-color: #f897b8;
  color: #fff;
}
.authModal__form {
  display: none;
}
.authModal__form.is-active {
  display: block;
}
.authModal__field {
  display: block;
  padding-bottom: 16px;
}
.authModal__field span {
  display: block;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 7px;
}
.authModal__field input {
  width: 100%;
  border: 2px solid #f6c4d5;
  border-radius: 12px;
  background-color: #fff8fb;
  font-size: 16px;
  padding: 13px 14px;
  outline: none;
}
.authModal__field input:focus {
  border-color: #f897b8;
  background-color: #fff;
}
.authModal__check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 13px;
  padding: 2px 0 20px;
}
.authModal__submit {
  display: block;
  width: 100%;
  text-align: center;
  border: none;
  border-radius: 999px;
  background-color: #f897b8;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 20px;
  transition: opacity 0.3s;
}
.authModal__submit:hover {
  opacity: 0.8;
}
.authModal__submit:disabled {
  cursor: wait;
  opacity: 0.75;
}
.authModal__submit.is-loading {
  position: relative;
}
.authModal__submit.is-loading::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  margin-left: 10px;
  vertical-align: -3px;
  animation: authLoading 0.8s linear infinite;
}
.authModal__status {
  min-height: 22px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  padding-top: 12px;
}
.authModal__status.is-error {
  color: #d84040;
}

@keyframes authLoading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.footer {
  padding: 40px 0;
  background-color: #f897cf;
  color: #fff;
}
@media (max-width: 768px) {
  .footer {
    background-color: unset;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 100;
    padding: 0;
  }
}
.footer__nav {
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .footer__nav {
    padding-bottom: 0;
  }
}
.footer__nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .footer__nav-list {
    display: none;
  }
}
.footer__nav-item a {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.footer__logo {
  width: 162px;
  margin: 0 auto;
  padding: 20px 0;
}
.footer__copyright {
  font-size: 12px;
  color: #fff;
  text-align: center;
}
.footer__tabNav-list {
  display: none;
}
@media (max-width: 768px) {
  .footer__tabNav-list {
    display: flex;
    justify-content: space-between;
    padding-bottom: 2.6041666667vw;
  }
}
.footer__tabNav-item {
  width: 22.1354166667vw;
}
.footer__tabNav-item img {
  width: 22.1354166667vw;
}

.top__slider {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .top__slider {
    padding: 2.6041666667vw 0;
    flex-direction: column;
    align-items: center;
  }
}
.top__slider__bnr {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .top__slider__bnr {
    width: 100%;
  }
  .top__slider__bnr img {
    width: 100%;
  }
}
.top__slider__bnr .swiper-bullets {
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .top__slider__bnr .swiper-bullets {
    margin-top: 2.6041666667vw;
  }
}
.top__slider__bnr .swiper-bullets .swiper-pagination-bullet {
  width: 18px !important;
  height: 18px !important;
  background-color: #c8c8c8 !important;
  border-radius: 50% !important;
  margin: 0 10px !important;
}
.top__slider__bnr .swiper-bullets .swiper-pagination-bullet-active {
  background-color: #646464 !important;
}
.top__slider__newface {
  width: 520px;
  height: 657px;
  flex-shrink: 0;
  background-image: url(../img/slider-bg.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
}
.top__slider__newface .swiper-wrapper {
  align-items: center;
}
.top__slider__newface-item {
  display: flex !important;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  box-sizing: border-box;
  padding-top: 70px;
}
@media (max-width: 768px) {
  .top__slider__newface-item {
    padding-top: 11.71875vw;
  }
}
.top__slider__newface .girlCard {
  width: 340px;
}
@media (max-width: 768px) {
  .top__slider__newface .girlCard {
    width: 50vw;
  }
}
.top__slider__newface .girlCard-img {
  height: 483px;
  overflow: visible;
}
@media (max-width: 768px) {
  .top__slider__newface .girlCard-img {
    height: auto;
    width: 57.2916666667vw;
  }
  .top__slider__newface .girlCard-img img {
    height: auto;
    width: 57.2916666667vw;
  }
}
.top__slider__newface .girlCard-newface {
  top: -25px;
  left: -31px;
  width: 76px;
  height: 76px;
}
.top__slider__newface .girlCard-info {
  width: 224px;
  margin-top: -31px;
}
@media (max-width: 768px) {
  .top__slider__newface .girlCard-info {
    width: 100%;
    margin-top: -4.0364583333vw;
  }
}
.top__slider__newface .girlCard-name {
  border: 2px solid #ff76ba;
  border-radius: 22px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  padding: 9px 20px;
  color: #ff76ba;
}
@media (max-width: 768px) {
  .top__slider__newface .girlCard-name {
    width: 39.0625vw;
    margin: 0 auto;
    font-size: 3.6458333333vw;
    padding: 1.8229166667vw 2.6041666667vw;
    font-weight: 500;
  }
}
.top__slider__newface .girlCard-size {
  background-color: transparent;
  border-radius: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 12px 0 0;
  font-weight: 400;
}
@media (max-width: 768px) {
  .top__slider__newface .girlCard-size {
    width: 100%;
    font-size: 3.6458333333vw;
    padding: 1.5625vw 0 0;
  }
}
.top__slider__newface .girlCard-nominal, .top__slider__newface .girlCard-time {
  display: none;
}
.top__slider__newface-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 0;
  height: 0;
  cursor: pointer;
  transform: translateY(-50%);
}
.top__slider__newface-arrow--prev {
  left: 20px;
  border-top: 17px solid transparent;
  border-right: 23px solid #f879b3;
  border-bottom: 17px solid transparent;
}
.top__slider__newface-arrow--next {
  right: 20px;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 23px solid #f879b3;
}
.top__slider__newface-arrow.swiper-button-disabled {
  opacity: 0.35;
}
@media (max-width: 768px) {
  .top__slider__newface {
    width: 100vw;
    height: auto;
    aspect-ratio: 520/580;
    margin-top: 30px;
  }
  .top__slider__newface::before {
    content: "★お勧め新人";
    position: absolute;
    top: 4%;
    left: 34%;
    z-index: 4;
    color: #f8799e;
    font-size: clamp(18px, 5vw, 30px);
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .top__slider__newface-item {
    padding-top: 16%;
  }
  .top__slider__newface-arrow--prev {
    left: 5%;
    border-top-width: clamp(12px, 3.3vw, 17px);
    border-right-width: clamp(16px, 4.4vw, 23px);
    border-bottom-width: clamp(12px, 3.3vw, 17px);
  }
  .top__slider__newface-arrow--next {
    right: 5%;
    border-top-width: clamp(12px, 3.3vw, 17px);
    border-bottom-width: clamp(12px, 3.3vw, 17px);
    border-left-width: clamp(16px, 4.4vw, 23px);
  }
}
@media (max-width: 440px) {
  .top__slider__newface-item {
    padding-top: 16%;
  }
  .top__slider__newface .girlCard {
    width: 66%;
  }
  .top__slider__newface .girlCard-inner {
    width: 66%;
  }
  .top__slider__newface .girlCard-newface {
    top: -8%;
    left: -10%;
    width: 27%;
  }
}
.top__sche {
  padding: 20px 0;
}
.top__sche h2 {
  text-align: center;
  padding: 80px 0 20px;
}
.top__sche h2 img {
  width: 698px;
}
@media (max-width: 768px) {
  .top__sche h2 img {
    width: 90.8854166667vw;
  }
}
.top__sche__day {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  color: #f8799e;
  padding-bottom: 20px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .top__sche__day {
    font-size: 4.6875vw;
  }
}
.top__sche__nav__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px 10px;
  width: 1070px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .top__sche__nav__list {
    justify-content: space-between;
    width: 100%;
  }
}
.top__sche__nav__list .girlCard:nth-child(n+17) {
  display: none !important;
}
@media (max-width: 768px) {
  .top__sche__nav__list .girlCard:nth-child(n+17) {
    display: block !important;
  }
}
.top__sche__btn {
  background-color: #323232;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 20px;
  width: 800px;
  margin: 80px auto 0;
}
@media (max-width: 768px) {
  .top__sche__btn {
    display: none;
  }
}
.top__sche__btn:hover {
  background-color: #f897b8;
  color: #fff;
  transition: all 0.3s;
}
.top__sche__btn a {
  display: block;
  text-decoration: none;
  position: relative;
}
.top__sche__btn a::after {
  content: "";
  background-image: url(../img/arrow-icon.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 21px;
  height: 7px;
  margin-right: auto;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.schedule {
  padding-top: 50px;
}
.schedule h2 {
  text-align: center;
}
.schedule h2 img {
  width: 698px;
}
@media (max-width: 768px) {
  .schedule h2 img {
    width: 78.125vw;
  }
}
.schedule__btn {
  margin: 40px 0 50px;
}
@media (max-width: 768px) {
  .schedule__btn {
    margin: 5.2083333333vw 0 6.5104166667vw;
  }
}
.schedule__btn__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .schedule__btn__list {
    overflow-x: scroll;
    gap: 1.5625vw;
  }
}
.schedule__btn__list-item {
  flex: 1;
}
.schedule__btn__list-link {
  display: block;
  width: 100%;
  border-radius: 16px;
  background-color: #d4d4d4;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  padding: 12px 8px;
  text-align: center;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .schedule__btn__list-link {
    width: 26.0416666667vw;
    font-size: 2.34375vw;
    padding: 1.5625vw 1.3020833333vw;
  }
}
.schedule__btn__list-link.dateActive, .schedule__btn__list-link:hover {
  background-color: #f897b8;
  color: #fff;
}
.schedule__btn__list-date {
  display: block;
  font-size: 21px;
  font-weight: 400;
  font-feature-settings: "palt";
}
@media (max-width: 768px) {
  .schedule__btn__list-date {
    font-size: 3.3854166667vw;
  }
}
.schedule__nav__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px 10px;
  width: 1070px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .schedule__nav__list {
    justify-content: space-between;
    gap: 5.2083333333vw 1.3020833333vw;
    width: 100%;
  }
}

.girlCard {
  width: 260px;
}
@media (max-width: 768px) {
  .girlCard {
    width: 45.5729166667vw;
  }
}
.girlCard-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.girlCard-img {
  width: 100%;
  height: 100%;
  z-index: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .girlCard-img {
    width: 45.5729166667vw;
  }
}
.girlCard-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s, filter 0.4s;
}
@media (max-width: 768px) {
  .girlCard-img img {
    width: 45.5729166667vw;
  }
}
.girlCard-imgBtn {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.girlCard-imgBtn::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(248, 151, 184, 0.45);
  opacity: 0;
  transition: opacity 0.4s;
}
.girlCard-imgBtn:hover img, .girlCard-imgBtn:focus-visible img {
  filter: brightness(1.08);
  transform: scale(1.05);
}
.girlCard-imgBtn:hover::after, .girlCard-imgBtn:focus-visible::after {
  opacity: 1;
}
.girlCard-newface {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 50px;
  height: 50px;
  display: none;
  z-index: 2;
}
.girlCard-newface img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.girlCard-info {
  text-align: center;
  width: 220px;
  margin: 0 auto;
  margin-top: -20px;
  z-index: 1;
}
@media (max-width: 768px) {
  .girlCard-info {
    width: 39.0625vw;
  }
}
.girlCard-name {
  border: 3px solid #f897b8;
  background-color: #fff;
  font-size: 19px;
  padding: 5px 0;
  color: #f897b8;
  font-weight: bold;
  border-top-right-radius: 28px;
  border-top-left-radius: 28px;
}
@media (max-width: 768px) {
  .girlCard-name {
    font-size: 3.3854166667vw;
    padding: 0.6510416667vw 0;
    border-top-right-radius: 3.90625vw;
    border-top-left-radius: 3.90625vw;
    border: 0.2604166667vw solid #f897b8;
    padding: 0.6510416667vw 0;
  }
}
.girlCard-size {
  background-color: #f897b8;
  color: #fff;
  padding: 5px 10px;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  font-feature-settings: "palt";
  font-size: 16px;
}
@media (max-width: 768px) {
  .girlCard-size {
    font-size: 2.6041666667vw;
    padding: 0.6510416667vw 1.3020833333vw;
    border-bottom-right-radius: 3.90625vw;
    border-bottom-left-radius: 3.90625vw;
  }
}
.girlCard-nominal {
  color: #f897b8;
  font-weight: 500;
  font-size: 18px;
  padding-top: 10px;
}
@media (max-width: 768px) {
  .girlCard-nominal {
    font-size: 2.9947916667vw;
    padding-top: 1.3020833333vw;
  }
}
.girlCard-time {
  width: 170px;
  border: 2px solid #f897b8;
  font-size: 20px;
  color: #f897b8;
  border-radius: 10px;
  margin: 5px auto 0 auto;
}
@media (max-width: 768px) {
  .girlCard-time {
    width: 32.5520833333vw;
    font-size: 3.6458333333vw;
    border-radius: 1.3020833333vw;
    border: 0.390625vw solid #f897b8;
  }
}

.girls {
  padding-top: 70px;
}
.girls h2 {
  text-align: center;
  padding-bottom: 80px;
}
.girls h2 img {
  width: 698px;
}
@media (max-width: 768px) {
  .girls h2 img {
    width: 78.125vw;
  }
}
.girls__nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 10px;
}
@media (max-width: 768px) {
  .girls__nav__list {
    justify-content: space-between;
    gap: 5.2083333333vw 1.3020833333vw;
    width: 100%;
  }
}

.about {
  padding-top: 70px;
}
@media (max-width: 768px) {
  .about {
    padding-top: 6.5104166667vw;
  }
}
.about h2 {
  text-align: center;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .about h2 {
    padding-bottom: 6.5104166667vw;
  }
}
.about h2 img {
  width: 698px;
}
@media (max-width: 768px) {
  .about h2 img {
    width: 78.125vw;
  }
}

.system {
  padding-top: 70px;
}
.system h2 {
  text-align: center;
  padding-bottom: 80px;
}
.system h2 img {
  width: 698px;
}
@media (max-width: 768px) {
  .system h2 img {
    width: 90.8854166667vw;
  }
}
.system__content {
  display: flex;
  flex-direction: column;
  gap: 3px 0;
}
@media (max-width: 768px) {
  .system__content {
    gap: 0.390625vw 0;
  }
}
.system__content-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.system__content-item-title {
  font-size: 20px;
  font-weight: 400;
  background-color: #ff749f;
  color: #fff;
  padding: 10px 20px;
  width: 200px;
  text-align: center;
}
@media (max-width: 768px) {
  .system__content-item-title {
    font-size: 3.90625vw;
    width: 36.4583333333vw;
    padding: 1.3020833333vw 2.6041666667vw;
  }
}
.system__content-item-price {
  font-size: 20px;
  font-weight: 400;
  background-color: #ff95ab;
  color: #fff;
  padding: 10px 20px 10px 60px;
  width: 200px;
}
@media (max-width: 768px) {
  .system__content-item-price {
    padding: 1.3020833333vw 2.6041666667vw 1.3020833333vw 10.4166666667vw;
    font-size: 3.90625vw;
    width: 36.4583333333vw;
  }
}
.system__content-item-price span {
  font-size: 16px;
}
@media (max-width: 768px) {
  .system__content-item-price span {
    font-size: 2.0833333333vw;
  }
}
.system__course {
  padding-top: 80px;
  max-width: 690px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .system__course {
    max-width: 100%;
  }
}
.system__course-inner {
  padding: 30px 0;
}
.system__course-title {
  font-size: 20px;
  font-weight: 400;
  background-color: #ff749f;
  color: #fff;
  padding: 8px 20px;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .system__course-title {
    font-size: 3.90625vw;
    padding: 1.0416666667vw 2.6041666667vw;
  }
}
.system__course-text {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .system__course-text {
    font-size: 2.9947916667vw;
  }
}
.system__course-price-list {
  display: flex;
  justify-content: center;
  gap: 0 30px;
}
@media (max-width: 768px) {
  .system__course-price-list {
    gap: 0 3.90625vw;
  }
}
.system__course-price {
  font-size: 35px;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  color: #ff749f;
  border-bottom: 1px solid #ff749f;
}
@media (max-width: 768px) {
  .system__course-price {
    font-size: 4.9479166667vw;
  }
}
.system__course-price span {
  font-size: 20px;
}
@media (max-width: 768px) {
  .system__course-price span {
    font-size: 2.6041666667vw;
  }
}
.system__course-option-inner {
  display: flex;
  justify-content: center;
  gap: 0 10px;
}
@media (max-width: 768px) {
  .system__course-option-inner {
    flex-direction: column;
    gap: 5.2083333333vw;
    padding: 0 5.2083333333vw;
    margin: 0 auto;
  }
}
.system__course-option-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.system__course-option-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #ff749f;
  font-weight: 400;
  border: 1px solid #ff749f;
  text-align: center;
}
@media (max-width: 768px) {
  .system__course-option-item {
    font-size: 4.6875vw;
    justify-content: center;
    align-items: center;
  }
}
.system__course-option-item-title {
  padding: 5px 0;
  width: 103px;
}
@media (max-width: 768px) {
  .system__course-option-item-title {
    width: 100%;
  }
}
.system__course-option-item-price {
  border-left: 1px solid #ff749f;
  padding: 5px 0;
  width: 103px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .system__course-option-item-price {
    width: 100%;
    font-size: 4.6875vw;
  }
}
.system__course-option-item-price span {
  font-size: 12px;
}
@media (max-width: 768px) {
  .system__course-option-item-price span {
    font-size: 3.125vw;
  }
}
.system__course-payment {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .system__course-payment {
    gap: 2.6041666667vw;
  }
}
.system__course-payment-text {
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
  padding: 30px 0;
}
@media (max-width: 768px) {
  .system__course-payment-text {
    font-size: 2.6041666667vw;
    padding: 3.90625vw 0;
  }
}
.system__course-payment-payment {
  width: 176px;
}
@media (max-width: 768px) {
  .system__course-payment-payment {
    width: 22.9166666667vw;
  }
}
.system__course-payment-payment img {
  width: 100%;
}

.access {
  padding-top: 70px;
}
@media (max-width: 768px) {
  .access {
    padding: 6.5104166667vw 2.6041666667vw;
  }
}
.access h2 {
  text-align: center;
  padding-bottom: 80px;
}
.access h2 img {
  width: 698px;
}
@media (max-width: 768px) {
  .access h2 img {
    width: 78.125vw;
  }
}
.access__content {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin: 0 auto;
  width: 700px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .access__content {
    width: 100%;
    padding-bottom: 6.5104166667vw;
  }
}
.access__content__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.access__content__item h3 {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}
.access__content__item-map {
  width: 100%;
  height: 300px;
  border: 1px solid #f897cf;
}
.access__content__item-map iframe {
  width: 100%;
  height: 100%;
}
.access__content__ban {
  margin: 0 auto;
  padding-bottom: 100px;
  width: 700px;
}
@media (max-width: 768px) {
  .access__content__ban {
    width: 100%;
    padding-bottom: 6.5104166667vw;
  }
}
.access__content__ban h3 {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  background-color: #f897cf;
  padding: 10px;
  color: #fff;
}
@media (max-width: 768px) {
  .access__content__ban h3 {
    font-size: 2.34375vw;
    padding: 1.3020833333vw;
  }
}
.access__content__ban-list {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: left;
}
@media (max-width: 768px) {
  .access__content__ban-list {
    padding-top: 9.1145833333vw;
  }
}
.access__content__ban-list li {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  list-style: disc;
}
@media (max-width: 768px) {
  .access__content__ban-list li {
    font-size: 2.34375vw;
  }
}/*# sourceMappingURL=style.css.map */