@charset "UTF-8";
/* CSS Document */

/* ==================================================================== */
/* ********************************************************************
/* 
/* 初期設定
/* 
/* ******************************************************************** 
/* ==================================================================== */

:root {
  --header-height: 80px;

  /* 余白設定 */
  --spacing-xl: 15rem;
  --spacing-l: 10rem;
  --spacing-m: 6rem;
  --spacing-s: 3rem;

  /* カラー設定 */
  --color-decoration__primary: #8B5A3C; 
  --color-decoration__secondary: #7A7369; 
  --color-decoration__tertiary: #949088;
  --color-decoration__quaternary: #CAC8C5; 
  --color-status__accent: #C84A3D;
  --color-action__link: #117272;
  --color-decoration__contrast: #525263;

  /* テキスト・ボタン背景色 */
  --color-action__inverse: #000000;

  /* 背景色 */
  --color-surface__container: #F6F6F6;
  --color-surface__box: #F5F2EC;
  --color-surface__page: #FDFCFB;
}

/* @media: [Mobile] (750px 以下)
------------------------------------------- */
@media screen and (max-width: 750px) {
  :root {
    /* 余白設定 */
    --header-height: 8rem;    
    --spacing-xl: 8rem;
    --spacing-l: 5rem;
    --spacing-m: 3rem;
    --spacing-s: 1.5rem;
  }
}


html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scrollbar-gutter: stable;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  font-family: "futura-pt", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
}
body {
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  background-color: var(--color-surface__page);
  overflow-wrap: break-word;
  overflow-x: hidden;
}
body.scroll-prevent {
  overflow: hidden;
}


/* ==================================================== */
/* 文字リンク色
/* ==================================================== */
a,
button {
  -webkit-transition: color 0.3s ease;
  transition: opacity 0.3s ease;
  outline: none;
  color: #000;
}
a:link {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:visited {
  text-decoration: none;
}
a:active,
button:active {
  text-decoration: none;
  color: var(--color-decoration__primary);
}
a:hover,
button:hover {
  text-decoration: none;
  color: /* var(--color-decoration__primary) */;
  opacity: 0.7;
}

a.disable {
  pointer-events: none;
  opacity: 0.5;
}


/* ==================================================== */
/* p justify
/* ==================================================== */
p {
  margin: 0;
  padding: 0;
  text-align: justify;
  text-justify: auto;
}
i {
  font-style: normal;
}
strong {
  font-weight: bold;
}
span.ruby {
  font-size: 75%;
}
img {
  line-height: 0;
  vertical-align: bottom;
}

/* ==================================================== */
/* 見出しリセット
/* ==================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  display: block;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: normal;
  line-height: 1.6;
}

/* ---------------------------------------------------- */
/* リストリセット
/* ---------------------------------------------------- */
ul,
ol {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}

/* ==================================================== */
/* フォームリセット
/* ==================================================== */
input[type="text"],
textarea {
  font-size: inherit;
}
input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s !important;
}

/* @media: [Mobile] (750px 以下)
------------------------------------------------------- */
@media screen and (max-width: 750px) {
  body {
    /* grid-template-rows: var(--header-height) 1fr auto; */
    font-size: 1.2rem;
  }
}



/* ==================================================================== */
/* ********************************************************************
/* 
/* 全体共通
/* 
/* ********************************************************************
/* ==================================================================== */

/* ==================================================== */

/* 共通設定

/* ==================================================== */

img {
  width: 100%;
  height: auto;
}

.pc {
  display: block;
}
.sp {
  display: none;
}


/* @media: [Mobile] (750px 以下)
------------------------------------------------------- */
@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/* スクロール禁止 */
.scroll-prevent {
  overflow: hidden;
}


/* ==================================================== */
/* 
/* 共通スタイル
/* 
/* ==================================================== */

.cmnInner {
  width: 100%;
  max-width: calc(1200px + (36px * 2));
  margin: 0 auto;
  padding: 0 36px;
}
.cmnInner-sub {
  width: 100%;
  max-width: calc(1040px + (36px * 2));
  margin: 0 auto;
  padding: 0 36px;
}
/* @media: [Mobile] (750px 以下)
------------------------------------------------------- */
@media screen and (max-width: 750px) {
  .cmnInner {
    max-width: 100%;
    padding: 0 24px;
  }
  .cmnInner-sub {
    max-width: 100%;
    padding: 0 24px;
  }
}

/* トップページタイトル */
.cmnTtl_box {
  width: 100%;
  padding-bottom: 32px;
}
.cmnTtl_box .section-title {
  font-size: 30px;
}
/* @media: [Mobile] (750px 以下)
------------------------------------------- */
@media screen and (max-width: 750px) {
  .cmnTtl_box {
    max-width: 100%;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-decoration__tertiary);
  }
  .cmnTtl_box .section-title {
    font-size: 2.4rem;
  }
}

/* 下層ページタイトル */
.mainTtl_box {
  position: relative;
  margin-top: var(--spacing-m);;
  /* margin-bottom: var(--spacing-m); */
  padding-bottom: 1rem;
}
.mainTtl_box::after {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-decoration__tertiary);
  position: absolute;
}
.mainTtl_box .page-title {
  font-size: 30px;
  font-weight: bold;
}
/* @media: [Mobile] (750px 以下)
------------------------------------------- */
@media screen and (max-width: 750px) {
  .mainTtl_box .page-title {
    font-size: 2.4rem;
  }
}


/* 下層ページタイトル（シンプルタイプ） */
.mainTtl_box--simple {
  position: relative;
  margin-top: var(--spacing-m);;
  /* padding-bottom: 1rem; */
}
.mainTtl_box--simple .page-title {
  font-size: 30px;
  font-weight: bold;
}


/* ==================================================== */

/* 共通ボタン・リンク

/* ==================================================== */

/* ボタンエリア */
.p-button-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem 2rem;
}

/* 標準ボタン */
.ec-blockBtn {
  border-radius: 1rem;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 56px;
  font-size: 15px;
  font-weight: bold;
}
.ec-blockBtn:hover {
  color: #fff;
}
/* @media: [Mobile] (750px 以下)
------------------------------------------- */
@media screen and (max-width: 750px) {
  .ec-blockBtn {
    width: 100%;
    font-size: 1.5rem;
  }
}

/* ゴーストボタン */
.ec-ghostBtn {
  border-radius: 1rem;
  border: 1px solid #000;
  font-size: 15px;
  font-weight: bold;
}
.ec-ghostBtn:hover {
  color: #000;
}
.ec-ghostBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 56px;
}
/* @media: [Mobile] (750px 以下)
------------------------------------------- */
@media screen and (max-width: 750px) {
  .ec-ghostBtn {
    width: 100%;
    font-size: 1.5rem;
  }
}

/* ゴースト角丸ボタン */
.ec-ghostBtn-rounded {
  border-radius: 100vh;
  border: 1px solid #000;
  font-size: 14px;
  font-weight: bold;
}
.ec-ghostBtn-rounded:hover {
  color: #000;
}
.ec-ghostBtn-rounded {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 0.5rem 2rem;
}
/* @media: [Mobile] (750px 以下)
------------------------------------------- */
@media screen and (max-width: 750px) {
  .ec-ghostBtn-rounded {
    width: 100%;
    font-size: 1.5rem;
  }
}

/* テキストリンク */
.txt_link {
  position: relative;
  color: #006f6b;
}
.txt_link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #297D7A;
  left: 0;
  bottom: 0;
  transition: opacity 0.3s ease; 
  opacity: 1;
}
.txt_link:hover::before {
  opacity: 0;
}


/* ==================================================== */

/* card-link / 商品一覧

/* ==================================================== */

.l-product-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8rem 3rem;
}

.p-product-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.p-product-card__link:hover {
  color: var(--color-decoration__secondary);
}

.p-product-card__img {
  margin-bottom: 0;
}
.p-product-card__body {
  padding: 1rem;
}
.p-product-card__name {
  margin-bottom: 0.5rem;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
}

.p-product-card__detail {
  margin-bottom: 1rem;
  font-size: 12px;
  line-height: 1.5;
}

.p-product-card__price {
  font-size: 18px;
  font-weight: bold;
}

.p-product-card__price .en__mark {
  font-size: 14px;
}
/* @media: [Mobile] (750px 以下)
------------------------------------------- */
@media screen and (max-width: 750px) {
  .l-product-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
}


/* ==================================================================== */
/* ********************************************************************
/*
/* 各コンテンツ設定
/*
/* ********************************************************************
/* ==================================================================== */

/* ==================================================== */

/* header / ヘッダー

/* ==================================================== */

#header {
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

#header .site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr; 
  align-items: center;
  box-sizing: border-box;
  max-width: 100vw;
  height: var(--header-height);
}

#header .header-left, #header .header-right {
  flex: 1; 
}

/*
.header-left {
  gap: 15px;  要素間の余白 
}
*/
#header .header-left .header-left-container {
  display: flex;
  align-items: center;
  gap: 15px;   
}

#header .header-center {
  flex: 0 0 auto; /* ロゴの幅に合わせて収縮させない */
  text-align: center;
}

#header .header-right {
  justify-self: flex-end; /* 右寄せ */
  gap: 20px;
}

/* @media: [Mobile] (750px 以下)
------------------------------------------- */
@media screen and (max-width: 750px) {
  #header .site-header {
    grid-template-columns: auto auto;
    grid-template-lows: auto auto;
  }

  /* ロゴ */
  #header .site-header .logo {
    max-width: 130px;
  }
  #header .header-left {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  
  }
  #header .header-center {

  }
  #header .header-right {
    flex: none;
    justify-content: right;
    gap: 0;
  }
}


/* ==================================================== */
/* 商品カテゴリー / プルダウン / for header
/* ==================================================== */

.dropdown-container {
    position: relative;
    width: fit-content; /* または任意の幅 */
    font-size: 1.4rem;
}
/* カスタム矢印の配置 */
.dropdown-container::before {
    content: '▼'; /* または SVG や Webフォント */
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--color-decoration__secondary);
    pointer-events: none; /* クリックイベントを背後の select に通す */
}
.dropdown-container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -5px;
  background: var(--color-decoration__secondary);
}

.dropdown-container > select {
    -webkit-appearance: none;/* 標準の矢印を消去 */
    -moz-appearance: none;
    appearance: none;

    /* スタイル設定 */
    width: 200px; /* 全体の幅 */
    padding: 0 40px 0 0; /* 右側に矢印用の余白を確保 */
    /* font-size: 16px; */
    color: var(--color-decoration__secondary);
    background-color: transparent;
    cursor: pointer;
}
/* @media: [Mobile] (750px 以下)
------------------------------------------- */
@media screen and (max-width: 750px) {
  .dropdown-container {
    font-size: 1.2rem;
  }

}


/* ==================================================== */
/* キーワード検索 / for header
/* ==================================================== */

.search-box {
  display: flex;
  position: relative;
}
.search-box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -5px;
  background: var(--color-decoration__secondary);
}

@media screen and (max-width: 750px) {
  .search-box {
    font-size: 1.2rem;
  }

}

/* ==================================================== */
/* カート
/* ==================================================== */

.cart-info {
  display: flex;
  align-items: center;
  gap: 5px;  
  position: relative;
}
.cart-info .cart-info-box {
  display: flex;
  align-items: center;
  gap: 5px;  
  position: relative;
  padding: 0 1rem;
  cursor: pointer;
  position: relative;
  z-index: 100;
}
.cart-info .cart-info-box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -5px;
  background: var(--color-decoration__secondary);
}
/* @media: [Mobile] (750px 以下)
------------------------------------------- */
@media screen and (max-width: 750px) {
  .cart-info .cart-info-box {
    justify-content: right;
    width: 100%;
  }
/*
  .cart-info::after {
    content: none;
  }
*/
  
}

/* 個数 */
.cart-info .cart-count {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-status__accent);
  border-radius: 100vh;
  width: 2.5rem;
  height: 2.5rem;
  color: #fff;
  letter-spacing: 0;
}

/* 合計金額 */
.cart-info .cart-total {
  margin-left: auto;
  width: 9em;
  text-align: right;
}
/* @media: [Mobile] (750px 以下)
------------------------------------------- */
@media screen and (max-width: 750px) {
  .cart-info .cart-total {
    display: none;
  }
}


/* カート詳細 
/* ==================================================== */

/* カート登録あり */
.cart-info .cart-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 30px;
  width: 330px;
  padding: 2rem;
  background: #fff;
}
.cart-info .cart-dropdown.is-active {
  display: block;
  z-index: 999;
}

.cart-has-items .cart-item_list .cart-item_item {
  display: grid;
  grid-template-columns: 25% 1fr;
  column-gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px dotted var(--color-decoration__secondary);
}

.cart-has-items .cart-item-txt-group {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1 span 5;
  letter-spacing: 0;
  line-height: 1;
}

.cart-has-items .cart-item-txt-group .cart-item-name {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  font-size: 14px;
  line-height: 1.5;
}

.cart-has-items .cart-item-txt-group .cart-item-count {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  justify-self: right;
  align-self: flex-end;
  font-size: 12px;
  line-height: 1.5;
}

.cart-has-items .cart-item-txt-group .cart-item-count span {
  font-size: 14px;
}

.cart-has-items .cart-item-txt-group .cart-item-price {
  grid-column: 1 / 2;
  grid-row: 4 / 5;
  justify-self: right;
  align-self: flex-end;
  font-size: 12px;
  font-weight: normal;
}
.cart-has-items .cart-item-txt-group .cart-item-price span {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  font-size: 18px;
  font-weight: bold;
}

.cart-has-items .cart-item_btn_group {
  display: grid;
  row-gap: 1rem;
  padding: 2rem 0;
}

/* @media: [Mobile] (750px 以下)
------------------------------------------- */
@media screen and (max-width: 750px) {
  /* カート登録あり */
  .cart-info .cart-dropdown {
    position: fixed; 
    top: 60px; 
    left: 0; 
    right: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    z-index: 9999;
  }
}


/* カートアイコンの切り替え（バツマーク） */
.cart-icon {
  position: relative;
  width: 24px; /* アイコンのサイズに合わせて調整 */
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cart-icon img {
 transition: opacity 0.3s ease;
  opacity: 1;
}

/* アクティブ時（バツマーク）のスタイル */
.cart-icon.is-active img {
  transition: all 0.3s ease;
  opacity: 1;
  transform: scale(1) rotate(0);
}
/* アクティブ時（バツになる時）は画像を小さくしながら消す */
.cart-info .cart-icon.is-active img {
  opacity: 0;
}

.cart-icon.is-active::before,
.cart-icon.is-active::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #333;
  top: 50%;
  left: 50%;
  opacity: 0; /* 通常時は消しておく */
  transition: all 0.3s ease;
}

/* バツの初期角度（通常時） */
.cart-info .cart-icon::before {
  transform: translate(-50%, -50%) rotate(0);
}
.cart-info .cart-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

/* アクティブ時にバツを回転させながら浮かび上がらせる */
.cart-info .cart-icon.is-active::before {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(45deg);
}
.cart-info .cart-icon.is-active::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ドロップダウンの表示制御（既存に追記） */
.cart-info .cart-dropdown {
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  display: block !important; /* displayの切り替えだとアニメーションしないためblock固定 */
}

.cart-info .cart-dropdown.is-active {
  opacity: 1;
  visibility: visible;
}


/* カート（空） */
.cart-dropdown .cart-empty {
  display: flex;
  justify-content: center;
  align-items: center;
}



/* ==================================================== */
/* .hamburger-menu / ハンバーガーボタン
/* ==================================================== */
.hamburger-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; /* タップ領域を確保 */
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 100;
}

/* 真ん中の線 */
.hamburger-line {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--color-decoration__secondary); 
  position: relative;
  transition: background-color 0.3s;
}

/* 上下の線 */
.hamburger-line::before,
.hamburger-line::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--color-decoration__secondary); 
  position: absolute;
  left: 0;
  transition: transform 0.3s;
}

.hamburger-line::before {
  top: -8px; /* 上に配置 */
}

.hamburger-line::after {
  bottom: -8px; /* 下に配置 */
}

/* クリック時（開いている状態）のスタイル：クラス "is-active" はJSで付与を想定 */
.hamburger-menu.is-active .hamburger-line {
  background-color: transparent; /* 真ん中の線を消す */
}

.hamburger-menu.is-active .hamburger-line::before {
  transform: translateY(8px) rotate(45deg); /* 上の線を斜めに */
}

.hamburger-menu.is-active .hamburger-line::after {
  transform: translateY(-8px) rotate(-45deg); /* 下の線を斜めに */
}


/* ==================================================== */
/* navigation / ナビゲーションメニュー
/* ==================================================== */
.main-nav {
  position: fixed;
  top: 0;
  right: -300px; /* 固定幅300pxに合わせて調整 */
  width: 300px;
  height: 100%;
  background-color: #fff;
  z-index: 90;
  padding-top: 80px;
  
  /* 閉じる時：即座に動き出し、0.4sかけて隠れる */
  transition: right 0.4s ease;
  transition-delay: 0s;
}

.main-nav.is-active {
  right: 0; /* アクティブ時に画面内にスライド */
}

/* アイコン付きナビゲーション */
.nav-list {
  list-style: none;
  width: 90%;
  padding: 0.5rem 0 0;
  margin: 0 auto;
  /* display: flex;
  flex-direction: column;
  gap: 1rem; */
}

.nav-list li a {
  display: block;
  padding: 15px 0;
  text-decoration: none;
  color: #333;
}

.nav-list li {
  border-bottom: 1px dotted var(--color-decoration__secondary);
}
.nav-list li:last-child {
  border-bottom: 1px solid var(--color-decoration__secondary);
}

.nav-link {
  display: flex;
  align-items: center; /* アイコンとテキストを垂直中央で揃える */
  text-decoration: none;
  color: #333;
  padding: 10px;
}

.nav-link img {
  width: 24px;   /* アイコンのサイズ（固定） */
  height: 24px;
  margin-right: 12px; /* アイコンとテキストの間の余白 */
  object-fit: contain;
}

.nav-text {
  font-size: 16px;
  line-height: 1;
}

/* メインナビ内テキストナビ */
.nav-list-txt {
  list-style: none;
  width: 90%;
  margin: 0 auto 0;
  padding: 2rem 0.5rem;
  border-bottom: 1px solid var(--color-decoration__secondary);
}
.nav-list-txt li a {
  display: block;
  padding: 0.25rem 0;
  text-decoration: none;
  color: #333;
}

/* Instagramアイコンボタン */
.main-nav__sns {
  width: 90%;
  margin: 2rem auto 0;
}
.main-nav__sns .main-nav__sns-link {
  display: block;
  width: 100%;  
  max-width: 32px;
}


/* オーバーレイ（背景の暗転） */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 80;
  opacity: 0;
  visibility: hidden;

  /* 閉じる時：メニューが隠れるのを待ってから（0.3s〜0.4s）消える */
  transition: opacity 0.4s, visibility 0.4s;
  transition-delay: 0.3s;
}

.nav-overlay.is-active {
  opacity: 1;
  visibility: visible;
  /* 開く時：即座に（0s）表示を開始する */
  transition-delay: 0s;
}

/* ==================================================== */
/* 商品カテゴリー / プルダウン / for navigation
/* ==================================================== */

.main-nav .dropdown-container {
    position: relative;
    width: 90%; 
    margin: 0 auto;
    font-size: 1.4rem;
}
/* カスタム矢印の配置 */
.main-nav .dropdown-container::before {
    content: '▼'; /* または SVG や Webフォント */
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--color-decoration__secondary); 
    pointer-events: none; 
}
.main-nav .dropdown-container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -5px;
  background: var(--color-decoration__contrast);
}

.main-nav .dropdown-container .product-dropdown {
    -webkit-appearance: none;/* 標準の矢印を消去 */
    -moz-appearance: none;
    appearance: none;

    /* スタイル設定 */
    width: 100%; /* 全体の幅 */
    padding: 0 40px 0 0; /* 右側に矢印用の余白を確保 */
    /* font-size: 16px; */
    color: var(--color-decoration__secondary);
    background-color: transparent;
    cursor: pointer;
    line-height: 2.5;
}

.main-nav .dropdown-container select {
  color: var(--color-decoration__secondary);
}


/* ==================================================== */
/* キーワード検索 / for navigation
/* ==================================================== */

.main-nav .search-box {
  display: flex;
  align-items: center;
  position: relative;
  gap: 1rem;
  width: 90%; 
  margin: 1rem auto 0;
  padding-right: 1rem;
}

.main-nav .search-box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -5px;
  background: var(--color-decoration__contrast);
}

.main-nav .search-box input {
  width: 90%;
  line-height: 2.5;
}

.search-box input::placeholder {
  color: var(--color-decoration__secondary);
  opacity: 1; /* Firefox対策 */
}

/* ==================================================== */

/* main / メイン

/* ==================================================== */

main {
  width: 100%;
  overflow: hidden;
}
.low-page {
  /* ヘッダーの高さ + デザイン上の余白100px */
  padding-top: calc(var(--header-height) + 80px);
  /* padding-top: var(--header-height); */
}
/* @media: [Mobile] (750px 以下)
------------------------------------------- */
@media screen and (max-width: 750px) {
  .low-page {
    padding-top: var(--header-height);
  }
}


/* ==================================================== */

/* footer / フッター

/* ==================================================== */

.l-footer {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-xl);
  padding-bottom: 8rem;
  font-size: 12px; 
}
/* @media: [Mobile] (750px 以下)
------------------------------------------- */
@media screen and (max-width: 750px) {
  .l-footer {
    padding-bottom: 4rem;
  }
}

/* .p-calendar / カレンダー
/* ==================================================== */
.l-footer .p-calendar {
  margin-bottom: 5rem;
}
.l-footer .p-calendar .cmnTtl_box {
  text-align: center;
}
.l-footer .p-calendar .calendar__wrapper {
  display: flex;
  justify-content: center;
  column-gap: 10%;
}
.l-footer .p-calendar .calendar__item {
  text-align: center;
}
.l-footer .p-calendar .calendar__item .calendar-month {
  margin-bottom: 4rem;
  font-size: 20px;
}
.l-footer .p-calendar .calendar__item .calendar-month .calendar-month__bold {
  font-weight: bold;
}
/* @media: [Mobile] (750px 以下)
------------------------------------------- */
@media screen and (max-width: 750px) {
  .l-footer .p-calendar .cmnTtl_box {
    margin-bottom: 3rem;
  }
  .l-footer .p-calendar .calendar__wrapper {
    flex-wrap: wrap;
    column-gap: 0;
    row-gap: 5rem;
  }
}


/*  .l-footer__inner / その他
/* ==================================================== */

.l-footer .l-footer__inner {
  display: grid;
  grid-template-columns: 
    minmax(0, 164fr) 
    minmax(0, 90fr) 
    minmax(0, 620fr) 
    minmax(0, 90fr) 
    minmax(0, 236fr);
  grid-template-rows: 1fr auto;
  padding-top: 6rem;
  border-top: 1px solid var(--color-decoration__secondary);
}
/* @media: [Mobile] (750px 以下)
------------------------------------------- */
@media screen and (max-width: 750px) {
  .l-footer .l-footer__inner {
    grid-template-columns: repeat(2, auto);
    grid-template-rows: auto;
    gap: 3rem 1rem;
    padding-top: 4rem;
  }
}


/* ------ .l-footer__logo / ロゴ ------ */
.l-footer .l-footer__inner .l-footer__logo {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
/* @media: [Mobile] (750px 以下)
------------------------------------------- */
@media screen and (max-width: 750px) {
  .l-footer .l-footer__inner .l-footer__logo {
    max-width: 120px;
  }
}


/* ------ .l-footer__sns / アイコンリンク ------ */
.l-footer .l-footer__inner .l-footer__sns {
  grid-column: 5 / 6;
  grid-row: 1 / 2;
  justify-self: right;
}
/* @media: [Mobile] (750px 以下)
------------------------------------------- */
@media screen and (max-width: 750px) {
  .l-footer .l-footer__inner .l-footer__sns {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
}


/* ------ .l-footer__nav / フッターナビ ------ */
.l-footer .l-footer__inner .l-footer__nav {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}
.l-footer .l-footer__inner .l-footer__nav .l-footer__nav-list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  font-size: 14px;
}
.l-footer .l-footer__inner .l-footer__nav .l-footer__nav-list .l-footer__nav-item_s {
  font-size: 12px;
}
/* @media: [Mobile] (750px 以下)
------------------------------------------- */
@media screen and (max-width: 750px) {
  .l-footer .l-footer__inner .l-footer__nav {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }
  .l-footer .l-footer__inner .l-footer__nav .l-footer__nav-list {
    display: block;
  } 
}

/* 各ナビゲーション設定 */
.l-footer .l-footer__inner .l-footer__nav .l-footer__nav-list .signup {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.l-footer .l-footer__inner .l-footer__nav .l-footer__nav-list .favorite {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}
.l-footer .l-footer__inner .l-footer__nav .l-footer__nav-list .login {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}
.l-footer .l-footer__inner .l-footer__nav .l-footer__nav-list .about {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.l-footer .l-footer__inner .l-footer__nav .l-footer__nav-list .privacy {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}
.l-footer .l-footer__inner .l-footer__nav .l-footer__nav-list .law {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}
.l-footer .l-footer__inner .l-footer__nav .l-footer__nav-list .contact {
  grid-column: 2 / 3;
  grid-row: 4 / 5;
}
/* @media: [Mobile] (750px 以下)
------------------------------------------- */
@media screen and (max-width: 750px) {
  .l-footer .l-footer__inner .l-footer__nav .l-footer__nav-list .about {
    margin-top: 1.5rem;
  }
}


/* ------ .l-footer__copyright / コピーライト ------ */
.l-footer .l-footer__inner .l-footer__copyright {
  grid-column: 5 / 6;
  grid-row: 2 / 3;
  justify-self: right;
  align-self: flex-end;
  color: #fff;
}
/* @media: [Mobile] (750px 以下)
------------------------------------------- */
@media screen and (max-width: 750px) {
  .l-footer .l-footer__inner .l-footer__copyright {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
    justify-self: center;
  }
}



