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

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

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

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

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

li {
  list-style-type: none;
}

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

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

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

:focus {
  outline: none;
}

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

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

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

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

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

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

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

/* ============================================================
// component.scss
// 特定の機能やデザインを持つ、再利用可能な独立パーツ群
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// title
------------------------------------------------------------ */
.c-content-subtitle-en {
  display: block;
  color: #f17d00;
  font-size: clamp(15px, 0.2643171806vw + 14.0088105727px, 18px);
  margin-bottom: clamp(4px, 0.5286343612vw + 2.0176211454px, 10px);
}
.c-content-subtitle-en::before {
  content: "●";
  margin-right: 5px;
}
.c-content-subtitle-jp {
  font-size: clamp(30px, 2.2907488987vw + 21.40969163px, 56px);
  font-weight: bold;
}

.c-heading-arrow {
  position: relative;
  width: 100%;
  margin-bottom: clamp(20px, 1.7621145374vw + 13.3920704846px, 40px);
  padding: clamp(12px, 0.704845815vw + 9.3568281938px, 20px) 50px clamp(12px, 0.704845815vw + 9.3568281938px, 20px) clamp(14px, 1.40969163vw + 8.7136563877px, 30px);
  background: linear-gradient(to right, #728f00, #b9c78d, #e6d3a1, #f9b87e, #f99b53);
  border-radius: 10px 0 0 10px;
  clip-path: polygon(0% 0%, calc(100% - 40px) 0%, 100% 50%, calc(100% - 40px) 100%, 0% 100%);
}
.c-heading-arrow__inner {
  display: flex;
  align-items: center;
}
.c-heading-arrow__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
  line-height: 1.2;
}
.c-heading-arrow__main {
  display: block;
  font-size: clamp(18px, 1.0572687225vw + 14.0352422907px, 30px);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.c-heading-arrow__sub {
  display: block;
  font-size: clamp(12px, 0.2643171806vw + 11.0088105727px, 15px);
  font-weight: 400;
  opacity: 0.8;
}

/* ------------------------------------------------------------
// content
------------------------------------------------------------ */
.c-content-box {
  margin-block: clamp(60px, 5.2863436123vw + 40.1762114537px, 120px);
  margin-inline: auto;
}

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

/* ------------------------------------------------------------
// table
------------------------------------------------------------ */
.c-table {
  width: 100%;
  border-collapse: collapse;
}
.c-table__row {
  display: grid;
  grid-template-columns: minmax(200px, clamp(200px, 3.5242290749vw + 186.7841409692px, 240px)) 1fr;
}
.c-table__head, .c-table__data {
  vertical-align: top;
  font-size: clamp(15px, 0.0881057269vw + 14.6696035242px, 16px);
  text-align: left;
}
.c-table__head {
  display: flex;
  align-items: center;
  padding: clamp(10px, 1.2334801762vw + 5.3744493392px, 24px) clamp(14px, 0.8810572687vw + 10.6960352423px, 24px);
  background: #fafafa;
  border-bottom: 1px solid #728f00;
}
.c-table__data {
  padding: clamp(14px, 1.3477088949vw + 3.6495956873px, 24px) clamp(20px, 0.3524229075vw + 18.6784140969px, 24px);
  background: #fff;
  border-bottom: 1px solid #f17d00;
}
@media screen and (max-width: 767px) {
  .c-table__row {
    display: block;
  }
  .c-table__head, .c-table__data {
    display: block;
    width: 100%;
  }
}

.c-table--narrow {
  max-width: 1200px;
  margin-inline: auto;
}

/* ------------------------------------------------------------
// リンクボタン (.c-btn-more)
------------------------------------------------------------ */
.c-btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  min-width: clamp(220px, 1.0572687225vw + 216.0352422907px, 232px);
  height: clamp(50px, 0.6167400881vw + 47.6872246696px, 57px);
  padding-inline: 25px;
  background-color: #f17d00;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}
.c-btn-more:hover {
  color: #fff;
  background-color: #d26d00;
}
.c-btn-more::after {
  content: "→";
}

/* ------------------------------------------------------------
// お問い合わせボタン (.c-btn-contact)
------------------------------------------------------------ */
.c-btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, 1.5444015444vw + 0.6795366795px, 24px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  width: 100%;
  max-width: clamp(340px, 30.888030888vw + 33.5907335907px, 500px);
  height: clamp(70px, 3.861003861vw + 31.6988416988px, 90px);
  background-color: #728f00;
  border-radius: 10px;
  transition: 0.3s;
}
.c-btn-contact:hover {
  color: #fff;
  background-color: #475900;
}

.c-freedial {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  line-height: 1.2;
  width: 100%;
  max-width: clamp(340px, 30.888030888vw + 33.5907335907px, 500px);
  height: clamp(70px, 3.861003861vw + 31.6988416988px, 90px);
  margin-block: clamp(25px, 4.8262548263vw + -22.8764478764px, 50px) clamp(10px, 2.7027027027vw + -16.8108108108px, 24px);
  background-color: #f17d00;
  border-radius: 10px;
}

.c-freedial__icon {
  flex: 0 0 auto;
  width: 35px;
}

.c-freedial__label {
  font-size: clamp(14px, 0.3861003861vw + 10.1698841699px, 16px);
  font-weight: 700;
}

.c-freedial__tel {
  font-size: clamp(24px, 0.7722007722vw + 16.3397683398px, 28px);
  font-weight: 700;
}

.c-freedial__time {
  font-size: clamp(14px, 0.1930501931vw + 12.0849420849px, 15px);
}

.c-freedial__icon--bottom {
  padding-top: clamp(12px, 0.7722007722vw + 4.3397683398px, 16px);
}

/* ------------------------------------------------------------
// 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 {
  opacity: 0.7;
}
.c-pagetop__link img {
  width: clamp(40px, 2.8193832599vw + 29.4273127753px, 72px);
}
.c-pagetop.is-show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

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

/* ------------------------------------------------------------
// Google Maps（iframe埋め込み）
------------------------------------------------------------ */
.c-google-maps {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}
.c-google-maps iframe {
  width: 100% !important;
  width: 100% !important;
  vertical-align: bottom;
  border-radius: 4px;
}

/* ============================================================
// 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: 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 {
    display: flex !important;
    flex-direction: column-reverse !important;
  }
}

/* ============================================================
// header.scss
// サイト共通のヘッダー・ナビゲーション・ボタン制御
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// header.scss
------------------------------------------------------------ */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: top 0.3s ease;
}

.fixed-header {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 200;
  transition: top 0.5s ease;
}

.fixed-header.show {
  top: 0;
}

.content-header {
  background: #fff;
}

.header__inner,
.fixed-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: 100px;
  margin-inline: auto;
  padding-inline: clamp(20px, 1.7621145374vw + 13.3920704846px, 40px);
}
.header__logo,
.fixed-header__logo {
  width: clamp(160px, 8.4581497797vw + 128.281938326px, 256px);
}
.header__logo img,
.fixed-header__logo img {
  width: 100%;
  height: auto;
}
.header__gnav-list,
.fixed-header__gnav-list {
  display: flex;
  gap: clamp(20px, 2.1563342318vw + 3.4393530997px, 36px);
}
.header__gnav-list li a,
.fixed-header__gnav-list li a {
  text-decoration: none;
  font-size: clamp(16px, 0.269541779vw + 13.9299191375px, 18px);
  font-weight: 500;
  color: #222;
  padding-bottom: 4px;
  transition: color 0.3s;
  white-space: nowrap;
  position: relative;
}
.header__gnav-list li a.current, .header__gnav-list li a:hover,
.fixed-header__gnav-list li a.current,
.fixed-header__gnav-list li a:hover {
  color: #728f00;
}
@media screen and (max-width: 991px) {
  .header__gnav,
  .fixed-header__gnav {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header__inner,
  .fixed-header__inner {
    height: 80px;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 6.4724919094vw + -57.7346278317px, 40px);
}

.header__contact {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100px;
  margin-right: -40px;
  padding-inline: clamp(20px, 6.4724919094vw + -57.7346278317px, 40px) clamp(20px, 19.4174757282vw + -213.2038834951px, 80px);
  background: #f17d00;
}
.header__contact-text {
  color: #ffffff;
}
.header__contact-tel {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(24px, 1.2944983819vw + 8.4530744337px, 28px);
  color: #ffffff;
}
.header__contact-tel img {
  flex: 0 0 auto;
  padding-bottom: 2px;
}
@media screen and (max-width: 1200px) {
  .header__contact {
    display: none;
  }
}

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

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

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

/* ------------------------------------------------------------
// グローバルナビゲーション
------------------------------------------------------------ */
.gnav-sp {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.4s ease;
  pointer-events: none;
}
.gnav-sp.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  touch-action: auto;
  overscroll-behavior: contain;
}
.gnav-sp__inner {
  height: 100%;
  overflow-y: auto;
  padding: 0 clamp(20px, 1.7621145374vw + 13.3920704846px, 40px) 60px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gnav-sp__inner::-webkit-scrollbar {
  display: none;
}
.gnav-sp__logo {
  display: flex;
  align-items: center;
  width: clamp(160px, 8.4581497797vw + 128.281938326px, 256px);
  height: 80px;
}
.gnav-sp__list {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
}
.gnav-sp__item {
  border-bottom: 1px solid #ddd;
  overflow: hidden;
}
.gnav-sp__item:first-child {
  border-top: 1px solid #ddd;
}
.gnav-sp__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(16px, 0.3524229075vw + 14.6784140969px, 20px);
  font-weight: 600;
  color: #222;
  letter-spacing: 0.05em;
  padding: clamp(14px, 0.704845815vw + 11.3568281938px, 22px) clamp(16px, 0.704845815vw + 13.3568281938px, 24px);
  border-bottom: 1px solid #ddd;
  transition: color 0.3s, background-color 0.3s, padding-left 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.gnav-sp__link::after {
  content: "→";
  font-size: 16px;
  color: #728f00;
  transform: translateX(-20px);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  opacity: 0;
}
.gnav-sp__link.current, .gnav-sp__link:hover {
  color: #728f00;
  padding-left: clamp(30px, 0.8810572687vw + 26.6960352423px, 40px);
  background-color: #f9f9f9;
}
.gnav-sp__link.current::after, .gnav-sp__link:hover::after {
  transform: translateX(0);
  opacity: 1;
}
.gnav-sp__link.current, .gnav-sp__link:hover {
  padding-left: calc(clamp(30px, 0.8810572687vw + 26.6960352423px, 40px) - 6px);
  border-left: 6px solid #728f00;
}

.c-global-nav__contact {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  font-size: 20px;
  color: #fff;
  max-width: 600px;
  min-width: clamp(240px, 3.1718061674vw + 228.1057268722px, 276px);
  margin-top: 40px;
  margin-inline: auto;
  padding-block: 5px;
  background: #f17d00;
  border-radius: 29px;
  transition: 0.3s;
}
.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: #d26d00;
}

/* ------------------------------------------------------------
// 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 {
  padding: 60px 0 40px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(20px, 8.0862533693vw + -42.102425876px, 80px);
}
.footer__info {
  flex: 1;
}
.footer__logo {
  max-width: clamp(160px, 8.5462555066vw + 127.9515418502px, 257px);
}
.footer__company-address {
  font-size: 16px;
  margin-block: 24px 20px;
}
.footer__company-address a {
  color: #f17d00;
}
.footer__company-tel, .footer__company-fax {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: clamp(18px, 0.5286343612vw + 16.0176211454px, 24px);
  line-height: 1.2;
}
.footer__company-tel .prefix, .footer__company-fax .prefix {
  font-size: clamp(14px, 0.3524229075vw + 12.6784140969px, 18px);
}
.footer__fnav {
  width: clamp(340px, 35.0404312668vw + 70.8894878706px, 600px);
  flex-shrink: 0;
}
.footer__fnav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(20px, 2.6954177898vw + -0.7008086253px, 40px);
}
.footer__fnav-list li {
  border-bottom: 1px solid #c1c1c1;
}
.footer__fnav-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(16px, 0.269541779vw + 13.9299191375px, 18px);
  color: #222222;
  padding-block: clamp(10px, 0.6738544474vw + 4.8247978437px, 15px) clamp(5px, 1.3477088949vw + -5.3504043127px, 15px);
  padding-inline: 5px;
  transition: 0.3s;
}
.footer__fnav-list li a::after {
  content: "→";
  color: #c1c1c1;
  transition: 0.3s;
}
.footer__fnav-list li a:hover {
  color: #728f00;
}
.footer__fnav-list li a:hover::after {
  color: #728f00;
}
@media screen and (max-width: 767px) {
  .footer__fnav {
    display: none;
  }
}
.footer__copyright {
  font-size: 15px;
  color: #8c8c8c;
  text-align: left;
  margin-top: 74px;
}

/* ============================================================
// 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: #728f00;
  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: #fff;
  min-width: 280px;
  background: #f17d00;
}
.c-btn--primary:hover {
  color: #fff;
  background: #d26d00;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.c-btn--back {
  color: #666;
  min-width: 200px;
  background: #eee;
}
.c-btn--back:hover {
  color: #666;
  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: 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
// 印刷時に不要なナビゲーションを消し、コンテンツを最適化する
------------------------------------------------------------ */
/* ------------------------------------------------------------
// 印刷設定
------------------------------------------------------------ */
@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 {
    position: static !important;
    width: 100% !important;
  }
  .fixed-header {
    display: none !important;
  }
  .header__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;
  }
}
@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;
  }
}
/* ------------------------------------------------------------
// link button
------------------------------------------------------------ */
.link-btn a {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-bottom: 4px;
  color: #333;
  font-weight: 700;
  transition: color 0.3s ease;
}
.link-btn a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.link-btn a::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: currentColor;
  margin-left: 15px;
  position: relative;
  transition: all 0.3s ease;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(-45deg, transparent 50%, currentColor 50%);
  background-size: 8px 1px;
  background-repeat: no-repeat;
  background-position: right 0 top -3px, right 0 bottom -3px;
}
.link-btn a:hover {
  color: #111;
}
.link-btn a:hover::before {
  transform: scaleX(1.2);
}
.link-btn a:hover::after {
  margin-left: 25px;
  width: 50px;
}