@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 {
  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: clip;
  width: 100%;
}

body {
  /* フォント指定：案件に合わせて切り替え（A～D） */
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(15px, 0.0881057269vw + 14.6696035242px, 16px);
  font-weight: 500;
  color: #1d1d1d;
  line-height: 1.7;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  background-color: #fcf2fc;
}

/* ------------------------------------------------------------
// 基本要素（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 {
  color: #1d1d1d;
  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 {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.1762114537vw + 5.3392070485px, 8px);
  font-size: clamp(20px, 1.5859030837vw + 14.0528634361px, 38px);
  font-weight: 700;
  margin-bottom: clamp(20px, 1.7621145374vw + 13.3920704846px, 40px);
}
.c-section-title .c-section-title-img {
  max-width: clamp(24px, 1.5859030837vw + 18.0528634361px, 42px);
}

/* ------------------------------------------------------------
// コンテナ（.c-content-box）
------------------------------------------------------------ */
.c-content-wrap {
  margin-bottom: clamp(60px, 5.2863436123vw + 40.1762114537px, 120px);
}

.c-content-top {
  position: relative;
  z-index: 2;
  padding-top: clamp(60px, 5.2863436123vw + 40.1762114537px, 120px);
  background-color: #fcf2fc;
}

.c-content-box {
  padding: 0 clamp(0px, 5.2863436123vw + -19.8237885463px, 60px);
}
.c-content-box:not(:last-child) {
  margin: 0 auto clamp(90px, 2.6431718062vw + 80.0881057269px, 120px);
}

/* ------------------------------------------------------------
// ページトップボタン (.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 img {
  width: clamp(40px, 1.7621145374vw + 33.3920704846px, 60px);
  border-radius: 4px;
}
.c-pagetop__link:hover img {
  opacity: 1;
}
.c-pagetop.is-show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* ------------------------------------------------------------
// 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-montserrat {
  font-family: "Montserrat", "Zen Maru Gothic", sans-serif;
}

.u-txt-red {
  color: #e4082d !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: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 115px;
  padding-inline: clamp(20px, 1.7621145374vw + 13.3920704846px, 40px);
  z-index: 10;
}
@media screen and (max-width: 991px) {
  .header-wrap {
    height: 80px;
  }
}

.header-wrap__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}
.header-wrap__logo {
  width: clamp(160px, 8.4581497797vw + 128.281938326px, 256px);
}
.header-wrap__logo img {
  width: 100%;
  height: auto;
}
.header-wrap__nav-wrap {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4.2735042735vw + -12.8205128205px, 50px);
}
.header-wrap__contact-text {
  position: relative;
  font-size: 14px;
  text-align: right;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-right: 10px;
}
.header-wrap__contact-text img {
  position: absolute;
  top: -6px;
  right: -1px;
}
.header-wrap__contact-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 24px;
  color: #fff;
  min-width: clamp(240px, 3.1718061674vw + 228.1057268722px, 276px);
  height: 58px;
  background: #1d1d1d;
  border-radius: 29px;
}
.header-wrap__contact-tel i {
  font-size: 18px;
}
.header-wrap__contact-tel:hover {
  color: #fff;
  background: #000;
}
.header-wrap__menu-list {
  display: flex;
  gap: clamp(20px, 4.2735042735vw + -12.8205128205px, 50px);
  margin-top: 26px;
}
.header-wrap__menu-list li a {
  text-decoration: none;
  font-size: clamp(14px, 0.3968253968vw + 10.0634920635px, 18px);
  font-weight: 500;
  padding-bottom: 2px;
  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: 1px;
  background: #1d1d1d;
  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: #1d1d1d;
  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.7621145374vw + 93.3920704846px, 120px) clamp(20px, 1.7621145374vw + 13.3920704846px, 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.704845815vw + 11.3568281938px, 22px) clamp(16px, 0.704845815vw + 13.3568281938px, 24px);
  font-size: clamp(16px, 0.3524229075vw + 14.6784140969px, 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: #e4082d;
  padding-left: clamp(30px, 0.8810572687vw + 26.6960352423px, 40px);
}
.c-global-nav__link.current::after, .c-global-nav__link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.c-global-nav__contact {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  font-size: 24px;
  color: #fff;
  max-width: 600px;
  min-width: clamp(240px, 3.1718061674vw + 228.1057268722px, 276px);
  margin-top: 40px;
  margin-inline: auto;
  padding-block: 5px 10px;
  background: #1d1d1d;
  border-radius: 29px;
}
.c-global-nav__contact::before {
  content: "TEL.";
  font-size: 0.7em;
  font-weight: 700;
  margin-right: 2px;
}
.c-global-nav__contact:hover {
  color: #fff;
  background: #000;
}

/* ------------------------------------------------------------
// 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-wrap {
  margin-block: clamp(20px, 5.2863436123vw + 0.1762114537px, 80px) clamp(60px, 2.6431718062vw + 50.0881057269px, 90px);
  padding-top: 40px;
  background: url(../images/common/bg-footer.png) no-repeat top left;
}
.footer-wrap__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
.footer-wrap__info-details {
  margin-top: 15px;
  padding-left: 20px;
  border-left: 2px solid #cfbaca;
}
.footer-wrap__logo img {
  max-width: clamp(200px, 6.1674008811vw + 176.872246696px, 270px);
  height: auto;
}
.footer-wrap__company-address, .footer-wrap__company-tel, .footer-wrap__company-fax {
  font-size: 14px;
  color: #1d1d1d;
}
.footer-wrap__company-address:hover, .footer-wrap__company-tel:hover, .footer-wrap__company-fax:hover {
  color: #1d1d1d;
}
.footer-wrap__company-address i, .footer-wrap__company-tel i, .footer-wrap__company-fax i {
  margin-left: 4px;
  transition: 0.3s;
}
.footer-wrap__company-address i:hover, .footer-wrap__company-tel i:hover, .footer-wrap__company-fax i:hover {
  color: #e30827;
}
.footer-wrap__fnav-item {
  position: relative;
  margin-bottom: 12px;
  padding-left: 15px;
}
.footer-wrap__fnav-item::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 8px;
  height: 3px;
  background-color: #0b615b;
}
.footer-wrap__fnav-item a {
  font-size: 16px;
}
.footer-wrap__fnav-item a:hover {
  color: #e30827;
}
@media screen and (max-width: 767px) {
  .footer-wrap__fnav {
    display: none;
  }
}
.footer-wrap__item-row {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 991px) {
  .footer-wrap__item-row {
    flex-direction: column;
  }
}
.footer-wrap__item-label {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
  padding: 4px 15px;
  border-radius: 20px;
}
.footer-wrap__item-label--blue {
  background-color: #4c6cb3;
}
.footer-wrap__item-label--green {
  background-color: #388e5b;
}
.footer-wrap__item-label--pink {
  background-color: #f092d3;
}
.footer-wrap__item-name {
  font-size: clamp(18px, 0.1762114537vw + 17.3392070485px, 20px);
  font-weight: 700;
  margin-bottom: 15px;
}
.footer-wrap__item-details {
  padding-left: 20px;
  border-left: 2px solid #cfbaca;
}
.footer-wrap__item-address, .footer-wrap__item-tel, .footer-wrap__item-fax {
  font-size: 14px;
  color: #1d1d1d;
  margin-bottom: 4px;
}
.footer-wrap__item-address:hover, .footer-wrap__item-tel:hover, .footer-wrap__item-fax:hover {
  color: #1d1d1d;
}
.footer-wrap__item-address i, .footer-wrap__item-tel i, .footer-wrap__item-fax i {
  margin-left: 4px;
  transition: 0.3s;
}
.footer-wrap__item-address i:hover, .footer-wrap__item-tel i:hover, .footer-wrap__item-fax i:hover {
  color: #e30827;
}
.footer-wrap__copyright {
  display: block;
  font-size: 14px;
  color: #c9c5c9;
  text-align: right;
}
@media screen and (max-width: 991px) {
  .footer-wrap__copyright {
    margin-top: 40px;
  }
}

/* ============================================================
// form.scss (FORM STYLES)
// コンポーネント指向（c-）とプロジェクト固有レイアウト（p-）に分離
============================================================ */
/* ------------------------------------------------------------
// フォームタグ設定
------------------------------------------------------------ */
::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
::placeholder {
  color: #ccc;
  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 #ddd;
  border-radius: 4px;
  background-color: #fff;
  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: #666;
}

.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.3524229075vw + 14.6784140969px, 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.1762114537vw + 15.3392070485px, 18px);
  font-weight: 700;
  line-height: 1;
  padding: clamp(16px, 0.3524229075vw + 14.6784140969px, 20px) clamp(16px, 2.1145374449vw + 8.0704845815px, 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: #333;
}
.c-btn--primary:hover {
  background: #111;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.c-btn--back {
  color: #666666;
  min-width: 200px;
  background: #eee;
}
.c-btn--back:hover {
  color: #333;
  background: #ddd;
}

select {
  /* 高さを input (padding 12px + border 1px) と合わせるための計算 */
  box-sizing: border-box;
  padding: 12px 32px 12px 16px; /* 右側は矢印スペース分広めに */
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  font-size: 16px;
  color: #333;
  /* 横幅：数字に合わせた最小幅 */
  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: #999; /* 他の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.1762114537vw + 12.3392070485px, 15px);
  font-weight: 600;
  line-height: 1;
  color: #333333;
  margin: 0 clamp(2px, 0.1762114537vw + 1.3392070485px, 4px);
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

div.paging span.paging-text a {
  display: block;
  padding: 10px clamp(8px, 0.5286343612vw + 6.0176211454px, 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: #fff;
  padding: 10px clamp(8px, 0.5286343612vw + 6.0176211454px, 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__menu {
    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;
  }
}
/* ============================================================
// 印刷用：Heroエリアを1ページに収める設定
============================================================ */
@media print {
  .hero-sp {
    display: block !important;
    position: relative !important; /* stickyを解除 */
    width: 100% !important;
    height: calc(100vh - 120px) !important; /* 1ページに収まるよう高さを絞る */
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background-image: url(../images/index/bg-hero-sp.png) !important;
    background-position: center center !important;
    background-size: cover !important;
    /* 背景強制表示 */
    print-color-adjust: exact !important;
    -webkit-print-color-adjust: exact !important;
  }
  .hero-sp .slider {
    display: none !important;
  }
  .hero-pc {
    display: none !important;
  }
  /* 4. テキストを画像中央に配置 */
  .hero-pc__text {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 90% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    z-index: 10 !important;
  }
  .page-header {
    position: relative !important; /* stickyを解除 */
    height: 180px !important;
    padding-top: 0 !important;
  }
  .c-content-top {
    padding-top: 60px !important;
  }
  .c-content-box:not(:last-child) {
    margin: 0 auto 50px !important;
  }
}
@media print {
  /* 1. マップを包む親要素の余白と高さをリセット */
  .c-google-maps {
    display: block !important;
    position: static !important;
    width: 100% !important;
    height: 450px !important;
    margin: 20px 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }
  /* 2. iframe自体を強制的に表示 */
  .c-google-maps iframe {
    display: block !important;
    visibility: visible !important;
    width: 100% !important;
    height: 450px !important;
    border: 1px solid #ccc !important;
    /* 背景の色や地図タイルを強制的に出力 */
    print-color-adjust: exact !important;
    -webkit-print-color-adjust: exact !important;
    /* 地図の途中でページが切れるのを防ぐ */
    page-break-inside: avoid !important;
  }
}
/* ------------------------------------------------------------
// table
------------------------------------------------------------ */
.table-base {
  width: 100%;
  border-collapse: collapse;
}
.table-base tr {
  display: grid;
  grid-template-columns: clamp(200px, 3.5242290749vw + 186.7841409692px, 240px) auto;
  border-top: 1px solid #ddd;
}
.table-base tr th,
.table-base tr td {
  font-size: clamp(15px, 0.0881057269vw + 14.6696035242px, 16px);
  text-align: left;
  vertical-align: top;
  padding: clamp(16px, 0.704845815vw + 13.3568281938px, 24px);
}
.table-base tr th {
  font-weight: 700;
  color: #fff;
  background: #dfc9da;
  display: flex;
  align-items: center;
}
.table-base tr td {
  background: #fff;
}
.table-base tr:last-child {
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .table-base tr {
    display: block;
    border-top: none;
    border-bottom: 1px solid #ddd;
  }
  .table-base tr th,
  .table-base tr td {
    display: block;
    width: 100%;
  }
  .table-base tr th {
    padding: clamp(10px, 0.1762114537vw + 9.3392070485px, 12px) clamp(15px, 0.4405286344vw + 13.3480176211px, 20px);
    font-size: 14px;
    background: #dfc9da;
  }
  .table-base tr td {
    padding: clamp(15px, 0.4405286344vw + 13.3480176211px, 20px) clamp(15px, 0.4405286344vw + 13.3480176211px, 20px) clamp(20px, 0.4405286344vw + 18.3480176211px, 25px);
  }
}

.js-info-main .slick-track {
  display: flex;
}

.js-info-main .slick-slide {
  height: auto;
}