@charset "UTF-8";
:root {
  --header-h: 48px;
  --menu-w: 350px;
  --menu-w-sp: 326px;

  --radius-left: 16px;
  --duration: 500ms;
  --easing: ease-in-out;
  --shadow-sm: 1px 1px 3px 1px rgba(0, 0, 0, .10);
  --shadow-lg: 1px 1px 3px 3px rgba(0, 0, 0, .10);

  --z-header: 1000;
  --z-dropdown: 1100;
  --z-backdrop: 900;

  --color-bg: #fff;
  --color-text: #13131E;
  --color-border: #E5E7EB;
  --band-bg: #FDEEF8;

  --fs-item: 18px;
  --fs-item-sp: 15px;

  --btn-primary: #FA508C;
  --btn-primary-hover: #EC85C8;

  scrollbar-gutter: stable;
}

/* header */
.site-header {
  width: 100% !important;
  margin: 0 !important;
  z-index: var(--z-header);
  background: var(--color-bg);
  padding: 0 2.5641025641vw;
}
.headerInner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  width: 984px;
  margin: 0 auto;
  box-sizing: border-box;
}

.logo { margin: 0; }
.logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

header figure {
  width: 124px;
}
header figure img {
  width: 100%;
}
header .catch  {
  margin: 0;
  padding-left: 10px;
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  color: #595960;
}

/* Global Navigation */
.gNav {
  margin-left: auto;
}
.gNav .menuList {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.gNavItem a {
  text-decoration: none;
  color: inherit;
}

/* Register Button */
.gNavItem--register .register-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #62c850;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 0;
}
.gNavItem--register .register-btn__svg {
  width: 16px;
  height: 16px;
  display: block;
  overflow: visible;
}
.gNavItem--register .register-btn__label {
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
}

/*  Hover / Focus */
.gNavItem--register .register-btn::before {
  content: "";
  position: absolute;
  inset: 4px 0;
  border-radius: 8px;
  background: transparent;
  z-index: -1;
  opacity: 0;
  transition:
    opacity var(--duration) var(--easing),
    background-color var(--duration) var(--easing);
  pointer-events: none;
}

@media (hover: hover) {
  .gNavItem--register .register-btn:hover::before {
    background: #62c850;
    opacity: 1;
  }
  .gNavItem--register .register-btn:hover {
    color: #fff;
  }
}

.gNavItem--register .register-btn:active::before {
  background: #62c850;
}
.gNavItem--register .register-btn:active {
  transform: translateY(0);
}

/* Menu Toggle */
.menu-toggle {
  width: 48px;
  height: 48px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: transparent;
  border: none;
  color: #666666;
  cursor: pointer;
  border-radius: 8px;
  position: relative;
  z-index: 0;
}
.menu-toggle__label {
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}
.menu-icon {
  width: 16px;
  height: 16px;
  position: relative;
}
.menu-icon__bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transform-origin: 8px 1px;
  transition:
    transform var(--duration) var(--easing),
    opacity var(--duration) var(--easing);
}

.menu-icon__bar:nth-child(1) { top: 2px; }
.menu-icon__bar:nth-child(2) { top: 7px; }
.menu-icon__bar:nth-child(3) { top: 12px; }

/* nav-animation */
html.nav-open .menu-icon__bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
html.nav-open .menu-icon__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}
html.nav-open .menu-icon__bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* Dropdown Panel */
.dropdown {
  position: fixed;
  left: 0;
  right: 0;
  z-index: var(--z-dropdown);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity var(--duration) var(--easing),
    transform var(--duration) var(--easing);
}
.dropdown[hidden] {
  display: block;
  pointer-events: none;
  opacity: 0;
}
html.nav-open .dropdown {
  opacity: 1;
  transform: translateY(0);
}

.dropdown .dropdown__panel {
  position: absolute;
  right: 0;
  top: 0;
  width: var(--menu-w);
  background: var(--color-bg);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-left) 0 0 var(--radius-left);
  overflow: hidden;
  pointer-events: auto;
}
.dropdown .panel-band {
  height: 24px;
  background: var(--band-bg);
  transform-origin: top;
  transform: scaleY(0);
  opacity: 0;
  transition-delay: 80ms;
  transition:
    transform 600ms cubic-bezier(.22, .61, .36, 1),
    opacity 700ms cubic-bezier(.22, .61, .36, 1);
}

html.nav-open .panel-band {
  transform: scaleY(1);
  opacity: 1;
}

/* Dropdown List */
.dropdown .dropdown__list {
  list-style: none;
  margin: 0;
  padding: 8px 12px;
}
.dropdown .dropdown__item { margin: 0; }
.dropdown .dropdown__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 48px;
  height: 54px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--color-text);
  font-size: var(--fs-item);
}
.dropdown .dropdown__item:first-child .dropdown__link {
  padding-left: 18px;
}
.dropdown .dropdown__link:hover {
  background: #FFF6FB;
}
.dropdown .dropdown__icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: #C9A0FE;
}
.dropdown .menu-divider {
  height: 1px;
  background: var(--color-border);
  margin: 8px 0;
}
.dropdown .dropdown__item.is-block {
  padding: 24px;
}
@media screen and (max-width: 854px), (hover: none) and (pointer: coarse) {
  .dropdown__panel:focus,
  .dropdown__panel:focus-visible {
    outline: none;
  }
}


/* Line-info */
.dropdown .line-info {
  text-align: center;
  color: #595960;
}
.dropdown .line-info .line-info__h3 {
  margin: 0 0 8px 0;
  font-size: 14px;
}
.dropdown .line-info h3::before {
  content: "●●●●●";
  display: block;
  text-align: center;
  font-size: 10px;
  color: #FA508C;
  position: absolute;
  bottom: 229px;
  left: 68px;
  letter-spacing: 7px;
}
.dropdown .line-info .tel { margin: 8px 0; }
.dropdown .line-info .tel__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.dropdown .line-info .tel__link img { height: 20px; }
.dropdown .line-info .txt {
  margin: 8px 0 0;
  font-size: 10px;
  color: #595960;
  font-weight: 700;
}
.dropdown .line-info .registration-btn,
.dropdown .line-info .pc-view {
  display: block;
  width: 254px;
  margin: auto;
}
.dropdown .line-info .registration-btn {
  height: 47px;
  display: block;
  background: #61C850;
  color: #fff;
  text-align: center;
  border-radius: 12px;
  font-size: 14px;
  padding: 14px;
  margin-top: 2px;
  margin-bottom: 12px;
  position: relative;
  font-weight: bold;
  box-shadow: var(--shadow-sm);
}
.dropdown .line-info .registration-btn:hover {
  opacity: 0.8;
}
.dropdown .line-info li.dropdown__item.is-block:last-child {
  padding: 24px;
}
.dropdown .line-info .chevron-round-right {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 1.128205vw;
}
.dropdown .line-info .chevron-round-right::before,
.dropdown .line-info .chevron-round-right::after {
  content: "";
  position: absolute;
  background: var(--color-bg);
  border-radius: 2px;
}

.chevron-round-right::before {
  top: 0; left: 0; right: 0; height: 2px;
}
.chevron-round-right::after {
  top: 0; right: 0; bottom: 0; width: 2px;
}

.dropdown .line-info .line-btn { display: inline-block; }
.dropdown .line-info .line-btn img { width: 254px; display: block; }

/* Backdrop */
.backdrop {
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: var(--z-backdrop);
}

/* スクロールロック */
html:has(.menu-toggle[aria-expanded="true"]) {
  overflow: hidden;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .dropdown { transition: none; }
  .panel-band { animation: none; }
  .menu-icon__bar { transition: none; }
}

@media screen and (max-width: 854px) {
  header {
    width: 100%;
    padding: 0;
  }
 .headerInner {
    width: 100%;
  }
  header .catch {
    font-size: 2.5vw;
    line-height: calc(1em + 0.3rem);
  }
  header figure {
    width: 31.7948717949vw;
  }
  header figure img {
    width: 100%;
  }
  .dropdown__link {
    height: 48px;
  }
  .dropdown__link span {
    font-size: var(--fs-item-sp);
  }
  .dropdown .line-info h3:before {
    left: 56px !important;
    bottom: 229px;
    letter-spacing: 7px;
  }
  .dropdown .line-info .chevron-round-right {
    right: 2.128205vw;
  }
    :root {
  --menu-w: var(--menu-w-sp);
  }
}

footer {
  background-color: #fa508c;
  padding: 64px;
}
footer .footer-inner {
  max-width: 984px;
  margin: 0 auto;
}
footer .footer-inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 56px;
}
footer .footer-inner ul li {
  border-right: 2px solid #ddc4f2;
  line-height: normal;
}
footer .footer-inner ul li a {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 0 10px;
  line-height: normal;
}
footer .footer-inner ul li a:hover {
  text-decoration: underline;
}
footer .footer-inner small {
  text-align: center;
  display: block;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

@media screen and (max-width: 854px) {
  footer {
    background-color: #fa508c;
    padding: 8.2051282051vw 2.0512820513vw 16.4102564103vw;
  }
  footer .footer-inner {
    max-width: 100%;
    margin: 0 auto;
  }
  footer .footer-inner .menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-bottom: 8.2051282051vw;
  }
  footer .footer-inner .menu li {
    border-right: 2px solid #ddc4f2;
    line-height: normal;
    margin-top: 6.1538461538vw;
  }
  footer .footer-inner .menu li:nth-child(3), footer .footer-inner .menu li:nth-child(5), footer .footer-inner .menu li:nth-child(8) {
    border-right: none;
  }
  footer .footer-inner .menu li a {
    font-size: 3.0769230769vw;
    padding: 0 4.8717948718vw;
    display: block;
    line-height: 1;
  }
  footer .footer-inner .connection-link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-bottom: 14.358974359vw;
  }
  footer .footer-inner .connection-link li {
    border-right: 2px solid #ddc4f2;
    line-height: normal;
    margin-top: 6.1538461538vw;
  }
  footer .footer-inner .connection-link li:nth-child(3), footer .footer-inner .connection-link li:nth-child(6) {
    border-right: none;
  }
  footer .footer-inner .connection-link li a {
    font-size: 3.0769230769vw;
    padding: 0 4.8717948718vw;
    display: block;
    line-height: 1;
  }
  footer .footer-inner small {
    text-align: center;
    display: block;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 3.3333333333vw;
  }
}
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  overflow-x: hidden;
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.8;
}

/* スクロールバー全体 */
ul::-webkit-scrollbar {
  height: 8px;
}

/* スクロールバーのトラック（背景部分） */
ul::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 100px;
}

/* スクロールバーのつまみ（ドラッグ部分） */
ul::-webkit-scrollbar-thumb {
  background: #f2acc0;
  border-radius: 100px;
}

.workplace ul::-webkit-scrollbar-thumb {
  background: var(--btn-primary-hover);
  border-radius: 100px;
}

.floating-btn {
  position: fixed;
  right: 8px;
  bottom: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s, visibility 0.4s;
  transition: opacity 0.4s, visibility 0.4s;
  -webkit-transition-timing-function: ease-in;
          transition-timing-function: ease-in;
  pointer-events: none;
}
.floating-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.floating-btn a {
  display: block;
  text-align: center;
  position: relative;
  width: 480px;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  background: #61C850;
  border-radius: 20px 20px 0 0;
  box-shadow: var(--shadow-lg);
  padding: 32px;
}
.floating-btn a span {
  position: absolute;
  right: 20px;
  top: 50%;
  color: #fff;
}
.floating-btn a figure {
  position: absolute;
  right: 20px;
  top: -81px;
  z-index: -1;
}

.sp-view {
  display: none;
}

.pc-view {
  display: block;
}

@media screen and (max-width: 854px) {
  .floating-btn {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 4.1025641026vw;
    margin: auto;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.4s, visibility 0.4s;
    transition: opacity 0.4s, visibility 0.4s;
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
    pointer-events: none;
  }
  .floating-btn.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
  }
  .floating-btn a {
    width: 91.7948717949vw;
    max-width: 100vw;
    box-sizing: border-box;
    margin: 0 auto; 
    font-size: 4.6153846154vw;
    border: none;
    border-radius: 16px;
    padding: 5.1282051282vw;
    z-index: 0;
  }
  .floating-btn a span {
    right: 5.1282051282vw;
    top: 50%;
  }
  .floating-btn a figure {
    display: none;
  }
  .sp-view {
    display: block;
  }
  .pc-view {
    display: none;
  }
  /* スクロールバー全体 */
  ul::-webkit-scrollbar {
    height: 4px;
  }
  ul::-webkit-scrollbar-track {
    background: #fff;
    margin-right: 7.6923076923vw;
  }
}