@charset "UTF-8";
/* 共通部分 base + components + utils をまとめる */
/* CSS Document */
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth; }

/* ベース */
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #333; }

@media (max-width: 991px) {
  html {
    font-size: 55% !important; } }
@media (max-width: 575px) {
  html {
    font-size: 60% !important; } }
/*a関係*/
a {
  text-decoration: none;
  /* 常時下線なし */
  color: inherit;
  /* 親要素の文字色を継承 */
  outline: none;
  border: none; }

a:hover,
a:focus {
  text-decoration: none;
  /* ホバー・フォーカス時も下線なし */
  outline: auto;
  /* キーボード操作時にフォーカスを可視化 */
  border: none; }

a:active {
  text-decoration: none;
  /* クリック中も下線なし */ }

/* row gutter 上書き */
.row {
  --bs-gutter-x: 1.5rem; }

/* 全体ボックスサイズ統一 */
*,
*::before,
*::after {
  box-sizing: border-box; }

/* Page Top */
#page-top {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease; }

#page-top.is-visible {
  opacity: 1;
  pointer-events: auto; }

/* =========================================
	Drawer Menu (BEM + Sass)
	テンプレート用
	========================================= */
/* カラー変数 */
/* =========================================
	Drawer Menu
========================================= */
.drawer__button {
  position: relative;
  width: 4rem;
  height: 5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001; }
  .drawer__button .bar {
    position: absolute;
    left: 50%;
    width: 4rem;
    height: 2px;
    background: #505050;
    transform: translateX(-50%);
    transition: transform 0.3s ease, opacity 0.3s ease; }
  .drawer__button .bar:nth-child(1) {
    top: calc(40% - 1rem); }
  .drawer__button .bar:nth-child(2) {
    top: 40%; }
  .drawer__button .bar:nth-child(3) {
    top: calc(40% + 1rem); }
  .drawer__button .drawer__text {
    position: absolute;
    bottom: -0.25rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    white-space: nowrap; }
  .drawer__button--active .bar:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
    top: 40%; }
  .drawer__button--active .bar:nth-child(2) {
    opacity: 0; }
  .drawer__button--active .bar:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
    top: 40%; }
  .drawer__button--active .drawer__text {
    content: "閉じる"; }
.drawer__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease; }
  .drawer__nav--active {
    opacity: 1;
    visibility: visible;
    z-index: 1000; }
    .drawer__nav--active .drawer__nav__inner {
      transform: translateX(0); }
  .drawer__nav__inner {
    position: relative;
    width: 60%;
    min-width: fit-content;
    height: 100%;
    background-color: #fff;
    margin-left: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease; }
    .drawer__nav__inner__menu {
      display: flex;
      gap: 6rem;
      padding: 4rem; }
      @media screen and (max-width: 575px) {
        .drawer__nav__inner__menu {
          flex-direction: column;
          gap: 2.5rem; } }
      .drawer__nav__inner__menu .menu-col {
        display: flex;
        gap: 2.5rem;
        flex-direction: column; }
        .drawer__nav__inner__menu .menu-col .menu-group .menu-title {
          display: block;
          color: #00aae7;
          font-weight: 500;
          font-size: 1.6rem; }
          .drawer__nav__inner__menu .menu-col .menu-group .menu-title:hover {
            color: #80d5f3; }
        @media screen and (max-width: 575px) {
          .drawer__nav__inner__menu .menu-col .menu-group .submenu {
            display: none; } }
        .drawer__nav__inner__menu .menu-col .menu-group .submenu li {
          line-height: 1.5em; }
          .drawer__nav__inner__menu .menu-col .menu-group .submenu li a {
            color: #666;
            font-size: 1.2rem;
            text-decoration: none; }
            .drawer__nav__inner__menu .menu-col .menu-group .submenu li a:hover {
              color: #00aae7; }
        .drawer__nav__inner__menu .menu-col .notice {
          font-size: 1.2rem;
          color: #666; }
          .drawer__nav__inner__menu .menu-col .notice i {
            color: #00aae7;
            margin-right: 0.5rem; }
          .drawer__nav__inner__menu .menu-col .notice:hover {
            color: #00aae7; }

/* =========================================
	bodyスクロール禁止（メニュー開時）
========================================= */
body.drawer-open {
  height: 100%;
  overflow: hidden; }

/* =========================================
   _inview.scss
   Inview Animation (Sass版)
   JS依存なし（IntersectionObserver前提）
   ========================================= */
.js-inview {
  will-change: opacity, transform; }

.inview {
  opacity: 0; }

.inview.is-inview {
  opacity: 1; }

.inview--fade {
  transition: opacity 0.8s ease; }

.inview--up {
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease; }

.inview--up.is-inview {
  transform: translateY(0); }

.inview--fade-up {
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease; }

.inview--fade-up.is-inview {
  transform: translateY(0); }

.inview--zoom {
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease; }

.inview--zoom.is-inview {
  transform: scale(1); }

.inview--left {
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease; }

.inview--left.is-inview {
  transform: translateX(0); }

.inview--right {
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease; }

.inview--right.is-inview {
  transform: translateX(0); }

html {
  scroll-padding-top: 105px; }

body {
  font-family: "Rounded M+ 1c", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #4d4d4d;
  padding-top: 110px; }
  @media screen and (max-width: 991px) {
    body {
      padding-top: 95px; } }
  @media screen and (max-width: 767px) {
    body {
      padding-top: 65px; } }
  @media screen and (max-width: 575px) {
    body {
      padding-top: 70px; } }

h2,
h3,
h4,
h5 {
  letter-spacing: 0.075em; }

h2 {
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.2em; }
  @media screen and (max-width: 991px) {
    h2 {
      font-size: 2.5rem;
      margin-bottom: 2.5rem; } }
  h2 span {
    display: block;
    font-size: 1.6rem;
    color: #b4b4b4;
    line-height: 1em;
    margin-top: 0.5rem; }
    @media screen and (max-width: 991px) {
      h2 span {
        font-size: 1.4rem; } }

main {
  padding-bottom: 7rem; }
  @media screen and (max-width: 991px) {
    main {
      padding-bottom: 5rem; } }
  @media screen and (max-width: 575px) {
    main {
      padding-bottom: 3rem; } }

section:not(:last-child) {
  margin-bottom: 10rem; }
  @media screen and (max-width: 991px) {
    section:not(:last-child) {
      margin-bottom: 7rem; } }
  @media screen and (max-width: 991px) {
    section:not(:last-child) {
      margin-bottom: 7rem; } }
  @media screen and (max-width: 575px) {
    section:not(:last-child) {
      margin-bottom: 5rem; } }

p,
ul,
ol,
li,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  text-align: justify; }

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer; }

button:focus {
  outline: none; }

.inner {
  width: 83%;
  margin: 0 auto; }
  @media screen and (max-width: 991px) {
    .inner {
      width: 90%; } }
  @media screen and (max-width: 767px) {
    .inner {
      width: 100%; } }

a {
  outline: none;
  border: none;
  transition: 0.3s ease; }
  a:hover {
    outline: none;
    border: none; }
  a:focus:not(:focus-visible) {
    outline: none; }

ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0; }

.header-img {
  height: 230px;
  border-radius: 10px;
  width: 95%;
  margin: 0 auto 6rem;
  display: flex;
  align-items: center; }
  @media screen and (max-width: 991px) {
    .header-img {
      height: 200px;
      margin: 0 auto 5rem; } }
  @media screen and (max-width: 767px) {
    .header-img {
      height: 180px;
      margin: 0 auto 4rem; } }
  @media screen and (max-width: 575px) {
    .header-img {
      width: 100%;
      height: 160px;
      margin: 0 auto 3rem;
      border-radius: 0; } }
  .header-img h1 {
    color: #fff;
    font-size: 4rem;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.25em; }
    @media screen and (max-width: 767px) {
      .header-img h1 {
        font-size: 3.5rem; } }
    @media screen and (max-width: 575px) {
      .header-img h1 {
        font-size: 3rem; } }
    .header-img h1 span {
      display: block;
      font-size: 1.6rem;
      line-height: 1em;
      margin-top: 0.5rem; }
      @media screen and (max-width: 575px) {
        .header-img h1 span {
          font-size: 1.4rem; } }

.link-box {
  text-align: center; }
  .link-box .link-button {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-align: justify;
    line-height: 1.3em;
    border-radius: 999px;
    height: 50px;
    padding: 0 6rem 0 2rem;
    font-weight: 500;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease; }
    @media screen and (max-width: 991px) {
      .link-box .link-button {
        height: fit-content;
        min-height: 45px; } }
    .link-box .link-button::after {
      content: "\f0a9";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      /* ←これ追加！！ */
      right: 0.75rem;
      /* ←ここで固定 */
      top: 50%;
      transform: translateY(-50%);
      margin-left: 2rem;
      font-size: 3rem;
      right: 0.75rem; }

.link-button.link-pink {
  background: #f55a9a;
  border: 1px solid #f55a9a; }
  .link-button.link-pink:hover {
    background: #fff;
    color: #f55a9a; }

.link-button.link-blue {
  background: #00aae7;
  border: 1px solid #00aae7; }
  .link-button.link-blue:hover {
    background: #fff;
    color: #00aae7; }

.link-button.link-green {
  background: #3cc800;
  border: 1px solid #3cc800; }
  .link-button.link-green:hover {
    background: #fff;
    color: #3cc800; }

.link-button.link-white-blue {
  background: #fff;
  color: #333;
  border: 1px solid #fff; }
  .link-button.link-white-blue::after {
    color: #00aae7; }
  .link-button.link-white-blue:hover {
    background: #00aae7;
    color: #fff; }
    .link-button.link-white-blue:hover::after {
      color: #fff; }

.link-button.link-white-pink {
  background: #fff;
  color: #333;
  border: 1px solid #fff; }
  .link-button.link-white-pink::after {
    color: #f55a9a; }
  .link-button.link-white-pink:hover {
    background: #f55a9a;
    color: #fff; }
    .link-button.link-white-pink:hover::after {
      color: #fff; }

.link-button.link-white-green {
  background: #fff;
  color: #333;
  border: 1px solid #fff; }
  .link-button.link-white-green::after {
    color: #3cc800; }
  .link-button.link-white-green:hover {
    background: #3cc800;
    color: #fff; }
    .link-button.link-white-green:hover::after {
      color: #fff; }

.header {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 999;
  /* =============================
    PCナビ
  ============================= */
  /* 上段 */
  /* 下段 */
  /* =============================
   CTAボタン
  ============================= */ }
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem 1.5rem; }
  .header-logo {
    width: 25%; }
    @media screen and (max-width: 767px) {
      .header-logo {
        width: 100%; } }
    .header-logo img {
      width: clamp(170px, 25vw, 250px);
      height: auto; }
  .header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end; }
  .header-top {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 2rem;
    font-size: 1.4rem; }
  .header-links {
    display: flex;
    margin-bottom: 0; }
    .header-links li {
      position: relative;
      padding: 0 1.5rem; }
    .header-links li + li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 1.5rem;
      background: #ccc; }
    .header-links li a {
      color: #333;
      text-decoration: none; }
      .header-links li a:hover {
        opacity: 0.7;
        color: #00aae7; }
  .header-tel {
    font-weight: bold;
    font-size: 2rem; }
    .header-tel:hover {
      color: #888; }
    .header-tel i {
      margin-right: 0.5rem; }
  .header-nav {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 3rem;
    margin-top: 0.5rem; }
    @media screen and (max-width: 991px) {
      .header-nav {
        gap: 2rem; } }
    .header-nav > ul {
      display: flex;
      gap: 3rem; }
      @media screen and (max-width: 991px) {
        .header-nav > ul {
          gap: 2rem; } }
      .header-nav > ul > li {
        position: relative; }
        .header-nav > ul > li > a {
          font-weight: 500;
          text-decoration: none;
          color: #333; }
          .header-nav > ul > li > a:hover {
            color: #00aae7; }
  .header-cta {
    display: flex;
    gap: 1rem; }
    .header-cta .cta-button {
      padding: 0.5rem 0.5rem 0.5rem 4rem;
      border-radius: 999px;
      font-size: 1.5rem;
      font-weight: 500;
      text-decoration: none;
      display: flex;
      align-items: center; }
      .header-cta .cta-button::before {
        content: "";
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        width: 2rem;
        height: 2rem; }
    .header-cta .recruit {
      position: relative;
      background: #f55a9a;
      color: #fff; }
      .header-cta .recruit:hover {
        background: #c44780; }
      .header-cta .recruit::before {
        background: url(../img/person-icon.svg) no-repeat center/contain; }
    .header-cta .contact {
      position: relative;
      background: #3cc800;
      color: #fff; }
      .header-cta .contact:hover {
        background: #008e4a; }
      .header-cta .contact::before {
        background: url(../img/faq-icon.svg) no-repeat center/contain; }
    .header-cta i {
      font-size: 3rem;
      margin-left: 1rem; }

/* =============================
  ドロップダウン
============================= */
.has-sub {
  position: relative; }
  .has-sub .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 20rem;
    padding: 1rem 0;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    transition: 0.3s; }
    .has-sub .sub-menu li a {
      display: block;
      padding: 0.5rem 2rem;
      color: #333; }
      .has-sub .sub-menu li a:hover {
        background: #f5f5f5;
        color: #00aae7; }
  .has-sub:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }

.sp-only-wrapper {
  display: flex;
  align-items: center;
  gap: 3rem; }
  @media screen and (max-width: 575px) {
    .sp-only-wrapper {
      gap: 2rem; } }
  .sp-only-wrapper .sp-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: #00aae7;
    text-decoration: none;
    font-size: 1.6rem; }
    .sp-only-wrapper .sp-tel i {
      color: #fff; }

.sp-bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 100;
  /* ←通常は低め */ }
  .sp-bottom-cta .cta {
    flex: 1;
    text-align: left;
    padding: 1.2rem 6rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 2rem;
    border-top: 1px solid #fff; }
    @media screen and (max-width: 575px) {
      .sp-bottom-cta .cta {
        font-size: 1.6rem;
        padding: 1.2rem 1.2rem 1.2rem 5.5rem; } }
    .sp-bottom-cta .cta::before {
      content: "";
      position: absolute;
      left: 2rem;
      top: 50%;
      transform: translateY(-50%);
      width: 3rem;
      height: 3rem; }
      @media screen and (max-width: 575px) {
        .sp-bottom-cta .cta::before {
          left: 1.5rem; } }
    .sp-bottom-cta .cta::after {
      content: "\f0a9";
      font-family: "Font Awesome 6 Free";
      font-size: 3.25rem;
      font-weight: 900;
      position: absolute;
      right: 1.5rem;
      top: 50%;
      transform: translateY(-50%); }
      @media screen and (max-width: 575px) {
        .sp-bottom-cta .cta::after {
          display: none; } }
  .sp-bottom-cta .recruit {
    background: #f55a9a;
    position: relative;
    border-right: 1px solid #fff; }
    .sp-bottom-cta .recruit:hover {
      background: #c44780; }
    .sp-bottom-cta .recruit::before {
      background: url(../img/person-icon.svg) no-repeat center/contain; }
  .sp-bottom-cta .contact {
    background: #3cc800;
    /* グリーン */
    position: relative; }
    .sp-bottom-cta .contact:hover {
      background: #008e4a; }
    .sp-bottom-cta .contact::before {
      background: url(../img/faq-icon.svg) no-repeat center/contain; }

/* =============================
  レスポンシブ
============================= */
.pc-only {
  display: block; }

.sp-only {
  display: none; }

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

  .sp-only {
    display: flex; }

  .header-inner {
    padding: 1rem; } }
.footer {
  padding: 4rem 2rem 2rem; }
  @media screen and (max-width: 767px) {
    .footer {
      padding: 4rem 2rem 8rem 2rem; } }
  @media screen and (max-width: 575px) {
    .footer {
      padding: 4rem 2rem 7rem 2rem; } }
  .footer-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 4rem; }
    @media screen and (max-width: 991px) {
      .footer-inner {
        gap: 2rem; } }
  @media screen and (max-width: 991px) and (max-width: 767px) {
    .footer-inner {
      flex-direction: column; } }

  .footer-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start; }
    @media screen and (max-width: 767px) {
      .footer-left {
        width: 100%; } }
  .footer-right {
    width: 50%;
    display: flex;
    flex-direction: column; }
    @media screen and (max-width: 767px) {
      .footer-right {
        width: 100%; } }
  .footer-logo {
    width: 25rem;
    margin-bottom: 1rem; }
  .footer-tel {
    font-size: 2.4rem;
    font-weight: bold;
    color: #666; }
    .footer-tel i {
      color: #00aae7;
      margin-right: 0.5rem; }
  .footer-address {
    font-size: 1.6rem; }
  .footer-info {
    font-size: 1.6rem;
    margin-bottom: 2rem; }
    .footer-info div {
      display: flex;
      gap: 1rem; }
    .footer-info dt {
      color: #00aae7;
      font-weight: bold;
      min-width: 6rem; }
    .footer-info dd {
      margin: 0; }
  .footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1.6rem; }
    .footer-link i {
      color: #00aae7; }
    .footer-link:hover {
      opacity: 0.7; }
  .footer-map {
    width: 100%;
    height: auto;
    border: none;
    border-radius: 1rem;
    margin-bottom: 1rem;
    flex: 1; }
    @media screen and (max-width: 767px) {
      .footer-map {
        aspect-ratio: 16 / 9; } }
  .footer-access-title {
    color: #00aae7;
    font-weight: bold; }
  .footer-access {
    font-size: 1.6rem; }
  .footer .copy {
    text-align: center;
    font-size: 1.2rem;
    color: #999;
    margin-top: 3rem; }

/* トップへ戻るボタン */
#page-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 998; }
  @media screen and (max-width: 767px) {
    #page-top {
      bottom: 7.5rem; } }
  #page-top a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background-color: #00aae7;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    font-weight: bold;
    transition: all 0.3s ease; }
    #page-top a::before {
      content: "";
      position: absolute;
      top: 18px;
      width: 12px;
      height: 12px;
      border-top: 3px solid #fff;
      border-right: 3px solid #fff;
      transform: rotate(-45deg); }
    #page-top a::after {
      content: "TOP";
      position: absolute;
      bottom: 12px;
      font-size: 16px;
      letter-spacing: 0.05em; }
    #page-top a:hover {
      transform: translateY(-6px);
      opacity: 0.85; }
    #page-top a:focus-visible {
      outline: 2px solid #fff;
      outline-offset: 2px; }

#page404 h2 {
  font-size: 16rem;
  color: #00aae7;
  line-height: 1.2em;
  margin-bottom: 7rem;
  letter-spacing: 0.05em; }
  #page404 h2 span {
    font-size: 2rem; }
  @media screen and (max-width: 767px) {
    #page404 h2 {
      font-size: 13rem; } }
#page404 h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.5em; }
#page404 p {
  text-align: center; }
  @media screen and (max-width: 767px) {
    #page404 p {
      text-align: justify; } }
#page404 .link-box {
  margin-top: 4rem; }
