@charset "UTF-8";
/* ========== Document Setting ========== */
/* ========== Color ========== */
/* ========== Font Family ========== */
/* ======================================================================
メディア・コンテナークエリ
====================================================================== */
/* ======================================================================
テキスト
====================================================================== */
/* ---------- テキスト設定（ショートハンド） ---------- */
/* ---------- 見出し（大） ---------- */
/* ---------- 見出し（中） ---------- */
/* ---------- 見出し（小） ---------- */
/* ---------- 見出し（極小） ---------- */
/* ---------- テキスト（通常） ---------- */
/* ---------- テキスト（小） ---------- */
/* ---------- パーマリンク ---------- */
/* ---------- ナビゲーション ---------- */
/* ---------- ラベル ---------- */
/* ---------- 欧文見出し（大） ---------- */
/* ---------- 欧文見出し（大） ---------- */
/* ---------- 読み上げ専用テキスト（スクリーンリーダー対応） ---------- */
/* ======================================================================
アニメーション
====================================================================== */
/* ---------- アニメーション（アンダーライン - 長さ拡大） ---------- */
/* ---------- アニメーション（アイコン - スライドアップ） ---------- */
/* ======================================================================
擬似要素 - テキストループスライダー
====================================================================== */
/* ======================================================================
下層ページヘッダー
====================================================================== */
/* ======================================================================
セクションコンテンツ
====================================================================== */
/* ======================================================================
ユーティリティー
====================================================================== */
/* ---------- インナー（コンテンツ幅の制限あり） ---------- */
/* ---------- インナー（コンテンツ幅の制限なし） ---------- */
/* ---------- インナー（セクション幅） ---------- */
/* ======================================================================
ポジション
====================================================================== */
/* ---------- ポジション設定（ショートハンド） ---------- */
/* ======================================================================
アイコン
====================================================================== */
/* ---------- アイコン（内部リンク） ---------- */
/* ---------- アイコン（内部リンク） ---------- */
/* ---------- アイコン（外部リンク） ---------- */
/* ---------- アイコン（中央配置） ---------- */
/* ---------- リンク下線（Black） ---------- */
/* ---------- リンク下線（Gray） ---------- */
/* ======================================================================
コンポーネント
====================================================================== */
/* ---------- ボタン（Japanese） ---------- */
/* ---------- ボタン（English） ---------- */
/* ---------- パーマリンク（Japanese） ---------- */
/* ---------- パーマリンク（English） ---------- */
/* ==================================================
header
================================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 40px;
  padding-inline: 40px;
  transition: all 0.2s;
  z-index: 10;
  /* -- 背景＆下線 -- */
  /* -- スクロール時追加スタイル -- */
  /* ========== ヘッダーロゴ ========== */
  /* ========== ヘッダーナビ ========== */
  /* ========== エントリーナビ ========== */
  /* ========== メニューボタン ========== */
}
@media (max-width: 1079px) {
  #header {
    height: 64px;
    gap: 16px;
    padding-inline: 16px;
  }
}
#header::before {
  opacity: 0;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: unset;
  background-color: #FFFFFF;
  transition: height 0.2s, opacity 0.2s;
  z-index: -1;
}
#header.js-nav-open, #header.js-entry-open, #header.js-scrolled {
  height: 69px;
  /* -- 背景＆下線 -- */
}
@media (max-width: 1079px) {
  #header.js-nav-open, #header.js-entry-open, #header.js-scrolled {
    height: 64px;
  }
}
#header.js-nav-open::before, #header.js-entry-open::before, #header.js-scrolled::before {
  opacity: 1;
}
#header #headerLogo {
  flex: 0 0 134px;
  margin-inline: 0 auto;
}
@media (max-width: 1079px) {
  #header #headerLogo {
    flex: 0 0 102px;
  }
}
#header #headerLogo a {
  display: block;
}
#header #headerNavMenu {
  display: block;
  /* -- 展開時追加スタイル -- */
  /* ----- グローバルナビ ----- */
  /* ----- バナー ----- */
  /* ----- SNS ----- */
}
@media (max-width: 1079px) {
  #header #headerNavMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: #FFFFFF;
    padding-block: 112px;
    padding-inline: 40px;
    overflow-y: scroll;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: -2;
  }
}
@media (max-width: 1079px) {
  #header #headerNavMenu.js-nav-open {
    visibility: visible;
    opacity: 1;
  }
}
#header #headerNavMenu #headerNavMenu--global h1 {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}
#header #headerNavMenu #headerNavMenu--global ul {
  display: flex;
  gap: 32px;
  list-style: none;
}
@media (max-width: 1079px) {
  #header #headerNavMenu #headerNavMenu--global ul {
    flex-direction: column;
  }
}
#header #headerNavMenu #headerNavMenu--global ul li {
  /* -- 最初の要素（ホーム） -- */
}
#header #headerNavMenu #headerNavMenu--global ul li:first-child {
  display: none;
}
@media (max-width: 1079px) {
  #header #headerNavMenu #headerNavMenu--global ul li:first-child {
    display: block;
  }
}
#header #headerNavMenu #headerNavMenu--global ul li a {
  text-decoration: none;
  text-align: left;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2F2F2F;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding-block: 8px;
  transition: color 0.2s;
  /* -- hover -- */
  /* -- 欧文 -- */
}
@media (max-width: 767px) {
  #header #headerNavMenu #headerNavMenu--global ul li a {
    font-size: 12px;
  }
}
@media (max-width: 1079px) {
  #header #headerNavMenu #headerNavMenu--global ul li a {
    display: inline-flex;
    flex-direction: column-reverse;
  }
}
#header #headerNavMenu #headerNavMenu--global ul li a:hover {
  color: #999999;
}
#header #headerNavMenu #headerNavMenu--global ul li a span {
  display: none;
}
@media (max-width: 1079px) {
  #header #headerNavMenu #headerNavMenu--global ul li a span {
    display: block;
    text-align: left;
    font-family: futura-pt, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #DB6145;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}
#header #headerNavMenu #headerNavMenu--banner {
  display: none;
}
@media (max-width: 1079px) {
  #header #headerNavMenu #headerNavMenu--banner {
    display: block;
  }
}
#header #headerNavMenu #headerNavMenu--banner h1 {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}
#header #headerNavMenu #headerNavMenu--banner ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
  list-style: none;
}
#header #headerNavMenu #headerNavMenu--banner ul li a {
  display: block;
}
#header #headerNavMenu #headerNavMenu--sns {
  display: none;
}
@media (max-width: 1079px) {
  #header #headerNavMenu #headerNavMenu--sns {
    display: block;
  }
}
#header #headerNavMenu #headerNavMenu--sns h1 {
  text-align: left;
  font-family: futura-pt, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #DB6145;
  line-height: 2;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
#header #headerNavMenu #headerNavMenu--sns ul {
  display: flex;
  gap: 24px;
  list-style: none;
}
#header #headerNavMenu #headerNavMenu--sns ul li a::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #2F2F2F;
  mask-size: 100% 100%;
  mask-position: center center;
  mask-repeat: no-repeat;
  transition: background-color 0.2s;
}
#header #headerNavMenu #headerNavMenu--sns ul li a:hover::after {
  background-color: #999999;
}
#header #headerNavMenu #headerNavMenu--sns ul li a.note {
  display: block;
  width: 84px;
  height: 20px;
}
#header #headerNavMenu #headerNavMenu--sns ul li a.note::after {
  mask-image: url(../img/common/sns/logo--note.svg);
}
#header #headerNavMenu #headerNavMenu--sns ul li a.x {
  display: block;
  width: 20px;
  height: 20px;
}
#header #headerNavMenu #headerNavMenu--sns ul li a.x::after {
  mask-image: url(../img/common/sns/logo--x.svg);
}
#header #headerNavMenu #headerNavMenu--sns ul li a.instagram {
  display: block;
  width: 20px;
  height: 20px;
}
#header #headerNavMenu #headerNavMenu--sns ul li a.instagram::after {
  mask-image: url(../img/common/sns/logo--instagram.svg);
}
#header #headerNavMenu #headerNavMenu--sns ul li a.facebook {
  display: block;
  width: 20px;
  height: 20px;
}
#header #headerNavMenu #headerNavMenu--sns ul li a.facebook::after {
  mask-image: url(../img/common/sns/logo--facebook.svg);
}
#header #headerEntry {
  display: block;
  /* ---------- エントリーメニューボタン ---------- */
  /* ----- エントリーメニュー ----- */
}
#header #headerEntry #headerEntryBtn {
  position: relative;
  width: 248px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  text-align: left;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2F2F2F;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  background-color: #DB6145;
  padding-inline: 32px;
  /* -- 矢印 -- */
  /* -- hover -- */
  /* -- 展開時追加スタイル -- */
}
@media (max-width: 767px) {
  #header #headerEntry #headerEntryBtn {
    font-size: 12px;
  }
}
@media (max-width: 1079px) {
  #header #headerEntry #headerEntryBtn {
    width: 69px;
    height: 34px;
    justify-content: center;
    text-align: center;
    font-family: heisei-kaku-gothic-std, sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.5;
    letter-spacing: -0.02em;
    padding-inline: 4px;
  }
}
#header #headerEntry #headerEntryBtn::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: #FFFFFF;
  mask-image: url(../img/icon/icon--pull-down.svg);
  mask-size: 100% 100%;
  mask-position: center right;
  mask-repeat: no-repeat;
  margin-left: 0.5em;
  transition: none;
}
@media (max-width: 1079px) {
  #header #headerEntry #headerEntryBtn::after {
    display: none;
  }
}
#header #headerEntry #headerEntryBtn:hover {
  color: #000000;
  /* -- 矢印 -- */
}
#header #headerEntry #headerEntryBtn:hover::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: #000000;
  mask-image: url(../img/icon/icon--pull-down.svg);
  mask-size: 100% 100%;
  mask-position: center right;
  mask-repeat: no-repeat;
  margin-left: 0.5em;
  transition: none;
}
@media (max-width: 1079px) {
  #header #headerEntry #headerEntryBtn:hover::after {
    display: none;
  }
}
#header #headerEntry #headerEntryBtn.js-entry-open {
  color: #DB6145;
  border-top: 1px solid #DB6145;
  border-left: 1px solid #DB6145;
  border-right: 1px solid #DB6145;
  border-radius: 8px 8px 0 0;
  background-color: #FFFFFF;
  /* -- 矢印 -- */
  /* -- hover -- */
}
@media (max-width: 1079px) {
  #header #headerEntry #headerEntryBtn.js-entry-open {
    border: 1px solid #DB6145;
    border-radius: 8px;
  }
}
#header #headerEntry #headerEntryBtn.js-entry-open::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: #DB6145;
  mask-image: url(../img/icon/icon--pull-up.svg);
  mask-size: 100% 100%;
  mask-position: center right;
  mask-repeat: no-repeat;
  margin-left: 0.5em;
  transition: none;
}
@media (max-width: 1079px) {
  #header #headerEntry #headerEntryBtn.js-entry-open::after {
    display: none;
  }
}
#header #headerEntry #headerEntryBtn.js-entry-open:hover {
  color: #DB6145;
}
#header #headerEntry #headerEntryMenu {
  position: relative;
  /* -- 展開時追加スタイル -- */
}
@media (max-width: 1079px) {
  #header #headerEntry #headerEntryMenu {
    overflow-y: scroll;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    background-color: #FFFFFF;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: -2;
  }
}
#header #headerEntry #headerEntryMenu h1 {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}
#header #headerEntry #headerEntryMenu ul {
  overflow: hidden;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 0;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  padding-block: 12px 4px;
  padding-inline: 32px;
  transition: max-height 0.6s ease;
}
@media (max-width: 1079px) {
  #header #headerEntry #headerEntryMenu ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    max-height: 0;
    padding-block: 112px;
    padding-inline: 40px;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: -2;
  }
}
#header #headerEntry #headerEntryMenu ul li {
  /* -- 先頭の子要素 -- */
  /* -- 先頭以外の子要素 -- */
  /* -- 末尾以外の子要素 -- */
}
#header #headerEntry #headerEntryMenu ul li:first-child {
  padding-block: 0 16px;
}
#header #headerEntry #headerEntryMenu ul li:not(:first-child) {
  padding-block: 16px;
}
#header #headerEntry #headerEntryMenu ul li:not(:last-child) {
  border-bottom: 1px solid #E6E6E6;
}
@media (max-width: 1079px) {
  #header #headerEntry #headerEntryMenu ul li {
    border-bottom: 1px solid #E6E6E6;
  }
}
#header #headerEntry #headerEntryMenu ul li a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  text-decoration: none;
  text-wrap: nowrap;
  text-align: left;
  font-family: heisei-kaku-gothic-std, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2F2F2F;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding-block: 8px;
  transition: color 0.2s;
  /* -- hover -- */
  /* -- 矢印アイコン -- */
  /* -- 矢印アイコン（hover） -- */
}
#header #headerEntry #headerEntryMenu ul li a:hover {
  color: #999999;
}
#header #headerEntry #headerEntryMenu ul li a::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: #2F2F2F;
  mask-image: url(../img/icon/icon--internal.svg);
  mask-size: 100% 100%;
  mask-position: center right;
  mask-repeat: no-repeat;
  margin-left: 0.5em;
  width: 24px;
  height: 24px;
  display: block;
  mask-size: 24px 24px;
  margin-inline: auto 0;
  transition: background-color 0.2s;
}
#header #headerEntry #headerEntryMenu ul li a:hover::after {
  background-color: #999999;
  animation: animation-button 0.2s ease-in-out forwards;
}
@media (max-width: 1079px) {
  #header #headerEntry #headerEntryMenu ul li a br {
    display: none;
  }
}
@media (max-width: 1079px) {
  #header #headerEntry #headerEntryMenu.js-entry-open {
    visibility: visible;
    opacity: 1;
  }
}
#header #headerEntry #headerEntryMenu.js-entry-open ul {
  visibility: visible;
  max-height: 500px;
  border-bottom: 1px solid #DB6145;
  border-left: 1px solid #DB6145;
  border-right: 1px solid #DB6145;
  border-radius: 0 0 8px 8px;
}
@media (max-width: 1079px) {
  #header #headerEntry #headerEntryMenu.js-entry-open ul {
    overflow-y: scroll;
    height: 101dvh;
    max-height: none;
    border: none;
    border-radius: 0;
    opacity: 1;
  }
}
#header #headerNavBtn {
  position: relative;
  display: none;
  background-color: transparent;
  /* -- アイコン 開く -- */
  /* -- アイコン 開く（hover） -- */
  /* -- アイコン 閉じる -- */
  /* -- アイコン 閉じる（hover） -- */
}
@media (max-width: 1079px) {
  #header #headerNavBtn {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 35px;
    border: none;
  }
}
#header #headerNavBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #2F2F2F;
  mask-image: url(../img/icon/icon-menu--open.svg);
  mask-size: 100% 100%;
  mask-position: center center;
  mask-repeat: no-repeat;
}
#header #headerNavBtn:hover::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #999999;
  mask-image: url(../img/icon/icon-menu--open.svg);
  mask-size: 100% 100%;
  mask-position: center center;
  mask-repeat: no-repeat;
}
#header #headerNavBtn.js-nav-open::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #2F2F2F;
  mask-image: url(../img/icon/icon-menu--close.svg);
  mask-size: 100% 100%;
  mask-position: center center;
  mask-repeat: no-repeat;
}
#header #headerNavBtn.js-nav-open:hover::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #999999;
  mask-image: url(../img/icon/icon-menu--close.svg);
  mask-size: 100% 100%;
  mask-position: center center;
  mask-repeat: no-repeat;
}

/*# sourceMappingURL=global-header.css.map */
