@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: "Rounded M plus 1c", sans-serif;
  font-size: clamp(15px, 0.0913242009vw + 14.6575342466px, 16px);
  color: #464f58;
  line-height: 1.6;
  letter-spacing: 0.08em;
  overflow-wrap: break-word;
  background-color: #f5f9fb;
}

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

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

/* ------------------------------------------------------------
// サイト全体の共通ホバーエフェクトなど
------------------------------------------------------------ */
a {
  color: inherit;
  text-decoration: none;
  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
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// 右端固定リンク
------------------------------------------------------------ */
.right-link-list {
  position: fixed;
  z-index: 100;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
}
.right-link-list li a img {
  transition: opacity 0.3s;
}
@media screen and (max-width: 991px) {
  .right-link-list {
    display: none;
  }
}

/* ------------------------------------------------------------
// title
------------------------------------------------------------ */
.c-section-title {
  margin-bottom: clamp(20px, 4.5662100457vw + 2.8767123288px, 70px);
}
.c-section-title__en {
  font-size: clamp(40px, 3.6529680365vw + 26.301369863px, 80px);
  font-weight: 600;
  color: #1068c0;
  line-height: 1.2;
}
.c-section-title__jp {
  font-size: clamp(15px, 0.8219178082vw + 11.9178082192px, 24px);
  font-weight: 700;
}
.c-first-letter-blue::first-letter {
  color: #34c0f4;
}

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

@media screen and (max-width: 767px) {
  .c-sub-title {
    margin-bottom: 35px;
    padding-left: 15px;
  }
  .c-sub-title::before {
    width: 3px;
  }
  .c-sub-title__jp {
    font-size: 18px;
  }
  .c-sub-title__en {
    font-size: 10px;
  }
}
/* ------------------------------------------------------------
// content
------------------------------------------------------------ */
.c-gray-wave {
  background: url(../images/common/bg-gray.png) no-repeat top center/cover;
}

.c-blue-wave {
  background: url(../images/common/bg-blue.png) no-repeat top center/cover;
}

.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;
  }
}

/* ------------------------------------------------------------
// table
------------------------------------------------------------ */
.c-info-table__row {
  display: flex;
  padding: 6px 0;
}
.c-info-table__row:not(:last-child) {
  margin-bottom: 5px;
}
.c-info-table dt {
  flex-shrink: 0;
  display: block;
  align-items: flex-start;
  color: #8ca7b4;
  line-height: 1.8;
  width: 120px;
  padding-left: 15px;
  border-left: 1px solid #8ca7b4;
}
.c-info-table dd {
  flex-grow: 1;
  color: #464f58;
  line-height: 1.8;
}
.c-info-table__tel, .c-info-table__fax {
  display: inline-block;
  font-size: 10px;
  line-height: 1.5;
  vertical-align: middle;
  margin-right: 8px;
  padding: 0 4px;
  border: 1px solid #464f58;
  border-radius: 4px;
}
.c-info-table__list li {
  position: relative;
  padding-left: 1.2em;
}
.c-info-table__list li::before {
  content: "●";
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  font-size: 8px;
  top: 6px;
  color: #464f58;
  height: 1.8em;
}

/* ------------------------------------------------------------
// リンクボタン (.c-btn-more)
------------------------------------------------------------ */
[class^=c-btn--] a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  min-width: 240px;
  padding: 14px 22px;
  /* 初期状態のボーダー */
  border: 8px solid #fff;
  border-radius: 50px;
  transition: all 0.3s ease;
}
[class^=c-btn--] a:hover {
  /* 広がるイメージ：上に浮くのではなく、少し大きくする */
  transform: scale(1.05);
  opacity: 1;
}
[class^=c-btn--] a span {
  padding-right: 24px;
}
[class^=c-btn--] a i {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.c-btn--blue a {
  background-color: #6e8f9f;
  color: #fff;
}
.c-btn--blue a:hover {
  /* ボーダーの色を背景色と合わせることで、ボタンが膨らんだように見せる */
  border-color: #6e8f9f;
  background-color: #6e8f9f;
}

.c-btn--gray a {
  color: #6e8f9f;
  background-color: #ebf0f5;
}
.c-btn--gray a:hover {
  border-color: #ebf0f5;
  background-color: #ebf0f5;
}

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

/* ------------------------------------------------------------
// 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(200px, 1.8264840183vw + 193.1506849315px, 220px);
}
.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%;
}
.c-google-maps iframe {
  width: 100% !important;
  width: 100% !important;
  vertical-align: bottom;
  border-radius: 10px;
}

/* ============================================================
// 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-baloo {
  font-family: "Baloo 2", sans-serif;
}

.u-text-red {
  color: #c13535;
}

.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;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
  z-index: 10;
}
.header__gnav-list {
  display: flex;
  gap: clamp(15px, 1.3698630137vw + 9.8630136986px, 30px);
}
.header__gnav-list li a {
  text-decoration: none;
  font-size: clamp(14px, 0.3652968037vw + 12.6301369863px, 18px);
  font-weight: 500;
  text-align: center;
  padding-bottom: 4px;
  transition: color 0.3s;
  white-space: nowrap;
  position: relative;
}
.header__gnav-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: #464f58;
  transform: scaleX(0);
  transform-origin: left top;
  transition: transform 0.3s;
}
.header__gnav-list li a:hover, .header__gnav-list li a.current {
  color: #464f58;
}
.header__gnav-list li a:hover::after, .header__gnav-list li a.current::after {
  transform: scaleX(1);
}
.header__gnav-list--en {
  font-size: 24px;
  line-height: 1.2;
}
.header__gnav-list--jp {
  font-size: 12px;
  font-weight: 500;
}
.header .instagram-icon {
  position: absolute;
  z-index: 100;
  top: 40px;
  right: 60px;
}
.header .instagram-icon--content {
  padding: 3px 3px 4px 4px;
  background: #fff;
  border: 1px dashed #ddd;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 991px) {
  .header__gnav {
    display: none;
  }
  .header .instagram-icon {
    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: clamp(100px, 1.8264840183vw + 93.1506849315px, 120px) clamp(20px, 1.8264840183vw + 13.1506849315px, 40px) 60px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gnav-sp__inner::-webkit-scrollbar {
  display: none;
}
.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 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(14px, 0.7305936073vw + 11.2602739726px, 22px) clamp(16px, 0.7305936073vw + 13.2602739726px, 24px);
  font-size: clamp(16px, 0.3652968037vw + 14.6301369863px, 20px);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.3s, padding-left 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.gnav-sp__link::after {
  content: "→";
  font-size: 16px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.gnav-sp__link.current, .gnav-sp__link:hover {
  color: #6e8f9f;
  padding-left: clamp(30px, 0.9132420091vw + 26.5753424658px, 40px);
}
.gnav-sp__link.current::after, .gnav-sp__link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ------------------------------------------------------------
// Keyframes (アニメーション定義)
------------------------------------------------------------ */
@keyframes ham-open-top {
  0% {
    transform: translate(-50%, -50%) translateY(-8px) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
@keyframes ham-open-mid {
  0%, 50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ham-open-bot {
  0% {
    transform: translate(-50%, -50%) translateY(8px) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
@keyframes ham-close-top {
  0% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) translateY(-8px) rotate(0);
  }
}
@keyframes ham-close-mid {
  0% {
    opacity: 0;
  }
  50%, 100% {
    opacity: 1;
  }
}
@keyframes ham-close-bot {
  0% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) translateY(8px) rotate(0);
  }
}
.c-header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  padding-inline: 20px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  /* 最初は画面の外（上）に隠しておく */
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  /* JSでこのクラスがついたら表示 */
}
.c-header-sticky.is-scrolled {
  transform: translateY(0);
}
.c-header-sticky .logo {
  position: absolute;
  top: 14px;
  left: 20px;
  width: 140px;
}
@media screen and (max-width: 991px) {
  .c-header-sticky .header__gnav {
    display: none;
  }
}

/* ============================================================
// footer.scss
// サイト共通のフッター・ナビゲーション制御
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// footer（フッター共通）
------------------------------------------------------------ */
.footer {
  padding: 40px 20px 90px;
  color: #fff;
  background: #bcd2dd;
}
.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .footer__container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.footer__nav, .footer__info {
  flex: 1;
}
.footer__item {
  margin-bottom: 10px;
}
.footer__item a {
  font-size: clamp(16px, 0.8368200837vw + 7.6987447699px, 20px);
  font-weight: 500;
  color: #fff;
  display: inline-block;
  transition: transform 0.3s ease;
}
.footer__item a:hover {
  transform: translateX(5px);
}
@media (max-width: 1200px) {
  .footer__item {
    display: none;
  }
}
.footer__logo {
  flex: 0 0 auto;
}
.footer__logo img {
  max-width: clamp(240px, 17.5342465753vw + 174.2465753425px, 432px);
  height: auto;
}
.footer__info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 14px;
  text-align: left;
}
.footer__address {
  margin-bottom: 10px;
}
.footer__tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  margin-bottom: 10px;
}
.footer__tel-label {
  font-size: 14px;
  padding: 0 4px;
  border: 1px solid #fff;
  border-radius: 3px;
}
.footer__hours p {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
}
.footer__copyright {
  font-size: 12px;
  color: #a5c1cf;
  text-align: center;
}

/* ============================================================
// 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;
}

/* ------------------------------------------------------------
// 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: 120px;
  white-space: nowrap;
}

div.paging span.current,
div.paging span.paging-text {
  display: inline-block;
  vertical-align: middle;
  font-size: clamp(13px, 0.1826484018vw + 12.3150684932px, 15px);
  font-weight: 600;
  line-height: 1;
  color: #6e8f9f;
  margin: 0 clamp(2px, 0.1826484018vw + 1.3150684932px, 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.5479452055vw + 5.9452054795px, 14px);
  color: inherit;
  transition: 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

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

div.paging span.paging-text a:hover {
  color: #6e8f9f;
  text-decoration: none;
  background: #fff;
  border-color: #ebf0f5;
  cursor: pointer;
}

/* ------------------------------------------------------------
// 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-wrap {
    position: static !important;
    width: 100% !important;
  }
  .header-wrap__nav-wrap,
  .c-btn-more {
    display: none !important;
  }
  nav,
  .c-hamburger,
  .c-pagetop,
  .c-form-btn {
    display: none !important;
  }
}