@charset "UTF-8";
@-ms-viewport {
  width: device-width;
}
/*--------------------------------------------------------------------------
CSS　2026 LOUIS GARNEAU　テンプレート設定(template-style.css)ver.1 2025.8.6
--------------------------------------------------------------------------*/
/*■■■■■■ 基本設定 ■■■■■■■*/
/*OLIVE GREEN*/
/*MARRON BROWN*/
/*アイスグレー*/
/*■■■■■■ HEADER ■■■■■■■*/
header {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /*上下のセンター*/
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /*左右のセンター*/
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 80px;
  background-color: #FFF;
}
header a {
  margin: auto;
  display: inline-block;
  width: auto;
  height: auto;
  z-index: 100;
}
header a img {
  width: auto;
  height: 30px;
}

/*ナビゲーション レイアウト(XS)*/
.nav.nav_list {
  overflow-y: scroll;
}

/*ナビ内ロゴ*/
.nav-logo-box {
  position: absolute;
  top: 22px;
  left: 15px;
  width: 200px;
}
.nav-logo-box a {
  height: auto;
  width: 100%;
}

/*ナビ内バナー*/
.nav-bn-box {
  margin: 0 15px 15px;
  border: 1px solid #3C3935;
}
.nav-bn-box a {
  display: block;
  width: 100%;
  opacity: 1;
}
.nav-bn-box a img {
  width: 100%;
  height: auto;
}
.nav-bn-box a:hover {
  opacity: 0.8;
}

/*ナビ内　SNSアイコン*/
.nav-sns-box {
  margin: 15px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.nav-sns-box li {
  padding: 0;
}
.nav-sns-box li a {
  padding: 0;
  background-color: #3C3935;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 25px;
}
.nav-sns-box li a:hover, .nav-sns-box li a:active {
  background-color: #A39793;
}
.nav-sns-box li a img {
  width: 24px;
  height: auto;
}

.nav_list {
  margin: 32px 0 auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /*上下のセンター*/
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; /**/
}
.nav_list li {
  margin: 0 15px 15px;
  position: relative;
}
.nav_list li a {
  font-size: 1.8rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 16px;
  border: 1px solid #3C3935;
  background-color: #FFF;
}
.nav_list li a small {
  margin: 10px 0 0 0;
  padding: 0 10px;
  font-size: 1.1rem;
  font-weight: 400;
  position: absolute;
  left: 150px;
  border-left: 1px solid #3C3935;
}
.nav_list li a:link, .nav_list li a:visited {
  color: #3C3935;
}
.nav_list li a:hover, .nav_list li a:active {
  color: #666;
}

.nav_list li a:before {
  margin-right: 4px;
  content: "■ ";
  color: #A39793;
}

.nav_list li.has-child > a {
  display: block;
  position: relative;
}

.nav_list li.has-child > a:after {
  content: "";
  position: absolute;
  top: 25px;
  right: 10px;
  width: 24px;
  height: 24px;
  background-color: #DDD;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 29;
}

/* デフォルトの矢印スタイル */
.nav_list li.has-child > a:before {
  margin-top: 5px;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-width: 1px 1px 0 0;
  border-color: #000;
  border-style: solid;
  position: absolute;
  right: 20px;
  top: 18px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); /* 初期状態で45度 */
  z-index: 30;
  -webkit-transition: margin-top 0.2s, right 0.2s, -webkit-transform 0.2s;
  transition: margin-top 0.2s, right 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, margin-top 0.2s, right 0.2s;
  transition: transform 0.2s, margin-top 0.2s, right 0.2s, -webkit-transform 0.2s; /* 回転のみをアニメーション対象に */
}

/* activeクラスが付与されたときのスタイル */
.nav_list li.has-child.active > a:before {
  margin-top: 3px; /* 矢印の位置を微調整 */
  right: 19px; /* 矢印の位置を微調整 */
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg); /* active時に135度に回転 */
}

/*第二階層（XS）*/
.nav_list li.has-child {
  display: block;
}

.nav_list li.has-child ul {
  margin: 0;
  padding: 5px 0;
  position: relative;
  background: #FFF;
  border-radius: 3px;
  top: 0;
  left: 0;
  z-index: 31;
}
.nav_list li.has-child ul li {
  padding: 0;
}
.nav_list li.has-child ul li a {
  font-size: 1.6rem;
  cursor: pointer;
  font-weight: 700;
}

/*ハンバーガーメニュー*/
.nav {
  position: fixed;
  right: -100vw; /* 右から出てくる */
  top: 0;
  width: 320px; /* スマホに収まるサイズ */
  height: 100%;
  padding-top: 70px;
  background-color: rgb(255, 255, 255);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 400;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  -webkit-filter: drop-shadow(#999 0 0 0.3rem);
          filter: drop-shadow(#999 0 0 0.3rem);
}

.hamburger {
  padding-top: 0;
  margin-right: 0;
  position: fixed;
  right: 15px;
  top: 15px;
  width: 48px; /* クリックしやすい幅 */
  height: 48px; /* クリックしやすい高さ */
  border-radius: 24px;
  cursor: pointer;
  z-index: 401;
  background-color: #3C3935;
  font-size: 0.9rem;
  text-align: center;
}

.nav_list {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  display: block;
}
.nav_item {
  text-align: center;
  padding: 0 14px;
}

.nav_item a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
}

.nav_item a:hover {
  background-color: #eee;
}

.hamburger_border {
  position: absolute;
  right: 14px;
  width: 20px;
  height: 2px;
  background-color: #FFF;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.hamburger_border_top {
  top: 17px;
}

.hamburger_border_center {
  top: 23px;
}

.hamburger_border_bottom {
  top: 29px;
}

/* 表示された時用のCSS */
.nav-open .nav {
  top: 0;
  right: 0;
}

.nav-open .black_bg {
  opacity: 0.8;
  visibility: visible;
}

.nav-open .hamburger {
  background-color: #A39793;
}

.nav-open .hamburger_border_top {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 22px;
}

.nav-open .hamburger_border_center {
  width: 0;
  left: 50%;
}

.nav-open .hamburger_border_bottom {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 22px;
}

.nav-open .hamburger_border {
  position: absolute;
  background-color: #FFF;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nav-open .hamburger_border_center {
  display: none;
}

/*■■■■■■ 背景カラー/ドット ■■■■■■■*/
.color-setter {
  background-color: #6d8158;
  color: #FFF;
}

.color-multiway {
  background-color: #414531;
  color: #FFF;
}

.color-cityroam {
  background-color: #8089AC;
  color: #FFF;
}

.color-grind {
  background-color: #E4E025;
  color: #FFF;
}

.color-ascent {
  background-color: #3a393e;
  color: #FFF;
}

.color-easel {
  background-color: #1270B3;
  color: #FFF;
}

.color-kids {
  background-color: #ba4120;
  color: #FFF;
}

.color-junior {
  background-color: #97837f;
  color: #FFF;
}

.color-kids2 {
  background-color: #a5c0bf;
  color: #FFF;
}

.color-multiway2 {
  background-color: #b2b5bc;
  color: #FFF;
}

.color-setter2 {
  background-color: #966747;
  color: #FFF;
}

.color-setter3 {
  background-color: #646364;
  color: #FFF;
}

.color-ascent2 {
  background-color: #666798;
  color: #FFF;
}

.color-k18 {
  background-color: #a5c0bf;
  color: #FFF;
}

.color-main {
  background-color: #3C3935;
  color: #FFF;
}

.color-spacer {
  background-color: none;
}

.color-dot {
  width: 14px;
  height: 14px;
  display: inline-block;
}

.color-dot-s {
  width: 12px;
  height: 12px;
  display: inline-block;
}

.color-dot-box {
  margin: 20px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
}
.color-dot-box li {
  width: 14px;
  height: 14px;
}

.color-dot-box-s {
  margin: 20px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.color-dot-box-s li {
  width: 10px;
  height: 10px;
}

.color-dot-box-xs {
  margin: 15px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.color-dot-box-xs li {
  width: 8px;
  height: 8px;
}

.bg-color-setter {
  background-color: #ecf0e8;
}

.bg-color-multiway {
  background-color: #abb191;
}

.bg-color-cityroam {
  background-color: #dddfe8;
}

.bg-color-grind {
  background-color: #f9f8cd;
}

.bg-color-ascent {
  background-color: #d3d3d6;
}

.bg-color-easel {
  background-color: #e1f1fc;
}

.bg-color-kids {
  background-color: #fae5df;
}

.bg-color-junior {
  background-color: #dcd5d3;
}

.bg-color-kids2 {
  background-color: white;
}

.bg-color-multiway2 {
  background-color: #e9e9eb;
}

.bg-color-setter2 {
  background-color: #f4ede8;
}

.bg-color-setter3 {
  background-color: #e3e3e3;
}

.bg-color-main {
  background-color: #d4d2cf;
}

/*■■■■■■ CONTENTS MAIN ■■■■■■■*/
.footer-flex-box {
  padding: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*■■■■■■ FOOTER ■■■■■■■*/
/*footer メニュー*/
.footer-menu-block {
  margin: 20px 0 0;
  padding: 10px 0;
  border-top: 1px solid #3C3935;
  border-bottom: 1px solid #3C3935;
}

.foot-menu-list {
  margin: 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 30px;
}
.foot-menu-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 0;
  gap: 5px;
}
.foot-menu-list li a {
  display: inline-block;
  white-space: nowrap;
}

/*SNS リンクアイコン*/
.sns-box {
  margin: 30px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.sns-box li a {
  background-color: #3C3935;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 25px;
}
.sns-box li a:hover, .sns-box li a:active {
  background-color: #A39793;
}
.sns-box li a img {
  width: 24px;
  height: auto;
}

/*ロゴ*/
.logo-block {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.logo-block img {
  width: 220px;
  height: auto;
}

footer {
  margin: 0;
  padding: 10px 0;
  color: #222;
}

.copyright-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 60px;
}

.text-copyright {
  margin: auto auto auto 0;
  width: auto;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
}

.copy-asahi {
  margin: auto 65px auto auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.copy-asahi img {
  width: auto;
  height: 26px;
}
.copy-asahi small {
  display: block;
  font-size: 1.1rem;
  white-space: nowrap;
}

/*■■■■■■ ぱんくずリスト ■■■■■■■*/
.bread-thumbs-block {
  margin-top: 80px;
  width: 100%;
  height: auto;
  padding: 10px 20px;
}

.bread-thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.bread-thumbs li {
  font-size: 1.6rem;
  font-weight: 600;
}
.bread-thumbs li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  gap: 5px;
  font-size: 1.6rem;
  font-weight: 400;
}
.bread-thumbs li a:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-width: 2px 2px 0 0;
  border-color: #666;
  border-style: solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*■■■■■■■■■■■■■*/
/*■■■■■■■ トップに戻るボタン ■■■■■■*/
.pagetop {
  cursor: pointer;
  position: fixed;
  right: 15px;
  bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  z-index: 5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #3C3935;
  /*   デフォルトは非表示 */
  opacity: 0;
}

.pagetop:hover {
  background: #A39793;
}

.pagetop:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-width: 6px 0 0 6px;
  border-color: #FFF;
  border-style: solid;
  position: absolute;
  bottom: 14px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*===============================
■■　スマホ用　■■
===============================*/
/*------------(XS)------------*/
@media (min-width: 320px) and (max-width: 566px) {
  /*■■■■■■ HEADER ■■■■■■■*/
  header {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; /*上下のセンター*/
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; /*左右のセンター*/
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 80px;
    background-color: #FFF;
  }
  header a {
    margin: auto;
    display: inline-block;
    width: auto;
    height: auto;
    z-index: 100;
  }
  header a img {
    width: auto;
    height: 30px;
  }
  /*■■■■■■ FOOTER (XS) ■■■■■■■*/
  /*footer メニュー*/
  ul.foot-menu-list {
    margin: 0 auto;
    width: auto;
    max-width: 340px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px 30px;
  }
  ul.foot-menu-list li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px;
  }
  ul.foot-menu-list li a {
    display: inline-block;
  }
  /*フッターレイアウト(XS)*/
  .footer-flex-box {
    padding: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  /*フッター(XS)*/
  .copyright-block {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: 120px;
  }
  .text-copyright {
    margin: 10px auto auto;
    width: 100%;
    text-align: center;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
  }
  .copy-asahi {
    margin: 20px auto 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .copy-asahi img {
    width: auto;
    height: 26px;
  }
  .copy-asahi small {
    display: block;
    font-size: 1.1rem;
    white-space: nowrap;
  }
  /*■■■■■■ ぱんくずリスト(XS) ■■■■■■■*/
  .bread-thumbs-block {
    margin-top: 80px;
    width: 100%;
    height: auto;
    padding: 10px 20px;
  }
  .bread-thumbs {
    gap: 0 15px;
  }
  .bread-thumbs li {
    font-size: 1.5rem;
  }
  .bread-thumbs li a {
    font-size: 1.5rem;
  }
  .bread-thumbs li a:after {
    width: 9px;
    height: 9px;
  }
  /*■■■■■■■ トップに戻るボタン ■■■■■■*/
  .pagetop {
    bottom: 16px;
  }
} /*xs*/
/*------------(SM)------------*/
@media (min-width: 567px) and (max-width: 767px) {
  /*ヘッダー（SM）*/
  .corpo-type {
    display: inline-block;
    font-size: 1.6rem;
    line-height: 1.2;
    letter-spacing: 10px;
    font-weight: 600;
  }
  /*ナビゲーション レイアウト(SM)*/
  .nav.nav_list {
    overflow-y: scroll;
  }
  .nav_list {
    margin: 32px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; /*上下のセンター*/
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; /**/
  }
  .nav_list li {
    margin: x 0;
    position: relative;
  }
  .nav_list li a {
    font-size: 2rem;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 16px;
  }
  .nav_list li a:link, .nav_list li a:visited {
    color: #222;
  }
  .nav_list li a:hover, .nav_list li a:active {
    color: #222;
  }
  .nav_list li.has-child > a {
    display: block;
    position: relative;
  }
  .nav_list li.has-child > a:after {
    content: "";
    position: absolute;
    top: 25px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-color: #DDD;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 29;
  }
  /* デフォルトの矢印スタイル */
  .nav_list li.has-child > a:before {
    margin-top: 5px;
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-width: 1px 1px 0 0;
    border-color: #000;
    border-style: solid;
    position: absolute;
    right: 20px;
    top: 18px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); /* 初期状態で45度 */
    z-index: 30;
    -webkit-transition: margin-top 0.2s, right 0.2s, -webkit-transform 0.2s;
    transition: margin-top 0.2s, right 0.2s, -webkit-transform 0.2s;
    transition: transform 0.2s, margin-top 0.2s, right 0.2s;
    transition: transform 0.2s, margin-top 0.2s, right 0.2s, -webkit-transform 0.2s; /* 回転のみをアニメーション対象に */
  }
  /* activeクラスが付与されたときのスタイル */
  .nav_list li.has-child.active > a:before {
    margin-top: 3px; /* 矢印の位置を微調整 */
    right: 19px; /* 矢印の位置を微調整 */
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg); /* active時に135度に回転 */
  }
  /*第二階層（SM）*/
  .nav_list li.has-child {
    display: block;
  }
  .nav_list li.has-child ul {
    margin: 0;
    padding: 5px 0;
    position: relative;
    background: #FFF;
    border-radius: 3px;
    top: 0;
    left: 0;
    z-index: 31;
  }
  .nav_list li.has-child ul li {
    padding: 0;
  }
  .nav_list li.has-child ul li a {
    font-size: 1.6rem;
    cursor: pointer;
    font-weight: 700;
  }
  /*ハンバーガーメニュー*/
  .nav {
    position: fixed;
    right: -320px; /* 下から出てくる */
    top: 0;
    width: 300px; /* スマホに収まるサイズ */
    height: 100vh;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    z-index: 400;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    padding-top: 0;
    margin-right: 0;
    position: fixed;
    right: 15px;
    top: 15px;
    width: 48px; /* クリックしやすい幅 */
    height: 48px; /* クリックしやすい高さ */
    border-radius: 24px;
    cursor: pointer;
    z-index: 300;
    background-color: #3C3935;
    border: 1px solid #FFF;
    font-size: 0.9rem;
    text-align: center;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    display: block;
  }
  .nav_item {
    text-align: center;
    padding: 0 14px;
  }
  .nav_item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
  }
  .nav_item a:hover {
    background-color: #eee;
  }
  .hamburger_border {
    position: absolute;
    left: 13px;
    width: 20px;
    height: 2px;
    background-color: #FFF;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    z-index: 10000;
  }
  .hamburger_border_top {
    top: 16px;
  }
  .hamburger_border_center {
    top: 22px;
  }
  .hamburger_border_bottom {
    top: 28px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
  }
  /* 表示された時用のCSS */
  .nav-open .nav {
    top: 0;
    left: 0;
  }
  .nav-open .black_bg {
    opacity: 0.8;
    visibility: visible;
  }
  .nav-open .hamburger {
    background-color: #fff;
    border: 1px solid #ccc;
  }
  .nav-open .hamburger_border_top {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 22px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 22px;
  }
  .nav-open .hamburger_border {
    position: absolute;
    background-color: #000;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .nav-open .hamburger_border_center {
    display: none;
  }
  /*■■■■■■ FOOTER (SM) ■■■■■■■*/
  /*footer メニュー*/
  ul.foot-menu-list {
    margin: 0 auto;
    width: auto;
    max-width: 340px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px 30px;
  }
  ul.foot-menu-list li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px;
  }
  ul.foot-menu-list li a {
    display: inline-block;
  }
  /*フッターレイアウト(SM)*/
  .footer-flex-box {
    padding: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .copyright-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: 120px;
  }
  .text-copyright {
    margin: 10px auto auto;
    text-align: center;
    display: inline-block;
  }
  .copy-asahi {
    margin: 20px auto 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
} /*SM*/
/*------------(MD)------------*/
@media (min-width: 768px) and (max-width: 1023px) {
  /*ヘッダー（MD）*/
  /*■■■■■■ FOOTER (SM) ■■■■■■■*/
  /*footer メニュー*/
  ul.foot-menu-list {
    margin: 0 auto;
    width: auto;
    max-width: 340px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px 30px;
  }
  ul.foot-menu-list li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px;
  }
  ul.foot-menu-list li a {
    display: inline-block;
  }
} /*//MD*/
/*------------(LG)------------*/
/*//LG*/
/*------------(XL)------------*/
/*//XL*/
/*----------特殊　320px~1024 ハンバーガーメニュー共有----------*/
/*------------(XS)------------*/
/*//(XXS)*/