@charset "UTF-8";
/* ============================================================
style.scss（エントリーポイント）
各パーシャルを読み込み、最終CSSを生成する
============================================================ */
/* ------------------------------------------------------------
// SCSS Imports
------------------------------------------------------------ */
/* ============================================================
// reset.scss
// ブラウザ間の差異を解消し、スタイルの土台をゼロにする
============================================================ */
/* ------------------------------------------------------------
// ボックスモデルの統一
------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* ------------------------------------------------------------
// 各要素の個別リセット
------------------------------------------------------------ */
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:not(:focus-visible) {
  outline: none;
}

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

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

body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: clamp(15px, 0.0913242009vw + 14.6575342466px, 16px);
  font-weight: 400;
  color: #363935;
  line-height: 1.7;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  background-color: #fbfcfa;
}

/* ------------------------------------------------------------
// 基本要素
------------------------------------------------------------ */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

img.img-full {
  width: 100%;
  height: auto;
  display: block;
}

/* ------------------------------------------------------------
// サイト全体の共通ホバーエフェクトなど
------------------------------------------------------------ */
a {
  color: inherit;
  transition: opacity 0.3s;
}
a:hover {
  text-decoration: none;
}

a:hover img {
  opacity: 0.7;
}

a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* ============================================================
// component.scss
// 特定の機能やデザインを持つ、再利用可能な独立パーツ群
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// title
------------------------------------------------------------ */
.c-section-title {
  position: relative;
  margin-bottom: clamp(30px, 0.9132420091vw + 26.5753424658px, 40px);
  padding-top: 44px;
}
@media screen and (max-width: 991px) {
  .c-section-title {
    padding-top: 14px;
  }
}
@media screen and (max-width: 767px) {
  .c-section-title {
    padding-top: 6px;
  }
}
.c-section-title__jp {
  position: relative;
  z-index: 2;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(28px, 1.1396011396vw + 19.2478632479px, 36px);
  font-weight: 700;
}
.c-section-title__en {
  position: relative;
  z-index: 2;
  font-family: "Quicksand", "Zen Kaku Gothic Antique", sans-serif;
  font-size: clamp(16px, 0.5698005698vw + 11.6239316239px, 20px);
  font-weight: 500;
  color: #57a136;
  line-height: 1.2;
}
.c-section-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60px;
  width: 100px;
  height: 100px;
  background-color: #ddebcd;
  border-radius: 50%;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .c-section-title::before {
    left: -24px;
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .c-section-title::before {
    left: -16px;
    width: 40px;
    height: 40px;
  }
}

/* ------------------------------------------------------------
// content
------------------------------------------------------------ */
.c-content-wrap {
  background-color: #fbfcfa;
}

.c-content-box {
  margin-block: clamp(60px, 5.4794520548vw + 39.4520547945px, 120px);
  margin-inline: auto;
}

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

/* ------------------------------------------------------------
// リンクボタン (.c-btn-more)
------------------------------------------------------------ */
.c-btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(16px, 0.3652968037vw + 14.6301369863px, 20px);
  font-weight: 700;
  color: #fff;
  width: clamp(240px, 8.2191780822vw + 209.1780821918px, 330px);
  height: clamp(60px, 1.8264840183vw + 53.1506849315px, 80px);
  padding: 0 clamp(20px, 0.9132420091vw + 16.5753424658px, 30px);
  border-radius: 20px;
  background-color: #57a136;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
.c-btn-more__icon {
  position: relative;
  width: clamp(30px, 0.9132420091vw + 26.5753424658px, 40px);
  height: clamp(30px, 0.9132420091vw + 26.5753424658px, 40px);
  background-color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.c-btn-more__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #57a136;
  border-right: 2px solid #57a136;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: transform 0.3s ease, left 0.3s ease;
}
.c-btn-more:hover {
  color: #fff;
  text-decoration: none;
  background-color: #4a8a2d;
  opacity: 0.9;
}
.c-btn-more:hover .c-btn-more__icon::after {
  animation: arrow-loop 0.4s forwards;
}

@keyframes arrow-loop {
  0% {
    transform: translate(-50%, -50%) rotate(45deg);
    left: 50%;
  }
  49% {
    transform: translate(150%, -50%) rotate(45deg);
    left: 100%;
  }
  50% {
    opacity: 0;
    transform: translate(-250%, -50%) rotate(45deg);
    left: 0%;
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(45deg);
    left: 50%;
  }
}
/* ------------------------------------------------------------
// pagetop button
------------------------------------------------------------ */
.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 img {
  opacity: 1;
}
.c-pagetop__link img {
  width: clamp(120px, 4.3835616438vw + 103.5616438356px, 168px);
}
.c-pagetop.is-show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

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

/* ============================================================
// utility.scss
// HTMLに直接付与して、見た目を強制上書きする単機能クラス群
============================================================ */
/* ------------------------------------------------------------
// レイアウト
------------------------------------------------------------ */
.u-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: 120px !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;
  }
}

/* ------------------------------------------------------------
// テキスト設定
------------------------------------------------------------ */
/* クラス指定：M PLUS Rounded 1c (日本語対応丸ゴシック) */
.u-mpr {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

/* クラス指定：Quicksand (欧文専用) */
.u-quicksand {
  font-family: "Quicksand", "Zen Kaku Gothic Antique", sans-serif;
}

.u-txt-red {
  color: #a13636 !important;
}

.u-txt-green {
  color: #57a136 !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-shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

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

/* ============================================================
// header.scss
// サイト共通のヘッダー・ナビゲーション・ボタン制御
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1960px;
  margin-inline: auto;
  height: 100px;
  padding: 20px;
  transition: all 0.3s;
}
.header__logo {
  width: clamp(160px, 6.4840182648vw + 135.6849315068px, 231px);
  position: relative;
}
.header__logo img {
  width: 100%;
  height: auto;
  display: block;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.header__logo .logo-color {
  display: none;
}
.header__logo .logo-white {
  display: block;
}
.header__gnav-list {
  display: flex;
  gap: clamp(30px, 1.4224751067vw + 19.0896159317px, 40px);
}
.header__gnav-list li a {
  text-decoration: none;
  font-size: clamp(16px, 0.2844950213vw + 13.8179231863px, 18px);
  font-weight: 500;
  color: #fff;
  padding: 4px 10px;
  transition: color 0.3s;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.header__gnav-list li a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #57a136;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.header__gnav-list li a:hover::after, .header__gnav-list li a.current::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.header.is-scrolled .header__gnav-list li a {
  color: #363935;
}
.header.is-scrolled .header__gnav-list li a::after {
  background: #f7f6cf;
}
.header.is-scrolled .header__logo .logo-white {
  display: none;
}
.header.is-scrolled .header__logo .logo-color {
  display: block;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media screen and (max-width: 767px) {
  .header__inner {
    height: 80px;
  }
  .header__gnav {
    display: none;
  }
}

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

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

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

/* ------------------------------------------------------------
// グローバルナビゲーション
------------------------------------------------------------ */
.gnav-sp {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(251, 252, 250, 0.98);
  backdrop-filter: blur(10px);
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.4s ease;
  pointer-events: none;
}
.gnav-sp.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  touch-action: auto;
  overscroll-behavior: contain;
}
.gnav-sp__inner {
  height: 100%;
  overflow-y: auto;
  padding: clamp(100px, 3.6529680365vw + 86.301369863px, 140px) 6% 60px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gnav-sp__inner::-webkit-scrollbar {
  display: none;
}
.gnav-sp__list {
  max-width: 500px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.gnav-sp__item {
  border: none;
  overflow: visible;
}
.gnav-sp__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(16px, 0.5479452055vw + 13.9452054795px, 22px) 25px;
  font-size: clamp(16px, 0.1826484018vw + 15.3150684932px, 18px);
  font-weight: 700;
  color: #5d534a;
  letter-spacing: 0.1em;
  text-decoration: none;
  background-color: #fff;
  border: 2px solid #dcedd5;
  border-radius: 100px;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
.gnav-sp__link::after {
  content: "→";
  font-size: 18px;
  color: #57a136;
  opacity: 0.6;
  transform: translateX(-5px);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.gnav-sp__link.current, .gnav-sp__link:active, .gnav-sp__link:hover {
  color: #fff;
  background-color: #57a136;
  border-color: #57a136;
  transform: scale(1.02);
}
.gnav-sp__link.current::after, .gnav-sp__link:active::after, .gnav-sp__link:hover::after {
  opacity: 1;
  color: #fff;
  transform: translateX(0);
}

/* ------------------------------------------------------------
// Keyframes (アニメーション定義)
------------------------------------------------------------ */
@keyframes ham-open-top {
  0% {
    transform: translate(-50%, -50%) translateY(-8px) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
@keyframes ham-open-mid {
  0%, 50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ham-open-bot {
  0% {
    transform: translate(-50%, -50%) translateY(8px) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
@keyframes ham-close-top {
  0% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) translateY(-8px) rotate(0);
  }
}
@keyframes ham-close-mid {
  0% {
    opacity: 0;
  }
  50%, 100% {
    opacity: 1;
  }
}
@keyframes ham-close-bot {
  0% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) translateY(8px) rotate(0);
  }
}
/* ============================================================
// footer.scss
// サイト共通のフッター・ナビゲーション制御
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// footer（フッター共通）
------------------------------------------------------------ */
.footer {
  position: relative;
  color: #fff;
  margin-top: -100px;
  padding: clamp(90px, 8.2191780822vw + 59.1780821918px, 180px) 0 clamp(50px, 4.5662100457vw + 32.8767123288px, 100px);
  background: url("../images/common/bg-footer-pc.png") no-repeat top center/cover;
}
@media screen and (max-width: 767px) {
  .footer {
    background: url("../images/common/bg-footer-sp.png") no-repeat top center/cover;
  }
}
.footer .illust-04 {
  position: absolute;
  top: -40px;
  left: 4%;
  z-index: 2;
}
.footer .illust-04 img {
  width: clamp(120px, 19.0867579909vw + 48.4246575342px, 329px);
}
@media screen and (max-width: 767px) {
  .footer .illust-04 {
    top: 0;
    left: auto;
    right: 4%;
  }
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__logo {
  width: clamp(150px, 4.5662100457vw + 132.8767123288px, 200px);
}
.footer__nav-wrap {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: clamp(20px, 1.8264840183vw + 13.1506849315px, 40px);
}
@media screen and (max-width: 767px) {
  .footer__nav-wrap {
    align-items: flex-start;
    width: 100%;
  }
}
.footer__nav-list {
  display: flex;
  gap: clamp(30px, 2.0920502092vw + 9.2468619247px, 40px);
}
@media screen and (max-width: 767px) {
  .footer__nav-list {
    flex-wrap: wrap;
    gap: 10px clamp(12px, 0.7305936073vw + 9.2602739726px, 20px);
  }
}
.footer__nav-list a {
  font-size: clamp(14px, 0.8368200837vw + 5.6987447699px, 18px);
  color: #fff;
  transition: opacity 0.3s;
}
.footer__nav-list a:hover {
  opacity: 0.7;
}
.footer__copyright {
  font-size: 14px;
  font-weight: 500;
}

/* ============================================================
// form.scss
// コンポーネント指向（c-）とプロジェクト固有レイアウト（p-）に分離
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// フォームタグ設定
------------------------------------------------------------ */
::-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.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: #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
// 開発効率化のためのユーティリティ・プロジェクト固有の定数値
============================================================ */
/* ------------------------------------------------------------
// Bootstrap
------------------------------------------------------------ */
.container {
  max-width: 1630px;
  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;
}

/* ------------------------------------------------------------
// print.scss
// 印刷時に不要なナビゲーションを消し、コンテンツを最適化する
------------------------------------------------------------ */
@media print {
  body {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 12pt;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  table,
  pre,
  blockquote,
  img,
  svg,
  p,
  h1,
  h2,
  h3 {
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    page-break-inside: avoid;
  }
  h2,
  h3 {
    -moz-column-break-after: avoid;
         break-after: avoid;
    page-break-after: avoid;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .header {
    position: absolute !important;
    width: 100% !important;
  }
  .c-btn-more {
    display: none !important;
  }
  .service-section__top-image {
    page-break-before: always;
  }
  nav,
  .c-hamburger,
  .c-pagetop,
  .c-form-btn {
    display: none !important;
  }
}