@charset "UTF-8";
/*//////////PCサイズ///////////*/
@media screen and (min-width: 768px) {}
/*//////////SPサイズ///////////*/
@media screen and (max-width:767px) {}

/* フォント未ロード時は、仮フォントや透過/非表示でFOUTを見せない */
.font-loading body {
  opacity: 0;
  /* もしくはフォールバックフォント指定やtransitionでふんわり見せるなど */
  /* font-family: 'メイリオ', 'ＭＳ Ｐゴシック', sans-serif; など */
}
/* フォントロード完了時に表示 */
.font-loaded body {
  opacity: 1;
  transition: opacity 0.2s;
}

/* ボックスサイズをborder-boxに統一 */
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden; /* 横スクロールを無効化 */
}
/* ベースリセット */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, 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: inherit;
  vertical-align: baseline;
}
/* HTML5要素をブロックとして扱う（古いブラウザ対応） */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

/*//////////PCサイズ///////////*/
@media screen and (min-width: 768px) {
  /* ボディの初期設定 */
  html {
   /*font-size: 1.25vw; 1280px時に約16px*/
  	  font-size: 1vw; 
    font-feature-settings: "palt";
  }
}
/*//////////SPサイズ///////////*/
@media screen and (max-width:767px) {
  /* ボディの初期設定 */
  html {
    font-size: 3.9vw; /* 390px時に約16pxになる */
	/*  html { font-size: 16px; }*/
    font-feature-settings: "palt";
  }
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: #333;
}
/* ゴシック体用クラス */
.gothic {
  font-family: 'Noto Sans JP', sans-serif;
}
/* 明朝体用クラス */
.serif {
  font-family: 'Noto Serif JP', serif;
}
/* 英文用クラス（Jost） */
.jost {
  font-family: 'Jost', sans-serif;
}
/* リスト初期化 */
ol, ul {
  list-style: none;
}
/* リンクの初期設定 */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.7;
}
/* 画像の基本スタイル */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
/* 見出しタグの初期フォントウェイト */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit; /* ← bodyの値を使う */
}
/** ==============================
 * ローディング画面スタイル start
 * ============================== **/
#loading-screen {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(60deg, #2b6d56, #2b6d56, #2b6d56);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease;
}
/*//////////PCサイズ///////////*/
@media screen and (min-width: 768px) {.loading-logo {
  width: 18vw;
  height: auto;
  opacity: 1;
  transition: opacity 1s ease;
}}
/*//////////SPサイズ///////////*/
@media screen and (max-width:767px) {.loading-logo {
  width: 40vw;
  height: auto;
  opacity: 1;
  transition: opacity 1s ease;
}}

/* フェードアウト用クラス */
.fade-out {
  opacity: 0;
  pointer-events: none;
}
/* 本文初期状態（非表示） */
#main-content {
  visibility: hidden;
  opacity: 0;
  /*background-color: #fdfdfc;
  min-height: 200vh;*/
}
/* 本文フェードイン用 */
#main-content.fade-in {
  visibility: visible;
  animation: fadeIn 1s ease forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/** ==============================
 * ローディング画面スタイル end
 * ============================== **/
/* ==============================
 * バーガーメニュー style start
 * ============================== */
.BurgerMenu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.BurgerMenu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.BurgerMenu__main {
  list-style: none;
  padding: 2vh;
  margin: 0;
  width: 100%;
  max-width: min(80vw, 500px);
  text-align: left;
  font-size: 1.8vh;  /* 高さ基準のフォントサイズ */
  font-weight: 300;
  color: #fff;
  box-sizing: border-box;
  overflow: hidden;
}

.BurgerMenu__main > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.BurgerMenu__main > li:last-child {
  border-bottom: none;
}

.BurgerMenu__main a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 1vh 0 1vh 0.5rem;  /* ← これだけでOK */

}

.BurgerMenu__main a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.BurgerMenu__main .has-sub > span {
  display: block;
  font-weight: 300;
  margin: 0.5vh 0 0.5rem;
  padding-left: 0.5rem;
  color: #E4E4E4;
  letter-spacing: 0.1rem;
  }

.BurgerMenu__sub {
  list-style: none;
  padding-left: 2vh;
  margin-top: 0vh;
}

.BurgerMenu__sub li {
  margin-bottom: 0;
}
.BurgerMenu__sub li a {
  padding: 0.5vh 0 0.5vh 0.5rem;  /* ← これだけでOK */
}
.BurgerMenu__close {
  position: absolute;
  top:20px;
  right: 20px;
  font-size: 3rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
}
.BurgerMenu__sns{
  display: inline-flex;
  align-items: center;
  gap: 0;            /* 並びの間隔 */
  margin-top: .25rem;     /* リスト本体からの距離 */
}
.BurgerMenu__sns img{
  width: 50%;        /* 少し小さく */
  height: auto;
  display: block;
}
/* ==============================
 * バーガーメニュー style end
 * ============================== */
header{z-index: 10000}
  /* ===== HEADER ===== */
  .MainVisualHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 70px;
    z-index: 9999;
    transition: transform 0.5s, background 0.4s, backdrop-filter 0.4s;
    background: rgba(255, 255, 255, 0.0);
    backdrop-filter: none;
    display: flex;
    align-items: center;
  }
  .MainVisualHeader__inner {
    margin: 0 auto;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3vw;
  }
  .MainVisualHeader__logo img {
	max-height:45px
  }
    .MainVisualHeader__logo2 img {
max-height:45px
  }
  .MainVisualHeader__controls {
    display: flex;
    align-items: center;
    gap: 3vw;
  }
  .MainVisualHeader__burger, .MainVisualHeader__burger2 {
    width: 42px;
    height: 42px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 6px;
  }
  .MainVisualHeader__burger span {
    display: block;
    width: 35px;
    height: 1px;
    background: #6C6C6C;
    border-radius: 1px;
  }
    .MainVisualHeader__burger2 span {
    display: block;
    width: 35px;
    height: 1px;
    background: #6C6C6C;
    border-radius: 1px;
  }
  /* 背景帯の透明度・blur制御（JSでクラス付与） */
  .MainVisualHeader.is-solid {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px 0 rgba(50, 60, 70, 0.06);
  }
  .MainVisualHeader.is-hidden {
    transform: translateY(-100%);
    pointer-events: none;
  }
/* ==============================
  ヘッダー配色：スクロール対応 start
============================== */

/* バーガー三本線 */
body:not(.scrolled) .MainVisualHeader__burger span {
  background-color: #ffffff;
}
body.scrolled .MainVisualHeader__burger span {
  background-color: #6C6C6C;
}

/* カスタムセレクト トリガーの文字色と枠線 */
body:not(.scrolled) .custom-select-trigger {
  border-color: #ffffff;
  color: #ffffff;
}
body.scrolled .custom-select-trigger {
  border-color: #6C6C6C;
  color: #6C6C6C;
}

/* Language内のテキストとアイコン */
body:not(.scrolled) .trigger-text,
body:not(.scrolled) .trigger-icon {
  color: #ffffff;
}
body.scrolled .trigger-text,
body.scrolled .trigger-icon {
  color: #6C6C6C;
}

/* ==============================
  ヘッダー配色：スクロール対応 end
============================== */
/* ==============================
   utilities (colors & components) start
   ※ index.cssで共通利用
============================== */
/* text colors */
.c-white {
  color: #fff !important;
}
.c-black {
  color: #000 !important;
}
.c-93815f {
  color: #93815f !important;
}
.c-947847 {
  color: #947847 !important;
}
/* background colors */
.bg-white {
  background: #fff !important;
}
.bg-93815f {
  background: #93815f !important;
}
/* components: structure only（色は上のクラスで切替） */
.tag {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .08em;
  padding: .25rem 0.8rem;
  font-family: 'Noto Sans JP', sans-serif;
}
.ttl {
  font-size: 2.2rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: .03em;
}
.lead {
  line-height: 2;
  font-size: 1.1rem;
  text-align: justify;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1.6rem;
  transition: opacity .25s ease, transform .25s ease;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn-more:hover {
  opacity: .85;
  transform: translateY(-1px);
}
/* icon (follows currentColor) */
.btn-more .ico {
  position: relative;
  display: inline-block;
  width: 6rem;
  height: 1px;
  background: currentColor;
  top: 2px; /* 視覚中央合わせ */
}
.btn-more .ico::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  width: 14px;
  height: 1px;
  background: currentColor;
  transform-origin: right center;
  transform: rotate(45deg); /* 右端から左上へ（＼の上半分） */
}
.btn-more .txt {
  font-size: 1rem;
  line-height: 1;
}
/* button color variants */
.btn--763c36 {
  background: #763c36;
  color: #fff;
}
.btn--white {
  background: #fff;
  color: #93815f;
}
/* ==============================
   utilities (colors & components) end
============================== */
/*//////////PCサイズ///////////*/
/*//////////PCサイズ///////////*/
@media screen and (min-width: 768px) {
/* ==============================
   site-footer start
   ============================== */
.site-footer {
  background: #efe7de; /* 見本の淡ベージュに近似 */
  color: #221a19;
  padding: 4vw 0 2vw;
}
.ft-in {
  width: 90vw;
  margin: 0 auto;
}
/* ① インフォメーション（横幅いっぱい＝1列） */
.ft-blk1 {
  width: 100%;
}
.ft-logo {
  width: 24vw;
  height: auto;
  display: block;
}
.ft-addr {
  margin: 2.4vw 0 0;
  line-height: 2;
  font-style: normal;
}
/* ② 2ブロック目：左右2分割（リンク群 / ブランド） */
.ft-blk2 {
  margin-top: 3vw;
}
.ft2-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 2vw;
  align-items: end; /* ブランド群をやや下位置に */
}
/* 左：リンク群（テキストライクに並べる） */
.ft-links1 {
  line-height: 2.2;
}
.ft-links1 a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  margin-right: 2vw;
}
.ft-links1 a:hover {
  text-decoration: underline;
}
/* 右：ブランド／SNS */
.ft-brands {
  display: flex;
  align-items: center;
  gap: 2vw;
}
.ft-tcg {
  width: 12vw;
  height: auto;
  display: block;
}
.ft-sns {
  display: flex;
  align-items: center;
  gap: 1.3vw;
}
.ft-sns img {
  width: 2.7vw;
  height: auto;
  display: block;
}
/* ③ 3ブロック目：下段リンク群 + © を2分割 */
.ft-blk3 {
  margin-top: 3.6vw;
}
.ft3-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.ft-links2 {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4vw;
}
.ft-links2 a {
  color: inherit;
  text-decoration: none;
}
.ft-links2 a:hover {
  text-decoration: underline;
}
.ft-copy {
  opacity: .85;
}
.ft-addr__lines {
  line-height: 1.75;
  margin: 0 0 1.2vw;
} /* 既存なければ */
.ft-addr__map {
  margin: 0;
}
.ft-maplink {
  color: #763c36;
  text-decoration: none;
  font-weight: 700;
}
.ft-maplink:hover {
  text-decoration: underline;
}
/* ==============================
   site-footer end
   ============================== */

  .PC {}
  .SP {
    display: none;
    max-width: 0%;
    max-height: 0%;
  }
}
/*//////////SPサイズ///////////*/
/*//////////SPサイズ///////////*/
@media screen and (max-width:767px) {

/* ==============================
   site-footer (SP) start
   ============================== */
.site-footer {
  background: #efe7de; /* 見本の淡ベージュに近似 */
  color: #221a19;
  padding: 3rem 0 2rem;          /* 4vw 0 2vw → SP基準に調整 */
}

.ft-in {
  width: 87vw;                   /* 90vw → 既定：87vw（左右6.5vw） */
  margin: 0 auto;
}

/* ① インフォメーション（横幅いっぱい＝1列） */
.ft-blk1 {
  width: 100%;
}
.ft-logo {
  width: 70vw;                   /* 24vw → 視認性を確保して拡大 */
  height: auto;
  display: block;
}
.ft-addr {
  margin: 1.2rem 0 0;            /* 2.4vw → 1.2rem */
  line-height: 1.8;              /* ビルドSP：行間 */
  font-style: normal;
  font-size: 1.0rem;             /* ビルドSP：本文 */
}

/* ② 2ブロック目：左右2分割（リンク群 / ブランド）→ SPは縦積み */
.ft-blk2 {
  margin-top: 2rem;              /* 3vw → 2rem */
}
.ft2-grid {
  display: grid;
  grid-template-columns: 1fr;    /* 1fr auto → 1カラム */
  row-gap: 0;
  column-gap: 0;
  align-items: start;            /* 下位置寄せは解除 */
}

/* 左：リンク群（テキストライクに並べる） */
.ft-links1 {
  line-height: 1.8;              /* 2.2 → 1.8（規定） */
  font-size: 1.0rem;
}
.ft-links1 a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  margin-right: 1rem;            /* 2vw → 1rem */
  padding: .2rem 0;              /* タップ領域をわずかに確保 */
  font-size: 0.9rem;
}
.ft-links1 a:hover {
  text-decoration: underline;
}

/* 右：ブランド／SNS */
.ft-brands {
  display: flex;
  align-items: center;
  gap: 2rem;                     /* 2vw → 1rem */
  flex-wrap: wrap;               /* 狭幅で折返し許容 */
  padding: 1rem 0;
}
.ft-tcg {
  height: 1.5rem;                   /* 12vw → SP最適化 */
  display: block;
}
.ft-sns{
width: auto;
gap: 2rem; 
} 
.ft-sns img {
  height: 1.5rem;   
  display: inline-block;
  align-items: center;
  padding: 0 1rem 0 0;
                     /* 1.3vw → .8rem */
}

/* ③ 3ブロック目：下段リンク群 + © → SPは縦積み */
.ft-blk3 { }
.ft3-grid {
  display: grid;
  grid-template-columns: 1fr;    /* 1fr auto → 1カラム */
  row-gap: 1rem;
  align-items: start;
}
.ft-links2 {
  font-size: 0.9rem;
  line-height: 1.8;
}
.ft-links2 a {  display: inline-block;
  color: inherit;
  padding: .2rem 0;              /* タップ領域をわずかに確保 */
    font-size: 0.9rem;
}
.ft-links2 a:hover {
  text-decoration: underline;
}
.ft-copy {
  opacity: .85;
  font-size: .8rem;             /* わずかに抑制 */
}

/* 住所・マップリンク系 */
.ft-addr__lines {
  line-height: 1.75;
  margin: 0 0 1rem;              /* 1.2vw → 1rem */
}
.ft-addr__map {
  margin: 0;
}
.ft-maplink {
  color: #763c36;
  text-decoration: none;
  font-weight: 700;
}
.ft-maplink:hover {
  text-decoration: underline;
}
/* ==============================
   site-footer (SP) end
   ============================== */


  .PC {
    display: none;
    max-width: 0%;
    max-height: 0%;
  }
  .SP {}
}
