@charset "UTF-8";
/* -----------------------------------
 
 (c) 2024 melong works
 contact：info@melong-works.com
  「/assets/css/cmnstyle」@2024

----------------------------------- */
/*****************************************************

	システム

*****************************************************/
/*茶 セクションタイトルなど*/
/*オレンジ*/
/*ニュースセクションなど*/
/*インスタセクションなど*/
/*コンテンツ文字 基本 黒*/
/*コンテンツ文字 赤*/
body {
  color: #222222;
  font-family: YakuHanJP_Narrow, "YuGothic", "Yu Gothic Medium", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic StdN", "メイリオ", sans-serif;
  font-weight: 500;
  /*Medium*/
  font-style: normal;
  font-feature-settings: "palt";
}

/*文章の両橋揃え*/
.txt_justify_on {
  word-break: break-all;
  text-align: justify;
  text-justify: inter-ideograph;
}

/*文字カーニング*/
.txt_kerning {
  font-feature-settings: "palt";
}

.hide {
  display: none !important;
}

@media all and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
/*sp時に表示時*/
@media all and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
/*pc時に表示時*/
/*****************************************************

	フォントサイズ指定

*****************************************************/
/*使用例*/
.fontsize_example {
  font-size: clamp(1rem, 0.7rem + 0.78vw, 2.2rem) /* FontSizeClamp (10 - 22px, 375 - 1920px) */;
}

/*****************************************************

	widthなどサイズ を　px　から % に

*****************************************************/
/*使用例*/
.size_example {
  width: calc(10.4167% + -0.4%);
}

/*****************************************************

	widthなどサイズ を　px　から vw に シンプル

*****************************************************/
/*使用例*/
.size_exampleVW {
  width: 2.8125vw;
}

/*****************************************************

	widthなどサイズ を　px　から vw に シンプル
  min を使用して、最大値を設定

*****************************************************/
.size_sizeMinVW {
  width: min( 50vw, 320px );
}

/*****************************************************

	widthなどサイズ を　px　から vw に シンプル
  clamp を使用して、最小と最大値を設定

*****************************************************/
/*使用例*/
.size_sizeClmpVW {
  font-size: clamp(14px, 1.3542vw, 26px);
}

/*****************************************************

	line-heightの値 Photoshop
  行送りの数値（px）÷ フォントサイズ（px）

*****************************************************/
/*使用例*/
.size_line-height {
  line-height: 1.667;
}

/* =========================================================

　リンク関係

========================================================= */
a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

a img {
  transition: 0.3s;
}

/* リンクのホバー動作をPCのみに
--------------------------------------------------------- */
@media (hover: hover) and (pointer: fine) {
  a:hover {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
  }

  a:hover img {
    opacity: 0.9;
  }
}
/* end */
/* PC時の電話番号リンクを無効に
--------------------------------------------------------- */
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* end */
/* =========================================================

　アニメーション関係

========================================================= */
/*.js_fade {
    transition: 1.0s ease 0.1s;
    opacity: 0;
}

.js_fade_in {
    transform: translateY(15%);
    transition: 1.0s ease 0.1s;
    opacity: 0;
}

.fade {
    opacity: 1.0;
    transform: translate(0, 0);
    transform: scale(1, 1);
}*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　共通　パーツ
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* =========================================================

　トップに戻るボタン ver02

========================================================= */
/* PC 表示
--------------------------------------------------------- */
.page-top {
  display: none;
  position: fixed;
  right: 30px;
  bottom: 40px;
  z-index: 9999;
}

.move-page-top {
  background: #653415;
  /*border: 1px solid #947b17;*/
  border-radius: 9999px;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  cursor: pointer;
}

.move-page-top .svg_wrap {
  width: 23px;
  position: relative;
  aspect-ratio: 23 / 22;
}

.move-page-top svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.move-page-top:hover {
  opacity: 0.7;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .page-top {
    right: 10px;
    bottom: 20px;
  }

  .move-page-top {
    width: 44px;
    height: 44px;
  }

  .move-page-top .svg_wrap {
    width: 18px;
  }
}
/*スマホ 表示 end*/
/* =========================================================

　リスト　リストマーク１文字用 テキスト 

========================================================= */
/* PC 表示
--------------------------------------------------------- */
.list_mark_ul {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* ----- リスト　リストマーク１文字用 ----- */
.list_mark_ul.mark li {
  display: flex;
  align-items: baseline;
}

.list_mark_ul.mark li::before {
  content: attr(data-li_mark);
  color: inherit;
  font-size: 0.9em;
  font-feature-settings: normal;
  text-align: center;
  margin: 0 0.3em 0 0;
}

/* =========================================================

　リスト　脚注マーク用 2文字　※1 など

========================================================= */
/* PC 表示
--------------------------------------------------------- */
.list_mark_ul.numbered li {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}

.list_mark_ul.numbered li::before {
  content: attr(data-li_mark);
  display: inline-block;
  color: inherit;
  letter-spacing: 0em;
  text-align: left;
  margin: 0 0.5em 0 0;
}

.list_mark_ul.numbered li p {
  flex: 1;
}

/* =========================================================

　リスト以外　マーク１文字用 テキスト 

========================================================= */
/* PC 表示
--------------------------------------------------------- */
.marked_txt {
  display: flex;
  align-items: baseline;
}

.marked_txt::before {
  content: attr(data-li_mark);
  color: inherit;
  font-feature-settings: normal;
  text-align: center;
  margin: 0 0.2em 0 0;
}

/* =========================================================

　セクションヘッド　sec_head

========================================================= */
/* PC 表示
--------------------------------------------------------- */
.main_contnts .sec_head {
  width: 100%;
  margin: auto;
}
.main_contnts .sec_head .head_txt_en {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #653415;
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(2rem, 1.9rem + 0.26vw, 2.4rem) /* FontSizeClamp (20 - 24px, 390 - 1920px) */;
  font-weight: bold;
  letter-spacing: 0.12em;
}
.main_contnts .sec_head .head_txt_en::before,
.main_contnts .sec_head .head_txt_en::after {
  content: '';
  background-color: #653415;
  max-width: 121px;
  width: 100%;
  height: 1px;
  margin: 0 1em;
}
.main_contnts .sec_head .head_txt_ja {
  display: block;
  color: #555555;
  font-size: clamp(1.2rem, 1.1rem + 0.2vw, 1.5rem) /* FontSizeClamp (12 - 15px, 390 - 1920px) */;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0.5em auto 0;
}
.main_contnts .sec_head.with_icon .head_txt_en img {
  width: 58px;
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 1240px) {
  .main_contnts .sec_head {
    width: 100%;
    position: relative;
    margin: auto;
  }
  .main_contnts .sec_head .head_txt_en {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #653415;
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(1.8rem, 1.7rem + 0.39vw, 2.4rem) /* FontSizeClamp (18 - 24px, 375 - 1920px) */;
    font-weight: bold;
    letter-spacing: 0.12em;
  }
  .main_contnts .sec_head .head_txt_en::before,
  .main_contnts .sec_head .head_txt_en::after {
    content: '';
    background-color: #653415;
    max-width: 10.6667vw;
    width: 100%;
    height: 1px;
    margin: 0 1em;
  }
  .main_contnts .sec_head .head_txt_ja {
    display: block;
    color: #555555;
    font-size: clamp(1.1rem, 1rem + 0.26vw, 1.5rem) /* FontSizeClamp (11 - 15px, 375 - 1920px) */;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 0.5em auto 0;
  }
  .main_contnts .sec_head.with_icon .head_txt_en img {
    width: 58px;
    position: absolute;
    top: -58px;
    left: 50%;
    transform: translateX(-50%);
  }

  /**/
}
/*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　サイト　枠　設定
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.base {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.base img {
  width: 100%;
  height: auto;
}

.main_contnts {
  margin-top: 188px;
  width: 100%;
  position: relative;
  transition: all .5s;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 1240px) {
  .main_contnts {
    margin-top: 3vw;
    width: 100%;
    position: relative;
  }
}
/*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　FutureShop システム使用部分
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* =========================================================

　ログイン・ログアウト切り替えボタン

========================================================= */
/* PC 表示
--------------------------------------------------------- */
/*ログインログアウトスイッチ */
/*制御部分*/
/*.logout.my-false { display: none; }
.mypage.my-false { display: none; }
.login.my-true { display: none; }
.regist.my-true { display: none; }*/
/*構築時プレビュー用*/
/*.member_switch .fs-clientInfo:not(.is-ready) {
  display: flex!important;
}*/
/*制御部分*/
.member_switch {
  width: 50px;
}

.member_switch .fs-clientInfo {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
}

.member_switch .btn_unit {
  width: 50px;
}

.member_switch .btn_unit a {
  width: 100%;
  height: 100%;
  display: block;
  color: inherit;
  text-align: center;
}

.member_switch .btn_unit img {
  width: 23px;
}

.member_switch .btn_unit .btn_txt {
  display: block;
  font-size: clamp(1rem, 1rem + 0vw, 1rem) /* FontSizeClamp (10 - 10px, 390 - 1920px) */;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 0.5%;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 1240px) {
  .member_switch {
    position: absolute;
    top: 2px;
    right: 50px;
  }
}
/*スマホ 表示 end*/
/* =========================================================

　カートボタン

========================================================= */
/* PC 表示
--------------------------------------------------------- */
.crat_btn {
  width: 50px;
}

.crat_btn a {
  width: 100%;
  height: 100%;
  display: block;
  color: inherit;
  text-align: center;
}

.crat_btn img {
  width: 23px;
}

.crat_btn .btn_txt {
  display: block;
  font-size: clamp(1rem, 1rem + 0vw, 1rem) /* FontSizeClamp (10 - 10px, 390 - 1920px) */;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 0.5%;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 1240px) {
  .crat_btn {
    position: absolute;
    top: 2px;
    right: 0;
  }
}
/*スマホ 表示 end*/
/* =========================================================

　検索窓

========================================================= */
/* PC 表示
--------------------------------------------------------- */
.search_box {
  max-width: 270px;
  min-width: 200px;
  flex: 1;
}

.search_box.pc_only {
  display: block;
}

.search_box.sp_only {
  display: none;
}

.search_box form {
  border: 1px solid #222222;
  background: #fff;
  width: 100%;
  position: relative;
}

.search_label {
  width: 100%;
  display: block;
}

.search_input {
  border: none;
  width: calc(100% - (22px + 5%));
  height: 30px;
  display: flex;
  align-items: center;
  font-size: clamp(1.2rem, 1.2rem + 0vw, 1.2rem) /* FontSizeClamp (12 - 12px, 390 - 1920px) */;
  letter-spacing: 0.1em;
  padding-left: 1em;
}

.search_box form [type="text"]:focus {
  border: none;
  box-shadow: none;
}

.search_btn {
  width: 22px;
  height: 22px;
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 1240px) {
  .search_box {
    max-width: 100%;
    width: 100%;
    min-width: 100%;
    margin-top: 115px;
    padding: 0 5.335% 0;
  }

  .search_box.pc_only {
    display: none;
  }

  .search_box.sp_only {
    display: block;
  }

  .search_input {
    width: calc(100% - (20px + 5%));
    height: 42px;
    font-size: clamp(1.3rem, 1.3rem + 0vw, 1.3rem) /* FontSizeClamp (13 - 13px, 390 - 1920px) */;
    letter-spacing: 0;
  }

  .search_btn {
    width: 20px;
    height: 20px;
  }
}
/*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　ヘッダー
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* =========================================================

　メニュー　制御部分

========================================================= */
/* ----- toggle_btn ----- */
/* 初期値は非表示
--------------------------------------------------------- */
.js_nav_toggle,
.js_nav_toggle_menu {
  display: none;
  opacity: 0;
  transition: opacity .3s linear;
}

.js_sp_view_navi .js_nav_toggle {
  width: 30px;
  height: 21px;
  display: block;
  position: fixed;
  z-index: 9999;
  top: 16px;
  left: 14px;
  opacity: 1;
  transition: all .5s;
  cursor: pointer;
}
.js_sp_view_navi .js_nav_toggle span {
  background-color: #222;
  border-radius: 4px;
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all .5s;
}
.js_sp_view_navi .js_nav_toggle span:nth-child(1) {
  top: 9px;
}
.js_sp_view_navi .js_nav_toggle span:nth-child(2) {
  top: 21px;
}
.js_sp_view_navi .js_nav_toggle span:nth-child(3) {
  bottom: 20px;
}
.js_sp_view_navi .js_nav_toggle.js_open_navi {
  mix-blend-mode: normal;
}
.js_sp_view_navi .js_nav_toggle.js_open_navi span {
  background-color: #222;
  left: 0;
  transform: translateX(-50%);
}
.js_sp_view_navi .js_nav_toggle.js_open_navi span:nth-child(1) {
  transform: translateY(0) rotate(-315deg);
}
.js_sp_view_navi .js_nav_toggle.js_open_navi span:nth-child(2) {
  left: 50%;
  opacity: 0;
}
.js_sp_view_navi .js_nav_toggle.js_open_navi span:nth-child(3) {
  transform: translateY(10px) rotate(315deg);
}

/*js_sp_view_navi*/
/* ----- mask ----- */
.js_mask,
.js_mask02 {
  background: #000;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  animation: show 1s linear 0s;
  animation-direction: reverse;
}

.js_is_fixed .js_mask,
.js_is_fixed02 .js_mask02 {
  display: block;
  position: relative;
  animation: show 0.5s linear 0s forwards;
}

.js_is_fixed .js_mask {
  z-index: 9998;
}

.js_is_fixed02 .js_mask02 {
  z-index: 8887;
}

@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.8;
  }
}
/* ----- 背景スクロール禁止 ----- */
body.js_is_fixed,
body.js_is_fixed02 {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　メインメニューなど設定
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* =========================================================

　初期　JS着火前　表示崩れにならないように隠しておく。

========================================================= */
.js_header_origin {
  padding: 0;
  opacity: 0;
  transition: opacity .3s linear;
}

/* スマホ表示
--------------------------------------------------------- */
.js_header_origin.js_sp_view_navi {
  background-color: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid #cccccc;
  width: 100%;
  height: 107px;
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 999;
  padding-top: 6px;
  opacity: 1;
  /*&.js_fixed_sp_header {
    height: 80px;
  }*/
  /* =========================================================

   ドロップメニュー部分

  ========================================================= */
  /*クリックでドロップメニュー表示*/
  /*開いている時のボタンカラー*/
  /* =========================================================

   トグルボタンメニュー部分　スマホのみ

  ========================================================= */
  /*js_nav_toggle_menu*/
}
.js_header_origin.js_sp_view_navi .header_inner {
  width: 100%;
  position: relative;
  margin: auto;
}
.js_header_origin.js_sp_view_navi .header_logo {
  width: 136px;
  margin: auto;
  transition: 0.5s;
}
.js_header_origin.js_sp_view_navi .header_logo a {
  width: 100%;
  height: 100%;
  display: block;
}
.js_header_origin.js_sp_view_navi .nav_group {
  background: #F45D3E;
  width: 100%;
  height: 53px;
  display: flex;
  align-items: center;
  margin-top: 8px;
}
.js_header_origin.js_sp_view_navi .g_nav {
  width: 100%;
  height: 100%;
}
.js_header_origin.js_sp_view_navi .g_nav_list {
  width: 100%;
  height: 100%;
  display: flex;
}
.js_header_origin.js_sp_view_navi .g_nav_list .nav_unit {
  width: 50%;
  display: flex;
  position: relative;
  text-align: center;
}
.js_header_origin.js_sp_view_navi .g_nav_list .nav_unit:first-child::after {
  content: '';
  background-color: #fff;
  width: 1px;
  height: 80%;
  display: block;
  position: absolute;
  z-index: 10;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.js_header_origin.js_sp_view_navi .g_nav_list .nav_unit.pc_only {
  display: none;
}
.js_header_origin.js_sp_view_navi .g_nav_list .nav_unit > a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  color: inherit;
  padding: 0 4%;
  cursor: pointer;
  z-index: 5;
}
.js_header_origin.js_sp_view_navi .g_nav_list .nav_unit .sp_menu_icon {
  width: 56px;
}
.js_header_origin.js_sp_view_navi .g_nav_list .nav_unit .menu_ja_txt {
  color: #fff;
  font-size: clamp(1px, 2.6667vw, 10px);
  font-weight: bold;
  margin-top: 5px;
}
.js_header_origin.js_sp_view_navi .g_nav_list .nav_unit .menu_en_txt {
  display: none;
}
.js_header_origin.js_sp_view_navi .js_drop_menu {
  background-color: #fff;
  width: 100vw;
  height: 80%;
  display: block;
  position: fixed;
  z-index: 8888;
  top: 107px;
  left: 0;
  padding: 5% 5.335% 30%;
  visibility: hidden;
  /*最初は隠す*/
  opacity: 0;
  /*最初は隠す*/
  transition: all .2s ease;
  overflow-x: hidden;
  overflow-y: auto;
}
.js_header_origin.js_sp_view_navi .js_drop_menu.js_open_navi02 {
  visibility: visible;
  opacity: 1;
}
.js_header_origin.js_sp_view_navi .js_drop_toggle.js_open_navi02 {
  background-color: #f14b30;
}
.js_header_origin.js_sp_view_navi .drop_menu_list {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 11px 11px;
}
.js_header_origin.js_sp_view_navi .drop_menu_list .drop_unit {
  width: 162px;
}
.js_header_origin.js_sp_view_navi .drop_menu_list .drop_unit a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: inherit;
}
.js_header_origin.js_sp_view_navi .drop_menu_list .drop_unit img {
  width: 56px;
}
.js_header_origin.js_sp_view_navi .drop_menu_list .drop_unit .menu_txt {
  flex: 1;
  font-size: clamp(1px, 3.4667vw, 13px);
  font-weight: 500;
  line-height: 1.308;
  text-align: left;
  margin-left: 0.5em;
}
.js_header_origin.js_sp_view_navi .drop_menu_list .drop_unit .menu_txt span {
  display: inline-block;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu {
  background-color: #fff;
  width: 100%;
  height: 80vh;
  display: block;
  position: fixed;
  z-index: 9999;
  top: 107px;
  left: -100%;
  padding: 2% 0 10%;
  transition: all .2s ease;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 1;
  /*トグルボタン押されたら表示*/
    /* ================================

     アコーディオンメニュー部分 スマホのみ

    =================================== */
  /*アコーディオンにしないメニュー用*/
  /*アコーディオンメニュー用*/
  /*/.ac_menu_unit*/
    /* ================================

     インフォボタンメニュー部分 スマホのみ　info_btn_wrap

    =================================== */
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu.js_open_navi {
  left: 0;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .search_box {
  margin-top: 0;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .toggle_menu_inner {
  width: 100%;
  margin-top: 5%;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .ac_manu_wrap {
  border-top: 2px solid #cccccc;
  width: 100%;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .non_ac_menu_unit {
  width: 100%;
  margin: 0 auto;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .non_ac_menu_unit a {
  border-bottom: 2px solid #cccccc;
  width: 100%;
  display: block;
  position: relative;
  color: inherit;
  padding: 3.2% 5.335%;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .non_ac_menu_unit a:after {
  content: '';
  border-top: 1px solid #222222;
  border-right: 1px solid #222222;
  width: 9px;
  height: 9px;
  display: block;
  position: absolute;
  top: 38%;
  right: 7%;
  transform: rotate(45deg);
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .non_ac_menu_unit .parent_head {
  font-size: clamp(1.3rem, 1.3rem + 0.07vw, 1.4rem) /* FontSizeClamp (13 - 14px, 390 - 1920px) */;
  line-height: 1.778;
  letter-spacing: 0.24em;
  padding-right: 53px;
  transform: translateY(-0.1em);
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .ac_menu_unit {
  width: 100%;
  margin: 0 auto;
  /*カレンダー部分*/
      /*ーーーーーーーーーーーーーーーーーーーーーーーーー

        アコーディオントグルボタン　JS制御

      ーーーーーーーーーーーーーーーーーーーーーーーーー*/
  /* オープン時にopenクラスを付与 */
  /* クリックしたら表示される領域 */
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .ac_menu_unit dt.ac-parent {
  border-bottom: 2px solid #cccccc;
  width: 100%;
  position: relative;
  padding: 3.2% 5.335%;
  cursor: pointer;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .ac_menu_unit dt.ac-parent:hover .parent_head {
  opacity: 0.6;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .ac_menu_unit dt.ac-parent .parent_head {
  font-size: clamp(1.3rem, 1.3rem + 0.07vw, 1.4rem) /* FontSizeClamp (13 - 14px, 390 - 1920px) */;
  line-height: 1.778;
  letter-spacing: 0.24em;
  padding-right: 53px;
  transform: translateY(-0.1em);
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .ac_menu_unit dd.ac-child {
  width: 100%;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .ac_menu_unit dd .child_detail_list {
  max-width: 1138px;
  width: calc(100% - 4%);
  margin: 0 auto 5%;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .ac_menu_unit dd .detail_unit {
  border-bottom: 1px solid #cccccc;
  width: 100%;
  font-size: clamp(1.3rem, 1.3rem + 0.07vw, 1.4rem) /* FontSizeClamp (13 - 14px, 390 - 1920px) */;
  line-height: 1.778;
  letter-spacing: 0.24em;
  padding: 0 5.335%;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .ac_menu_unit dd .detail_unit a {
  width: 100%;
  height: 100%;
  display: flex;
  color: inherit;
  align-items: center;
  position: relative;
  padding: 3.2% 0;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .ac_menu_unit dd .detail_unit a:after {
  content: '';
  border-top: 1px solid #222222;
  border-right: 1px solid #222222;
  width: 9px;
  height: 9px;
  display: block;
  position: absolute;
  top: 38%;
  right: 1%;
  transform: rotate(45deg);
  cursor: pointer;
  transition: .3s;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .ac_menu_unit dd .iframe_wrap {
  width: 280px;
  height: auto;
  aspect-ratio: 280 / 232;
  margin: 10% auto 0;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .ac_menu_unit dd .iframe_wrap iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .ac_menu_unit dd .calendar_mark_wrap {
  width: 280px;
  margin: 6% auto 0;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .ac_menu_unit dd .calendar_mark_wrap li {
  width: 100%;
  display: flex;
  align-items: baseline;
  position: relative;
  font-size: clamp(1.1rem, 1rem + 0.13vw, 1.3rem) /* FontSizeClamp (11 - 13px, 390 - 1920px) */;
  line-height: 1.364;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .ac_menu_unit dd .calendar_mark_wrap li + li {
  margin-top: 0.8em;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .ac_menu_unit dd .calendar_mark_wrap li::before {
  content: '';
  background: #f2e38f;
  border: 1px solid #cccccc;
  width: 12px;
  height: 12px;
  display: inline-block;
  transform: translateY(2px);
  margin-right: 0.7em;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .ac_menu_unit dd .calendar_mark_wrap li.day01::before {
  background: #fff;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .ac_menu_unit dd .calendar_mark_wrap li.day02::before {
  background: #7ec4fa;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .ac_menu_unit dd .calendar_mark_wrap li.day03::before {
  background: #f47c78;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .ac_menu_unit .js_ac_parent:after {
  content: '';
  border-top: 1px solid #222222;
  border-right: 1px solid #222222;
  width: 9px;
  height: 9px;
  display: block;
  position: absolute;
  top: 38%;
  right: 6.5%;
  transform: rotate(135deg);
  cursor: pointer;
  transition: .3s;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .ac_menu_unit .js_ac_parent.open:after {
  transform: rotate(-45deg);
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .ac_menu_unit .js_ac_child {
  display: none;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .info_btn_wrap {
  width: 100%;
  margin-top: 10%;
  padding: 0 5.335%;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .info_btn_wrap .info_btn_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .info_btn_wrap .info_btn_unit {
  background-color: #f45d3e;
  border-radius: 3px;
  width: calc(50% - 10px);
  aspect-ratio: 172 / 44;
}
.js_header_origin.js_sp_view_navi .js_nav_toggle_menu .info_btn_wrap .info_btn_unit a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(1.3rem, 1.3rem + 0vw, 1.3rem) /* FontSizeClamp (13 - 13px, 390 - 1920px) */;
  font-weight: bold;
}

/*/.js_header_origin.js_sp_view_navi*/
/* PC 表示
--------------------------------------------------------- */
.js_header_origin.js_pc_view_navi {
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid #cccccc;
  width: 100%;
  height: 164px;
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 999;
  opacity: 1;
  transition: all .2s ease;
  /* ボタンホバー */
  /* =========================================================

   ドロップメニュー部分　PC

  ========================================================= */
  /*ボタンホバーでドロップメニュー部分を表示*/
  /*クリックだけ無効*/
}
.js_header_origin.js_pc_view_navi.js_fixed_pc_header {
  background-color: rgba(255, 255, 255, 0.8);
  height: 80px;
}
.js_header_origin.js_pc_view_navi .header_inner {
  max-width: 1250px;
  width: calc(100% - 4%);
  position: relative;
  margin: auto;
}
.js_header_origin.js_pc_view_navi.js_fixed_pc_header .header_inner {
  display: flex;
  align-items: center;
}
.js_header_origin.js_pc_view_navi .header_logo {
  max-width: 390px;
  width: 100%;
  margin: auto;
  transition: 0.5s;
}
.js_header_origin.js_pc_view_navi.js_fixed_pc_header .header_logo {
  max-width: 309px;
  min-width: 200px;
}
.js_header_origin.js_pc_view_navi .header_logo a {
  width: 100%;
  height: 100%;
  display: block;
}
.js_header_origin.js_pc_view_navi .nav_group {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 25px;
}
.js_header_origin.js_pc_view_navi.js_fixed_pc_header .nav_group {
  width: calc(100% - 309px);
  margin-top: 0;
}
.js_header_origin.js_pc_view_navi .g_nav {
  width: 100%;
  flex: 1;
}
.js_header_origin.js_pc_view_navi .g_nav_list {
  display: flex;
}
.js_header_origin.js_pc_view_navi .g_nav_list .nav_unit {
  width: 33.333%;
  text-align: center;
}
.js_header_origin.js_pc_view_navi .g_nav_list .nav_unit > a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  color: inherit;
  padding: 0 4%;
  cursor: pointer;
  z-index: 5;
}
.js_header_origin.js_pc_view_navi .g_nav_list .nav_unit > a::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  bottom: 0px;
  transition: all 0.3s ease;
}
.js_header_origin.js_pc_view_navi .g_nav_list .nav_unit > a:hover::after {
  background: #ff8200;
  bottom: -10px;
}
.js_header_origin.js_pc_view_navi .g_nav_list .nav_unit .sp_menu_icon {
  display: none;
}
.js_header_origin.js_pc_view_navi .g_nav_list .nav_unit .menu_ja_txt {
  font-size: clamp(1px, 1.2vw, 15px);
  font-weight: bold;
  letter-spacing: 0.1em;
}
.js_header_origin.js_pc_view_navi .g_nav_list .nav_unit .menu_en_txt {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(1px, 0.88vw, 11px);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.js_header_origin.js_pc_view_navi .js_drop_menu {
  background-color: #fff;
  width: 100vw;
  position: absolute;
  z-index: 999;
  top: 135px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3vw;
  visibility: hidden;
  /*最初は隠す*/
  opacity: 0;
  /*最初は隠す*/
  transition: all .2s ease;
}
.js_header_origin.js_pc_view_navi.js_fixed_pc_header .js_drop_menu {
  top: 60px;
}
.js_header_origin.js_pc_view_navi .drop_nav:hover .js_drop_menu {
  visibility: visible;
  opacity: 1;
}
.js_header_origin.js_pc_view_navi .drop_menu_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 11px 11px;
}
.js_header_origin.js_pc_view_navi .drop_menu_list .drop_unit {
  width: 162px;
}
.js_header_origin.js_pc_view_navi .drop_menu_list .drop_unit a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: inherit;
}
.js_header_origin.js_pc_view_navi .drop_menu_list .drop_unit img {
  width: 56px;
}
.js_header_origin.js_pc_view_navi .drop_menu_list .drop_unit .menu_txt {
  flex: 1;
  font-size: clamp(1px, 1.04vw, 13px);
  font-weight: 500;
  line-height: 1.308;
  text-align: left;
  margin-left: 0.5em;
}
.js_header_origin.js_pc_view_navi .drop_menu_list .drop_unit .menu_txt span {
  display: inline-block;
}
.js_header_origin.js_pc_view_navi .invalid_anker:active {
  pointer-events: none;
}

/*/.js_header_origin.js_pc_view_navi*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　sec__news
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.sec__news {
  width: 100%;
}
.sec__news .sec_wrap {
  background-color: #ececec;
  width: 100%;
  padding: 0.35% 4%;
}
.sec__news .news_list_wrap {
  max-width: 1200px;
  width: 100%;
  margin: auto;
}
.sec__news .news_list {
  width: 100%;
  margin: auto;
}
.sec__news .news_list li {
  width: 100%;
  margin: auto;
}
.sec__news .news_list li + li {
  margin-top: 0.5%;
}
.sec__news .news_list li a {
  width: 100%;
  height: 100%;
  display: block;
  color: #b2282f;
  font-size: clamp(1.3rem, 1.3rem + 0vw, 1.3rem) /* FontSizeClamp (13 - 13px, 390 - 1920px) */;
  font-weight: bold;
  line-height: 1.538;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: underline;
  padding: 0.5% 0;
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
/*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　特集 スライダー01 sec__wrap_cmn
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* =========================================================

　スライダー

========================================================= */
/* PC 表示
--------------------------------------------------------- */
/* ----- スライダー section 共通 ----- */
.sec__wrap_cmn {
  position: relative;
  margin: 0.8% auto 0;
}

.slider_wrap {
  position: relative;
  width: 100%;
  height: auto;
  overflow-x: hidden;
  padding-bottom: 20px;
}

/* ----- slick arrow 設定 共通 ----- */
.slide-arrow.next-arrow {
  background-color: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 95%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.slide-arrow.next-arrow::after {
  content: '';
  border-top: solid 1px #222222;
  border-right: solid 1px #222222;
  width: 13px;
  height: 13px;
  display: block;
  transform: translateX(-3px) rotate(45deg);
}

.slide-arrow.prev-arrow {
  background-color: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 9;
  top: 50%;
  right: 91.7%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.slide-arrow.prev-arrow::after {
  content: '';
  border-top: solid 1px #222222;
  border-right: solid 1px #222222;
  width: 13px;
  height: 13px;
  display: block;
  transform: translateX(3px) rotate(-135deg);
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .sec__wrap_cmn {
    position: relative;
    margin: 4% auto 0;
  }
}
/*スマホ 表示 end*/
/* =========================================================

　スライダー　個別 .slider01

========================================================= */
/* PC 表示
--------------------------------------------------------- */
/* ----- slick dots 設定 ----- */
.slider01 .slick-dots {
  bottom: -38px;
}

.slider01 .slick-dots li.slick-active button::before {
  background-color: #222222;
}

.slider01 .slick-dots li button:before {
  content: '';
  border: 1px solid #222222;
  border-radius: 9999px;
  width: 8px;
  height: 8px;
  opacity: 1;
}

.slick-dots li button:hover::before,
.slick-dots li button:focus::before {
  background-color: #222222;
  opacity: 1;
}

/* ----- slick側 CSS 設定 ----- */
.slider01 .slick-list {
  overflow: visible;
}

.slider01 .slick-slide {
  opacity: 0.2;
  transition-duration: 0.3s;
  margin: 0 10px;
}

.slider01 .slick-slide.slick-current {
  opacity: 1;
}

/* -----  ----- */
.slider01 {
  max-width: 1200px;
  margin: 0 auto;
}

.slider01 .slide_inner {
  width: 100%;
}

.slider01 .slide_inner img {
  width: 100%;
  height: auto;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  /* ----- slick側 CSS 設定 ----- */
  .slider01 .slick-slide {
    margin: 0;
  }

  /* -----  ----- */
}
/*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　FOOD BRAND sec__food_brand
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.sec__food_brand {
  width: 100%;
  position: relative;
}
.sec__food_brand .sec_wrap {
  width: calc(100% - 4%);
  padding: 5% 0 2.5%;
}
.sec__food_brand .tab_menu_wrap {
  border: 1px solid #ff8200;
  border-radius: 10px;
  overflow: hidden;
  width: 600px;
  height: 60px;
  display: flex;
  margin: 5% auto 0;
}
.sec__food_brand .js_tab_menu {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff8200;
  font-size: clamp(1.5rem, 1.4rem + 0.2vw, 1.8rem) /* FontSizeClamp (15 - 18px, 390 - 1920px) */;
  font-weight: bold;
  letter-spacing: 0.1em;
  transition: 0.3s;
  cursor: pointer;
}
.sec__food_brand .js_tab_menu:hover {
  opacity: 0.8;
}
.sec__food_brand .js_current {
  background-color: #ff8200;
  color: #fff;
}
.sec__food_brand .tab_box_wrap {
  max-width: 1200px;
  width: calc(100% - 4%);
  margin: 5% auto 0;
}
.sec__food_brand .js_tab_box {
  /*background-color: rgba(186,165,165,1.00);*/
  width: 100%;
  padding: 4% 0 4%;
}
.sec__food_brand .tab_box_inner {
  width: 100%;
}
.sec__food_brand .tab_box_list {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 75px 75px;
}
.sec__food_brand .tab_box_list .tab_box_unit {
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.sec__food_brand .tab_box_unit .unit_img {
  width: 100%;
}
.sec__food_brand .tab_box_unit .unit_contents {
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin-top: 5%;
}
.sec__food_brand .tab_box_unit .unit_head {
  width: 100%;
  font-size: clamp(1.4rem, 1.4rem + 0.07vw, 1.5rem) /* FontSizeClamp (14 - 15px, 390 - 1920px) */;
  font-weight: bold;
}
.sec__food_brand .tab_box_unit .unit_detail {
  width: 100%;
  font-size: clamp(1.2rem, 1.2rem + 0.07vw, 1.3rem) /* FontSizeClamp (12 - 13px, 390 - 1920px) */;
  line-height: 1.615;
  margin-top: 5%;
}
.sec__food_brand .tab_box_unit .btn_wrap {
  margin-top: 5%;
}
.sec__food_brand .tab_box_unit .btn_wrap a {
  border: 1px solid #222222;
  border-radius: 9999px;
  width: 134px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-size: clamp(1.2rem, 1.1rem + 0.2vw, 1.5rem) /* FontSizeClamp (12 - 15px, 390 - 1920px) */;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-left: auto;
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .sec__food_brand {
    width: 100%;
    position: relative;
  }
  .sec__food_brand .sec_wrap {
    width: 100%;
    padding: 5% 2.67% 5%;
  }
  .sec__food_brand .tab_menu_wrap {
    border: 1px solid #ff8200;
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
    height: 10.6667vw;
    display: flex;
    margin: 5% auto 0;
  }
  .sec__food_brand .js_tab_menu {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff8200;
    font-size: clamp(1.5rem, 1.4rem + 0.2vw, 1.8rem) /* FontSizeClamp (15 - 18px, 390 - 1920px) */;
    font-weight: bold;
    letter-spacing: 0.1em;
    transition: 0.3s;
    cursor: pointer;
  }
  .sec__food_brand .js_tab_menu:hover {
    opacity: 0.8;
  }
  .sec__food_brand .js_current {
    background-color: #ff8200;
    color: #fff;
  }
  .sec__food_brand .tab_box_wrap {
    max-width: 1200px;
    width: 100%;
    margin: 5% 0 0;
  }
  .sec__food_brand .js_tab_box {
    /*background-color: rgba(186,165,165,1.00);*/
    width: 100%;
    padding: 4% 0 4%;
  }
  .sec__food_brand .tab_box_inner {
    width: 100%;
  }
  .sec__food_brand .tab_box_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 75px;
  }
  .sec__food_brand .tab_box_list .tab_box_unit {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
  }
  .sec__food_brand .tab_box_unit .unit_img {
    width: 45.8667vw;
  }
  .sec__food_brand .tab_box_unit .unit_contents {
    width: 44vw;
    flex-grow: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 0;
    padding-bottom: 40px;
  }
  .sec__food_brand .tab_box_unit .unit_head {
    width: 100%;
    font-size: clamp(1.3rem, 1.2rem + 0.13vw, 1.5rem) /* FontSizeClamp (13 - 15px, 390 - 1920px) */;
    font-weight: bold;
  }
  .sec__food_brand .tab_box_unit .unit_detail {
    width: 100%;
    font-size: clamp(1.1rem, 1rem + 0.13vw, 1.3rem) /* FontSizeClamp (11 - 13px, 390 - 1920px) */;
    line-height: 1.615;
    margin-top: 5%;
  }
  .sec__food_brand .tab_box_unit .btn_wrap {
    margin-top: 0;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .sec__food_brand .tab_box_unit .btn_wrap a {
    border: 1px solid #222222;
    border-radius: 9999px;
    width: 90px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    font-size: clamp(1.2rem, 1.1rem + 0.2vw, 1.5rem) /* FontSizeClamp (12 - 15px, 390 - 1920px) */;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-left: auto;
  }

  /**/
}
/*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　PICK UP ITEM sec__pickup_item
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.sec__pickup_item {
  width: 100%;
  position: relative;
}
.sec__pickup_item .sec_wrap {
  width: calc(100% - 4%);
  padding: 2.5% 0 5%;
}
.sec__pickup_item .pickup_item_wrap {
  max-width: 1200px;
  width: calc(100% - 4%);
  margin: 5% auto 0;
}
.sec__pickup_item .pickup_item_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 12.5px;
}
.sec__pickup_item .pickup_item_list .pickup_item_unit {
  max-width: 230px;
  width: 100%;
}
.sec__pickup_item .pickup_item_unit a {
  width: 100%;
  height: 100%;
  display: block;
}
.sec__pickup_item .pickup_item_unit .unit_img {
  width: 100%;
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .sec__pickup_item {
    width: 100%;
    position: relative;
  }
  .sec__pickup_item .sec_wrap {
    width: 100%;
    padding: 5% 2.67% 10%;
  }
  .sec__pickup_item .pickup_item_wrap {
    max-width: 1200px;
    width: 100%;
    margin: 5% auto 0;
  }
  .sec__pickup_item .pickup_item_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 2.9333vw;
  }
  .sec__pickup_item .pickup_item_list .pickup_item_unit {
    max-width: 45.8667vw;
    width: 100%;
  }
  .sec__pickup_item .pickup_item_unit a {
    width: 100%;
    height: 100%;
    display: block;
  }
  .sec__pickup_item .pickup_item_unit .unit_img {
    width: 100%;
  }

  /**/
}
/*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　kurosunomori sec__kurosunomori
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.sec__kurosunomori {
  background-color: #f4f1e8;
  width: 100%;
  position: relative;
}
.sec__kurosunomori .sec_wrap {
  width: calc(100% - 4%);
  padding: 5% 0 5%;
}
.sec__kurosunomori .insta_post_wrap {
  max-width: 1200px;
  width: calc(100% - 4%);
  margin: 5% auto 0;
}
.sec__kurosunomori .insta_post_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
}
.sec__kurosunomori .insta_post_list .insta_post_unit {
  max-width: 285px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.sec__kurosunomori .insta_post_unit a {
  width: 100%;
  height: 100%;
  display: block;
  color: inherit;
}
.sec__kurosunomori .insta_post_unit .unit_img {
  width: 100%;
  aspect-ratio: 285 / 285;
  overflow: hidden;
}
.sec__kurosunomori .insta_post_unit .unit_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec__kurosunomori .insta_post_unit .unit_contents {
  background-color: rgba(255, 255, 255, 0.9);
  width: calc(92.9825% + 0%);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  margin: -21% auto 0;
  padding: 5% 0;
}
.sec__kurosunomori .insta_post_unit .unit_detail {
  width: calc(84.9057% + 0%);
  font-size: clamp(1.3rem, 1.3rem + 0vw, 1.3rem) /* FontSizeClamp (13 - 13px, 390 - 1920px) */;
  font-weight: bold;
  line-height: 1.538;
  text-align: justify;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: auto;
}
.sec__kurosunomori .insta_post_unit .unit_date {
  width: calc(84.9057% + 0%);
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(1.1rem, 1.1rem + 0vw, 1.1rem) /* FontSizeClamp (11 - 11px, 390 - 1920px) */;
  font-weight: 600;
  margin: 5% auto 0;
}
.sec__kurosunomori .btn_wrap {
  margin-top: 5%;
}
.sec__kurosunomori .btn_wrap a {
  background-color: #fff;
  border: 1px solid #222222;
  border-radius: 9999px;
  width: 200px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-size: clamp(1.5rem, 1.5rem + 0vw, 1.5rem) /* FontSizeClamp (15 - 15px, 390 - 1920px) */;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin: auto;
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .sec__kurosunomori {
    background-color: #f4f1e8;
    width: 100%;
    position: relative;
  }
  .sec__kurosunomori .sec_wrap {
    width: 100%;
    padding: 22% 2.67% 15%;
  }
  .sec__kurosunomori .insta_post_wrap {
    max-width: 1200px;
    width: 100%;
    margin: 5% auto 0;
  }
  .sec__kurosunomori .insta_post_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 2.9333vw;
  }
  .sec__kurosunomori .insta_post_list .insta_post_unit {
    max-width: 45.8667vw;
    width: 100%;
    position: relative;
    z-index: 1;
  }
  .sec__kurosunomori .insta_post_unit a {
    width: 100%;
    height: 100%;
    display: block;
    color: inherit;
  }
  .sec__kurosunomori .insta_post_unit .unit_img {
    width: 100%;
  }
  .sec__kurosunomori .insta_post_unit .unit_contents {
    background-color: rgba(255, 255, 255, 0.9);
    width: calc(92.9825% + 0%);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    margin: -21% auto 0;
    padding: 5% 0;
  }
  .sec__kurosunomori .insta_post_unit .unit_detail {
    width: calc(84.9057% + 0%);
    font-size: clamp(1.3rem, 1.3rem + 0vw, 1.3rem) /* FontSizeClamp (13 - 13px, 390 - 1920px) */;
    font-weight: bold;
    line-height: 1.538;
    margin: auto;
  }
  .sec__kurosunomori .insta_post_unit .unit_date {
    width: calc(84.9057% + 0%);
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(1.1rem, 1.1rem + 0vw, 1.1rem) /* FontSizeClamp (11 - 11px, 390 - 1920px) */;
    font-weight: 600;
    margin: 5% auto 0;
  }
  .sec__kurosunomori .btn_wrap {
    margin-top: 15%;
  }
  .sec__kurosunomori .btn_wrap a {
    background-color: #fff;
    border: 1px solid #222222;
    border-radius: 9999px;
    width: 200px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    font-size: clamp(1.5rem, 1.5rem + 0vw, 1.5rem) /* FontSizeClamp (15 - 15px, 390 - 1920px) */;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin: auto;
  }

  /**/
}
/*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　フッター上バナー sec__on_footer_bnr
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.sec__on_footer_bnr {
  width: 100%;
  position: relative;
}
.sec__on_footer_bnr .sec_wrap {
  width: calc(100% - 4%);
  padding: 2.5% 0 5%;
}
.sec__on_footer_bnr .on_footer_bnr_wrap {
  max-width: 1200px;
  width: calc(100% - 4%);
  margin: 2.5% auto 0;
}
.sec__on_footer_bnr .on_footer_bnr_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
}
.sec__on_footer_bnr .on_footer_bnr_list .on_footer_bnr_unit {
  max-width: 590px;
  width: 100%;
}
.sec__on_footer_bnr .on_footer_bnr_unit a {
  width: 100%;
  height: 100%;
  display: block;
}
.sec__on_footer_bnr .on_footer_bnr_unit .unit_img {
  width: 100%;
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .sec__on_footer_bnr {
    width: 100%;
    position: relative;
  }
  .sec__on_footer_bnr .sec_wrap {
    width: 100%;
    padding: 5% 2.67% 2.5%;
  }
  .sec__on_footer_bnr .on_footer_bnr_wrap {
    max-width: 1200px;
    width: 100%;
    margin: 5% auto 0;
  }
  .sec__on_footer_bnr .on_footer_bnr_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 20px;
  }
  .sec__on_footer_bnr .on_footer_bnr_list .on_footer_bnr_unit {
    max-width: 100%;
    width: 100%;
  }
  .sec__on_footer_bnr .on_footer_bnr_unit a {
    width: 100%;
    height: 100%;
    display: block;
  }
  .sec__on_footer_bnr .on_footer_bnr_unit .unit_img {
    width: 100%;
  }

  /**/
}
/*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　フッター footer_contents
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.sec_footer {
  width: 100%;
}

/* スマホ 表示
--------------------------------------------------------- */
/*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　footer01_wrap
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.footer01_wrap {
  background-color: #6c5448;
  width: 100%;
  padding: 2% 2% 2.3%;
  /*アコーディオンメニュー用*/
  /*/.ac_menu_unit*/
}
.footer01_wrap .sp_only {
  display: none;
}
.footer01_wrap .footer_inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: auto;
}
.footer01_wrap .footer_left {
  max-width: 616px;
  width: 100%;
}
.footer01_wrap .footer_info_menu_head {
  color: #fff;
  font-size: clamp(1.5rem, 1.5rem + 0vw, 1.5rem) /* FontSizeClamp (15 - 15px, 390 - 1920px) */;
  font-weight: bold;
}
.footer01_wrap .footer_info_menu {
  width: 100%;
}
.footer01_wrap .footer_info_menu .footer_info_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 35px;
  margin-top: 2.6%;
}
.footer01_wrap .footer_info_menu .footer_info_list li {
  width: max-content;
}
.footer01_wrap .footer_info_menu .footer_info_list li a {
  width: 100%;
  height: 100%;
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
}
.footer01_wrap .footer_info_btn {
  width: 100%;
  margin-top: 2.1%;
}
.footer01_wrap .footer_info_btn .footer_info_btn_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 8px;
}
.footer01_wrap .footer_info_btn .info_btn_unit {
  background-color: #fff;
  border-radius: 3px;
  width: 148px;
  aspect-ratio: 148 / 44;
}
.footer01_wrap .footer_info_btn .info_btn_unit a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c5448;
  font-size: clamp(1.4rem, 1.4rem + 0vw, 1.4rem) /* FontSizeClamp (14 - 14px, 390 - 1920px) */;
  font-weight: bold;
}
.footer01_wrap .fotter_sns_btn {
  width: 100%;
  margin-top: 7%;
}
.footer01_wrap .fotter_sns_btn .fotter_sns_btn_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
}
.footer01_wrap .fotter_sns_btn .sns_btn_unit {
  width: 57px;
}
.footer01_wrap .fotter_sns_btn .sns_btn_unit a {
  width: 100%;
  height: 100%;
  display: block;
}
.footer01_wrap .footer_right {
  border-left: 1px solid #fff;
  width: calc(584px - 3.7%);
  margin-left: 3.7%;
  padding-left: 3.7%;
}
.footer01_wrap .ac_manu_wrap {
  width: 100%;
}
.footer01_wrap .ac_menu_unit {
  width: 100%;
  margin: 0 auto;
  /*カレンダー部分*/
}
.footer01_wrap .ac_menu_unit dt.ac-parent {
  width: 100%;
  position: relative;
}
.footer01_wrap .ac_menu_unit dt.ac-parent .parent_head {
  color: #fff;
  font-size: clamp(1.5rem, 1.5rem + 0vw, 1.5rem) /* FontSizeClamp (15 - 15px, 390 - 1920px) */;
  font-weight: bold;
  line-height: 1.778;
}
.footer01_wrap .ac_menu_unit dd.ac-child {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}
.footer01_wrap .ac_menu_unit dd .iframe_wrap {
  width: 280px;
  height: auto;
  aspect-ratio: 280 / 300;
  margin: 1% 2% 0 0;
}
.footer01_wrap .ac_menu_unit dd .iframe_wrap iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer01_wrap .ac_menu_unit dd .calendar_mark_wrap {
  width: 178px;
  margin: 4% 0 0;
}
.footer01_wrap .ac_menu_unit dd .calendar_mark_wrap li {
  width: 100%;
  display: flex;
  align-items: baseline;
  position: relative;
  color: #fff;
  font-size: clamp(1.1rem, 1.1rem + 0vw, 1.1rem) /* FontSizeClamp (11 - 11px, 390 - 1920px) */;
  line-height: 1.364;
}
.footer01_wrap .ac_menu_unit dd .calendar_mark_wrap li + li {
  margin-top: 0.8em;
}
.footer01_wrap .ac_menu_unit dd .calendar_mark_wrap li::before {
  content: '';
  background: #f2e38f;
  width: 12px;
  height: 12px;
  display: inline-block;
  transform: translateY(2px);
  margin-right: 0.7em;
}
.footer01_wrap .ac_menu_unit dd .calendar_mark_wrap li.day01::before {
  background: #fff;
}
.footer01_wrap .ac_menu_unit dd .calendar_mark_wrap li.day02::before {
  background: #7ec4fa;
}
.footer01_wrap .ac_menu_unit dd .calendar_mark_wrap li.day03::before {
  background: #f47c78;
}

/*/.footer01_wrap*/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 1240px) {
  .footer01_wrap {
    background-color: transparent;
    width: 100%;
    padding: 10% 0 0;
    /*アコーディオンにしないメニュー用*/
    /*アコーディオンメニュー用*/
    /*/.ac_menu_unit*/
  }
  .footer01_wrap .sp_only {
    display: block;
  }
  .footer01_wrap .pc_only {
    display: none;
  }
  .footer01_wrap .footer_inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: auto;
  }
  .footer01_wrap .footer_left {
    max-width: 100%;
    width: 100%;
  }
  .footer01_wrap .footer_info_menu_head {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #653415;
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(2rem, 1.9rem + 0.26vw, 2.4rem) /* FontSizeClamp (20 - 24px, 390 - 1920px) */;
    font-weight: bold;
    letter-spacing: 0.12em;
  }
  .footer01_wrap .footer_info_menu_head::before,
  .footer01_wrap .footer_info_menu_head::after {
    content: '';
    background-color: #653415;
    max-width: 10.6667vw;
    width: 100%;
    height: 1px;
    margin: 0 1em;
  }
  .footer01_wrap .footer_info_btn {
    width: 100%;
    margin: 5.0% auto 0;
    padding: 0;
  }
  .footer01_wrap .footer_info_btn .footer_info_btn_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px 7px;
  }
  .footer01_wrap .footer_info_btn .info_btn_unit {
    background-color: #f45d3e;
    border-radius: 3px;
    width: 45.8667vw;
    aspect-ratio: 172 / 44;
  }
  .footer01_wrap .footer_info_btn .info_btn_unit a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: clamp(1.3rem, 1.2rem + 0.24vw, 1.5rem) /* FontSizeClamp (13 - 15px, 390 - 1240px) */;
    font-weight: bold;
  }
  .footer01_wrap .fotter_sns_btn {
    background-color: #6c5448;
    width: 100%;
    margin-top: 4.5%;
    padding: 7.5% 5.335% 9.5%;
  }
  .footer01_wrap .fotter_sns_btn .fotter_sns_btn_head {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(1.5rem, 1.5rem + 0vw, 1.5rem) /* FontSizeClamp (15 - 15px, 390 - 1920px) */;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
  }
  .footer01_wrap .fotter_sns_btn .fotter_sns_btn_list {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 15px;
    margin-top: 4.3%;
  }
  .footer01_wrap .fotter_sns_btn .sns_btn_unit {
    width: 42px;
  }
  .footer01_wrap .fotter_sns_btn .sns_btn_unit a {
    width: 100%;
    height: 100%;
    display: block;
  }
  .footer01_wrap .footer_right {
    border-left: none;
    width: 100%;
    margin: auto;
    padding: 0;
  }
  .footer01_wrap .ac_manu_wrap {
    width: 100%;
  }
  .footer01_wrap .ac_manu_wrap {
    border-top: 2px solid #cccccc;
    width: 100%;
  }
  .footer01_wrap .non_ac_menu_unit {
    width: 100%;
    margin: 0 auto;
  }
  .footer01_wrap .non_ac_menu_unit a {
    border-bottom: 2px solid #cccccc;
    width: 100%;
    display: block;
    position: relative;
    color: inherit;
    padding: 3.2% 5.335%;
  }
  .footer01_wrap .non_ac_menu_unit a:after {
    content: '';
    border-top: 1px solid #222222;
    border-right: 1px solid #222222;
    width: 9px;
    height: 9px;
    display: block;
    position: absolute;
    top: 38%;
    right: 7%;
    transform: rotate(45deg);
  }
  .footer01_wrap .non_ac_menu_unit .parent_head {
    font-size: clamp(1.3rem, 1.3rem + 0.07vw, 1.4rem) /* FontSizeClamp (13 - 14px, 390 - 1920px) */;
    line-height: 1.778;
    letter-spacing: 0.24em;
    padding-right: 53px;
    transform: translateY(-0.1em);
  }
  .footer01_wrap .ac_menu_unit {
    width: 100%;
    margin: 0 auto;
    /*カレンダー部分*/
      /*ーーーーーーーーーーーーーーーーーーーーーーーーー

        アコーディオントグルボタン　JS制御

      ーーーーーーーーーーーーーーーーーーーーーーーーー*/
    /* オープン時にopenクラスを付与 */
    /* クリックしたら表示される領域 */
  }
  .footer01_wrap .ac_menu_unit dt.ac-parent {
    border-bottom: 2px solid #cccccc;
    width: 100%;
    position: relative;
    padding: 3.2% 5.335%;
    cursor: pointer;
  }
  .footer01_wrap .ac_menu_unit dt.ac-parent:hover .parent_head {
    opacity: 0.6;
  }
  .footer01_wrap .ac_menu_unit dt.ac-parent .parent_head {
    color: #222222;
    font-size: clamp(1.3rem, 1.3rem + 0vw, 1.3rem) /* FontSizeClamp (13 - 13px, 390 - 1920px) */;
    line-height: 1.778;
    letter-spacing: 0.24em;
    padding-right: 53px;
    transform: translateY(-0.1em);
  }
  .footer01_wrap .ac_menu_unit dd.ac-child {
    width: 100%;
    display: none;
  }
  .footer01_wrap .ac_menu_unit dd .child_detail_list {
    max-width: 100%;
    width: 100%;
    margin: 0 auto 5%;
  }
  .footer01_wrap .ac_menu_unit dd .detail_unit {
    border-bottom: 1px solid #cccccc;
    width: 100%;
    font-size: clamp(1.3rem, 1.3rem + 0.07vw, 1.4rem) /* FontSizeClamp (13 - 14px, 390 - 1920px) */;
    line-height: 1.778;
    letter-spacing: 0.24em;
    padding: 0 5.335%;
  }
  .footer01_wrap .ac_menu_unit dd .detail_unit a {
    width: 100%;
    height: 100%;
    display: flex;
    color: inherit;
    align-items: center;
    position: relative;
    padding: 3.2% 0;
  }
  .footer01_wrap .ac_menu_unit dd .detail_unit a:after {
    content: '';
    border-top: 1px solid #222222;
    border-right: 1px solid #222222;
    width: 9px;
    height: 9px;
    display: block;
    position: absolute;
    top: 38%;
    right: 1%;
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
  }
  .footer01_wrap .ac_menu_unit dd .iframe_wrap {
    width: 280px;
    height: auto;
    aspect-ratio: 280 / 300;
    margin: 10% auto 0;
  }
  .footer01_wrap .ac_menu_unit dd .iframe_wrap iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .footer01_wrap .ac_menu_unit dd .calendar_mark_wrap {
    width: 280px;
    margin: 6% auto 0;
  }
  .footer01_wrap .ac_menu_unit dd .calendar_mark_wrap li {
    width: 100%;
    display: flex;
    align-items: baseline;
    position: relative;
    color: #222222;
    font-size: clamp(1.1rem, 1rem + 0.13vw, 1.3rem) /* FontSizeClamp (11 - 13px, 390 - 1920px) */;
    line-height: 1.364;
  }
  .footer01_wrap .ac_menu_unit dd .calendar_mark_wrap li + li {
    margin-top: 0.8em;
  }
  .footer01_wrap .ac_menu_unit dd .calendar_mark_wrap li::before {
    content: '';
    background: #f2e38f;
    border: 1px solid #cccccc;
    width: 12px;
    height: 12px;
    display: inline-block;
    transform: translateY(2px);
    margin-right: 0.7em;
  }
  .footer01_wrap .ac_menu_unit dd .calendar_mark_wrap li.day01::before {
    background: #fff;
  }
  .footer01_wrap .ac_menu_unit dd .calendar_mark_wrap li.day02::before {
    background: #7ec4fa;
  }
  .footer01_wrap .ac_menu_unit dd .calendar_mark_wrap li.day03::before {
    background: #f47c78;
  }
  .footer01_wrap .ac_menu_unit .js_ac_parent:after {
    content: '';
    border-top: 1px solid #222222;
    border-right: 1px solid #222222;
    width: 9px;
    height: 9px;
    display: block;
    position: absolute;
    top: 38%;
    right: 6.5%;
    transform: rotate(135deg);
    cursor: pointer;
    transition: .3s;
  }
  .footer01_wrap .ac_menu_unit .js_ac_parent.open:after {
    transform: rotate(-45deg);
  }
  .footer01_wrap .ac_menu_unit .js_ac_child {
    display: none;
  }

  /*/.footer01_wrap*/
}
/*スマホ 表示 end*/
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　footer02_wrap
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.footer02_wrap {
  background-color: #653415;
  width: 100%;
  padding: 1.2% 2% 1.5%;
}
.footer02_wrap .copy_right_wrap {
  width: 100%;
  text-align: center;
}
.footer02_wrap .copy_right_wrap .copy_right {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.545;
}
.footer02_wrap .copy_right_wrap .copy_right + .copy_right {
  margin-top: 0.1em;
}

/**/
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 1240px) {
  .footer02_wrap {
    padding: 9.5% 2% 15.5%;
  }

  /**/
}
/*スマホ 表示 end*/
