@charset "UTF-8";
/* ============================================================
// style.scss
// サイト全体のベーススタイル・リセット・共通レイアウトの定義
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// SCSS Imports
------------------------------------------------------------ */
/* ============================================================
// reset.scss
// ブラウザ間の差異を解消し、スタイルの土台をゼロにする
============================================================ */
/* ------------------------------------------------------------
// ボックスモデルの統一
------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ------------------------------------------------------------
// 全要素のリセット（マージン・パディング・境界線）
------------------------------------------------------------ */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strong,
sub,
sup,
var,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* ------------------------------------------------------------
// リンクの基本設定
------------------------------------------------------------ */
a {
  text-decoration: none;
}

/* ------------------------------------------------------------
// 各要素の個別リセット
------------------------------------------------------------ */
img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

li {
  list-style-type: none;
}

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

/* ------------------------------------------------------------
// フォーム・ボタン要素の初期化
------------------------------------------------------------ */
button,
input,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

:focus {
  outline: none;
}

/* ============================================================
// base.scss
// 全てのページ・全要素に適用される基礎ルール
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// 全体レイアウト（html / body）
------------------------------------------------------------ */
html {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-y: scroll;
}

html,
body {
  overflow-x: clip;
  width: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 0.1212121212vw + 14.5454545455px, 16px);
  color: #000;
  line-height: 1.7;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  background-color: #fff;
}

/* ------------------------------------------------------------
// 基本要素（HTMLタグへの直接指定）
------------------------------------------------------------ */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}
@media print {
  a[href^="tel:"] {
    text-decoration: none;
  }
}

/* ------------------------------------------------------------
// リンク・インタラクション (Interaction)
// サイト全体の共通ホバーエフェクトなど
------------------------------------------------------------ */
a,
a:hover,
a:visited,
a:active {
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 1;
}
a:hover img {
  opacity: 0.7;
}

/* ============================================================
// component.scss
// 特定の機能やデザインを持つ、再利用可能な独立パーツ群
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// title
------------------------------------------------------------ */
.c-content-hero {
  color: #fff;
  margin-top: 100px;
  padding-block: 60px;
  padding-inline: 20px;
  background-color: #2d8bea;
}
@media screen and (max-width: 991px) {
  .c-content-hero {
    margin-top: 80px;
  }
}
.c-content-hero__inner {
  max-width: 1200px;
  margin-inline: auto;
}
.c-content-hero__head {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .c-content-hero__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.c-content-hero__title {
  font-size: clamp(24px, 1.4545454545vw + 18.5454545455px, 36px);
  font-weight: 700;
  line-height: 1.2;
}
.c-content-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(12px, 0.3636363636vw + 10.6363636364px, 15px);
  font-weight: 700;
  color: #3f4249;
  height: 24px;
  padding-inline: 6px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  white-space: nowrap;
  text-transform: uppercase;
}

.c-heading {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.c-heading--left {
  align-items: flex-start;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-heading--left {
    align-items: center;
    text-align: center;
  }
}
.c-heading--white .c-heading__head-text,
.c-heading--white .c-heading__body-text {
  color: #fff;
}
.c-heading__head-text {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}
.c-heading__body-text {
  font-size: 16px;
  font-weight: 500;
}

.c-contact-heading {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  margin-bottom: clamp(40px, 2.4242424242vw + 30.9090909091px, 60px);
}
.c-contact-heading__head-text {
  font-size: clamp(18px, 2.1818181818vw + 9.8181818182px, 36px);
  font-weight: 700;
  color: #2d8bea;
  line-height: 1.4;
}
.c-contact-heading__body {
  margin-top: clamp(20px, 2.4242424242vw + 10.9090909091px, 40px);
}
.c-contact-heading__body-text {
  font-size: 16px;
  font-weight: 500;
}

/* ------------------------------------------------------------
// content
------------------------------------------------------------ */
.c-white-wrap {
  padding-block: 60px;
  padding-inline: 20px;
  background: #fff;
}

.c-blue-wrap {
  padding-block: 60px;
  padding-inline: 20px;
  background: #228dd0;
}

.c-blue-light-wrap {
  padding-block: 60px;
  padding-inline: 20px;
  background: rgba(34, 140, 204, 0.1);
}

.c-content-anchor {
  scroll-margin-top: 140px;
}
@media screen and (max-width: 991px) {
  .c-content-anchor {
    scroll-margin-top: 120px;
  }
}

/* ------------------------------------------------------------
// c-cards
------------------------------------------------------------ */
.c-cards__inner {
  max-width: 944px;
  margin-inline: auto;
}
.c-cards__list {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 6.9444444444vw + -33.3333333333px, 50px);
}
@media screen and (max-width: 767px) {
  .c-cards__list {
    align-items: center;
    flex-direction: column;
  }
}
.c-cards__item {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .c-cards__item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c-cards--col2 .c-cards__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
  }
  .c-cards--col2 .c-cards__item {
    flex: none;
    width: calc(50% - 6px);
  }
}

.c-card {
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #2d8bea;
  border-radius: 10px;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.c-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.c-card__img {
  width: 100%;
}
.c-card__img--icon {
  height: 50px;
  margin-top: 20px;
  margin-inline: auto;
}
.c-card__head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-block: 10px 6px;
  padding-inline: 20px;
}
.c-card__head--h100 {
  height: calc(100% - 32px);
}
.c-card__head-text {
  font-size: 18px;
  font-weight: bold;
  color: #2d8bea;
  text-align: center;
}
.c-card__body {
  margin-block: 6px 12px;
  padding-inline: 20px;
}
.c-card__body-text {
  font-size: 15px;
  color: #000;
}
.c-card__body-list-disc {
  margin-bottom: 20px;
  padding-inline: clamp(0px, 2.4242424242vw + -9.0909090909px, 20px);
}
.c-card__body-list-disc li {
  display: flex;
  gap: 0.5em;
  font-weight: 700;
  margin-bottom: 4px;
}
.c-card__body-list-disc li::before {
  content: "・";
  flex-shrink: 0;
  font-weight: 700;
  color: #000;
}
.c-card__body-link {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #2d8bea;
}
.c-card__body-link img {
  width: 10px;
}
.c-card__body-link:hover {
  color: #2d8bea;
}
.c-card__body-link:hover img {
  opacity: 1;
}
.c-card__body--link {
  position: relative;
  height: calc(100% - 60px);
  padding-bottom: 40px;
}

.c-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: 100%;
  min-height: 160px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #2d8bea;
  border-radius: 10px;
  text-align: center;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.c-box:hover {
  box-shadow: inset 0 0 0 2px #2d8bea;
}
.c-box__img {
  width: 60px;
  height: auto;
}
.c-box__text {
  font-size: 16px;
  font-weight: 700;
  color: #2b91d5;
}

/* ------------------------------------------------------------
// c-salary-card
------------------------------------------------------------ */
.c-salary-unit__inner {
  max-width: 944px;
  margin-inline: auto;
}
.c-salary-unit__list {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.2121212121vw + 5.4545454545px, 20px);
}
@media screen and (max-width: 991px) {
  .c-salary-unit__list {
    flex-wrap: wrap;
  }
}
.c-salary-unit__info {
  text-align: center;
  margin-block: 40px 30px;
}
.c-salary-unit__info-text {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.c-salary-unit__foot {
  display: flex;
  justify-content: center;
}
.c-salary-unit__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  width: 300px;
  height: 60px;
  background: #fbb03b;
  border-radius: 6px;
  transition: opacity 0.3s ease;
}
.c-salary-unit__btn-icon {
  width: 16px;
}
.c-salary-unit__btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .c-salary-unit__btn {
    font-size: 16px;
  }
}

.c-salary-card {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  min-width: 0;
  padding: clamp(20px, 1.8181818182vw + 13.1818181818px, 35px) clamp(8px, 0.2424242424vw + 7.0909090909px, 10px);
  background-color: #fff;
  border: 1px solid #2d8bea;
  border-radius: 10px;
}
@media screen and (max-width: 991px) {
  .c-salary-card {
    flex: none;
    width: calc(50% - 10px);
  }
}
.c-salary-card__num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: clamp(38px, 3.2407407407vw + 13.1111111111px, 52px);
  font-weight: 700;
  color: #2d8bea;
  line-height: 1.2;
  margin-bottom: 4px;
}
.c-salary-card__symbol {
  font-size: 0.4em;
  margin-right: 1px;
}
.c-salary-card__unit {
  font-size: 0.4em;
  margin-left: 1px;
}
.c-salary-card__range {
  font-size: 0.5em;
  margin-inline: 1px;
}
.c-salary-card__label {
  font-size: clamp(15px, 0.2314814815vw + 13.2222222222px, 16px);
  font-weight: 700;
  color: #fff;
  padding: 6px 8px;
  width: 100%;
  background-color: #fbb03b;
  border-radius: 6px;
  white-space: nowrap;
}
.c-salary-card__text {
  font-size: clamp(13px, 0.462962963vw + 9.4444444444px, 15px);
  margin-top: 10px;
}

/* ------------------------------------------------------------
// c-faq-section
------------------------------------------------------------ */
.c-faq {
  width: 100%;
  max-width: 768px;
  margin-inline: auto;
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid #2d8bea;
  border-radius: 10px;
  overflow: hidden;
}
.c-faq__input {
  display: none;
}
.c-faq__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background-color 0.3s;
}
.c-faq__header:hover {
  background-color: rgba(45, 139, 234, 0.05);
}
.c-faq__q {
  font-size: 18px;
  font-weight: 700;
  color: #2d8bea;
  line-height: 1.4;
}
.c-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 20px;
}
.c-faq__icon::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #2d8bea;
  border-bottom: 2px solid #2d8bea;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: transform 0.3s ease;
}
.c-faq__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #fff;
}
.c-faq__answer {
  padding: 25px 30px;
  font-size: 15px;
  border-top: 1px solid rgba(45, 139, 234, 0.2);
}
.c-faq__input:checked ~ .c-faq__content {
  max-height: 500px;
}
.c-faq__input:checked ~ .c-faq__header .c-faq__icon::before {
  transform: translate(-50%, 0%) rotate(-135deg);
}

/* ------------------------------------------------------------
// contact button
------------------------------------------------------------ */
.c-contact-btm {
  text-align: center;
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  padding: 20px;
  background-color: #2d8bea;
  border-radius: 12px;
}
.c-contact-btm__head {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}
.c-contact-btm__body {
  padding: 12px 10px;
  background-color: #fff;
  border-radius: 6px;
}
.c-contact-btm__mail {
  display: block;
  font-size: clamp(16px, 0.2424242424vw + 15.0909090909px, 18px);
  font-weight: 700;
  color: #2d8bea;
  transition: opacity 0.3s ease;
}
.c-contact-btm__mail:hover {
  opacity: 0.7;
}

/* ------------------------------------------------------------
// link button
------------------------------------------------------------ */
.link__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  width: 100%;
  max-width: 380px;
  height: 60px;
  background: #2d8bea;
  border-radius: 6px;
  transition: opacity 0.3s ease;
}
.link__btn--center {
  margin-inline: auto;
}
.link__btn-icon {
  width: 16px;
}
.link__btn:hover {
  opacity: 0.7;
}

/* ------------------------------------------------------------
// YouTube（16:9レスポンシブ埋め込み）
------------------------------------------------------------ */
.c-youtube {
  width: 100%;
  aspect-ratio: 16/9;
}
.c-youtube iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
  vertical-align: bottom;
}
@supports not (aspect-ratio: 16/9) {
  .c-youtube {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
  }
  .c-youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
  }
}

/* ------------------------------------------------------------
// Google Maps（iframe埋め込み）
------------------------------------------------------------ */
.c-google-maps {
  width: 100%;
}
.c-google-maps iframe {
  width: 100% !important;
  width: 100% !important;
  vertical-align: bottom;
}

/* ============================================================
// utility.scss
// HTMLに直接付与して、見た目を強制上書きする単機能クラス群
============================================================ */
/* ------------------------------------------------------------
// レイアウト
------------------------------------------------------------ */
.u-spacer-white {
  height: 60px !important;
  background: #fff;
}

.u-spacer {
  height: 60px !important;
}

/* ------------------------------------------------------------
// 表示切り替え
------------------------------------------------------------ */
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none !important;
  }
}

/* ============================================================
// header.scss
// サイト共通のヘッダー・ナビゲーション・ボタン制御
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// header.scss
------------------------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
@media screen and (max-width: 991px) {
  .header {
    height: 80px;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}
.header__logo {
  width: clamp(140px, 38.2775119617vw + -239.3301435407px, 220px);
}
.header__logo img {
  width: 100%;
  height: auto;
}
.header__gnav-list {
  display: flex;
  gap: clamp(15px, 7.2115384615vw + -56.5384615385px, 30px);
}
.header__gnav-list li a {
  font-size: clamp(15px, 0.4807692308vw + 10.2307692308px, 16px);
  font-weight: 700;
  color: #000;
  white-space: nowrap;
  transition: 0.3s;
}
.header__gnav-list li a:hover, .header__gnav-list li a.current {
  color: #2d8bea;
}
.header__gnav-list li:last-child a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: clamp(110px, 4.8076923077vw + 62.3076923077px, 120px);
  height: 27px;
  background: #fbb03b;
  border-radius: 6px;
}
.header__gnav-list li:last-child a:hover, .header__gnav-list li:last-child a.current {
  background: #ef9218;
}
@media screen and (max-width: 991px) {
  .header__gnav {
    display: none;
  }
}

.sp-nav {
  display: none;
}
@media screen and (max-width: 991px) {
  .sp-nav {
    display: block;
  }
}

/* ------------------------------------------------------------
// ボディ固定（メニュー展開時）
// JSでbodyに付与する状態クラス
------------------------------------------------------------ */
body.is-menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

/* ------------------------------------------------------------
// ハンバーガーボタン (.hamburger)
------------------------------------------------------------ */
.hamburger {
  position: fixed;
  top: 17px;
  right: 16px;
  z-index: 1001;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background-color: transparent;
  transition: background-color 0.25s ease;
  padding: 0;
}
.hamburger:focus, .hamburger:focus-visible {
  outline: none;
}
.hamburger__bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}
.hamburger__bar--top {
  transform: translate(-50%, -50%) translateY(-8px);
}
.hamburger__bar--mid {
  transform: translate(-50%, -50%);
}
.hamburger__bar--bot {
  transform: translate(-50%, -50%) translateY(8px);
}
.hamburger.is-open .hamburger__bar--top {
  animation: ham-open-top 0.6s ease forwards;
}
.hamburger.is-open .hamburger__bar--mid {
  animation: ham-open-mid 0.6s ease forwards;
}
.hamburger.is-open .hamburger__bar--bot {
  animation: ham-open-bot 0.6s ease forwards;
}
.hamburger.is-closing .hamburger__bar--top {
  animation: ham-close-top 0.6s ease forwards;
}
.hamburger.is-closing .hamburger__bar--mid {
  animation: ham-close-mid 0.6s ease forwards;
}
.hamburger.is-closing .hamburger__bar--bot {
  animation: ham-close-bot 0.6s ease forwards;
}

/* ------------------------------------------------------------
// グローバルナビゲーション
------------------------------------------------------------ */
.gnav-sp {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.4s ease;
  pointer-events: none;
}
.gnav-sp.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  touch-action: auto;
  overscroll-behavior: contain;
}
.gnav-sp__logo {
  display: flex;
  align-items: center;
  width: 140px;
  height: 80px;
  margin-left: 20px;
}
.gnav-sp__logo img {
  width: 100%;
  height: auto;
}
.gnav-sp__inner {
  height: 100%;
  overflow-y: auto;
  padding: clamp(100px, 2.4242424242vw + 90.9090909091px, 120px) clamp(20px, 2.4242424242vw + 10.9090909091px, 40px) 60px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gnav-sp__inner::-webkit-scrollbar {
  display: none;
}
.gnav-sp__list {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
}
.gnav-sp__item {
  border-bottom: 1px solid #ddd;
  overflow: hidden;
}
.gnav-sp__item:first-child {
  border-top: 1px solid #ddd;
}
.gnav-sp__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(14px, 0.9696969697vw + 10.3636363636px, 22px) clamp(16px, 0.9696969697vw + 12.3636363636px, 24px);
  font-size: clamp(16px, 0.4848484848vw + 14.1818181818px, 20px);
  font-weight: 0;
  color: #000;
  letter-spacing: 0.05em;
  transition: color 0.3s, padding-left 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.gnav-sp__link::after {
  content: "→";
  font-size: 16px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.gnav-sp__link.current, .gnav-sp__link:hover {
  color: #2d8bea;
  padding-left: clamp(30px, 1.2121212121vw + 25.4545454545px, 40px);
}
.gnav-sp__link.current::after, .gnav-sp__link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ------------------------------------------------------------
// Keyframes (アニメーション定義)
------------------------------------------------------------ */
@keyframes ham-open-top {
  0% {
    transform: translate(-50%, -50%) translateY(-8px) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
@keyframes ham-open-mid {
  0%, 50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ham-open-bot {
  0% {
    transform: translate(-50%, -50%) translateY(8px) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
@keyframes ham-close-top {
  0% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) translateY(-8px) rotate(0);
  }
}
@keyframes ham-close-mid {
  0% {
    opacity: 0;
  }
  50%, 100% {
    opacity: 1;
  }
}
@keyframes ham-close-bot {
  0% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) translateY(8px) rotate(0);
  }
}
/* ============================================================
// footer.scss
// サイト共通のフッター・ナビゲーション制御
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// footer（フッター共通）
------------------------------------------------------------ */
.footer {
  color: #fff;
  margin-top: clamp(60px, 7.2727272727vw + 32.7272727273px, 120px);
  padding-block: 60px;
  padding-inline: 20px;
  background-color: #3f4249;
}
.footer__inner {
  max-width: 980px;
  margin-inline: auto;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 991px) {
  .footer__content {
    flex-direction: column;
    gap: 30px;
  }
}
.footer__info {
  flex: 1;
}
.footer__logo {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer__desc {
  font-size: 15px;
  margin-bottom: 14px;
}
.footer__link-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  transition: opacity 0.3s;
}
.footer__link-icon img {
  width: 100%;
  height: auto;
}
.footer__link-icon:hover {
  opacity: 0.7;
}
.footer__nav {
  display: flex;
  gap: clamp(20px, 1.9230769231vw + 0.9230769231px, 24px);
}
@media screen and (max-width: 767px) {
  .footer__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }
}
.footer__nav-group {
  flex: 1;
  min-width: 120px;
}
.footer__nav-title {
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #fff;
}
.footer__nav-list li a {
  font-size: 14px;
  color: #fff;
  transition: 0.3s;
}
.footer__nav-list li a:hover {
  color: #2d8bea;
}
.footer__copyright {
  display: block;
  font-size: 15px;
}

/* ------------------------------------------------------------
// link button
------------------------------------------------------------ */
.link-btn a {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-bottom: 4px;
  color: #333;
  font-weight: 700;
  transition: color 0.3s ease;
}
.link-btn a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.link-btn a::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: currentColor;
  margin-left: 15px;
  position: relative;
  transition: all 0.3s ease;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(-45deg, transparent 50%, currentColor 50%);
  background-size: 8px 1px;
  background-repeat: no-repeat;
  background-position: right 0 top -3px, right 0 bottom -3px;
}
.link-btn a:hover {
  color: #111;
}
.link-btn a:hover::before {
  transform: scaleX(1.2);
}
.link-btn a:hover::after {
  margin-left: 25px;
  width: 50px;
}