@charset "UTF-8";
/* ============================================================
// style.scss (Webサイト基本設定)
// サイト全体のベーススタイル・リセット・共通レイアウトの定義
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// SCSS Imports
------------------------------------------------------------ */
/* ============================================================
// reset.scss (Style Reset)
// ブラウザ間の差異を解消し、スタイルの土台をゼロにする
============================================================ */
/* ------------------------------------------------------------
// ボックスモデルの統一
------------------------------------------------------------ */
*,
*::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 {
  color: inherit;
  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 (サイト全体の基本設定)
// 全てのページ・全要素に適用される基礎ルール
============================================================ */
/* ------------------------------------------------------------
// 全体レイアウト（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: hidden;
  width: 100%;
}

body {
  /* フォント指定：案件に合わせて切り替え（A～D） */
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 0.0913242009vw + 14.6575342466px, 16px);
  color: #181818;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  background-color: #ffffff;
}

/* ------------------------------------------------------------
// 基本要素（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 (.c-xxxx)
// 特定の機能やデザインを持つ、再利用可能な独立パーツ群
============================================================ */
/* ------------------------------------------------------------
// コンテンツタイトル (.c-btn-more)
------------------------------------------------------------ */
.c-section-title {
  margin-bottom: clamp(20px, 4.5662100457vw + 2.8767123288px, 70px);
}
.c-section-title__en {
  font-size: clamp(40px, 3.6529680365vw + 26.301369863px, 80px);
  font-weight: 600;
  color: #1068c0;
  line-height: 1.2;
}
.c-section-title__jp {
  font-size: clamp(15px, 0.8219178082vw + 11.9178082192px, 24px);
  font-weight: 700;
}
.c-first-letter-blue::first-letter {
  color: #34c0f4;
}

.c-sub-title {
  margin: 0 0 50px;
  padding: 0 0 0 20px;
  text-align: left;
  position: relative;
}
.c-sub-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #1068c0;
  border-radius: 2px;
}
.c-sub-title__jp {
  display: block;
  font-size: clamp(20px, 0.3652968037vw + 18.6301369863px, 24px);
  font-weight: 700;
  color: #333;
  line-height: 1.2;
  margin-bottom: 4px;
}
.c-sub-title__en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(11px, 0.0913242009vw + 10.6575342466px, 12px);
  color: #1068c0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .c-sub-title {
    margin-bottom: 35px;
    padding-left: 15px;
  }
  .c-sub-title::before {
    width: 3px;
  }
  .c-sub-title__jp {
    font-size: 18px;
  }
  .c-sub-title__en {
    font-size: 10px;
  }
}
/* ------------------------------------------------------------
// コンテナ（.c-content-box）
------------------------------------------------------------ */
.c-content-box {
  padding: 0 clamp(0px, 5.4794520548vw + -20.5479452055px, 60px);
}
.c-content-box:not(:last-child) {
  margin: 0 auto clamp(90px, 2.7397260274vw + 79.7260273973px, 120px);
}

.c-content-box {
  scroll-margin-top: 160px;
}
@media screen and (max-width: 767px) {
  .c-content-box {
    scroll-margin-top: 100px;
  }
}

/* ------------------------------------------------------------
// お問い合わせボタン (.c-btn-contact)
------------------------------------------------------------ */
.c-btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(14px, 0.3968253968vw + 10.0634920635px, 18px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  border-radius: 4px;
  transition: opacity 0.3s;
}
.c-btn-contact::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  margin-left: 10px;
  transition: transform 0.3s;
}
.c-btn-contact:hover {
  color: #ffffff;
}
.c-btn-contact:hover::after {
  transform: translateX(4px) rotate(45deg);
}
.c-btn-contact--green {
  background-color: #8fd957;
}
.c-btn-contact--blue {
  background-color: #34c0f4;
}
.c-btn-contact--dark {
  background-color: #1068c0;
}

/* ------------------------------------------------------------
// リンクボタン (.c-btn-more)
------------------------------------------------------------ */
.c-btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: clamp(16px, 0.1826484018vw + 15.3150684932px, 18px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  width: clamp(240px, 0.9132420091vw + 236.5753424658px, 250px);
  height: clamp(50px, 0.9132420091vw + 46.5753424658px, 60px);
  padding: 15px 7px 15px clamp(30px, 0.9132420091vw + 26.5753424658px, 40px);
  border-radius: 50px;
  background: #1068c0;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
.c-btn-more__icon {
  position: relative;
  width: clamp(38px, 0.9132420091vw + 34.5753424658px, 48px);
  height: clamp(38px, 0.9132420091vw + 34.5753424658px, 48px);
  background: #ffffff;
  border-radius: 50%;
  overflow: hidden;
}
.c-btn-more__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 3px solid #1068c0;
  border-right: 3px solid #1068c0;
  transform: translate(-60%, -50%) rotate(45deg);
}
.c-btn-more:hover {
  color: #ffffff;
  background-color: #0d549c;
}
.c-btn-more:hover .c-btn-more__icon::after {
  animation: arrowLoopForward 0.4s forwards;
}
.c-btn-more:not(:hover) .c-btn-more__icon::after {
  animation: arrowLoopBackward 0.4s forwards;
}

@keyframes arrowLoopForward {
  0% {
    transform: translate(-60%, -50%) rotate(45deg);
  }
  50% {
    transform: translate(250%, -50%) rotate(45deg);
    opacity: 0;
  }
  51% {
    transform: translate(-350%, -50%) rotate(45deg);
    opacity: 0;
  }
  100% {
    transform: translate(-60%, -50%) rotate(45deg);
    opacity: 1;
  }
}
@keyframes arrowLoopBackward {
  0% {
    transform: translate(-60%, -50%) rotate(45deg);
  }
  50% {
    transform: translate(-350%, -50%) rotate(45deg);
    opacity: 0;
  }
  51% {
    transform: translate(250%, -50%) rotate(45deg);
    opacity: 0;
  }
  100% {
    transform: translate(-60%, -50%) rotate(45deg);
    opacity: 1;
  }
}
/* ------------------------------------------------------------
// ページトップボタン (.c-pagetop)
------------------------------------------------------------ */
.c-pagetop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 10;
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}
.c-pagetop__link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}
.c-pagetop__link:hover {
  opacity: 0.7;
}
.c-pagetop__link img {
  width: clamp(40px, 1.8264840183vw + 33.1506849315px, 60px);
}
.c-pagetop.is-show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* ------------------------------------------------------------
// YouTube レスポンシブコンポーネント (.c-youtube)
------------------------------------------------------------ */
.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 コンポーネント (.c-google-maps)
------------------------------------------------------------ */
.c-google-maps {
  width: 100%;
}
.c-google-maps iframe {
  width: 100%;
  vertical-align: bottom;
}

/* ============================================================
// utility.scss (.u-xxxx)
// HTMLに直接付与して、見た目を強制上書きする単機能クラス群
============================================================ */
/* ------------------------------------------------------------
// レイアウト
------------------------------------------------------------ */
.u-center {
  display: block !important;
  text-align: center !important;
  justify-content: center !important;
  margin-inline: auto !important;
}
.u-center img {
  margin-inline: auto !important;
}

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

.u-spacer-mini {
  height: 20px !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;
  }
}

/* ------------------------------------------------------------
// テキスト設定
------------------------------------------------------------ */
.u-txt-red {
  color: #d33838 !important;
}

.u-fw-bold {
  font-weight: 700 !important;
}

.u-single-line {
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.u-stack-text > * + * {
  margin-top: 1.5em !important;
}

/* ------------------------------------------------------------
// その他
------------------------------------------------------------ */
.u-clickable {
  cursor: pointer !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.u-shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

@media screen and (max-width: 767px) {
  .u-reverse-sp {
    flex-direction: column-reverse !important;
  }
}

/* ============================================================
// header.scss (Navigation & Hamburger Styles)
// サイト共通のヘッダー・ナビゲーション・ボタン制御
============================================================ */
/* ------------------------------------------------------------
// header.scss
------------------------------------------------------------ */
.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 30px);
  margin-inline: 15px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0 0 8px 8px;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .header-wrap {
    width: calc(100% - 10px);
    margin-inline: 5px;
  }
}

.header-wrap__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1978px;
  margin-inline: auto;
  padding: 20px;
}
.header-wrap__logo {
  width: clamp(160px, 8.7671232877vw + 127.1232876712px, 256px);
}
.header-wrap__logo img {
  width: 100%;
  height: auto;
}
.header-wrap__nav-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.header-wrap__contact {
  display: flex;
  gap: clamp(10px, 0.496031746vw + 5.0793650794px, 15px);
}
.header-wrap__contact .c-btn-contact {
  min-width: clamp(236px, 10.3174603175vw + 133.6507936508px, 340px);
  height: 50px;
  padding-inline: clamp(10px, 0.9920634921vw + 0.1587301587px, 20px);
}
.header-wrap__menu-list {
  display: flex;
  gap: clamp(15px, 1.4880952381vw + 0.2380952381px, 30px);
}
.header-wrap__menu-list li a {
  text-decoration: none;
  font-size: clamp(14px, 0.3968253968vw + 10.0634920635px, 18px);
  font-weight: 500;
  padding-bottom: 4px;
  transition: color 0.3s;
  white-space: nowrap;
  position: relative;
}
.header-wrap__menu-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #1068c0;
  transform: scaleX(0);
  transform-origin: left top;
  transition: transform 0.3s;
}
.header-wrap__menu-list li a:hover::after, .header-wrap__menu-list li a.current::after {
  transform: scaleX(1);
}
@media screen and (max-width: 991px) {
  .header-wrap .pc-nav {
    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;
}

/* ------------------------------------------------------------
// ハンバーガーボタン (.c-hamburger)
------------------------------------------------------------ */
.c-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;
}
.c-hamburger:focus, .c-hamburger:focus-visible {
  outline: none;
}
.c-hamburger__bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}
.c-hamburger__bar--top {
  transform: translate(-50%, -50%) translateY(-8px);
}
.c-hamburger__bar--mid {
  transform: translate(-50%, -50%);
}
.c-hamburger__bar--bot {
  transform: translate(-50%, -50%) translateY(8px);
}
.c-hamburger.is-open .c-hamburger__bar--top {
  animation: ham-open-top 0.6s ease forwards;
}
.c-hamburger.is-open .c-hamburger__bar--mid {
  animation: ham-open-mid 0.6s ease forwards;
}
.c-hamburger.is-open .c-hamburger__bar--bot {
  animation: ham-open-bot 0.6s ease forwards;
}
.c-hamburger.is-closing .c-hamburger__bar--top {
  animation: ham-close-top 0.6s ease forwards;
}
.c-hamburger.is-closing .c-hamburger__bar--mid {
  animation: ham-close-mid 0.6s ease forwards;
}
.c-hamburger.is-closing .c-hamburger__bar--bot {
  animation: ham-close-bot 0.6s ease forwards;
}

/* ------------------------------------------------------------
// グローバルナビゲーション (.c-global-nav)
------------------------------------------------------------ */
.c-global-nav {
  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;
}
.c-global-nav.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  touch-action: auto;
  overscroll-behavior: contain;
}
.c-global-nav__inner {
  height: 100%;
  overflow-y: auto;
  padding: clamp(100px, 1.8264840183vw + 93.1506849315px, 120px) clamp(20px, 1.8264840183vw + 13.1506849315px, 40px) 60px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.c-global-nav__inner::-webkit-scrollbar {
  display: none;
}
.c-global-nav__list {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
}
.c-global-nav__item {
  border-bottom: 1px solid #eee;
  overflow: hidden;
}
.c-global-nav__item:first-child {
  border-top: 1px solid #eee;
}
.c-global-nav__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(14px, 0.7305936073vw + 11.2602739726px, 22px) clamp(16px, 0.7305936073vw + 13.2602739726px, 24px);
  font-size: clamp(16px, 0.3652968037vw + 14.6301369863px, 20px);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.3s, padding-left 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.c-global-nav__link::after {
  content: "→";
  font-size: 16px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.c-global-nav__link.current, .c-global-nav__link:hover {
  color: #1068c0;
  padding-left: clamp(30px, 0.9132420091vw + 26.5753424658px, 40px);
}
.c-global-nav__link.current::after, .c-global-nav__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 (Footer Navigation & Layout)
// サイト共通のフッター・ナビゲーション制御
============================================================ */
/* ------------------------------------------------------------
// footer（フッター共通）
------------------------------------------------------------ */
.footer {
  padding: clamp(40px, 3.6529680365vw + 26.301369863px, 80px) 0 clamp(20px, 0.9132420091vw + 16.5753424658px, 30px);
  background: url(../images/common/bg-footer.png) no-repeat bottom center/cover;
}
@media screen and (max-width: 767px) {
  .footer {
    background: none;
  }
}
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(40px, 3.6529680365vw + 26.301369863px, 80px);
}
@media screen and (max-width: 991px) {
  .footer__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footer__info {
  flex: 1;
}
.footer__logo {
  width: clamp(180px, 6.9406392694vw + 153.9726027397px, 256px);
}
@media screen and (max-width: 991px) {
  .footer__logo {
    margin: 0 auto;
  }
}
.footer__logo img {
  width: 100%;
  height: auto;
}
.footer__company-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-block: 12px;
}
.footer__address {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-block: 12px 20px;
}
.footer__tel {
  display: block;
  font-size: clamp(24px, 0.7305936073vw + 21.2602739726px, 32px);
  font-weight: 600;
}
.footer__time {
  font-size: 16px;
  font-weight: 500;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__contact .c-btn-contact {
  min-width: clamp(240px, 47.280334728vw + -229.0209205021px, 466px);
  height: clamp(50px, 2.7397260274vw + 39.7260273973px, 80px);
  padding-inline: clamp(15px, 1.0460251046vw + 4.6234309623px, 20px);
}
.footer__nav {
  display: flex;
  gap: clamp(30px, 4.1841004184vw + -11.5062761506px, 50px);
  text-align: left;
}
@media screen and (max-width: 991px) {
  .footer__nav {
    display: none;
  }
}
.footer__nav-list li:not(:last-child) {
  margin-bottom: clamp(10px, 1.0460251046vw + -0.3765690377px, 15px);
}
.footer__nav-list li a {
  font-size: clamp(14px, 0.8368200837vw + 5.6987447699px, 18px);
  font-weight: 700;
  transition: color 0.3s;
}
.footer__nav-list li a:hover {
  color: #1068c0;
}
.footer__copyright {
  text-align: right;
  font-size: 14px;
  letter-spacing: 0;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    text-align: center;
  }
}

.footer-lower {
  margin-top: clamp(60px, 5.4794520548vw + 39.4520547945px, 120px);
}

/* ============================================================
// form.scss (FORM STYLES)
// コンポーネント指向（c-）とプロジェクト固有レイアウト（p-）に分離
============================================================ */
/* ------------------------------------------------------------
// フォームタグ設定
------------------------------------------------------------ */
::-moz-placeholder {
  color: #cccccc;
  opacity: 1;
}
::placeholder {
  color: #cccccc;
  opacity: 1;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
textarea,
select {
  font-family: inherit;
  font-feature-settings: "normal";
  font-size: 16px;
  color: #333333;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  background-color: #ffffff;
  flex-shrink: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #666666;
}

.c-input-text {
  width: 100% !important;
}
.c-input-text--s {
  width: 100% !important;
  max-width: 140px !important;
}

input[type=tel] {
  max-width: 280px;
}

input[type=email] {
  max-width: 520px;
}

.p-form__postal-input {
  max-width: 160px;
}

@media (max-width: 600px) {
  input[type=tel],
  input[type=email],
  .p-form__postal-input {
    max-width: 100%;
  }
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

input[type=radio],
input[type=checkbox] {
  cursor: pointer;
  display: inline-block;
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  flex-shrink: 0;
  accent-color: #1068c0;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

textarea {
  line-height: 1.6;
  min-height: 120px;
  resize: vertical;
}

/* ------------------------------------------------------------
// フォームボタン設定
------------------------------------------------------------ */
.form-button-box {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 0.3652968037vw + 14.6301369863px, 20px);
}
@media screen and (max-width: 767px) {
  .form-button-box {
    flex-direction: column;
  }
  .form-button-box .c-btn {
    width: 100%;
    min-width: 0 !important;
  }
}

.c-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, 0.1826484018vw + 15.3150684932px, 18px);
  font-weight: 700;
  line-height: 1;
  padding: clamp(16px, 0.3652968037vw + 14.6301369863px, 20px) clamp(16px, 2.1917808219vw + 7.7808219178px, 40px);
  border: none;
  border-radius: 4px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: all 0.3s ease;
}
.c-btn--primary {
  color: #ffffff;
  min-width: 280px;
  background: #333333;
}
.c-btn--primary:hover {
  background: #111111;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.c-btn--back {
  color: #666666;
  min-width: 200px;
  background: #eeeeee;
}
.c-btn--back:hover {
  color: #333333;
  background: #cccccc;
}

select {
  /* 高さを input (padding 12px + border 1px) と合わせるための計算 */
  box-sizing: border-box;
  padding: 12px 32px 12px 16px; /* 右側は矢印スペース分広めに */
  border: 1px solid #dddddd;
  border-radius: 4px;
  background-color: #ffffff;
  font-size: 16px;
  color: #333333;
  /* 横幅：数字に合わせた最小幅 */
  width: auto;
  min-width: 80px;
  /* デフォルトの矢印を消して自前の矢印を配置 */
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%23999999" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  cursor: pointer;
}

/* 00/30など、より短くしたい場合 */
select[name=minute] {
  min-width: 75px;
}

/* フォーカス時の挙動も他のinputと合わせると綺麗です */
select:focus {
  outline: none;
  border-color: #999999; /* 他のinputのフォーカス色に合わせて調整してください */
}

/* 単位（年、月、日など）のスタイル */
.form-list__flex span {
  margin-left: -4px; /* 単位と入力欄を少し近づける */
  font-size: 14px;
  white-space: nowrap; /* 単位の途中で改行させない */
}

/* 入力欄（年など）の幅調整 */
.c-input-text--s {
  width: 80px; /* 年は4桁入るので少し広め */
}

/* スマホ用の微調整（画面幅が狭い時） */
@media screen and (max-width: 480px) {
  .form-list__flex {
    gap: 10px 8px; /* スマホでは少し詰める */
  }
}
/* ============================================================
// ez.scss (Project Configuration & Utility)
// 開発効率化のためのユーティリティ・プロジェクト固有の定数値
============================================================ */
/* ------------------------------------------------------------
// Bootstrap
------------------------------------------------------------ */
.container {
  max-width: 1510px;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.row {
  margin-left: -20px !important;
  margin-right: -20px !important;
}

[class*=col] {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* ------------------------------------------------------------
// photo-ofi
------------------------------------------------------------ */
.photo-ofi {
  position: relative;
  display: block;
  height: 0;
  padding-bottom: 75%;
  background-color: #f9f9f9;
  overflow: hidden;
}
.photo-ofi img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: inherit;
  max-height: inherit;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

/* ------------------------------------------------------------
// paging
------------------------------------------------------------ */
div.paging {
  text-align: center;
  margin-top: 60px;
  white-space: nowrap;
}

div.paging span.current,
div.paging span.paging-text {
  display: inline-block;
  vertical-align: middle;
  font-size: clamp(13px, 0.1826484018vw + 12.3150684932px, 15px);
  font-weight: 600;
  line-height: 1;
  color: #333333;
  margin: 0 clamp(2px, 0.1826484018vw + 1.3150684932px, 4px);
  text-decoration: none;
  border: 1px solid #dddddd;
  border-radius: 4px;
  overflow: hidden;
}

div.paging span.paging-text a {
  display: block;
  padding: 10px clamp(8px, 0.5479452055vw + 5.9452054795px, 14px);
  color: inherit;
  transition: 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

div.paging span.current {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  padding: 10px clamp(8px, 0.5479452055vw + 5.9452054795px, 14px);
  text-decoration: none;
  background: #1068c0;
  border: 1px solid #1068c0;
  cursor: default;
}

div.paging span.paging-text a:hover {
  color: #1068c0;
  text-decoration: none;
  background: #f8f9fa;
  border-color: #1068c0;
  cursor: pointer;
}

/* ------------------------------------------------------------
// print.scss (Print Styles)
// 印刷時に不要なナビゲーションを消し、コンテンツを最適化する
------------------------------------------------------------ */
/* ------------------------------------------------------------
// 印刷設定
------------------------------------------------------------ */
@media print {
  body {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 12pt;
  }
  table,
  pre,
  blockquote,
  img,
  svg,
  p,
  h1,
  h2,
  h3 {
    page-break-inside: avoid;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .header-wrap {
    position: static !important;
    width: 100% !important;
  }
  .header-wrap__nav-wrap {
    display: none !important;
  }
  .c-btn-more {
    display: none !important;
  }
  nav,
  .c-hamburger,
  .c-pagetop,
  .c-form-btn,
  iframe,
  video,
  aside {
    display: none !important;
  }
  body {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
/* ------------------------------------------------------------
// link button
------------------------------------------------------------ */
.link-btn a {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-bottom: 4px;
  color: #111111;
  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: #000000;
}
.link-btn a:hover::before {
  transform: scaleX(1.2);
}
.link-btn a:hover::after {
  margin-left: 25px;
  width: 50px;
}

/* ------------------------------------------------------------
// table
------------------------------------------------------------ */
.table-base {
  width: 100%;
  border-collapse: collapse;
}
.table-base tr {
  display: grid;
  grid-template-columns: clamp(200px, 3.6529680365vw + 186.301369863px, 240px) auto;
  border-top: 1px solid #eeeeee;
}
.table-base tr th,
.table-base tr td {
  font-size: clamp(15px, 0.0913242009vw + 14.6575342466px, 16px);
  text-align: left;
  vertical-align: top;
  padding: clamp(16px, 0.7305936073vw + 13.2602739726px, 24px);
}
.table-base tr th {
  font-weight: 700;
  color: #333333;
  background: #f9f9f9;
  display: flex;
  align-items: center;
}
.table-base tr td {
  background: #ffffff;
}
.table-base tr:last-child {
  border-bottom: 1px solid #eeeeee;
}
@media screen and (max-width: 767px) {
  .table-base tr {
    display: block;
    border-top: none;
    border-bottom: 1px solid #eeeeee;
  }
  .table-base tr th,
  .table-base tr td {
    display: block;
    width: 100%;
  }
  .table-base tr th {
    padding: clamp(10px, 0.1826484018vw + 9.3150684932px, 12px) clamp(15px, 0.4566210046vw + 13.2876712329px, 20px);
    font-size: 14px;
    background: #f2f2f2;
  }
  .table-base tr td {
    padding: clamp(15px, 0.4566210046vw + 13.2876712329px, 20px) clamp(15px, 0.4566210046vw + 13.2876712329px, 20px) clamp(20px, 0.4566210046vw + 18.2876712329px, 25px);
  }
}