/* =========================
   基本設定（変数）
   ========================= */
:root {

  /* カラー変数（ここを変えればサイト全体の色が変更可能） */
  --color-main: #adf0de;
  --main-color-rgb: 173 240 222;
  /* #adf0de */
  --color-sub: #ccff02;
  --color-accent: #FD0000;
  --scroll-track: #FFFFFF;

  --color-border: #e0e0e0;

  --color-surface: #ffffff;
  --color-text: #2b3141;

  /* 画像の余白 */
  --grid_margin: 14px;

  /* フォント変数（ここを変えればフォント一括変更） */
  --font-base: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "Segoe UI", sans-serif;
  --font-heading: "Helvetica Neue", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;

  /* DL_Fonts */
  --font-sans: "azo-sans-web", sans-serif;
  --font-uber: "azo-sans-uber", sans-serif;

  /* =========================
  フォントサイズ
  ========================= */
  --font-midashi-size: 28px;
  --font-default-size: 18px;
  --font-small-size: 14px;

  /* =========================
  その他
  ========================= */

  --max-width: 100%;
  /*角丸_最小 */
  --radius-md: 12px;
  /*角丸_最大 */
  --radius-lg: 20px;
  /*シャドウ */
  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
  /*ヘッダーの高さ */
  --header-height: 44px;
  /*HOMEのヘッダーの高さ */
  --home-header-height: 44px;
  /*内余白 */
  --padding-size: 14px;
  /*外余白 */
  --margin-size: 14px;

}

/* =========================
  Fonts
  ========================= */

.coporate_logo {
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 500;
  font-style: normal;
}


.calibri {
  font-family: "calibri", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.helvetica_roman {
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.helvetica_bold {
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* HGPゴシックE */
.hgp_GothicE {
  font-family:
    "HGPゴシックE",
    "Yu Gothic",
    "Hiragino Sans",
    "Meiryo",
    sans-serif;
}

.azo_sans_regular {
  font-family: "azo-sans-web", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.azo_sans_ltalic {
  font-family: "azo-sans-web", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.azo_sans_bold {
  font-family: "azo-sans-web", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.azo_sans_bold_ltalic {
  font-family: "azo-sans-web", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.azo_sans_uber_regular {
  font-family: "azo-sans-uber", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*ベースフォント??*/

.m_plus_1p_thin {
  font-family: "m-plus-rounded-1p", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.m_plus_1p_regular {
  font-family: "m-plus-rounded-1p", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.m_plus_1p_bold {
  font-family: "m-plus-rounded-1p", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*見出しフォント*/

.itc_avant_garde_gothic_pro__light {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.itc_avant_garde_gothic_pro__medium {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.itc_avant_garde_gothic_pro__bold {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.itc_avant_garde_gothic_pro__bold_oblique {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 700;
  font-style: italic;
}




/* =========================
  Reset / Base
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {

  margin: 0;
  font-size: var(--font-default-size);
  font-family: var(--font-base);
  color: var(--color-text);
  background-color: var(--color-surface);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;

  font-family:
    "HGPゴシックE",
    "Yu Gothic",
    "Hiragino Sans",
    "Meiryo",
    sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Hover */
a:hover {
  color: var(--color-accent);
}

/* Active (押した瞬間) */
a:active {
  opacity: .5;
}

a:focus {
  outline: none;
}

a:focus-visible {
  outline: 2px solid #000;
  /* or 任意 */
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
}

section {
  position: relative;
}



/* =========================
  Layout
========================= */

.l-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: 16px;
}


/*HOME以外のページコンテンツ余白*/
.l-is__not-home__section {
  min-height: 330px;

  background-color: #FFFFFF;
  margin-top: 35px;
  margin-left: 70px;
  margin-bottom: 28px;

  padding-right: 8vh;
  padding-bottom: 40px;

  border: solid 4px var(--color-sub);
  border-right: none;

  width: calc(100% - 70px);

}

/* =========================
  HOME以外のヘッダーロゴ:今は使用していない
========================= */


/* ヘッダーロゴエリア */
.l-header__logo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 100%;

  position: relative;

  padding-left: 28px;
  padding-top: 18px;
  padding-bottom: 5px;
}

/* ロゴ */
.l-header__logo img {
  object-fit: contain;
  width: 200px;
}


/* =========================
  HOME以外のnav
========================= */

.l-nav__ineer {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

/**/

.l-header__nav {
  width: 100%;
}


.l-nav__list {
  display: flex;
  padding: 0;
  list-style: none;
  width: calc(100% - 56px);
  justify-content: end;
  align-items: end;
  margin: 0 auto;
  gap: 10vh;

}

.l-nav__list-item {

  white-space: nowrap;
  text-align: center;
}

.l-nav__list-item:first-child {
  margin-right: auto;
}


.l-nav__list-link {
  position: relative;
  padding-block: 6px;
}

.l-active__link {
  color: var(--color-accent);
}


/* =========================
  ヘッダー v2
========================= */

.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
  font-size: 22px;
  padding-bottom: 4px;
  line-height: 1;
  vertical-align: middle;
}

.l-header {

  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-surface);

  top: 28px;
}




/* =========================
  HOME以外のページの背景：グリッド画像
========================= */

.l-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  margin: var(--grid_margin);
}

/* 背景が足りなくて白が出るのを防ぐ */
.l-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-main);
  background: var(--color-surface);
}

.l-gallery {
  width: 100%;
  overflow: hidden;
  position: absolute;
  height: 100vh;
}

.l-gallery-row {
  display: grid;
  /* ← flex から grid に */
  grid-template-columns: repeat(2, 1fr);
  /* 4列固定 */
  gap: 0;
  background-color: white;
  /* border-bottom: solid 1px #FFFFFF; */
  opacity: 1;
  height: 100vh;
}

.l-gallery-row img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  /* 4:5固定 */
  object-fit: cover;
  height: 100vh;
}

/* =========================
  商品一覧（グリッド画像）をホバーしたとき
========================= */

.l-grid_img {
  position: relative;
  overflow: hidden;
  /* 必須 */
}

/* オーバーレイ : まだ画像がないためコメントアウト。ホバーしたらcoming soonと出る。*/
/* .l-grid_img::after {
  content: attr(data-alt) "\A" attr(data-caption);
  white-space: pre;
 

  position: absolute;
  inset: 0;
  background: rgba(44, 44, 44, 0.5);

  color: #fff;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 6px;
  font-size: 16px;
  font-weight: 600;

  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.l-grid_img:hover::after {
  opacity: 1;
} */

/* =========================
  見出し
========================= */

.l-section__header {
  padding: 28px 0px 0px 0px;
}

.l-section__header-title {
  font-size: var(--font-midashi-size);
  text-align: center;
}

.l-section__header-title span {
  border-bottom: solid 2px #000;
}

.l-comingsoon_tx {
  width: 100%;
  text-align: center;
}

/* =========================
  Googlemap btn
========================= */

.l-map__btn {
  display: inline-block;
  padding: 4px 24px;
  border: 1px solid var(--color-text);
  /* 細いグレー線 */
  border-radius: 9999px;
  /* 完全な pill 型 */
  background: #fff;
  /* 白背景 */
  font-size: var(--font-small-size);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.25s ease;
  /* 超薄い影で立体感 */
}

/* Hover */
.l-map__btn:hover {
  transform: translateY(-1px);
  color: var(--color-text);
}

/* Active (押した瞬間) */
.l-map__btn:active {
  transform: translateY(0);
}


/* =========================
  スクロールバー
========================= */

::-webkit-scrollbar-thumb {
  background: gray;
}

::-webkit-scrollbar-track {
  background: gray;
}

* {
  scrollbar-color: gray var(--scroll-track);
}

/* =========================
  Fotter
========================= */

/* Footer */
.l-footer {
  background-color: var(--color-surface);
  margin: 0 var(--grid_margin);
}

.l-fotter_logo_area {
  max-width: 100%;
  height: 13vh;
  display: flex;
  align-items: end;
  justify-content: center;
  padding-bottom: 42px;
  margin-bottom: 14px;
  border-bottom: solid 1px var(--color-border);
}

.l-fotter_logo_area a {
  width: 15%;
  min-width: 250px;
}

/* ロゴ画像エリア - 画像 */
.l-fotter_logo_area img {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 1;
}

/* =========================
  Fotter -nav
========================= */

.l-fotter-nav__area {
  width: 100%;
  padding-bottom: 28px;
  border-bottom: solid 1px var(--color-border);
}

.l-footer__nav {
  width: 100%;
  background-color: var(--color-surface);
}

.l-fotter__nav-list {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 var(--padding-size);
  margin: 0;
  list-style: none;
  font-size: 18px;
  flex-wrap: wrap;
}

.l-fotter__nav-item {
  max-width: 100%;
  width: calc(100% / 5);
  text-align: center;
}

.l-fotter__nav-item_noactive {
  opacity: .2;
}

.l-fotter__nav-item div {
  box-sizing: border-box;
}

/* =========================
  Fotter -nav:子要素
========================= */

.l-fotter__nav-item :first-child {
  margin-bottom: var(--padding-size);
}

.l-fotter_sub_tx {
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

/* =========================
  Fotter コピーライト表記
========================= */

.l-copyright_tx {
  padding: 42px 0 42px 42px;
  font-size: 12px;
}


/* ===========================================================================
  SP用メニュー
=========================================================================== */

/* トグルボタン */
.l-side_menu_button {
  display: none;
  z-index: 11000;
  padding: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;

  position: fixed;
  top: 10px;
  right: 14px;
  padding: 10px;
}

/*=============================
  ハンバーガーアイコンSVG
=============================*/

.l-side_menu_icon {

  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;

}

.l-side_menu_icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-text);
  border-radius: 0;
}

/* .l-side_menu_icon:hover span {
  background-color: var(--color-accent);
} */

.l-side_menu_icon,
.l-side_menu_icon span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}

.l-side_menu_icon span:nth-of-type(1) {
  top: 0;
}

.l-side_menu_icon span:nth-of-type(2) {
  top: 10px;
}

.l-side_menu_icon span:nth-of-type(3) {
  bottom: 0;
}


/*=============================
#l__side_menu_icon
=============================*/

#l__side_menu_icon.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);

}

#l__side_menu_icon.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-l__side_menu_icon-bar02 .8s forwards;
  animation: active-l__side_menu_icon-bar02 .8s forwards;
}

@-webkit-keyframes active-l__side_menu_icon-bar02 {
  100% {
    height: 0;
  }
}

@keyframes active-l__side_menu_icon-bar02 {
  100% {
    height: 0;
  }
}

#l__side_menu_icon.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}

/*=============================
  overlay overlay（透過グレー）
=============================*/

.l-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 10000;
}

.l-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}



/*=============================
  サイドメニュー - sidemenu
=============================*/
.l-side-menu {
  position: fixed;
  top: 0;
  right: 0;
  /* ← 右に配置 */
  left: auto;
  /* ← 念のため左を無効化 */
  width: clamp(320px, 85vw, 420px);
  height: 100%;
  background: var(--color-surface);
  transform: translateX(100%);
  /* ← 右に隠す */
  transition: transform .25s ease;
  z-index: 10500;
  box-shadow: -12px 0 24px rgba(0, 0, 0, .18);
  /* ← 影も右用に反転 */
}

.l-side-menu.is-open {
  transform: translateX(0);
  /* ← 表示 */
}

/*=============================
  サイドメニューロゴ
=============================*/

/* ロゴdiv */
.l-side_logo {
  padding-left: 14px;
  margin: 22px 0 0 14px;
  padding-bottom: 24px;
  border-bottom: solid 1px var(--color-text);
}

/* ロゴ */
.l-side_logo img {
  object-fit: contain;
  width: 140px;
}

/*=============================
  サイドメニュー:nav
=============================*/

/* 中身 */
.l-side-menu__nav {

  padding: 28px;
  display: flex;
  flex-direction: column;
}

.l-side-menu__nav a {
  padding: 7px 0;
}