@charset "UTF-8";
:root {
  /* Design */
  --design-widith-sm: 375;
  --design-widith-md: 768;
  --design-widith-lg: 1081;
  /* Color */
  --c-main: #0331D9;
  --c-dark-main: #0F1E53;
  --c-black: #010825;
  --c-gray: #858585;
  --c-white: #fff;
  /* Background */
  --bg-light-blue: #DEE4FA;
  /* Font Family */
  --font-ja: "Zen Kaku Gothic New", sans-serif;
  --font-en: "Josefin Sans", sans-serif;
  /* Font Size */
  /*---------- SP ----------*/
  /*40px*/
  --font-size-xl-sp: min(10.2222vw, 2.5rem);
  /*32px*/
  --font-size-l-sp: min(8.533333vw, 2rem);
  /*24px*/
  --font-size-m-sp: min(6.4vw, 1.5rem);
  /*20px*/
  --font-size-s-sp: min(5.33333vw, 1.25rem);
  /*18px*/
  --font-size-2s-sp: min(4.8vw, 1.125rem);
  /*16px*/
  --font-size-regular-sp: min(4.26666vw, 1rem);
  /*14px*/
  --font-size-ss-sp: min(3.733333vw, .875rem);
  /*---------- PC----------*/
  /*48px*/
  --font-size-xl-pc: min(4vw, 3rem);
  /*40px*/
  --font-size-l-pc: min(3.33333vw, 2.5rem);
  /*32px*/
  --font-size-m-pc: min(2.66666vw, 2rem);
  /*28px*/
  --font-size-sm-pc: min(2.33333vw, 1.75rem);
  /*24px*/
  --font-size-s-pc: min(2vw, 1.5rem);
  /*20px*/
  --font-size-2s-pc: min(1.66666vw, 1.25rem);
  /*18x*/
  --font-size-3s-pc: min(1.5vw, 1.125rem);
  /*16px*/
  --font-size-regular-pc: min(1.33333vw, 1rem);
  /*14px*/
  --font-size-mini-pc: min(1.16666vw, .875rem);
  /* Font Weight */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  --font-ex-bold: 900;
  /* Line Height */
  --lh-ss: 1;
  --lh-s: 1.25;
  --lh-m: 1.5;
  --lh-l: 1.8;
  --lh-xl: 2;
  /* Letter Spacing */
  --tracking-tigher: -0.05em;
  --tracking-tight: -0.025em;
  --tracking-normal: normal;
  --tracking-wide: 0.025em;
  --tracking-wider: 0.08em;
  --tracking-widest: 0.1em;
  /* Margin */
  /* 8 */
  --space-xs: .5rem;
  --space-s: 1rem;
  /* 24 */
  --space-m: 1.5rem;
  /* 32 */
  --space-l: 2rem;
  /* 40 */
  --space-xl: 2.5rem;
  /* 56 */
  --space-xxl: 3.5rem;
  /* Container Size & Offset */
  --max-container-size: 1440px;
  --offset-xs: 1.5vw;
  --offset-sm: 2.5vw;
  --offset-md: 5vw;
  --offset-lg: 10vw;
  /* Radius */
  --radius-sm: 4px;
  --radius-m: 8px;
  --radius-md: 16px;
  --radius-lg: 2.5rem;
  --radius-full: 50%;
  /* Transition & Animation */
  --duration-fast: 0.3s;
  --duration-normal: 0.6s;
  --duration-slow: 1.2s;
  --ease-in-sine: cubic-bezier(0.12, 0, 0.39, 0);
  --ease-out-sine: cubic-bezier(0.61, 1, 0.88, 1);
  --ease-in-out-sine: cubic-bezier(0.37, 0, 0.63, 1);
  --ease-in-quart: cubic-bezier(0.5, 0, 0.75, 0);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-in-expo: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
}

em {
  font-style: normal;
}

/*========== responsive ==========*/
/* 374px以下  SPデザイン以下 */
/* 〜767px SPデザイン */
/* 768px〜 PCデザイン */
/* 768px〜1199px  タブレットのみ */
/* 1300px以上  PCコンテンツ幅以上 */
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .is-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
/* stylelint-disable */
/*! Oreset.css v2.0.0 | MIT License | https://github.com/hilosiva/Oreset.css */
/*
  # Global
---------------------------------------------- */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*
  # Document & Sections
---------------------------------------------- */
:where(html) {
  block-size: 100%;
  -webkit-text-size-adjust: none;
}

:where(body) {
  min-block-size: 100%;
  text-rendering: optimizeLegibility;
  line-height: var(--lh-l);
  font-family: var(--font-ja);
  font-size: var(--font-size-regular-sp);
  font-feature-settings: "palt";
  color: var(--c-black);
  -webkit-font-smoothing: antialiased;
}
@media screen and (min-width: 768px) {
  :where(body) {
    font-size: var(--font-size-3s-pc);
  }
}

/*
  # Grouping content
---------------------------------------------- */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(ul, ol) {
  list-style-type: "";
}

/*
  # Text-level semantics
---------------------------------------------- */
:where(a:not([class])) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/*
  # Embedded content
---------------------------------------------- */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(svg:not([fill])) {
  fill: currentColor;
}

/*
  # Tabular data
---------------------------------------------- */
:where(table) {
  border-collapse: collapse;
}

/*
  # Forms
---------------------------------------------- */
:where(input, button, textarea, select, optgroup) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

/*
  # Interactive & Misc
---------------------------------------------- */
:where(template, [hidden]:not([hidden=until-found])) {
  display: none;
}

:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: unset;
  max-height: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none;
}

/*
  # Accessibility
---------------------------------------------- */
:where([disabled], [aria-disabled=true]) {
  cursor: not-allowed;
}

:where([aria-busy=true]) {
  cursor: progress;
}

:where([aria-controls]) {
  cursor: pointer;
}

:where([aria-hidden=false][hidden]) {
  display: initial;
}

:where([aria-hidden=false][hidden]):not(:focus) {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

:where(:focus:not(:focus-visible), ::before:focus:not(:focus-visible), ::after:focus:not(:focus-visible)) {
  outline: none;
}

/*
  # aタグ
---------------------------------------------- */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * Prettier ignore
 */
@media (prefers-reduced-motion: reduce) {
  ::-webkit-backdrop {
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
            animation: none !important;
    scroll-behavior: auto !important;
  }
  *,
*:before,
*:after,
::backdrop {
    transition: none !important;
    -webkit-animation: none !important;
            animation: none !important;
    scroll-behavior: auto !important;
  }
}
/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
input,
button,
textarea,
select {
  /* デフォルトスタイルをリセット */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* font-familyを継承しないので、継承させる */
  font-family: inherit;
  /* iOSの角丸をリセット */
  border-radius: 0;
  /* box-size */
  box-sizing: border-box;
  /* 文字の大きさ iOSでズームさせないために16px以上を指定 */
  font-size: 16px;
  /* 文字色を親から継承 */
  color: inherit;
}

label {
  /* iOSでのlabelとinput,select,textareaの関連付け */
  cursor: pointer;
}

/* スピンボタン非表示 chrome,safari */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button,
input[type=month]::-webkit-outer-spin-button,
input[type=month]::-webkit-inner-spin-button,
input[type=datetime-local]::-webkit-outer-spin-button,
input[type=datetime-local]::-webkit-inner-spin-button,
input[type=week]::-webkit-outer-spin-button,
input[type=week]::-webkit-inner-spin-button,
input[type=time]::-webkit-outer-spin-button,
input[type=time]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button,
input[type=date]::-webkit-inner-spin-button {
  /*-webkit-appearance: none;
    margin: 0;*/
  display: none;
}

/* スピンボタン非表示(firefox) */
input[type=number],
input[type=month],
input[type=datetime-local],
input[type=week],
input[type=time],
input[type=date] {
  -moz-appearance: textfield;
}

/* クリアボタン非表示 */
input[type=date]::-webkit-clear-button,
input[type=month]::-webkit-clear-button,
input[type=datetime-local]::-webkit-clear-button,
input[type=time]::-webkit-clear-button,
input[type=week]::-webkit-clear-button {
  -webkit-appearance: none;
}

/* input */
input {
  /* inputの枠線を消す */
  border: 1px solid transparent;
  transition: border 0.2s ease-out;
  /*inputのフォーカス時の枠線を消す*/
  outline: 0;
}

select {
  /* 右端の▼を消す */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  /*inputのフォーカス時の枠線を消す*/
  outline: 0;
}

/**
  * Remove padding
  */
option {
  padding: 0;
}

/**
  * Reset to invisible
  */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/*
  # other
---------------------------------------------- */
/*-- telスマホのみ --*/
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
a {
  text-decoration: none;
  color: inherit;
}

/* 全ボタン共通 */
.c-button {
  text-decoration: none;
  display: grid;
  grid-template: "icon-left text icon-right" 1fr/auto 1fr auto;
  gap: 0.5rem;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.8rem 1.5rem;
  transition-timing-function: var(--ease-in-out-quart);
  transition-duration: var(--duration-fast);
  font-size: var(--font-size-regular-sp);
  font-weight: var(--font-bold);
  line-height: var(--lh-m);
  letter-spacing: var(--tracking-wider);
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .c-button {
    font-size: var(--font-size-regular-pc);
    padding: 1rem 2rem;
  }
}
@media (max-width: 414px) {
  .c-button {
    width: 100%;
    max-width: 335px;
  }
}

/* 塗り */
.c-button:is(.--fill) {
  color: var(--c-white);
  background-color: var(--c-main);
  border: solid 2px var(--c-main);
  grid-template-columns: auto 1fr auto;
}

.c-button:is(.--cta) {
  padding: 1.5rem 1rem;
  color: var(--c-white);
  background-color: var(--c-main);
  border: solid 2px var(--c-main);
  grid-template-columns: auto 1fr auto;
  border-radius: 1rem;
}
@media screen and (min-width: 768px) {
  .c-button:is(.--cta) {
    padding: 1.5rem 2.2rem;
  }
}

/*
 Text
————————————————————————————————————————— */
.c-button__text {
  text-align: center;
}

/* -------- アイコン -------- */
.c-button__icon {
  display: inline-block;
  width: min(3.2vw, 0.75rem);
  height: min(4.8vw, 1.125rem);
  background-size: contain;
  background-repeat: no-repeat;
  transition-duration: var(--duration-fast);
}
@media screen and (min-width: 768px) {
  .c-button__icon {
    width: 0.75rem;
    height: 1.125rem;
  }
}

.c-button__icon {
  height: auto;
  aspect-ratio: 1;
}

.c-button__icon.--left {
  grid-area: icon-left;
}

.c-button__icon.--right {
  grid-area: icon-right;
}

.c-button__icon.--mail {
  width: 2rem;
  height: 2rem;
}
@media screen and (max-width: 767px) {
  .c-button__icon.--mail {
    width: min(8.53333vw, 2rem);
    height: min(8.53333vw, 2rem);
  }
}
.c-button__icon.--mail img {
  width: 100%;
}

/*
 hover
————————————————————————————————————————— */
@media (hover: hover) {
  /* 塗りボタン */
  .c-button.--fill:is(:hover, :focus-visible) {
    filter: brightness(1.12);
  }
  .c-button.--fill:is(:hover, :focus-visible) .c-button__icon {
    translate: 6px;
  }
}
.c-box-two {
  display: flex;
  align-items: center;
  gap: min(3.3333vw, 3rem);
}
.c-box-two.--reverse {
  flex-direction: row-reverse;
}

.c-box-textarea {
  margin-top: min(var(--space-m), var(--space-xxl));
}

.c-box-button {
  margin-top: var(--space-l);
}

/* ===============================================
 共通
=============================================== */
.c-title-ja,
.c-title-en {
  display: block;
  line-height: var(--lh-ss);
}

.c-title-ja {
  color: var(--c-gray);
  font-size: var(--font-size-s-sp);
  font-weight: var(--font-regular);
  letter-spacing: var(--tracking-wider);
}
@media screen and (min-width: 768px) {
  .c-title-ja {
    font-size: var(--font-size-sm-pc);
  }
}

.c-title-en {
  font-family: var(--font-en);
  font-size: var(--font-size-l-sp);
  font-weight: var(--font-regular);
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-title-en {
    font-size: var(--font-size-xl-pc);
  }
}

.c-title-en::first-letter {
  color: var(--c-main);
}

.c-title-under-line {
  font-size: var();
}

.c-title.--large {
  font-size: var(--font-size-m-sp);
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .c-title.--large {
    font-size: var(--font-size-m-pc);
  }
}
.c-title.--large span {
  font-size: var(--font-size-2s-sp);
}
@media screen and (min-width: 768px) {
  .c-title.--large span {
    font-size: var(--font-size-2s-pc);
  }
}

.c-title.--line {
  position: relative;
}
.c-title.--line::after {
  position: absolute;
  content: "";
  width: 5rem;
  height: 2px;
  background-color: var(--c-main);
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

/*------------------------------
component > text
------------------------------*/
.c-text-m {
  font-size: var(--font-size-regular-sp);
}
@media screen and (min-width: 768px) {
  .c-text-m {
    font-size: var(--font-size-3s-pc);
  }
}

/*--------------------------------
ページトップへ戻るボタン
--------------------------------*/
.js-scroll-fadein {
  transition: opacity 1s;
  visibility: hidden;
  opacity: 0;
}

.js-scroll-fadein.is-fadein {
  visibility: visible;
  opacity: 1;
}

.page_top_arrow {
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  color: var(--c-white);
  cursor: pointer;
  background-color: var(--c-main);
  border: solid 2px var(--c-main);
  width: 3rem;
  height: 3rem;
  transition: all 0.2s ease-in-out;
  z-index: 6;
}
@media screen and (min-width: 768px) {
  .page_top_arrow {
    width: 4rem;
    height: 4rem;
  }
}

.page_top_arrow:hover {
  color: var(--c-green);
  background-color: var(--c-white);
}

.page_top_arrow:before {
  content: "";
  width: 1.1875rem;
  height: 1.1875rem;
  border-top: solid 4px var(--c-white);
  border-right: solid 4px var(--c-white);
  left: 46%;
  transform: rotate(-45deg) translateX(-50%);
  position: absolute;
}

.page_top_arrow:hover:before {
  border-top: solid 4px var(--c-main);
  border-right: solid 4px var(--c-main);
}

.page_top_arrow:before {
  top: 10px;
}
@media screen and (min-width: 768px) {
  .page_top_arrow:before {
    top: 17px;
  }
}

/* フェードイン(初期値) */
.js-fadeIn {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
}

/* フェードイン(スクロールした後) */
.js-fadeIn.is-inview {
  opacity: 1;
  transition-delay: 0.3s;
}

.js-fadeUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}

/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

/* スライダー全体 */
.slider-wrapper {
  display: flex; /* スライドのグループを横並び */
  overflow: hidden; /* はみ出たスライドを隠す */
}

/* スライド3枚のグループ */
.slider {
  -webkit-animation: scroll-left 20s infinite linear 0.5s both;
          animation: scroll-left 20s infinite linear 0.5s both;
  display: flex; /* スライド3枚を横並び */
}

/* スライド */
.slide {
  width: 33.3333333333vw; /* 3はスライドの枚数 */
}

/* スライドの画像 */
.slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

/* CSSアニメーション */
@-webkit-keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/*------------------------------
component > breadcrumb
------------------------------*/
.c-breadcrumb {
  margin-top: 1rem;
  background-color: var(--c-white);
  color: var(--c-dark-main);
}
.c-breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
}
.c-breadcrumb li {
  font-size: min(3.2vw, 0.75rem);
  padding-right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb li {
    padding-right: 0.75rem;
    font-size: var(--font-size-mini-pc);
  }
}
.c-breadcrumb li a {
  display: inline-block;
  transition: 0.3s;
  cursor: pointer;
}
.c-breadcrumb li a:hover {
  text-decoration: underline;
  opacity: 0.3;
}
.c-breadcrumb li:nth-child(n+2) {
  position: relative;
  padding: 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb li:nth-child(n+2) {
    padding: 0 0.75rem;
  }
}
.c-breadcrumb li:nth-child(n+2)::before {
  content: ">";
  position: absolute;
  left: -0.4rem;
  top: 50%;
  transform: translateY(-50%);
}

/*------------------------------
layout > header
------------------------------*/
.l-header {
  padding-left: 2rem;
}
@media screen and (min-width: 768px) {
  .l-header.--side .l-header-logo img {
    max-width: 8rem;
  }
}

.l-header.--side .l-header-nav-lists {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.l-header-nav span {
  display: block;
  line-height: var(--lh-ss);
}
.l-header-nav .l-header-nav-item.--en {
  font-size: var(--font-size-m-sp);
  font-family: var(--font-en);
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .l-header-nav .l-header-nav-item.--en {
    font-size: var(--font-size-m-pc);
  }
}
.l-header-nav .l-header-nav-item.--jp {
  font-size: var(--font-size-regular-sp);
}
@media screen and (min-width: 768px) {
  .l-header-nav .l-header-nav-item.--jp {
    color: var(--c-gray);
    font-size: min(1.6927vw, 0.8125rem);
  }
}

.l-header-nav-list a:hover .l-header-nav-item.--en {
  color: var(--c-main);
}

/* ===============================================
 スクロール後のヘッダー
=============================================== */
.l-scroll-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: var(--c-white);
  transition: opacity 0.5s ease-in-out;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.16);
}
.l-scroll-header .l-header-logo a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--duration-fast);
}
.l-scroll-header .l-header-logo a span {
  font-size: var(--font-size-ss-sp);
  letter-spacing: var(--tracking-wider);
}
@media screen and (min-width: 768px) {
  .l-scroll-header .l-header-logo a span {
    font-size: var(--font-size-s-pc);
  }
}
.l-scroll-header .l-header-logo a img {
  height: 3.8rem;
  width: auto;
}
.l-scroll-header .l-header-logo a:hover span {
  color: var(--c-main);
}
@media screen and (min-width: 768px) {
  .l-scroll-header .l-header-nav-lists {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .l-scroll-header .l-header-nav-item.--en {
    font-size: var(--font-size-2s-pc);
  }
  .l-scroll-header .l-header-nav-item.--jp {
    text-align: center;
    font-size: var(--font-size-mini-pc);
  }
}

.l-scroll-header-inner {
  width: 100%;
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}

/* 初期状態で非表示 */
@media screen and (min-width: 768px) {
  .js-scrollHeader {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0s linear 0.5s;
  }
  /* スクロール120px後のスタイル */
  .js-scrollHeader.scrolled {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-in-out;
  }
}
/* ===============================================
スマホメニュー
=============================================== */
@media (max-width: 767px) {
  .drawer-menu {
    display: block;
    position: fixed;
    z-index: 15;
    right: 1rem;
    top: 1.5rem;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.4s;
  }
  .drawer-menu::after {
    position: absolute;
    top: 1.5625rem;
    content: "MENU";
    display: block;
    text-align: center;
    width: 100%;
    font-size: min(2.13333vw, 0.5rem);
    font-weight: var(--font-medium);
    line-height: var(--lh-ss);
    text-decoration: none;
    color: var(--c-main);
  }
  .drawer-menu span {
    display: block;
    position: absolute;
    height: 2px;
    left: 3px;
    width: 1.5rem;
    transition: 0.3s ease-in-out;
    background-color: var(--c-main);
  }
  .drawer-menu span:nth-child(1) {
    top: 0.389062rem;
  }
  .drawer-menu span:nth-child(2) {
    top: 0.778125rem;
  }
  .drawer-menu span:nth-child(3) {
    top: 1.167187rem;
  }
  .drawer-menu.active::after {
    content: "CLOSE";
    color: var(--c-white);
  }
  /* ナビ開いてる時 */
  .drawer-menu.active span:nth-child(1) {
    opacity: 0;
  }
  .drawer-menu.active span:nth-child(2) {
    top: 0.752rem;
    transform: rotate(30deg);
    background-color: var(--c-white);
  }
  .drawer-menu.active span:nth-child(3) {
    transform: rotate(-30deg);
    top: 0.752rem;
    background-color: var(--c-white);
  }
  /* ナビメニュー内 */
  .l-header-nav {
    flex-direction: column;
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(15, 30, 83, 0.84);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.6s ease, visibility 0s linear 0.6s;
    overflow-y: scroll;
    padding: 6.25rem 0.9375rem;
  }
  /* メニューが開いたとき */
  .l-header-nav.active {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.6s ease;
  }
  .l-header-nav-lists {
    display: flex;
    margin: 2.5rem auto 0;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    list-style-type: none;
    width: 100%;
    height: 100%;
    overflow: auto;
    color: var(--c-white);
  }
  .l-header-nav-list a {
    display: block;
    width: 100%;
    text-align: center;
  }
}
/*------------------------------
layout > container
------------------------------*/
.l-container {
  width: 88%;
  margin-left: auto;
  margin-right: auto;
}

.l-container.--m {
  max-width: 67.5rem;
}

.l-container.--s {
  max-width: 50rem;
}

/*------------------------------
layout > cta
------------------------------*/
.l-cta {
  text-align: center;
  margin-top: 6.5rem;
  padding-bottom: 6.5rem;
}
@media screen and (min-width: 768px) {
  .l-cta {
    padding-bottom: 10rem;
  }
}

.c-title.--cta .c-title-en {
  font-size: var(--font-size-xl-sp);
}
@media screen and (min-width: 768px) {
  .c-title.--cta .c-title-en {
    font-size: min(9.375vw, 4.5rem);
  }
}

.c-title.--cta .c-title-ja {
  font-size: var(--font-size-regular-sp);
}
@media screen and (min-width: 768px) {
  .c-title.--cta .c-title-ja {
    font-size: var(--font-size-regular-pc);
  }
}

.l-cta-button {
  margin-top: 2.5rem;
}

.l-cta-box {
  max-width: 33.5rem;
  margin: 2rem auto 0;
  background-color: var(--bg-light-blue);
  border-radius: 1rem;
  padding: 1.5rem;
}
.l-cta-box .c-box-two {
  margin-top: 1rem;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.l-cta-box-title {
  font-size: var(--font-size-2s-sp);
  letter-spacing: var(--tracking-wider);
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .l-cta-box-title {
    font-size: var(--font-size-2s-pc);
  }
}

.l-cta-text {
  font-size: var(--font-size-ss-sp);
  font-weight: var(--font-medium);
}
@media screen and (min-width: 768px) {
  .l-cta-text {
    font-size: var(--font-size-mini-pc);
    letter-spacing: 0.16em;
  }
}

.cta-tel-number {
  display: block;
  line-height: var(--lh-ss);
  color: #0228B5;
  font-family: var(--font-en);
  font-size: var(--font-size-l-sp);
}
@media screen and (min-width: 768px) {
  .cta-tel-number {
    font-size: var(--font-size-xl-pc);
  }
}

.cta-tel-icon {
  max-width: 58px;
  margin-top: -4px;
}

.c-button__icon.--mail {
  background-image: url("../../assets/img/mail.svg");
}

/*
 hover
————————————————————————————————————————— */
@media (hover: hover) {
  /* 塗りボタン */
  .c-button.--cta:is(:hover, :focus-visible) {
    color: var(--c-main);
    background-color: var(--c-white);
  }
  .c-button.--cta:is(:hover, :focus-visible) .c-button__icon {
    background-image: url("../../assets/img/mail-blue.svg");
  }
}
/*------------------------------
layout > footer
------------------------------*/
.l-footer {
  padding: 2.5rem 0;
  background-color: #0F1E53;
  color: var(--c-white);
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 5rem 0;
  }
}
@media screen and (min-width: 768px) {
  .l-footer .l-container {
    display: grid;
    gap: 1rem;
  }
}

.l-footer-logo {
  max-width: 5rem;
}

.footer-logo-link {
  transition: var(--duration-fast);
}
.footer-logo-link:hover {
  opacity: 0.7;
}

.l-footer-nav-lists {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .l-footer-nav-lists {
    margin-top: 3.5rem;
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
.l-footer-nav-lists li a {
  font-size: var(--font-size-regular-sp);
  font-weight: var(--font-medium);
  letter-spacing: var(--tracking-wider);
  transition: var(--duration-fast);
}
.l-footer-nav-lists li a:hover {
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .l-footer-nav-lists li a {
    font-size: var(--font-size-regular-pc);
  }
}

.l-footer-address .c-box-two {
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .l-footer-address .c-box-two {
    flex-direction: column;
    align-items: flex-start;
  }
}
.l-footer-address .c-box-two dt {
  font-size: var(--font-size-s-sp);
  letter-spacing: var(--tracking-wider);
  font-weight: var(--font-medium);
}
@media screen and (min-width: 768px) {
  .l-footer-address .c-box-two dt {
    font-size: var(--font-size-s-pc);
  }
}
.l-footer-address .c-box-two dd {
  font-size: var(--font-size-ss-sp);
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .l-footer-address .c-box-two dd {
    font-size: var(--font-size-mini-pc);
  }
}

.copyright {
  margin-top: 2.5rem;
  display: block;
  font-size: 0.7rem;
  text-align: center;
  font-family: var(--font-en);
  letter-spacing: var(--tracking-wider);
}
@media screen and (min-width: 768px) {
  .copyright {
    margin-top: 1.5rem;
  }
}

/*------------------------------
layout > section
------------------------------*/
.l-section {
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding: 4rem 0;
  }
}

.top-main {
  margin-top: 3.375rem;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .top-main {
    margin-top: 5rem;
  }
}

.top-mv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--c-white);
  height: 89vw;
  background: url(../../assets/img/top/mv.jpg) center/cover no-repeat;
}
@media screen and (min-width: 768px) {
  .top-mv {
    height: 39.72222vw;
    margin-right: 2.5rem;
  }
}

.top-mv-copy h2 {
  font-size: var(--font-size-m-sp);
  line-height: 1.28;
  text-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.32);
}
@media screen and (min-width: 768px) {
  .top-mv-copy h2 {
    font-size: var(--font-size-xl-pc);
  }
}
.top-mv-copy p {
  font-family: var(--font-en);
  margin-top: 1.5rem;
  font-size: var(--font-size-ss-sp);
  font-weight: var(--font-medium);
  letter-spacing: var(--tracking-wider);
}
@media screen and (min-width: 768px) {
  .top-mv-copy p {
    font-size: var(--font-size-regular-pc);
  }
}

.top-page {
  width: 100%;
  margin-left: 0;
  margin-right: auto;
}

.top-image {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-image {
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .top-image {
    flex: 0 0 47.2222vw;
    max-width: 47.22222vw;
  }
}
.top-image.--left {
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .top-image.--left {
    margin-left: calc(50% - 50vw);
  }
}
.top-image.--right {
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .top-image.--right {
    margin-right: calc(50% - 50vw);
  }
}

.top-concept {
  margin-top: 5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-concept {
    margin-top: 9.875rem;
  }
}
@media screen and (max-width: 767px) {
  .top-concept .--reverse {
    flex-direction: column-reverse;
  }
}
.top-concept .toppage-case-button {
  margin-top: 2rem;
}

.top-company {
  margin-top: 6rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-company {
    margin-top: 4rem;
  }
}
.top-company .toppage-company-button {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .top-company .c-box-two {
    flex-direction: column-reverse;
  }
}

.p-sub-mv {
  height: 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../../assets/img/sub-mv-bg.jpg) center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .p-sub-mv {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-sub-mv {
    height: 18rem;
  }
}
.p-sub-mv .c-title-en {
  color: var(--c-white);
}
.p-sub-mv .c-title-en::first-letter {
  color: var(--c-white);
}

.sub-concept {
  text-align: center;
}

.concept-message {
  margin-top: 2.5rem;
}
.concept-message p {
  line-height: 2;
}
.concept-message .--en {
  margin: 2rem 0;
  color: var(--c-main);
  font-family: var(--font-en);
  font-size: var(--font-size-m-sp);
  font-weight: var(--font-bold);
  letter-spacing: var(--tracking-widest);
  line-height: var(--lh-ss);
}
@media screen and (min-width: 768px) {
  .concept-message .--en {
    font-size: var(--font-size-l-pc);
  }
}

.concept-flow {
  padding: 3rem 0;
  background-color: #f1f1f1;
}
@media screen and (min-width: 768px) {
  .concept-flow {
    padding: 5rem 0;
  }
}
.concept-flow .c-title {
  text-align: center;
}

.concept-flow-lists {
  margin-top: 3rem;
  display: grid;
  justify-content: center;
  gap: 2rem;
}

.concept-flow-list {
  display: grid;
  grid-template-columns: min(17.06666vw, 4rem) 1fr;
  gap: 1rem;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .concept-flow-list {
    grid-template-columns: 5.8rem 1fr;
    gap: 1.5rem;
  }
}
.concept-flow-list::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 16px solid transparent;
  border-left: 16px solid transparent;
  border-top: 16px solid #B1C1FF;
  border-bottom: 0;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.concept-flow-list p {
  font-size: var(--font-size-s-sp);
  font-weight: var(--font-bold);
  letter-spacing: var(--tracking-wider);
}
@media screen and (min-width: 768px) {
  .concept-flow-list p {
    font-size: var(--font-size-s-pc);
  }
}

.concept-flow-list:last-of-type::after {
  display: none;
}

.company-info {
  margin-top: 2.5rem;
  border-collapse: collapse;
  width: 100%;
}

.company-info th,
.company-info td {
  text-align: left;
  border-bottom: 2px solid #dadada;
  padding: 0.8rem 0 0.8rem 0.5rem;
  font-size: var(--font-size-ss-sp);
}
@media screen and (min-width: 768px) {
  .company-info th,
.company-info td {
    padding: 1rem 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .company-info th,
.company-info td {
    font-size: var(--font-size-3s-pc);
  }
}

.company-info th {
  border-bottom: 2px solid var(--c-main);
  font-weight: bold;
  width: 25%;
  min-width: 8rem;
  text-align: left;
}

/*---------- Map ----------*/
.map-lists {
  margin-top: 2.5rem;
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .map-lists {
    grid-template-columns: repeat(2, 1fr);
  }
}

.map-list p {
  margin-top: 0.5rem;
  font-size: var(--font-size-2s-sp);
  font-weight: var(--font-bold);
  letter-spacing: var(--tracking-widest);
}
@media screen and (min-width: 768px) {
  .map-list p {
    font-size: var(--font-size-2s-pc);
  }
}

.google-map {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.company-message {
  margin-top: 2.5rem;
  line-height: 2.2;
}
.company-message p:nth-child(n+2) {
  margin-top: 1.5rem;
}

.greeting-image {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .greeting-image {
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .greeting-image {
    flex: 0 0 25vw;
    max-width: 25vw;
  }
}

@media screen and (max-width: 767px) {
  .company-greeting .c-box-two.--reverse {
    flex-direction: column;
  }
}

/* ===============================================
 contact
=============================================== */
.contact-form {
  margin-top: 2.5rem;
}

.contact-form form {
  padding: 1.5rem 0;
}
@media screen and (min-width: 768px) {
  .contact-form form {
    padding: 3rem 1.5rem;
  }
}

.contact-message {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .contact-message {
    margin-top: 4rem;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .contact-message {
    font-size: 4.26666vw;
  }
}
.form {
  margin-top: 2rem;
}

label {
  cursor: pointer;
}

input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button,
input[type=month]::-webkit-outer-spin-button,
input[type=month]::-webkit-inner-spin-button,
input[type=datetime-local]::-webkit-outer-spin-button,
input[type=datetime-local]::-webkit-inner-spin-button,
input[type=week]::-webkit-outer-spin-button,
input[type=week]::-webkit-inner-spin-button,
input[type=time]::-webkit-outer-spin-button,
input[type=time]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button,
input[type=date]::-webkit-inner-spin-button {
  display: none;
}

input[type=number],
input[type=month],
input[type=datetime-local],
input[type=week],
input[type=time],
input[type=date] {
  -moz-appearance: textfield;
}

input[type=date]::-webkit-clear-button,
input[type=month]::-webkit-clear-button,
input[type=datetime-local]::-webkit-clear-button,
input[type=time]::-webkit-clear-button,
input[type=week]::-webkit-clear-button {
  -webkit-appearance: none;
}

input {
  border: 1px solid transparent;
  outline: 0;
  transition: border 0.2s ease-out;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border: 1px solid #959595 !important;
  outline: 0;
}

.form-item {
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.form-item select {
  width: 100%;
  height: 4rem;
}

.form-item-label {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  font-weight: var(--font-medium);
  font-size: 17px;
  letter-spacing: 0.04em;
}

.form-item-label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

.form-label-required {
  margin-left: 0.5rem;
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  background: #e60707;
  color: var(--c-white);
  font-weight: 500;
  font-size: 10px;
}

.form-item-textarea {
  flex: 1;
  width: 100% !important;
  height: 216px !important;
  border-radius: 6px;
  padding: 16px 20px;
  border: 1px solid #959595;
  background: #fff;
}

.submit-button {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 20.625rem;
  margin-top: 1.5rem;
  margin-right: auto;
  margin-left: auto;
  padding: 1.2rem 0;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: clamp(16px, 3vw, 20px);
  transition: 0.3s;
  border-radius: 0.5rem;
}

.privacy-check {
  margin-top: 2rem;
  text-align: center;
}

::-moz-placeholder {
  color: #c8c8c8;
  font-size: 16px;
}

::placeholder {
  color: #c8c8c8;
  font-size: 16px;
}

.form select {
  -webkit-appearance: none;
  border-radius: 6px;
  background: none;
  border: 0;
  box-sizing: border-box;
  width: 100%;
  height: 4rem;
  padding: 10px 15px;
  border: 1px solid #959595;
  background: #fff;
}

.submit-button {
  background-color: #ccc;
  border: none;
  color: #fff;
  cursor: not-allowed;
}

.submit-button.enabled {
  background-color: var(--c-main);
  cursor: pointer;
}

.form select::-ms-expand {
  display: block;
}

.privacy-container {
  width: 90%;
  max-width: 740px;
  margin-right: auto;
  margin-left: auto;
}

.privacy-policy {
  height: 200px;
  margin-top: 29px;
  padding: 20px 18px;
  overflow: scroll;
  border: 1px solid #c4c4c4;
  background: #fff;
  border-radius: 4px;
  color: #212121;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
}
.privacy-policy h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: clamp(16px, 1.2vw, 18px);
}
.privacy-policy p {
  margin-bottom: 0.8rem;
}

.privacy-policy h3 {
  margin: 1.5rem 0;
  padding-left: 1rem;
  padding-bottom: 0.3rem;
  border-left: 3px solid #0F1E53;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: var(--tracking-widest);
}

.privacy-policy li {
  padding-left: 12px;
  position: relative;
}
.privacy-policy li::before {
  position: absolute;
  left: 0;
  content: "・";
}

.thanks-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 10rem 0;
}

.thanks-section h1 {
  font-weight: 700;
  font-size: clamp(18px, 2vw, 2.4rem);
  text-align: center;
}

.thanks-section p {
  margin-top: 4rem;
  font-size: 1.8rem;
  line-height: 2;
}

.thanks-message {
  text-align: center;
}

.contact-fixed-button {
  z-index: 5;
  position: fixed;
  right: 40px;
  bottom: 40px;
  -webkit-animation: yurayura 2s linear infinite;
          animation: yurayura 2s linear infinite;
  transition: 0.3s;
}

.contact-fixed-button img {
  width: min(12.5vw, 180px);
  filter: drop-shadow(0px 0px 20px rgba(69, 59, 0, 0.16));
}

.contact-fixed-button:hover {
  filter: brightness(1.1);
}

/* デフォルトのチェックボックスを表示する */
input[type=checkbox] {
  -webkit-appearance: checkbox; /* Safariや古いブラウザ用 */
  -moz-appearance: checkbox;
       appearance: checkbox; /* 他のモダンブラウザ用 */
  width: auto; /* デフォルトの幅 */
  height: auto; /* デフォルトの高さ */
  margin: 0;
}

.thanks-page {
  height: 100%;
}
.thanks-page .header-nav-lists a {
  color: var(--c-black);
}
.thanks-page .header-nav-lists a:hover {
  color: var(--c-orange);
}

.pagetop-button {
  margin-top: 4rem;
}

.pagetop-button a {
  margin-top: 0.5rem;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 20.625rem;
  margin-top: 2.5rem;
  margin-right: auto;
  margin-left: auto;
  padding: 1.2rem 0;
  color: #fff;
  background-color: var(--c-main);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: clamp(16px, 3vw, 20px);
  transition: 0.3s;
  border-radius: 0.5rem;
}
.pagetop-button a:hover {
  opacity: 0.8;
}

.thanks-page .footer {
  position: -webkit-sticky;
  position: sticky;
  top: 100vh;
}

/*------------------------------
utility > utility
------------------------------*/
.u-center {
  display: flex;
  justify-content: center;
}

.u-white {
  color: #fff;
}

.c-contact-button{
  margin-top: 20px;
}

.c-contact-button a {
  margin-inline: auto;
}

.contact-message a {
  color: var(--c-main);;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--c-main);;
  transition: .3s;
  font-weight: 500;
}
.contact-message a:hover {
  color: #039ad9;
  border-bottom: 1px solid #039ad9;
}

/* 20250924追加 */

.equipment-contents {
  margin-top: clamp(3rem, 5vw, 5.6rem);
}

.equipment-button {
  margin-top: 2rem;
}

.equipment-lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 1rem;
}

.equipment-list {
  text-align: center;
}

@media screen and (max-width: 767px) {
.equipment-lists {
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem 1rem;
 }
}

.equipment-list figcaption {
  margin-top: .8rem;
  font-size: clamp(.875rem, 1.3vw, 1rem);
  font-weight: 500;
}

.equipment-contents {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}

.equipment-contents.is-visible {
  max-height: 2000px; /* 内容より少し大きめならOK */
  opacity: 1;
}