@charset "UTF-8";
/* ==================================================
 common.css
================================================== */
/* ==================================================
 カラー変数
-------------------------------------------------- */
/* ==================================================
 ブレイクポイント
-------------------------------------------------- */
/* ==================================================
 Animation 関連
-------------------------------------------------- */
/* ==================================================
 フォント
-------------------------------------------------- */
/* --------------------------------------------------
 clamp() フォントサイズ計算関数
	@param $min    - 最小フォントサイズ（px単位の数値）
	@param $max    - 最大フォントサイズ（px単位の数値）
	@param $vp-min - 最小ビューポート幅（デフォルト: 375）
	@param $vp-max - 最大ビューポート幅（デフォルト: 1200）
	@param $root   - ルートフォントサイズ（デフォルト: 16）
-------------------------------------------------- */
/* ==================================================
 体裁
-------------------------------------------------- */
/* ==================================================
 ミックスイン
-------------------------------------------------- */
/* --------------------------------------------------
 メディアクエリ ミックスイン
-------------------------------------------------- */
/* --------------------------------------------------
 コンテナ ミックスイン
-------------------------------------------------- */
/* --------------------------------------------------
 透明度 ミックスイン
-------------------------------------------------- */
/* --------------------------------------------------
 ボックスシャドウ ミックスイン
-------------------------------------------------- */
/* --------------------------------------------------
 その他 ミックスイン
-------------------------------------------------- */
@layer reset, base, common, top, page;
/* ==================================================
 1.0 - Reset
-------------------------------------------------- */
@layer reset {
  html {
    background: #fff;
    color: #000;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
  }
  *,
  *::before,
  *::after {
    box-sizing: inherit;
  }
  body,
  header,
  footer,
  section,
  article,
  div,
  dl,
  dt,
  dd,
  ul,
  ol,
  li,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  pre,
  code,
  form,
  fieldset,
  figure,
  legend,
  input,
  textarea,
  p,
  blockquote,
  th,
  td {
    margin: 0;
    padding: 0;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  fieldset,
  img {
    border: 0;
  }
  address,
  caption,
  cite,
  code,
  dfn,
  em,
  strong,
  th,
  var {
    font-style: normal;
    font-weight: normal;
  }
  ol,
  ul {
    list-style: none;
  }
  caption,
  th {
    text-align: left;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 100%;
    font-weight: normal;
  }
  q::before,
  q::after {
    content: "";
  }
  abbr,
  acronym {
    border: 0;
    font-variant: normal;
  }
  sup {
    vertical-align: text-top;
  }
  sub {
    vertical-align: text-bottom;
  }
  input,
  textarea,
  select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
  }
}
/* ==================================================
 2.0 - Base（ベーススタイル）
-------------------------------------------------- */
@layer base {
  body {
    background-color: #FFFFFF;
    color: #3A3123;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(0.875rem, 0.8181818182rem + 0.2424242424vw, 1rem);
    line-height: 1.42857143;
    -webkit-font-smoothing: antialiased;
  }
  img,
  video {
    display: block;
    max-width: 100%;
    height: auto;
    image-rendering: auto;
  }
  a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
  }
  hr {
    display: block;
    width: 100%;
    height: 1px;
    margin-block: 20px;
    border: none;
    background-color: #E6E6E6;
  }
  button {
    border: none;
    background: none;
    font-family: inherit;
    font-weight: inherit;
    cursor: pointer;
  }
  /* ------------------------------------------------
   2.1 - Utility
  ------------------------------------------------ */
  .hide {
    display: none !important;
    visibility: hidden;
  }
  .nowrap {
    white-space: nowrap;
  }
  .ib span {
    display: inline-block;
  }
  .non-border {
    border: none !important;
  }
  .align-center {
    text-align: center;
  }
}
/* ==================================================
 3.0 - Common（共通スタイル）
-------------------------------------------------- */
@layer common {
  /* ------------------------------------------------
   3.1 - ボタン（共通）
  ------------------------------------------------ */
  .btn__list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 30px;
  }
  @media (min-width: 1025px) {
    .btn__list {
      gap: 50px;
    }
  }
  .btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 225px;
    height: 50px;
    padding-inline: 30px 20px;
    border-radius: 1000px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: clamp(0.8125rem, 0.6136363636rem + 0.8484848485vw, 1.25rem);
    font-weight: 500;
    line-height: 1.2;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  @media (min-width: 600px) {
    .btn {
      width: 288px;
      height: 64px;
    }
  }
  @media (min-width: 1025px) {
    .btn {
      width: 360px;
      height: 80px;
      padding-inline: 50px 30px;
      letter-spacing: 0.05em;
    }
  }
  .btn:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
  }
  .btn::after {
    display: inline-block;
    width: 4px;
    height: 4px;
    border: solid #3A3123;
    border-width: 1px 1px 0 0;
    transform: rotate(45deg);
    content: "";
  }
  @media (min-width: 600px) {
    .btn::after {
      width: 7px;
      height: 7px;
    }
  }
  .btn.btn--small {
    width: 180px;
    height: 40px;
    padding-inline: 25px 15px;
    font-size: clamp(0.8125rem, 0.7556818182rem + 0.2424242424vw, 0.9375rem);
  }
  @media (min-width: 1025px) {
    .btn.btn--small {
      width: 225px;
      height: 50px;
      padding-inline: 30px 20px;
    }
    .btn.btn--small::after {
      width: 4px;
      height: 4px;
    }
  }
  .btn.btn--low {
    width: 240px;
    height: 50px;
    padding-inline: 25px 15px;
    border-radius: 10px;
    font-size: clamp(0.8125rem, 0.6988636364rem + 0.4848484848vw, 1.0625rem);
    font-weight: 600;
  }
  @media (min-width: 1025px) {
    .btn.btn--low {
      width: 300px;
      height: 60px;
      padding-inline: 30px 20px;
    }
    .btn.btn--low::after {
      width: 16px;
      height: 16px;
    }
  }
  .btn.btn--max {
    width: 100% !important;
  }
  .btn.btn--fit {
    width: fit-content !important;
    padding-inline: 25px 15px;
  }
  .btn.btn--nomal-font {
    font-family: "Noto Sans JP", sans-serif !important;
  }
  .btn.btn--gently-rounded {
    height: 64px;
    border-radius: clamp(0.625rem, 0.3409090909rem + 1.2121212121vw, 1.25rem);
  }
  @media (min-width: 600px) {
    .btn.btn--gently-rounded {
      height: 80px;
    }
  }
  @media (min-width: 1025px) {
    .btn.btn--gently-rounded {
      height: 100px;
    }
  }
  .btn span {
    display: block;
    padding-inline: 0 10px;
  }
  /* 3.1.1 - 塗りボタン（メインカラー）
  ------------------------------------------------ */
  .btn--primary {
    border: 1px solid #EA932A;
    background-color: #EA932A;
    color: #FFFFFF;
  }
  .btn--primary::before, .btn--primary::after {
    border-color: #FFFFFF !important;
  }
  /* 3.1.2 - 塗りボタン（セカンドカラー）
  ------------------------------------------------ */
  .btn--secondary {
    border: 1px solid #57B193;
    background-color: #57B193;
    color: #FFFFFF;
  }
  .btn--secondary::before, .btn--secondary::after {
    border-color: #FFFFFF !important;
  }
  /* 3.1.3 - 塗りボタン（ホワイト）
  ------------------------------------------------ */
  .btn--white {
    border: 1px solid #FFFFFF;
    background-color: #FFFFFF;
    color: #3A3123;
  }
  /* 3.1.4 - 塗りボタン（アウトライン）
  ------------------------------------------------ */
  .btn--outline {
    border: 1px solid #EA932A;
    background-color: #FFFFFF;
    color: #3A3123;
  }
  /* 3.1.5 - ← ボタン（左向き矢印）
  ------------------------------------------------ */
  .btn--arrow-left {
    padding-inline: 20px 30px;
  }
  @media (min-width: 1025px) {
    .btn--arrow-left {
      padding-inline: 30px 50px;
    }
  }
  .btn--arrow-left::before {
    display: inline-block;
    width: 4px;
    height: 4px;
    border: solid #3A3123;
    border-width: 1px 1px 0 0;
    transform: rotate(-135deg);
    content: "";
  }
  @media (min-width: 600px) {
    .btn--arrow-left::before {
      width: 7px;
      height: 7px;
    }
  }
  .btn--arrow-left::after {
    display: none;
  }
  .btn--arrow-left span {
    padding-inline: 10px 0 !important;
  }
  /* 3.1.5 - テキストセンタリングボタン
  ------------------------------------------------ */
  .btn--center span {
    margin: auto;
    padding-inline: 0;
  }
  /* 3.1.6 - 矢印なしボタン
  ------------------------------------------------ */
  .btn--non-arrow {
    padding-inline: 20px;
  }
  @media (min-width: 1025px) {
    .btn--non-arrow {
      padding-inline: 30px;
    }
  }
  .btn--non-arrow::before, .btn--non-arrow::after {
    display: none !important;
  }
  /* ------------------------------------------------
   3.2 - 矢印付きリンク
  ------------------------------------------------ */
  /* 3.2.1 - ○背景に矢印
  ------------------------------------------------ */
  .link__arrow,
  .link__arrow--nega,
  .link__arrow--down {
    position: relative;
    cursor: pointer;
  }
  .link__arrow::before, .link__arrow::after,
  .link__arrow--nega::before,
  .link__arrow--nega::after,
  .link__arrow--down::before,
  .link__arrow--down::after {
    position: absolute;
    top: 50%;
    content: "";
  }
  .link__arrow::before,
  .link__arrow--nega::before,
  .link__arrow--down::before {
    width: 14px;
    height: 14px;
    border-radius: 100%;
    background-color: #EA932A;
    transform: translateY(-42%);
  }
  .link__arrow::after,
  .link__arrow--nega::after,
  .link__arrow--down::after {
    width: 4px;
    height: 4px;
    border: solid #FFFFFF;
    border-width: 1px 1px 0 0;
  }
  .link__arrow,
  .link__arrow--nega {
    padding-left: 25px !important;
  }
  .link__arrow::before, .link__arrow::after,
  .link__arrow--nega::before,
  .link__arrow--nega::after {
    left: 0;
  }
  .link__arrow::after,
  .link__arrow--nega::after {
    transform: rotate(45deg) translateX(2.5px) translateY(-4px);
  }
  .link__arrow--nega::before {
    background-color: #FFFFFF;
  }
  .link__arrow--nega::after {
    border-color: #EA932A;
  }
  .link__arrow--down {
    padding-right: 20px !important;
  }
  .link__arrow--down::before, .link__arrow--down::after {
    right: 0;
  }
  .link__arrow--down::after {
    transform: rotate(135deg) translateX(2.5px) translateY(4.5px);
  }
  /* 3.2.2 - 背景なし矢印
  ------------------------------------------------ */
  .link__arrow--line {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: clamp(0.9375rem, 0.8522727273rem + 0.3636363636vw, 1.125rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
  }
  .link__arrow--line:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
  }
  .link__arrow--line::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 5px;
    border: solid #3A3123;
    border-width: 1px 1px 0 0;
    transform: rotate(45deg);
    content: "";
  }
  /* 3.2.3 - more
  ------------------------------------------------ */
  .link__more {
    position: relative;
    padding-block: 0 1px;
    padding-inline: 0 30px;
    border-bottom: 2px solid #3A3123;
    color: #3A3123;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: clamp(1.375rem, 1.2613636364rem + 0.4848484848vw, 1.625rem);
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  @media (min-width: 1025px) {
    .link__more {
      padding-right: 45px;
    }
  }
  .link__more::before, .link__more::after {
    position: absolute;
    right: -4px;
    height: 2px;
    content: "";
  }
  .link__more::before {
    bottom: 4px;
    width: 20px;
    background-color: #3A3123;
    transform: rotate(45deg);
  }
  @media (min-width: 1025px) {
    .link__more::before {
      bottom: 6px;
      width: 25px;
    }
  }
  .link__more::after {
    bottom: -4px;
    width: 100%;
    background-color: #FFFFFF;
  }
  /* ------------------------------------------------
   3.3 - ヘッダー
  ------------------------------------------------ */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(255, 252, 250, 0.7);
  }
  .header__inner {
    width: 100%;
    max-width: 980px;
    margin-inline: auto;
    padding-inline: 20px;
  }
  @media (min-width: 600px) {
    .header__inner {
      padding-inline: 24px;
    }
  }
  @media (min-width: 1025px) {
    .header__inner {
      max-width: 1200px;
    }
  }
  @media (min-width: 1281px) {
    .header__inner {
      max-width: 1400px;
      padding-inline: 30px;
    }
  }
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    height: 60px;
  }
  @media (min-width: 1025px) {
    .header__inner {
      height: 100px;
    }
  }
  /* 3.3.1 - ロゴ
  ------------------------------------------------ */
  .header__logo {
    z-index: 110;
    margin: 0;
  }
  .header__logo-link {
    display: flex;
    width: 180px;
  }
  @media (min-width: 1025px) {
    .header__logo-link {
      width: 250px;
    }
  }
  @media (min-width: 1281px) {
    .header__logo-link {
      width: 310px;
    }
  }
  .header__logo-emblem {
    width: 100%;
  }
  /* 3.3.2 - PC グローバルナビゲーション
  ------------------------------------------------ */
  .header__nav {
    display: none;
  }
  @media (min-width: 1025px) {
    .header__nav {
      display: block;
    }
  }
  .gnav {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .gnav__item {
    position: relative;
  }
  .gnav__item.padding--left {
    padding-left: 10px;
  }
  @media (min-width: 1281px) {
    .gnav__item.padding--left {
      padding-left: 30px;
    }
  }
  .gnav__link {
    display: flex;
    padding: 8px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #3A3123;
    white-space: nowrap;
    transition: color 0.3s ease;
  }
  @media (min-width: 1281px) {
    .gnav__link {
      padding: 8px 14px;
      font-size: 18px;
    }
  }
  .gnav__link:hover {
    color: #EA932A;
    opacity: 1;
  }
  .gnav__link--small {
    padding: 8px;
    font-size: 13px;
    color: #7C766D;
  }
  @media (min-width: 1281px) {
    .gnav__link--small {
      padding: 8px 10px;
    }
  }
  /* 3.3.3 - ドロップダウンメニュー
  ------------------------------------------------ */
  .gnav__child {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 190px;
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(-50%) translateY(-8px);
    box-shadow: 0 8px 24px rgba(58, 49, 35, 0.12);
  }
  .gnav__item--has-child {
    margin-right: 8px;
  }
  @media (min-width: 1281px) {
    .gnav__item--has-child {
      margin-right: 14px;
    }
  }
  .gnav__item--has-child:hover .gnav__child {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .gnav__child-link {
    display: block;
    width: 100%;
    padding-block: 8px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: clamp(1rem, 0.9431818182rem + 0.2424242424vw, 1.125rem);
    font-weight: 500;
    color: #3A3123;
    text-align: left;
    white-space: nowrap;
    transition: color 0.3s ease;
  }
  .gnav__child-link:hover {
    color: #EA932A;
    opacity: 1;
  }
  .gnav__child-link {
    padding-block: 6px;
    font-size: clamp(0.8125rem, 0.7840909091rem + 0.1212121212vw, 0.875rem);
    color: #7C766D;
  }
  /* 3.3.4 - ハンバーガーボタン
  ------------------------------------------------ */
  .header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    padding: 0;
    z-index: 110;
  }
  @media (min-width: 1025px) {
    .header__hamburger {
      display: none;
    }
  }
  .header__hamburger-line {
    display: block;
    width: 30px;
    height: 1px;
    background-color: #3A3123;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .header--menu-open .header__hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .header--menu-open .header__hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .header--menu-open .header__hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  /* 3.3.5 - ドロワーメニュー
  ------------------------------------------------ */
  .drawer {
    position: fixed;
    inset: 0;
    background-color: #FFF7F1;
    z-index: 99;
    overflow-y: auto;
    padding-block: 80px 40px;
    padding-inline: 30px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  @media (min-width: 1025px) {
    .drawer {
      display: none;
    }
  }
  .drawer--open {
    transform: translateX(0);
  }
  .drawer-nav,
  .drawer-nav__child {
    display: flex;
    flex-direction: column;
    gap: clamp(0rem, -0.2272727273rem + 0.9696969697vw, 0.5rem);
  }
  .drawer-nav__child {
    padding-block: 5px 10px;
  }
  .drawer-nav__link,
  .drawer-nav__child-link {
    display: block;
    width: 100%;
    padding-block: clamp(0.5rem, 0.3863636364rem + 0.4848484848vw, 0.75rem);
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: clamp(1rem, 0.8295454545rem + 0.7272727273vw, 1.375rem);
    font-weight: 500;
    color: #3A3123;
    text-align: left;
  }
  .drawer-nav__child-link {
    padding-block: 6px;
    font-size: clamp(0.8125rem, 0.6704545455rem + 0.6060606061vw, 1.125rem);
    color: #7C766D;
  }
  .drawer-nav__item--has-child {
    padding-left: 25px;
  }
  /* ------------------------------------------------
   3.4 - セクションタイトル（共通）
  ------------------------------------------------ */
  .section-title {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: nowrap;
    gap: 5px 10px;
    color: #3A3123;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.64;
  }
  .section-title__icon {
    width: clamp(3.375rem, 3.2045454545rem + 0.7272727273vw, 3.75rem);
    margin-right: 15px;
    flex-shrink: 0;
    transform: translateY(5px);
  }
  .section-title__jp,
  .section-title__en {
    display: inline-block;
    font-size: clamp(1.625rem, 1.5113636364rem + 0.4848484848vw, 1.875rem);
    white-space: nowrap;
  }
  .section-title__en {
    font-size: 16px;
  }
  /* ------------------------------------------------
   3.5 - フッター
  ------------------------------------------------ */
  .footer {
    background-color: #FFF7F1;
  }
  @media (min-width: 600px) {
    .footer {
      background-color: #FFFFFF;
    }
  }
  .footer__nav-area {
    padding-block: 30px;
    background-color: #FFF7F1;
  }
  @media (max-width: 599px) {
    .footer__nav-area {
      display: none;
    }
  }
  .footer__inner {
    width: 100%;
    max-width: 980px;
    margin-inline: auto;
    padding-inline: 20px;
  }
  @media (min-width: 600px) {
    .footer__inner {
      padding-inline: 24px;
    }
  }
  @media (min-width: 1025px) {
    .footer__inner {
      max-width: 1200px;
    }
  }
  @media (min-width: 1281px) {
    .footer__inner {
      max-width: 1400px;
      padding-inline: 30px;
    }
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    width: fit-content;
    margin: 0 auto;
  }
  @media (min-width: 600px) {
    .footer-nav {
      flex-direction: row;
      gap: 30px;
      width: 100%;
    }
  }
  @media (min-width: 1025px) {
    .footer-nav {
      gap: 50px;
    }
  }
  @media (min-width: 600px) {
    .footer-nav__col {
      width: fit-content;
    }
  }
  .footer-nav__list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .footer-nav__child {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .footer-nav__child {
    padding-block: 5px 10px;
  }
  .footer-nav__link,
  .footer-nav__child-link {
    display: block;
    width: 100%;
    padding-block: 8px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: clamp(1rem, 0.9431818182rem + 0.2424242424vw, 1.125rem);
    font-weight: 500;
    color: #3A3123;
    text-align: left;
    white-space: nowrap;
    transition: color 0.3s ease;
  }
  .footer-nav__link:hover,
  .footer-nav__child-link:hover {
    color: #EA932A;
    opacity: 1;
  }
  .footer-nav__child-link {
    padding-block: 6px;
    font-size: clamp(0.8125rem, 0.7840909091rem + 0.1212121212vw, 0.875rem);
    color: #7C766D;
  }
  .footer-nav__item--has-child {
    padding-left: 25px;
  }
  .footer-nav__item--has-child .footer-nav__link:hover {
    color: #3A3123;
  }
  .footer__info-area {
    padding-block: 32px;
  }
  .footer__info-inner {
    width: 100%;
    max-width: 980px;
    margin-inline: auto;
    padding-inline: 20px;
  }
  @media (min-width: 600px) {
    .footer__info-inner {
      padding-inline: 24px;
    }
  }
  @media (min-width: 1025px) {
    .footer__info-inner {
      max-width: 1200px;
    }
  }
  @media (min-width: 1281px) {
    .footer__info-inner {
      max-width: 1400px;
      padding-inline: 30px;
    }
  }
  .footer__info-inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
  }
  .footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .footer__logo-emblem {
    width: 200px;
  }
  @media (min-width: 600px) {
    .footer__logo-emblem {
      width: 220px;
    }
  }
  @media (min-width: 1025px) {
    .footer__logo-emblem {
      width: 240px;
    }
  }
  .footer__address {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 3px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .footer__tel {
    font-size: clamp(1.375rem, 1.3181818182rem + 0.2424242424vw, 1.5rem);
    font-weight: 700;
  }
  .footer__tel a {
    color: #3A3123;
  }
  .footer__copyright {
    text-align: center;
  }
  .footer__copyright-text {
    font-size: clamp(0.75rem, 0.7215909091rem + 0.1212121212vw, 0.8125rem);
    font-weight: 500;
    color: #EA932A;
  }
  /* ------------------------------------------------
   3.6 - レイアウト
  ------------------------------------------------ */
  .main {
    margin-top: 60px;
  }
  @media (min-width: 1025px) {
    .main {
      margin-top: 100px;
    }
  }
  /* ------------------------------------------------
   3.7 - アニメーション用クラス
  ------------------------------------------------ */
  .target-animation {
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
  }
  .target-animation--left {
    transform: translateX(40px);
  }
  .target-animation--right {
    transform: translateX(-40px);
  }
  .animated {
    visibility: visible !important;
    animation-name: fadeInUp;
    animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
  }
  .delay {
    animation-delay: 0.2s;
  }
  .delay--1 {
    animation-delay: 0.5s;
  }
  .delay--2 {
    animation-delay: 0.9s;
  }
  @media (max-width: 599px) {
    .delay,
    .delay--1,
    .delay--2 {
      animation-delay: 0;
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .fadeInUp {
    animation-name: fadeInUp;
  }
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .fadeInLeft {
    animation-name: fadeInLeft;
  }
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(-40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .fadeInRight {
    animation-name: fadeInRight;
  }
  /* ==================================================
   4.0 - コンテンツページ
  -------------------------------------------------- */
  .section {
    padding-block: 20px;
  }
  @media (min-width: 1025px) {
    .section {
      padding-block: 30px;
    }
  }
  /* ------------------------------------------------
   4.1 - コンテントヘッダー
  ------------------------------------------------ */
  .content-header {
    width: 100%;
    height: clamp(12.5rem, 10.6534090909rem + 7.8787878788vw, 16.5625rem);
    background-color: #FFFCFA;
  }
  .content-header__inner {
    position: relative;
    width: 100%;
    max-width: 980px;
    margin-inline: auto;
    padding-inline: 20px;
  }
  @media (min-width: 600px) {
    .content-header__inner {
      padding-inline: 24px;
    }
  }
  @media (min-width: 1025px) {
    .content-header__inner {
      max-width: 1200px;
    }
  }
  @media (min-width: 1281px) {
    .content-header__inner {
      max-width: 1400px;
      padding-inline: 30px;
    }
  }
  .content-header__inner {
    height: 100%;
  }
  .content-header__wrapper {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: clamp(0.625rem, 0.3409090909rem + 1.2121212121vw, 1.25rem);
  }
  @media (min-width: 1025px) {
    .content-header__wrapper {
      align-items: center;
    }
  }
  .content-header__title {
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    width: min-content;
    max-width: 80%;
    margin-bottom: 30px;
    padding-block: clamp(0.5rem, 0.2727272727rem + 0.9696969697vw, 1rem) clamp(0.625rem, 0.3977272727rem + 0.9696969697vw, 1.125rem);
    padding-inline: clamp(0.9375rem, 0.5113636364rem + 1.8181818182vw, 1.875rem) clamp(1.25rem, 0.6818181818rem + 2.4242424242vw, 2.5rem);
    background-color: #FFFCFA;
    border-top-right-radius: clamp(0.625rem, 0.3409090909rem + 1.2121212121vw, 1.25rem);
    border-bottom-right-radius: clamp(0.625rem, 0.3409090909rem + 1.2121212121vw, 1.25rem);
    line-height: 1.2;
  }
  @media (min-width: 600px) {
    .content-header__title {
      flex-wrap: nowrap;
    }
  }
  @media (min-width: 1025px) {
    .content-header__title {
      margin-bottom: 0;
      gap: 10px 20px;
    }
  }
  .content-header__title .section-title__jp {
    font-size: clamp(1.125rem, 0.7840909091rem + 1.4545454545vw, 1.875rem);
  }
  .content-header__title .section-title__en {
    font-size: clamp(0.75rem, 0.6363636364rem + 0.4848484848vw, 1rem);
  }
  .content-header__image {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: 100%;
    height: flui;
  }
  .content-header__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
  }
  /* ------------------------------------------------
   4.2 - コンテントボディ
  ------------------------------------------------ */
  .content-body {
    padding-block: 50px;
    background-color: #FFFCFA;
  }
  .content-body__inner {
    width: 100%;
    max-width: 980px;
    margin-inline: auto;
    padding-inline: 20px;
  }
  @media (min-width: 600px) {
    .content-body__inner {
      padding-inline: 24px;
    }
  }
  @media (min-width: 1025px) {
    .content-body__inner {
      padding-inline: 0;
    }
  }
  /* 4.2.1 - 見出し
  ------------------------------------------------ */
  .tit-s2,
  .tit-s3,
  .tit-s4 {
    position: relative;
    margin-bottom: 1.15em;
    padding-inline: 32px;
    font-size: clamp(1.125rem, 1.0681818182rem + 0.2424242424vw, 1.25rem);
    font-weight: 600;
    line-height: 1.64;
  }
  .tit-s2 {
    padding-inline: 0;
    color: #EA932A;
    font-size: clamp(1.25rem, 1.1931818182rem + 0.2424242424vw, 1.375rem);
  }
  .tit-s3::before {
    position: absolute;
    top: 0.4em;
    left: 0;
    width: 22px;
    height: 22px;
    border: 2px solid #EA932A;
    border-radius: 100px;
    content: "";
  }
  .tit-s4 {
    padding-block: 0.65em;
    border-radius: 10px;
    background-color: #EA932A;
    color: #FFFFFF;
  }
  /* 4.2.2 - 本文
  ------------------------------------------------ */
  .content-block__text {
    line-height: 1.85;
  }
  .content-block__text .text {
    margin-bottom: 2em;
  }
  .content-block__text p:not(.non-margin) {
    margin-bottom: 1em;
  }
  .content-block__text p:not(.non-margin):last-child {
    margin-bottom: 0;
  }
  /* 4.2.3 - 画像
  ------------------------------------------------ */
  .content-block__gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }
  @media (min-width: 600px) {
    .content-block__gallery {
      flex-direction: column;
      margin-top: 0;
    }
  }
  .content-block__gallery .image-item {
    text-align: center;
  }
  .content-block__gallery .image-item a {
    position: relative;
    display: block;
  }
  .content-block__gallery .image-item img {
    width: 100%;
  }
  .content-block__gallery .image-item figcaption {
    padding-top: 5px;
    color: #7C766D;
    font-size: clamp(0.75rem, 0.7215909091rem + 0.1212121212vw, 0.8125rem);
    line-height: 1.42857143;
  }
  /* 4.2.4 - マーカー付きリスト
  ------------------------------------------------ */
  .list--marker {
    display: flex;
    flex-direction: column;
    gap: 0.5em 1.5em;
  }
  .list--marker > li {
    position: relative;
    padding-left: 18px;
    line-height: 1.42857143;
  }
  .list--marker > li::before {
    position: absolute;
    top: clamp(0.2625rem, 0.2227272727rem + 0.1696969697vw, 0.35rem);
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background-color: #EA932A;
    content: "";
  }
  /* 4.2.5 - 説明リスト
  ------------------------------------------------ */
  .list__dl dl {
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
    justify-content: space-around;
    gap: 10px 20px;
    padding: 10px 30px;
    background-color: #F9E2CB;
    line-height: 1.85;
  }
  .list__dl dl:not(:first-child) {
    margin-top: 1px;
  }
  .list__dl dl:first-child {
    padding-top: 15px;
  }
  .list__dl dl:last-child {
    padding-bottom: 15px;
  }
  @media (min-width: 600px) {
    .list__dl dl {
      grid-template-columns: 8em 1fr;
    }
  }
  .list__dl dt {
    font-weight: 700;
  }
  .list__dl dd ul + p,
  .list__dl dd p + p {
    margin-top: 0.5em;
  }
  .list__dl--rounded {
    overflow: hidden;
    border-radius: clamp(0.625rem, 0.3409090909rem + 1.2121212121vw, 1.25rem);
  }
  /* 4.2.6 - ボックス
  ------------------------------------------------ */
  .box {
    padding: 30px;
    background-color: #F9E2CB;
    line-height: 1.85;
  }
  .box--outline {
    border: 1px solid #EA932A;
    background-color: transparent;
  }
  .box--rounded {
    overflow: hidden;
    border-radius: clamp(0.625rem, 0.3409090909rem + 1.2121212121vw, 1.25rem);
  }
  .box__headline {
    padding-bottom: 0.5em;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: clamp(1rem, 0.8863636364rem + 0.4848484848vw, 1.25rem);
    font-weight: 600;
  }
}

/*# sourceMappingURL=common.css.map */
