/*css変数*/
:root {
  --main-color: #A38F86;
  --text-color: #000;
  --text-hover-color: #A38F86;
  --white-color: #fff;
  --bg-color: #F7F3F0;
  --bg-color2: #EEE9E5;
  --bg-color3: #F2F3F5;
  --bg-white-color: #fff;
  --accent-color:#D35614;
  --sub-color: #CECECC;
  --sub-color2: #D5BFAC;
  --sub-color3: #E7D7C9;
  --sub-color4: #EEE9E5;
  --sub-color5: #F7F3F0;
  --gray-color: #79797A;

  --font-2: "EB Garamond", serif;
  --alert-color: #D35614;
  --text-red-color: #D35614;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
  overflow-y: scroll;
  height: 100%;
}
body {
  color: var(--text-color);
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  word-wrap: break-word;
}
.font2 {font-family: var(--font-2);}
.font_sub {font-family: var(--font-2);}
body.top .header_area,
body.top .footer_area {display: none;}
img[src*="TRACKING/tracking.php"] {position: absolute;}
/* ----------------------------------- */
/* コンテナ*/
/* ----------------------------------- */
.top #main-column {
  margin-top: 0 !important;
}
#main-column {
  transform: none;
}

/* top等 デフォルトコンテナ*/
/* 幅1330px
/* 左右余白40px
/* ====================================== */
.container,
body:not(.top) #main-column,
  #main-column-full{
  max-width: 1410px;
  padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (min-width: 768px) and (max-width: 1210px) {
}
@media screen and (max-width: 767px) { 
  .container,
  body:not(.top) #main-column,
  #main-column-full {
    max-width: 750px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* フリーページ コンテナ*/
/* 幅1920px
/* 左右余白40px
/* ====================================== */
body.freePage #main-column {
  max-width: 1920px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 120px;
}
body.freePage .header_area{
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1210px) {
}
@media screen and (max-width: 767px) { 
  body.freePage #main-column{
    margin-bottom: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
#shopGuide_wrap {margin-bottom: 120px;}


/* ----------------------------------- */
/*header*//* .topをjsで付けて.top専用ヘッダーをつくる */

header {
  position: fixed;
  z-index: 999;
  width: 100%;
}
.hdr_wrap {
  /* position: fixed; */
  z-index: 99;
  width: 100%;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  background-color: rgba(247, 243, 240, 0.1);
}

.hdr_top_read {
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
color: #fff;
background-color: #000;
min-height: 30px;
padding: 5px 40px;
}
.hdr_top_read a {
color: #fff;
}
.hdr_top_read a:hover {
text-decoration: underline;
}
@media screen and (max-width: 767px) {
.hdr_top_read {
  padding: 5px 15px;
}
}

.header_inner {
width: 100%;
height: 80px;
backdrop-filter: blur(30px);
-webkit-backdrop-filter: blur(30px);
background-color: rgba(247, 243, 240, .1);
padding: 0 40px;
z-index: 1;
display: flex;
align-items: center;
}
.header_inner .logo {
  flex-basis: 264px;
  max-width: 264px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.header_inner .hdr_right_nav {
  flex-basis: auto;
  width: auto;
  margin-left: auto;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}
.header_inner .hdr_right_nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header_inner .hdr_right_nav ul li {
  list-style-type: none;
  display: flex;
  align-items: center;
}
.header_inner .hdr_right_nav ul li a {
  display: flex;
}
.header_inner #headerNaviWrap {
  padding-left: 20px;
  position: relative;
  z-index: 2;
}
.header_inner .search_btn {
  position: relative;
}
.header_inner .search_btn img {
  position: relative;
  top: 2px;
}
.header_inner .search_btn input {
  border: none;
  border-radius: 1px;
  border-bottom: 2px solid #000;
  font-size: 14px;
  padding-left: 25px;
  width: 100%;
  height: 100%;
  padding: 2px 0 5px 25px;
  background: transparent;
  font-family: var(--font-2);
}
@media screen and (min-width: 768px) and (max-width: 1210px) {
  .header_inner .logo {
    flex-basis: 200px;
    max-width: 200px;
  }
}
@media screen and (max-width: 767px) { 
  .header_inner {
  padding: 0 15px;
  }
}

/* ヘッダーナビ */
.hdr_gnav {
  flex-basis: auto;
  width: auto;
  padding-left: 60px;
}
.hdr_gnav > ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
.hdr_gnav > ul li {
  list-style-type: none;
  font-family: var(--font-2);
  font-size: 24px;
}
.hdr_gnav > ul li a {
  position: relative;
  z-index: 2;
}
.hdr_gnav > ul li.icon_login img {
  width: 20px;
}
.hdr_gnav > ul li.icon_cart img {
  width: 20px;
}
.hdr_gnav > ul li.icon_favorite img {
  width: 20px;
}
.hdr_gnav .sub_menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 115px 40px 35px 6.927083%;
  background-color: #F7F3F0;
  opacity: 0;
  transition: all ease 0.3s;
  display: flex;
  justify-content: space-between;
  visibility: hidden;
  z-index: 1;
}
.hdr_gnav > ul li.child_menu:hover > .sub_menu {
  opacity: 1;
  visibility: visible;
  transition: all ease 0.3s;
}
.hdr_gnav .sub_menu ul {
  margin: 0;
  padding: 0;
}
.hdr_gnav .sub_menu ul li {
  padding: 0;
  display: block;
  font-size: 20px;
  font-family: "EB Garamond", serif;
}
.hdr_gnav .sub_menu .sub_inr_left ul li {
  padding-left: 18px;

}
.hdr_gnav .sub_menu .sub_inr_left ul li + li {
  margin-top: 20px;
}
.hdr_gnav .sub_menu ul li.menu_headline a {
  position: relative;
}
.hdr_gnav .sub_menu ul li.menu_headline a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  transform: translateY(-40%);
  margin: auto;
  background-color: #000;
  border: solid 2px #fff;
  width: 8px;
  height: 8px;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  box-shadow: 0 0 0 1px #000;
  -webkit-box-shadow: 0 0 0 1px #000;
  -moz-box-shadow: 0 0 0 1px #000;
}
.hdr_gnav .sub_menu .sub_inr_left {
  flex-basis: calc(100% - 69.270833%);
  max-width: calc(100% - 69.270833%);
  width: 100%;
  padding-right: 30px;
}
.hdr_gnav .sub_menu .sub_inr_left .menu_headline {
  font-size: 24px;
  font-weight: 400;
}
.hdr_gnav .sub_menu .sub_inr_right {
  flex-basis: 69.270833%;
  max-width: 69.270833%;
  width: 100%;
}
.hdr_gnav .sub_menu .sub_inr_right ul {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.hdr_gnav .sub_menu .sub_inr_right li {
  flex-basis: calc((100% - 40px) / 5);
    max-width: calc((100% - 40px) / 5);
    width: 100%;
}
.hdr_gnav .sub_menu .sub_inr_right li .img_box {
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
}
.hdr_gnav .sub_menu .sub_inr_right img {
  width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}
@media screen and (min-width: 768px) and (max-width: 1210px) {
  .hdr_gnav {
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .hdr_gnav,
  .hdr_right_nav {
    display: none;
  }
  .header_inner #headerNaviWrap {
    margin-left: auto;
}
}

/* ハンバーガーメニュー */
#headerNaviWrap .headerNavi-inr {
  position: fixed;
  right: 0;
  opacity: 0;
  top: 0;
  width: 100%;
  max-width: 600px;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: var(--bg-color);
  padding: 126px 40px 230px;
  transition: .4s ease-in-out;
  z-index: 99;
  -ms-overflow-style: none;
  scrollbar-width: none;
  visibility: hidden;
}
#headerNaviWrap.open .headerNavi-inr {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.headerNavi-inr #menu-NaviBox {
  width: 100%;
}
.headerNavi-inr #menu-NaviBox .menu_headline {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 30px;
} 
.headerNavi-inr #menu-NaviBox .menu-Navilinks {
  list-style: none;
}
.headerNavi-inr #menu-NaviBox .menu-Navilinks > li {
  position: relative;
  overflow: hidden;
}
/* 基本の見出しスタイル */
.headerNavi-inr #menu-NaviBox .menu-Navilinks > li > a,
.headerNavi-inr #menu-NaviBox .headline_bar {
  display: inline-block;
  font-weight: 400;
  text-decoration: none;
}
.headerNavi-inr #menu-NaviBox .item_search {
  font-size: 24px;
  font-family: var(--font-2);
}
.headerNavi-inr #menu-NaviBox .item_search.open:first-child .sub-menu {
  margin-bottom: 50px;
}
.headerNavi-inr #menu-NaviBox .item_search + .item_search {
  margin-top: 20px;
}

/* headline_barがある行に線を表示 */
.headerNavi-inr #menu-NaviBox .headline_bar {
  position: relative;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
  color: var(--main-color);
  background-color: var(--bg-color);
  padding-left: 22px;
  padding-right: 15px;
  z-index: 1;
  margin-top: 10px;
  margin-bottom: 40px;
}
.headerNavi-inr #menu-NaviBox .headline_bar:first-child {
  margin-top: 50px;
}
.headerNavi-inr #menu-NaviBox .headline_bar::before {
  content: '';
  background-color: var(--main-color);
  border: solid 2px #fff;
  width: 10px;
  height: 10px;
  -moz-border-radius: 100%; 
  -webkit-border-radius: 100%;
  border-radius: 100%;
  box-shadow: 0 0 0 1px var(--main-color);
  -webkit-box-shadow: 0 0 0 1px var(--main-color);
  display: block;
  position: absolute;
  top: 9px;
  left: 2px;
}
.headerNavi-inr #menu-NaviBox .headline_bar::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 1000px;
  height: 1px;
  background-color: var(--bg-color2);
  z-index: -1;
}

/* トグルボタンの配置 */
.headerNavi-inr #menu-NaviBox .menu-Navilinks .sp_toggleBtn {
  position: absolute;
  right: 0;
  top: 12px;
  background-color: transparent;
  z-index: 1;
  padding: 5px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}
.headerNavi-inr #menu-NaviBox .sp_toggleBtn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: translate(-50%, -85%) rotate(45deg);
}
.headerNavi-inr #menu-NaviBox .open .sp_toggleBtn {
  transform: scale(1, -1);
}


/* サブメニュー */
.headerNavi-inr #menu-NaviBox .sub-menu {
  list-style: none;
  margin-top: 5px;
  padding-left: 22px;
  width: 100%;
}
.headerNavi-inr #menu-NaviBox .item_search .sub-menu li a,
.headerNavi-inr #menu-NaviBox .info_menu .sub-menu li a {
  font-weight: 400;
  color: #000;
  text-decoration: none;
}

.headerNavi-inr #menu-NaviBox .item_search .sub-menu {
  transition: all ease .3s;
  height: 0;
  opacity: 0;
}
.headerNavi-inr #menu-NaviBox .item_search.open .sub-menu {
  transition: all ease .3s;
  margin-top: 40px;
  height: auto;
  opacity: 1;
}

.headerNavi-inr #menu-NaviBox .item_search .sub-menu li {
  margin-bottom: 20px;
      font-size: 20px;
      line-height: 1.2;
}
.headerNavi-inr #menu-NaviBox .item_search .sub-menu li a {
  font-size: 20px;
}

.headerNavi-inr #menu-NaviBox .info_menu .sub-menu li {
  margin-bottom: 20px;
}
.headerNavi-inr #menu-NaviBox .info_menu .sub-menu li a {
  font-size: 16px;
}

/* sns */
.headerNavi-inr #menu-NaviBox .snsicons-wrap {
  display: flex;
  gap: 20px;
  justify-content: center;
  list-style: none;
  margin-top: 40px;
  padding-top: 20px;
}

.headerNavi-inr #menu-NaviBox .snsicons-wrap li a {
  display: block;
  width: 25px;
  height: 25px;
}

.headerNavi-inr #menu-NaviBox .snsicons-wrap img {
  width: 100%;
  height: 100%;
}

#headerNaviWrap .headerNavi-inr .close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 60px;
    height: 60px;
  z-index: -99;
}
#headerNaviWrap.open .headerNavi-inr .close {
    position: fixed;
    right: 25px;
    z-index: 999;
}
/* ----------------------------------- */
/* フォントサイズ・余白 */
/* ----------------------------------- */
.fs11 { font-size: 11px !important; }.fs12 { font-size: 12px !important; }.fs13 { font-size: 13px !important; }.fs14 { font-size: 14px !important; }.fs16 { font-size: 16px !important; }.fs18 { font-size: 18px !important; }.fs20 { font-size: 20px !important; }.fs21 { font-size: 21px !important; }.fs22 { font-size: 22px !important; }.fs23 { font-size: 23px !important; }.fs24 { font-size: 24px !important; }.fs25 { font-size: 25px !important; }.fs28 { font-size: 28px !important; }.fs40 { font-size: 40px !important; }

.mt0  { margin-top:  0	 !important; }.mt5  { margin-top:  5px !important; }.mt10 { margin-top: 10px !important; }.mt15 { margin-top: 15px !important; }.mt20 { margin-top: 20px !important; }.mt25 { margin-top: 25px !important; }.mt30 { margin-top: 30px !important; }.mt35 { margin-top: 35px !important; }.mt40 { margin-top: 40px !important; }.mt50 { margin-top: 50px !important; }.mt60 { margin-top: 60px !important; }.mt70 { margin-top: 70px !important; }.mt80 { margin-top: 80px !important; }.mt90 { margin-top: 90px !important; }

.mb0  { margin-bottom:  0   !important; }.mb5  { margin-bottom:  5px !important; }.mb10 { margin-bottom: 10px !important; }.mb15 { margin-bottom: 15px !important; }.mb20 { margin-bottom: 20px !important; }.mb25 { margin-bottom: 25px !important; }.mb30 { margin-bottom: 30px !important; }.mb35 { margin-bottom: 35px !important; }.mb40 { margin-bottom: 40px !important; }.mb45 { margin-bottom: 45px !important; }.mb50 { margin-bottom: 50px !important; }.mb55 { margin-bottom: 55px !important; }.mb60 { margin-bottom: 60px !important; }.mb65 { margin-bottom: 65px !important; }.mb70 { margin-bottom: 70px !important; }.mb75 { margin-bottom: 75px !important; }
.mb80 { margin-bottom: 80px !important; }.mb85 { margin-bottom: 85px !important; }.mb90 { margin-bottom: 90px !important; }.mb95 { margin-bottom: 95px !important; }.mb100 { margin-bottom: 100px !important; }.mb120 { margin-bottom: 120px !important; }

/* ---------------------------------------------------------------------- */
/*テンプレ用テーマ*/
/* ----------------------------------- */
p {margin-top: 0;text-align: justify;}
br.sp {
  display: none;
}
@media screen and (max-width: 767px) {
   br.sp {
  display: block;
}
}
.medium {font-weight: 500;}
.text-white {color: var(--white-color);}
.text_dark{color: var(--main-color);}
.alert-color {color: var(--accent-color);}
.underline {text-decoration: underline;}
.textLeft {text-align: left;}
.textCenter {text-align: center;}
.textRight {text-align: right;}
.pc_disp {display: block !important;}
.sp_disp { display: none !important;}
.bg-color{background-color: var(--bg-color);}
.bg-color2 {background-color: var(--bg-color2);}
.bg-white { background-color: var(--bg-white-color);}
.bg-color2-max{
  background-color: var(--bg-color2);
  margin: 0 calc(50% - 50vw);
  padding: 90px calc(50vw - 50%);
  width: 100vw;
}
.bg-color2-max-2{
  background-color: var(--bg-color2);
  margin: 0 calc(50% - 50vw);
  padding: 90px calc(50vw - 50% - 80px);
  width: 100vw;
}
.bg-color3-max{
  background-color: var(--bg-color3);
  margin: 0 calc(50% - 50vw);
  padding: 90px calc(50vw - 50% - 80px);
  width: 100vw;
}
.bg-color2-max-2.py120{
  padding: 120px calc(50vw - 50% - 80px);
}
.bg-color2-max._pd40 {padding: 40px calc(50vw - 50%);}

@media screen and (max-width: 767px) {
   .bg-color2-max-2.py120{
  padding: 60px calc(50vw - 50% - 80px);
}
}
ul,ol {margin: 0; padding: 0;}
.snsWrap {
  display: flex;
  gap: 30px;
  align-items: center;
}
.snsWrap a {
  display: flex;
  align-items: flex-end;
}
/*btn*/
.btnWrap {
  margin: 50px 0 0;
  width: 100%;
}
.btnWrap-40 {
  margin: 40px 0 0;
  width: 100%;
}
a.btn {
  background-color: transparent;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  width: auto;
  height: 50px;
  font-size: 16px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  position: relative;
  transition: all ease 0.1s;
  margin: 0 auto;
  padding: 10px 35px;
  border-radius: 50px;
}
.btn._white {
  background-color: transparent;
  border: 1px solid var(--bg-white-color);
  color: var(--white-color);
}
.btn._main-c {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  color: var(--white-color);
}
.btn.mini {
  max-width: 110px;
  height: 30px;
  font-size: 14px;
  font-weight: 400;
}
.btn.arrow {
  background-image: url("/tmp-parts/img/common/navi01_right.svg");
  background-repeat: no-repeat;
  background-position: center right 20px;
  background-size: 13px 4px;
}
.parts_btn_style1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  transition: all ease .3s;
  color: var(--main-color) !important;
  border-bottom: 1px solid var(--main-color);
}
.parts_btn_style2 {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  color: #fff !important;
  width: auto;
  height: 50px;
  font-size: 16px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  position: relative;
  transition: all ease 0.1s;
  margin: 0 auto;
  padding: 10px 35px;
  border-radius: 50px;
}
.parts_btn_style3 {
  background-color: rgba(255, 255, 255, 0);
  border: none;
  color: #fff !important;
  width: auto;
  height: 50px;
  font-size: 16px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  position: relative;
  transition: all ease 0.1s;
  margin: 0 auto;
  padding: 10px 35px;
  border-radius: 50px;
  backdrop-filter: blur(3px) brightness(0.85);
}
.parts_btn_style1:hover,
.parts_btn_style2:hover,
.parts_btn_style3:hover {
  opacity: 0.8;
}
.text-r-arrow {
  display: flex;
  gap: 16px;
  align-items: center;
}
.text-r-arrow::after {
  content: "";
  width: 6px;
  height: 12px;
  background: url("/tmp-parts/img/common/navi01_right.svg") no-repeat center / cover;
  flex-shrink: 0;
}
.text-link {
  text-decoration: underline !important;
  color: var(--main-color) !important;
}
.row-reverse {
  flex-direction: row-reverse;
}
.yen_mark::before {
  content: '\0a5 ';
}

/* faq */
.toggleWrap.faq dl {
  margin-bottom: 20px;
}
.toggleWrap.faq dt {
  font-size: 18px;
  padding: 0 60px 10px 20px;
  position: relative;
  border-bottom: 1px solid #000;
  font-weight: 500;
}
.toggleWrap.faq dt:before {
  position: absolute;
  line-height: 1;
  top: 4px;
  left: 0;
  content: "Q.";
}
.toggleWrap.faq dt:after {
  color: #fff;
  content: "";
  position: absolute;
  top: 10px;
  right: 30px;
  width: 10px;
  height: 10px;
  background: url('/tmp-parts/img/sub/icon_plus.svg') no-repeat center center;
  background-size: 10px auto;
  transition: all ease-in-out 0.3s;
}
.toggleWrap.faq dt:hover, .toggleWrap.faq dt:focus {
  cursor: pointer;
}
.toggleWrap.faq dt.active {
  padding-bottom: 10px;
}
.toggleWrap.faq dt.active:after {
  background: url('/tmp-parts/img/sub/icon_minus.svg') no-repeat center center;
  background-size: 10px auto;
  top: 10px;
  width: 10px;
  height: 10px;
  transition: all ease-in-out 0.3s;
}
.toggleWrap.faq dd {
  padding: 10px 0 0 20px;
  position: relative;
  display: none;
  font-size: 16px;
}
.toggleWrap.faq dd+dt {
  margin-top: 40px;
}
.toggleWrap.faq dd:before {
  position: absolute;
  line-height: 1;
  top: 13px;
  left: 0;
  content: "A.";
}

/* list */
.freePage .journal-cont ul li {
  list-style: none;
  position: relative;
  padding: 0;
}
.freePage .journal-cont ul li ul {
  padding: 0 0 10px;
  margin: 0 0 0 1em !important;
}
.freePage .journal-cont ul.iconList li {
  padding: 0 0 0 11px !important;
}
.freePage .journal-cont ul.iconList li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--main-color);
  border-radius: 100%;
}

.freePage .journal-cont ol {
  margin: 0 0 20px;
  padding: 0;
  counter-reset: number;
}
.freePage .journal-cont ol li {
  margin: 0;
  padding: 0 0 0 30px;
  list-style-type: none;
  position: relative;
}
.freePage .journal-cont ol li:before {
  counter-increment: number;
  content: counter(number, decimal-leading-zero) ".";
  color: var(--main-color);
  position: absolute;
  top: 0;
  left: 0;
}
.freePage .journal-cont ol li:last-child {
  margin: 0 0 10px;
}
.freePage .journal-cont ol li ol {
  margin: 10px 0;
  padding: 0 0 0 1em !important;
}

/*title*/
#itemDetail-wrap .description h3,
.recommend h2,
article h2,
.title_style1 {
  text-align: center;
  font-size: 30px;
  margin: 0 0 20px;
  color: #000;
  font-weight: 400;
}
.title_style1 {
  text-align: center;
  font-size: 30px;
  margin: 0 0 20px;
  color: #000;
  font-weight: 400;
}
.title_style2 {
  font-size: 28px;
  color: var(--text-color);
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--text-color);
  font-weight: 400;
}
.title_style3 {
  font-size: 26px;
  margin: 0 0 20px;
  padding-bottom: 5px;
  color: #000;
  font-weight: 400;
  position: relative;
}
.title_style3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: #000;
}
.title_style4 {
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 20px;
  color: var(--main-color);
}
.title_style5 {
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 20px;
  color: #000;
}

/*.columnWrap*/
.column2Wrap {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 35px;
}
.column3Wrap {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 35px;
}
.column4Wrap {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}
.column2Wrap.pc3_7 .columnBox:nth-of-type(odd) {
  flex-basis: 424px;
  max-width: 424px;
}
.column2Wrap.pc3_7 .columnBox:nth-of-type(even) {
  flex-basis: calc(100% - 454px);
  max-width: calc(100% - 454px);
}
.column2Wrap.pc7_3 .columnBox:nth-of-type(odd) {
  flex-basis: calc(100% - 454px);
  max-width: calc(100% - 454px);
}
.column2Wrap.pc7_3 .columnBox:nth-of-type(even) {
  flex-basis: 424px;
  max-width: 424px;
}
.freePage .journal-cont p {
  font-size: 18px;
  font-weight: 400;
}
.tmp_table th,
.tmp_table td {
  padding: 10px 0;
  font-weight: 500;
  font-size: 18px;
}

.tmp_table th {
  color: var(--text-color);
  border-bottom: 1px solid var(--text-color);
  width: 180px;

}
.tmp_table td {
  border-bottom: 1px solid var(--text-color);
  border-left: 40px solid #fff;
}
.tmp_table tr:last-child th,
.tmp_table tr:last-child td {
  border-bottom: none;
}

.tmp_table2 th,
.tmp_table2 td {
  padding: 16px;
  font-size: 18px;
  font-weight: 500;
}

.tmp_table2 th {
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--main-color);
  color: var(--text-color);
}

.tmp_table2 td {
  border-bottom: 1px solid var(--text-color);
}

.tmp_table2 tr:last-child th,
.tmp_table2 tr:last-child td {
  border-bottom: none;
}
/* ----------------------------------- */
/*top*/
/* ----------------------------------- */
/*top new,pickup共通*/
.newItem h2,
.pickup h2 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 22px;
  text-transform: uppercase;
  font-family: var(--font-2);
  text-align: center;
}
/*new*/
.newItem {
  overflow: hidden;
  padding: 0 40px 120px;
  max-width: 1410px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  transition: ease-in 0.1s;
  display: none;
}
.newItem .column-set {
  display: flex;
  gap: 20px;
}

.newItem .item-list-span-img {
  aspect-ratio: 127 / 192;
  margin-bottom: 15px;
}
.newItem h3 {
  font-size: 16px !important;
  margin-bottom: 5px;
  font-weight: 400;
  text-align: left !important;
}
.newItem .column-set .column4 {
    float: none;
    flex-basis: calc((100% - 60px) / 4);
    max-width: calc((100% - 60px) / 4);
    width: 100%;
    margin: 0;
    padding-bottom: 0;
}

.newItem .column-set .column4:nth-of-type(n+5) {
  display: none;
}
/* ranking */
.ranking {
  display: flex;
  background: url('/tmp-parts/img/top/ranking_pc.jpg') no-repeat center center;
  background-size: cover;
  padding: 120px 0;

  display: none !important;
}
.ranking::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
    background-color: rgba(247, 243, 240, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    filter: brightness(115%);
}
.ranking h2 {
  font-size: 30px;
  font-weight: 400;
  flex-basis: 24%;
  max-width: 24%;
  width: 100%;
  padding-left: 40px;
  margin-bottom: 20px;
  text-align: left;
  display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    color: var(--text-color);
    text-transform: uppercase;
}
.ranking h2:after {
    content:"厳選アイテムと人気の\Aコレクションをご覧ください";
    display: block;
    font-size: 16px;
    white-space: pre;
}
.ranking .column-set {
  width: 100%;
  flex-basis: calc(100% - 24%);
  max-width: calc(100% - 24%);
  padding-left: 20px;
  padding-bottom: 30px;
}
.ranking .slick-cloned {
  display: none !important;
}
.ranking .slick-slide {
  clear: none !important;
}
.ranking .column5 {
  margin: 0 20px 0 0;
  padding: 0;
  width: auto;
  position: relative;
  /* max-width: 420px; */
}
.ranking .column5 .itemThumb-wrap {
    margin: 0;
}
.ranking .column5 .itemThumb {
    border-radius: 4px;
    overflow: hidden;
    margin: 0;
}
.ranking .column5 .itemThumb a {
  display: flex;
}
.ranking .column5 .itemThumb img {
  object-fit: cover;
}
.ranking .column5 h3 {
    position: absolute;
    bottom: 36px;
    padding: 20px 10px 10px !important;
    background-color: rgba(0, 0, 0, .3);
    width: 100%;
    margin: 0 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
  }
.ranking .column5 h3 a {
    color: #fff;
  }
.ranking .column5 .price {
    color: #fff;
    position: relative;
    background-color: rgba(0, 0, 0, .3);
    padding: 0 10px 20px;
    position: absolute;
    bottom: 0;
    height: 36px;
    width: 100%;
    line-height: 1;
  }
.ranking .column5 .price .selling_price,
.ranking .column5 .price .taxin {
    color: #fff !important;
  }
.ranking .column5:nth-child(5n+1) {
  clear: none;
  float: left;
}
.ranking .column5:nth-child(4n+1) {
  clear: none;
  float: left;
}
.ranking .item-list-span-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.ranking .item-list-span-img:before {
  content: "";
  display: block;
  padding-top: 166.666666%;
}
.ranking .item-list-span-img img {
  max-width: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.ranking .slick-next,
.ranking .slick-prev {
  width: 40px;
  height: 40px;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  z-index: 1;
    border-radius: 100%;
}
.ranking .slick-next:before,
.ranking .slick-prev:before {
  content: "" !important;
}
.ranking .slick-next:hover,
.ranking .slick-next:focus,
.ranking .slick-prev:hover,
.ranking .slick-prev:focus {
  opacity: 0.8;
}
.ranking .slick-prev {
  background: url(/tmp-parts/img/common/navi01_left.svg) no-repeat center/8px auto;
  left: 50px;
  background-color: rgba(0, 0, 0, .4);
}
.ranking .slick-next {
  background: url(/tmp-parts/img/common/navi01_right.svg) no-repeat center/8px auto;
  right: 30px;
  background-color: rgba(0, 0, 0, .4);
}
.ranking .slick-disabled {
  opacity: 0.5;
}
.ranking .slick-disabled:hover {
  opacity: 0.5;
  cursor: default;
}
.ranking .slider-footer {
  padding: 30px 40px 0 20px;
  position: absolute;
    bottom: 120px;
    right: 0;
    width: 100%;
    flex-basis: calc(100% - 24%);
    max-width: calc(100% - 24%);
}
.ranking .progress-track {
  height: 3px;
  background: #CFCECC;
  border-radius: 99px;
  overflow: hidden;
}
.ranking .progress-fill {
  height: 100%;
  width: 0%;
  background: #F7F3F0;
  border-radius: 99px;
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}




/* category */
.parts_c .parts_c_link_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}
.parts_c .parts_c_link_wrap .parts_c_link_box {
    flex-basis: calc((100% - 70px) / 3);
    max-width: calc((100% - 70px) / 3);
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}
.parts_c .parts_c_link_wrap .parts_c_link_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}
.parts_c .parts_c_link_wrap .parts_c_link_box a::before {
    content: '';
    background-color: #000;
    opacity: 0.3;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.parts_c .parts_c_link_wrap .parts_c_link_box p {
    font-size: 24px !important;
    font-weight: 400;
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1;
    color: #fff;
    padding-left: 20px;
}
.parts_c .parts_c_link_wrap .parts_c_link_box p::before {
    content: '';
    background-color: #fff;
    border: solid 1px transparent;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
}
.parts_c .parts_c_link_wrap .parts_c_link_box p::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 12px;
    border: 1px solid #fff;
    border-radius: 100%;
    transform: translateY(-50%);
}
@media (max-width: 767px) {
  .parts_c .parts_c_link_wrap {
      gap: 10px;
  }
  .parts_c .parts_c_link_wrap .parts_c_link_box {
      flex-basis: calc((100% - 10px) / 2);
      max-width: calc((100% - 10px) / 2);
  }
  .parts_c .parts_c_link_wrap .parts_c_link_box p {
      font-size: 16px !important;
      bottom: 15px;
      left: 10px;
  }
}

.parts_d .bg_title_wrap {
  width: 100%;
  height: 700px;
  overflow: hidden;
  position: relative;
  margin-bottom: 90px;
}
.parts_d .bg_title_wrap .sec_title {
  margin-bottom: 0;
}
.parts_d .bg_title_wrap:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.parts_d .bg_title_wrap .img_box {
  aspect-ratio: 127 / 192;
}
.parts_d .bg_title_wrap img {
  max-width: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.parts_d .bg_title_wrap .title_box {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  position: relative;
  z-index: 2;
  line-height: 1;
}
.parts_d .bg_title_wrap .sec_title {
  font-size: 180px;
  font-weight: 400;
  font-family: "EB Garamond", serif;
  color: #fff;
}
.parts_d .bg_title_wrap .sec_small_title {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  text-align: center;
}
.parts_d .parts_d_link_wrap {
  display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 90px;
}
.parts_d .parts_d_link_wrap::before {
  content: '';
  flex-basis: calc((100% - 60px) / 4);
  max-width: calc((100% - 60px) / 4);
  order: 1;
  display: block;
}

.parts_d .parts_d_link_wrap::after {
  content: '';
  flex-basis: calc((100% - 60px) / 4);
  max-width: calc((100% - 60px) / 4);
  display: block;
}
.parts_d .parts_d_link_wrap .parts_d_link_box {
  flex-basis: calc((100% - 60px) / 4);
    max-width: calc((100% - 60px) / 4);
    width: 100%;
}

.parts_d .parts_d_link_wrap .img_box {
    margin-bottom: 15px;
    aspect-ratio: 127 / 192;
}

.parts_d .parts_d_link_wrap .parts_d_link_box img {
  width: 100%;
    height: 100%;
    object-fit: cover;
}
.parts_d .parts_d_link_wrap .parts_d_link_box .parts_d_label {
  font-size: 18px;
  font-weight: 400;
}
.parts_d .parts_d_link_wrap .parts_d_link_box .item_name {
  font-size: 16px;
  font-weight: 400;
  margin-top: 5px;
}
.parts_d .parts_d_link_wrap .parts_d_link_box .price {
  font-size: 16px;
  font-weight: 400;
  margin-top: 5px;
}
.parts_d .btn {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .parts_d .bg_title_wrap {
    height: 200px;
    margin-bottom: 40px;
  }
  .parts_d .bg_title_wrap .sec_title {
    font-size: 52px;
  }
  .parts_d .bg_title_wrap .sec_small_title {
    font-size: 16px;
    line-height: 1.6;
  }
  .parts_d .parts_d_link_wrap {
      gap: 10px;
      margin-top: 40px;
      flex-wrap: wrap;
  }
  .parts_d .parts_d_link_wrap .img_box {
    margin-bottom: 10px;
}
  .parts_d .parts_d_link_wrap::before {
    flex-basis: calc((100% - 10px) / 2);
    max-width: calc((100% - 10px) / 2);
  }

  .parts_d .parts_d_link_wrap::after {
    flex-basis: calc((100% - 10px) / 2);
    max-width: calc((100% - 10px) / 2);
  }
  .parts_d .parts_d_link_wrap .parts_d_link_box {
    flex-basis: calc((100% - 10px) / 2);
      max-width: calc((100% - 10px) / 2);
  }
  .parts_d .parts_d_link_wrap .parts_d_link_box:nth-of-type(n+3) {
    margin-top: 40px;
  }
}

.parts_tile .tile_container {
  display: flex;
  flex-wrap: wrap;
  background: #000;
}
.parts_tile .tile_box {
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.parts_tile .tile_box {
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.parts_tile .tile_container .tile_box {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.parts_tile .tile_box.col2 {
  flex-basis: 50%;
}

.parts_tile .tile_box.col3 {
  flex-basis: 33.3333333%;
}

.parts_tile .tile_container .tile_box:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.parts_tile .tile_container .tile_box img {
  max-width: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.parts_tile .tile_container .tile_box .tile_name {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  font-size: clamp(60px, calc(100 / 1920 * 100vw), 100px);
  font-family: "EB Garamond", serif;
}
@media (max-width: 767px) {
  .parts_tile .tile_container {
    display: block;
  }
  .parts_tile .tile_box {
    height: 200px;
  }
  .parts_tile .tile_box.col2 {
    flex-basis: 100%;
  }

  .parts_tile .tile_box.col3 {
    flex-basis: 100%;
  }
  .parts_tile .tile_container .tile_box .tile_name {
    font-size: 70px;
  }
}


/*pickup*/
.pickup {overflow: hidden;padding: 120px 0 90px;background-color: var(--bg-color2);}

/* レイジーロード */
.effectFade.effectFadeUp {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s ease;
}

.effectFade.effectActive {
    opacity: 1;
    transform: translate(0, 0);
}
.effectFade.td1 {
    transition-delay: 0.1s
}

.effectFade.td2 {
    transition-delay: 0.2s
}

.effectFade.td3 {
    transition-delay: 0.3s
}
.effectFade.effectShow {
    opacity: 1;
    transition-delay: 0s;
    transition: .3s ease-in;
}

/* ----------------------------------- */
/* 下層
/* ----------------------------------- */
/* 商品一覧ページ */
/*=======================*/
.itemListPage .header_area p {
  text-align: center;
}
.itemListPage #itemList h1 {
  display: none;
}
.itemListPage .effectFade {
  opacity: 1 !important;
  transform: none;
    transition: none;
}
.itemListPage .footer_area .container {
  padding-left: 0;
  padding-right: 0;
}
#pageHeaderBg {
    background: url(/tmp-parts/img/sub/allitems_fv_pc.jpg) no-repeat center center;
    background-size: cover;
    display: inline-block;
    height: 400px;
    width: 100vw;
    margin: 0 calc(50% - 50vw) 60px;
    padding: 0 calc(50vw - 50% + 0px);
}
@media screen and (max-width: 767px) { 
  #pageHeaderBg {
    background: url(/tmp-parts/img/sub/allitems_fv_sp.jpg) no-repeat center center;
    background-size: cover;
    height: 300px;
  }
  #itemList_wrap #pager-top {
    padding-top: 40px;
  }
}

#pageHeaderBg.facetowel_bg {
    background: url(/tmp-parts/img/sub/face_fv_pc.jpg) no-repeat center center;
    background-size: cover;
}
@media screen and (max-width: 767px) { 
  #pageHeaderBg.facetowel_bg {
    background: url(/tmp-parts/img/sub/face_fv_sp.jpg) no-repeat center center;
    background-size: cover;
  }
}

#pageHeaderBg.bathtowel_bg {
    background: url(/tmp-parts/img/sub/bathtowel_fv_pc.jpg) no-repeat center center;
    background-size: cover;
}
@media screen and (max-width: 767px) { 
  #pageHeaderBg.bathtowel_bg {
    background: url(/tmp-parts/img/sub/bathtowel_fv_sp.jpg) no-repeat center center;
    background-size: cover;
  }
}

#pageHeaderBg.set_bg {
    background: url(/tmp-parts/img/sub/set_fv_pc.jpg) no-repeat center center;
    background-size: cover;
}
@media screen and (max-width: 767px) { 
  #pageHeaderBg.set_bg {
    background: url(/tmp-parts/img/sub/set_fv_sp.jpg) no-repeat center center;
    background-size: cover;
  }
}

#pageHeaderBg.n-line_bg {
    background: url(/tmp-parts/img/sub/nline_fv_pc.jpg) no-repeat center center;
    background-size: cover;
}
@media screen and (max-width: 767px) { 
  #pageHeaderBg.n-line_bg {
    background: url(/tmp-parts/img/sub/nline_fv_sp.jpg) no-repeat center center;
    background-size: cover;
  }
}
#pageHeaderBg.towal_bg {
    background: url(/tmp-parts/img/sub/towal_fv_pc.jpg) no-repeat center center;
    background-size: cover;
}
@media screen and (max-width: 767px) { 
  #pageHeaderBg.towal_bg {
    background: url(/tmp-parts/img/sub/towal_fv_sp.jpg) no-repeat center center;
    background-size: cover;
  }
}


/* 商品詳細ページ */
/*=======================*/
.freePage #bread-crumb ol li:nth-of-type(2) {
    display: none;
}
.ui-dialog {
  z-index: 99999 !important;
}
/* 商品画像 */
#itemDetail-cont .itemThumb {
  flex-basis: 30%;
    max-width: 30%;
    width: 100%;
}
#itemDetail-cont .itemThumb-main {
    flex-basis: 70%;
    max-width: 70%;
    width: 100%;
}

/* 商品詳細 */
#itemDetail-wrap #pi_cart .title_style1  {
  text-align: left;
  font-size: 24px;
}
#itemDetail-wrap .bg-color3-max  {
  margin-top: 90px;
}
@media print, screen and (max-width:767px) {
  #itemDetail-wrap .bg-color3-max  {
    margin-top: 60px;
  }
}

#sub-ranking {
  display: none !important;
}

#itemDetail-wrap .userreview {
padding: 90px 0 0;
}
#itemDetail-wrap h2 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 22px;
  text-align: center;
}
@media print, screen and (max-width:767px) {
  #itemDetail-wrap .userreview  {
    margin-top: 60px;
  }
  #itemDetail-wrap h2 {
    font-size: 28px;
  }
}
/* カート */
/*=======================*/
#EST_SPS_cart #headerNaviWrap {
  display: none !important;
}
#EST_SPS_wish_member #headerNaviWrap {
  display: none !important;
}

/* topからの読み込み部分 */
.single_sub_cnts {
  margin-top: 120px;
}
.single_sub_cnts .ranking {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  display: flex !important;
}
@media screen and (max-width: 1210px) {
  .single_sub_cnts .ranking {
  display: block !important;
}
}
.single_sub_cnts .newItem {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.single_sub_catlist {
  margin-top: 90px;
}
.single_sub_catlist .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.single_sub_catlist .top-catlist {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.single_sub_catlist .effectFade {
    opacity: 1 !important;
    transform: none;
    transition: none;
}

#itemDetail-wrap .description .column-set h3  {
  font-size: 24px;
  text-align: left !important;
}

@media screen and (max-width: 767px) {
  .single_sub_cnts {
    margin-top: 60px;
  }
  .single_sub_cnts .ranking {
    padding: 60px calc(50vw - 50% + 0px);
  }
  #itemDetail-wrap .description .column-set h3  {
    font-size: 18px;
  }
}

/* フリーページ */
/*=======================*/
#Journal h2:not(.journal-cont h2) {
  background: url(/tmp-parts/img/freepage/about_fv_pc.jpg) no-repeat center center;
  background-size: cover;
  font-size: clamp(52px, calc(180 / 1920 * 100vw), 180px);
  font-weight: 400;
  position: relative;
  display: inline-block;
  padding: 10px 0;
  height: 800px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50% + 0px);
  color: #fff;
}
#Journal h2:not(.journal-cont h2) a {
  color: #fff;
}
#Journal h2:not(.journal-cont h2)::before {
    content: "";
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    mix-blend-mode: color;
    background: #000;
}
@media screen and (min-width: 768px) and (max-width: 1210px) {
  #Journal h2:not(.journal-cont h2) {
    height: 700px;
  }
}
@media screen and (max-width: 767px) {
  #Journal h2:not(.journal-cont h2) {
    background: url(/tmp-parts/img/freepage/about_fv_sp.jpg) no-repeat center center;
    background-size: cover;
    height: 700px;
  }
}

/* ABOUT US */
.aboutus_page {
  max-width: 100%;
}

.aboutus_page .section_inner {
  display: flex;
  gap: 40px;
  align-items: center;
}
.aboutus_page .section_type02 {
  margin-top: 50px;
    margin-bottom: 20px;

}
.aboutus_page .image_box,
.aboutus_page .text_box {
  flex-basis: calc((100% - 40px) / 2);
  max-width: calc((100% - 40px) / 2);
}
.aboutus_page .text_box p {
  text-align: center;
  margin: 0 0 30px;
  line-height: 2;
}
.aboutus_page .text_box .text_en {
  margin-top: 60px;
}
.aboutus_page .text_box .text_en p {
  color: #a38f86;
  font-size: 12px;
}
.aboutus_page .brand_sec{
  padding: 30px 20px;
  margin-bottom: 20px;
  height: 600px;
}
.aboutus_page .brand_sec .container{
  position: relative;
  height: 100%;
}
.aboutus_page .brand_sec .text_content{
  position: relative;
  height: 100%;
}
.aboutus_page .brand_sec::before{
  height: 600px;
}
.aboutus_page .section_type03 {
  background: url('/tmp-parts/img/freepage/about_brandcharacteristics01_pc.jpg') no-repeat center center;
  background-size: cover;
}
.aboutus_page .section_type04 {
  background: url('/tmp-parts/img/freepage/about_brandcharacteristics02_pc.jpg') no-repeat center center;
  background-size: cover;
  margin-top: 40px;
}
.aboutus_page .section_type05 {
  background: url('/tmp-parts/img/freepage/about_brandcharacteristics03_pc.jpg') no-repeat center center;
  background-size: cover;
  margin-top: 40px;
}
.aboutus_page .text_content .text_content_inr {
  position: absolute;
  bottom: 30px;
  left: 0;
}
.aboutus_page .text_content .brand_headline {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 15px;
}
.aboutus_page .text_content p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

@media print,screen and (max-width:1210px) {
  .aboutus_page .container {
    padding-left: 0;
    padding-right: 0;
  }
  .aboutus_page .section_inner {
    display: block;
  }

  .aboutus_page .section_type02 {
    margin-top: 60px;
  }

  .aboutus_page .image_box,
  .aboutus_page .text_box {
    max-width: 100%;
  }

  .aboutus_page .image_box {
    max-width: 500px;
        margin: 0 auto 40px;
  }

  .aboutus_page .section_type03 {
    background: url('/tmp-parts/img/freepage/about_brandcharacteristics01_sp.jpg') no-repeat center center;
    background-size: cover;
  }

  .aboutus_page .section_type04 {
    background: url('/tmp-parts/img/freepage/about_brandcharacteristics02_sp.jpg') no-repeat center center;
    background-size: cover;
  }

  .aboutus_page .section_type05 {
    background: url('/tmp-parts/img/freepage/about_brandcharacteristics03_sp.jpg') no-repeat center center;
    background-size: cover;
  }

  .aboutus_page .text_box p {
    font-size: 14px;
  }

  .aboutus_page .text_box .text_en {
    margin-top: 0;
  }
  .aboutus_page .text_content p {
  font-size: 16px;
}
}
@media screen and (min-width: 768px) and (max-width: 1210px) {
  .aboutus_page .brand_sec{
    height: 500px;
  }
  .aboutus_page .brand_sec::before{
    height: 500px;
  }
}
/* ------------------------------------- */
/*テンプレ用テーマ(max-width: 1210px)*/
/* ------------------------------------- */
@media screen and (max-width: 1210px) {
  /* ranking */
  .ranking {
    display: block;
    background: url('/tmp-parts/img/top/ranking_sp.jpg') no-repeat center center;
    background-size: cover;
    padding: 60px 15px 60px;
  }
  .ranking h2 {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    margin-bottom: 30px;
  }
  .ranking .column-set {
    max-width: 100%;
    padding-left: 0;
    padding-bottom: 60px;
  }
  .ranking .slider-footer {
    padding: 30px 70px 0 70px;
    bottom: 75px;
    left: 0;
    right: auto;
    width: 100%;
    max-width: 100%;
  }
  .ranking .slick-next,
  .ranking .slick-prev {
    position: absolute;
    top: auto;
    bottom: 0;
  }
  .ranking .slick-prev {
    left: 0;
  }
  .ranking .slick-next {
    right: 0;
  }
  .ranking .column5 {
    margin: 0 10px 0 0;
  }
}
/* ------------------------------------- */
/*テンプレ用テーマ(min-width: 768px) and (max-width: 1210px)*/
/* ------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1210px) {
  
}
/* ------------------------------------- */
/*PC テンプレ用テーマ(min-width: 768px)*/
/* ------------------------------------- */
@media screen and (min-width: 768px) {
  /*btn*/
  .btn:hover {
    transition: all ease 0.1s;
    color: #fff;
    background-color: var(--main-color);
  }
  .btn._main-c:hover {
    background-color: var(--bg-white-color);
    color: var(--main-color);
  }
  .btn._white:hover {border: 1px solid var(--main-color); }
  .btn.arrow:hover {background-image: url("/tmp-parts/img/common/navi01_right_b.svg");}
  .btnLeft {margin: 0;}
  .btnRight {margin: 0 0 0 auto;}
  .btnCenter {margin: 0 auto;}
}

/* ------------------------------------- */
/*SP テンプレ用テーマ(max-width: 767px)*/
/* ------------------------------------- */
@media screen and (max-width: 767px) {
  .pc_disp {display: none !important;}
  .sp_disp {display: block !important;}
  /*btn*/
  .btnWrap {margin: 40px 0 0;}
  .btn.arrow {
    background: var(--bg-color) url("/tmp-parts/img/common/navi01_right_b.svg") no-repeat center right 10px / 6px 12px;
  }
  /*title*/
  #itemDetail-wrap .description h3,
  .recommend h2,
  article h2,
  .title_style1 {
    font-size: 28px;
  }
  .title_style1 {
    font-size: 28px;
  }
  .title_style2 {
    font-size: 26px;
  }
  .title_style3 {
    font-size: 24px;
  }
  .title_style4 {
    font-size: 22px;
  }
  .title_style5 {
    font-size: 18px;
  }
  
  /*.column*/
  .column2Wrap {
    grid-template-columns: 1fr;
  }
  .column3Wrap {
    grid-template-columns: 1fr 1fr;
  }
  .column4Wrap {
    grid-template-columns: 1fr 1fr;
  }
  .column2Wrap.pc3_7 .columnBox:nth-of-type(odd) {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column2Wrap.pc3_7 .columnBox:nth-of-type(even) {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column2Wrap.pc7_3 .columnBox:nth-of-type(odd) {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column2Wrap.pc7_3 .columnBox:nth-of-type(even) {
    flex-basis: 100%;
    max-width: 100%;
  }

  .tmp_table th,
  .tmp_table td {
    padding: 10px 8px;
    font-weight: 400;
    display: block;
    width: 100%;
    font-size: 16px;
  }
  .tmp_table td {
    border-left: 0;
  }
  .tmp_table th {
    position: relative;
  }
  .tmp_table th:before {
    content: "";
    width: 180px;
    height: 1px;
    background: #000;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .tmp_table2 th,
  .tmp_table2 td {
    padding: 10px 8px;
    font-size: 16px;
  }

  /* faq */
  .toggleWrap.faq dl {
    margin-bottom: 20px;
  }
  .toggleWrap.faq dt {
    font-size: 16px;
    padding: 0 40px 10px 20px;
  }
  .toggleWrap.faq dt:before {
    top: 3px;
  }
  .toggleWrap.faq dt:after {
    top: 10px;
    right: 0;
  }
  .toggleWrap.faq dd {
    padding: 10px 0 0 20px;
    font-size: 14px;
  }
  .toggleWrap.faq dd+dt {
    margin-top: 30px;
  }
  .toggleWrap.faq dd:before {
    top: 13px;
  }

  /* ----------------------------------- */
  /*top (max-width: 767px)*/
  /* ----------------------------------- */
  /*top new,pickup共通*/
  .newItem h2,
  .pickup h2 {
    font-size: 28px;
  }

  /*new*/
  .newItem {
    padding: 0 15px 0;
    max-width: 750px;
  }

  .newItem .column-set {
    gap: 10px;
    flex-wrap: wrap;
  }

  .newItem .column-set .column4 {
    flex-basis: calc((100% - 10px) / 2);
    max-width: calc((100% - 10px) / 2);
  }

  .newItem .column-set .column4:nth-of-type(n+3) {
    margin-top: 40px;
  }

  /* ranking */
  .ranking h2 {
    font-size: 28px;
  }

.ranking .column5 h3 {
    padding: 15px 10px 5px;
}
  
  /*pickup*/
  .pickup {padding: 60px 0;}
}
/* ----------------------------------- */
/*slick*/
/* ----------------------------------- */
/*slick-dots*/
.slick-dots li {
  margin: 0 6px !important;
  width: 8px !important;
  height: 8px !important;
}
.slick-dots li button {
  width: 8px !important;
  height: 8px !important;
}
.slider-wrap .slick-dots li button:before {
  opacity: 1;
  width: 8px !important;
  height: 8px !important;
  content: '';
  text-align: center;
  background-color: var(--bg-color);
  border-radius: calc(1px / 0);
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  background-color: #585E6E;
}


/* ----------------------------------- */
/* 検索ポップアップ
/* ----------------------------------- */
.popup {
  opacity: 0;
  width: 100%;
  position: fixed;
  top: -60px;
  left: 0;
  overflow: hidden;
  z-index: -1;
  display: flex;
  transition: 0.6s;
  justify-content: center;
}

.popup .popup-inner {
  background: #fff;
  padding: 45px 30px 30px;
  width: 60%;
  opacity: 1;
  z-index: 1;
  position: relative;
}

.popup .black-background {
  background: #333;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  opacity: 0;
  display: none;
}
.popup.show .black-background {
  display: block;
}

.search_inr {
  display: flex;
  position: relative;
}

.popup input[type=text] {
  max-width: 100%;
  width: 100%;
  box-shadow: none;
  font-size: 16px;
  height: 40px;
  border: none;
  border-radius: 1px;
  border-bottom: 2px solid #000;
  padding: 10px;
  background: transparent;
  font-family: var(--font-2);
}

button {
  border: none !important;
  background-color: transparent;
}

.popup .btn {
  width: 100%;
  clear: both;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 50px;
  margin: 30px auto 0;
  font-size: 16px;
  padding: 5px 20px;
  line-height: 1.5;
  font-weight: bold;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  text-decoration: none;
  transition: 0.3s ease-in;
  user-select: none;
  position: relative;
  color: #fff;
  max-width: 290px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  box-shadow: none;
  border: 1px solid #111;
  background: #111;
}

.popup .btn:hover,
.popup .btn:focus {
  text-decoration: none;
  color: #111;
  background: #fff;
  -webkit-transform: none;
  transform: none;
  margin-bottom: 0;
}

.popup .btn .icon-lg-b.icon-search {
  background: #fff;
}

.popup #searchClose {
  text-align: right;
  color: #666;
  position: absolute;
  top: 15px;
  right: 15px;
}

.popup #searchClose p {
  display: inline-block;
  width: auto;
}

.popup #searchClose p:hover {
  color: #1ead91;
  cursor: pointer;
}

.popup.show {
  opacity: 1;
  z-index: 9999;
  top: 0;
  transition: 0.6s;
}

.popup.show .black-background {
  opacity: 0.6;
  z-index: 0;
  transition: 0.6s;
}

@media (max-width: 767px) {
  .popup .popup-inner {
    background: #fff;
    padding: 30px;
    width: 80%;
    min-width: inherit;
    opacity: 1;
  }
}

/* ----------------------------------- */
/* top共通
/* ----------------------------------- */
.top_sec_wrap {
  margin: 120px 0;
}

.sec_inr_wrap {
  padding: 120px 0;
}

@media screen and (max-width: 767px) {
  .top_sec_wrap {
    margin: 60px 0;
  }
  .sec_inr_wrap {
    padding: 60px 0;
  }
}
.sec_title {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 22px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec_title {
    font-size: 28px;
  }
}
/* ----------------------------------- */
/* top
/* ----------------------------------- */
/* メインビジュアル */
.top_slider_wrap {
  position: relative;
}
.top_slider_wrap #top-slider {
  overflow: hidden;
  margin-bottom: 0 !important;
}
.top_slider_wrap #top-slider .slick-slide img {
  object-fit: cover;
  width: 100%;
  min-height: 595px;

}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 8s linear 0s normal both;
}
.top_slider_wrap .copy_wrap {
  max-width: 100%;
  width: 100%;
  padding: 0 40px;
  position: absolute;
  bottom: 45px;
  left: 0;
}
.top_slider_wrap .main_copy {
  font-size: clamp(50px, 6.7708333333vw, 130px);
  font-weight: 400;
  font-family: var(--font-2);
  width: 100%;
  color: #ffffff;
  line-height: 1.7;
  text-transform: uppercase;
}
.top_slider_wrap .copy_text {
  font-size: 22px;
  font-size: clamp(16px, 1.1458333333vw, 22px);
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 10px;
}
.top_slider_wrap .control_area {
  width: 100%;
  max-width: calc(100% - 130px);
}
.top_slider_wrap .line_bar {
  position: relative;
  z-index: 2;
  width: 100%;
}
.top_slider_wrap .line_bar:before {
  content: "";
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}
.top_slider_wrap .progress_bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 1;
}
.top_slider_wrap .progress_bar .bar {
  width: 0%;
  height: 3px;
  background-color: #fff;
}
.top_slider_wrap .bar_inr {
  display: flex;
  align-items: center;
  position: relative;
}
.top_slider_wrap .count_num {
  padding-right: 20px;
  font-size: 20px;
  font-family: var(--font-2);
  color: #ffffff;
  display: flex;
}
.top_slider_wrap .slick-next,
.top_slider_wrap .slick-prev {
  top: auto;
  right: 0;
  bottom: 40px;
  left: auto;
  width: 40px;
  height: 40px;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  z-index: 1;
  border-radius: 100%;
}
.top_slider_wrap .slick-next:before,
.top_slider_wrap .slick-prev:before {
  content: "" !important;
}
.top_slider_wrap .slick-prev {
  background: url(/tmp-parts/img/common/navi01_left.svg) no-repeat center/8px auto;
  background-color: rgba(0, 0, 0, .3);
  right: 100px;
}
.top_slider_wrap .slick-next {
  background: url(/tmp-parts/img/common/navi01_right.svg) no-repeat center/8px auto;
  background-color: rgba(0, 0, 0, .3);
  right: 40px;
}
.top_slider_wrap .slick-next:hover,
.top_slider_wrap .slick-next:focus,
.top_slider_wrap .slick-prev:hover,
.top_slider_wrap .slick-prev:focus {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .top_slider_wrap #top-slider .slick-slide img {
    object-fit: cover;
    width: 100%;
  }
  .top_slider_wrap .copy_wrap {
    bottom: 45px;
    padding: 0 15px;
  }
  .top_slider_wrap .main_copy {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  .top_slider_wrap .copy_text {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.8;
  }
  .top_slider_wrap .control_area {
    max-width: calc(100% - 125px);
  }
  .top_slider_wrap .count_num {
    font-size: 14px;
  }
  .top_slider_wrap .slick-prev {
    right: 70px;
  }
  .top_slider_wrap .slick-next {
    right: 20px;
  }
}

.parts_a {
  text-align: center;
}
.parts_a p {
  line-height: 2;
  font-size: 18px;
  margin: 0 0 50px;
  text-align: center;
}
.parts_a .part_a_img {
  max-width: 477px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .parts_a p {
    margin: 0 0 20px;
    font-size: 16px;
  }
  .parts_a .part_a_img {
    max-width: 254px;
    margin: 0 auto 40px;
  }
}

.parts_b .slider_wrapper {
  margin-bottom: 60px;
}
.parts_b .img_text_wrap {
  margin-top: 30px;
  display: flex;
  gap: 30px;
}
.parts_b .img_text_wrap .img_text_box {
  flex-basis: calc((100% - 90px) / 4);
  max-width: calc((100% - 90px) / 4);
  width: 100%;
}
.parts_b .img_text_wrap .img_text_box:nth-of-type(n+5) {
  display: none;
}
.parts_b .img_text_wrap .img_text_box .img_box {
  width: 100%;
  margin: 0 auto 10px;
  overflow: hidden;
}
.parts_b .img_text_wrap .img_text_box .img_box img {
  flex-basis: 100%;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.parts_b .img_text_wrap .img_text_box h3 {
  margin: 15px 0 5px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
}
.parts_b .img_text_wrap .img_text_box time {
  font-weight: 400;
  font-size: 14px;
  color: var(--main-color);
}
.parts_b .slick-dots {
  display: none;
}
.parts_b .progress_bar_wrapper {
  width: 100%;
  height: 3px;
  background: rgba(163,143,134, 0.4);
  overflow: hidden;
  display: none;
  margin-top: 30px;
  margin-bottom: 40px;
}
.parts_b .progress_bar {
  height: 100%;
  background: var(--main-color);
  width: 0%;
  transition: width 0.3s ease;
}
@media screen and (max-width: 767px) {
  .parts_b .img_text_wrap {
    display: block;
  }

  .parts_b .img_text_wrap .img_text_box h3 {
    font-size: 14px;
    margin-top: 10px;
  }

  .parts_b .img_text_wrap .img_text_box time {
    font-size: 12px;
  }

  .parts_b .slider_wrapper {
    margin-bottom: 40px;
  }

  .parts_b .slick-slide {
    margin: 0 5px;
  }

  .parts_b .slick-list {
    margin: 0 -5px;
  }

  .parts_b .img_text_wrap .img_text_box {
    max-width: none;
  }

  .parts_b .img_text_wrap .img_text_box:before,
  .parts_b .img_text_wrap .img_text_box:after {
    display: none !important;
  }

  .parts_b .progress_bar_wrapper {
    display: block;
  }
}

/* ----------------------------------- */
/*下層*/
/* ----------------------------------- */
/* 商品詳細 */
.itemdesc-tab-switch {
  --tab-color:#fff;
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  margin: auto;
}

/* タブボタン */
.itemdesc-tab-switch label {
  padding: 0.7em 8px;
  background:#fff;
  cursor: pointer;
  order: -1; /* 上に表示 */
  text-align: center;
  flex: 1; /* 均等幅 */
  min-width: 60px;
  border-bottom: 1px solid #070707;

}

/* ラジオ非表示 */
.itemdesc-tab-switch input {
  display: none;
}

/* コンテンツ非表示 */
.itemdesc-tab-content {
  display: none;
  width: 100%;
  padding: 1.5em 0;
}

.itemdesc-tab-content p,
.itemdesc-tab-content table th,
.itemdesc-tab-content table td {
  font-size: 14px !important;
}
.itemdesc-tab-content strong {
  font-weight: bold;
}
.itemdesc-tab-content .headline {
  font-size: 18px !important;
}

/* 選択されたタブ＋コンテンツ表示 */
.itemdesc-tab-switch label:has(:checked) {
  background: var(--tab-color);
  color: #000;
  border: 1px solid #070707;
  border-bottom: 1px solid transparent;
}
.itemdesc-tab-switch label:has(:checked) + .itemdesc-tab-content {
  display: block;
}


/* ----------------------------------- */
/*footer*/
/* ----------------------------------- */
#footer-AreaWrap {
  background-color: var(--bg-color);
  border: 2px solid var(--main-color);

}
#footer-AreaWrap .logo {
  max-width: 308px;
  width: 100%;
  margin-bottom: 20px;
}
#copyright {padding: 11px 0;}
#copyright p {line-height: 1.2;}
#footerNaviWrap {
  display: flex;
  border-bottom: 2px solid var(--main-color);
}
#footer-AreaWrap .footerNaviBox {
  padding: 30px;
  flex-basis: calc(100% / 4);
    border-width: 0 1px 0 1px;
    border-style: solid;
    border-color: var(--main-color);
}
#footer-AreaWrap .footer_links li + li {
  margin-top: 15px;
}
#footer-AreaWrap .mailmaga_headline {
  font-size: 18px;
  margin-bottom: 20px;
}
#footer-AreaWrap .btn._main-c {
  margin: 25px 0 0;
}
#footer-AreaWrap .mailmaga_link {
  font-size: 14px;
  color: var(--main-color);
}
#footer-AreaWrap .text-link {
  font-size: 14px;
}
#footer-AreaWrap .text-link:hover {
  color: var(--sub-color2) !important;
}
.footer_catArea {
  background-color: var(--bg-color);
  border: 2px solid var(--main-color);
  padding: 70px 0 120px;
}
.footer_catNavi {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 20px;
}
.footer_catlinkList {
  display: grid;
  gap: 40px;
}

.footer_catlink a {
  font-size: 24px;
  color: var(--main-color);
}

.footer_catlinkList .children {
  display: grid;
  gap: 20px;
}

.footer_catlinkList .children li {
  list-style: disc;
  margin-left: 20px;
}

.footer_catlinkList .children a {
  font-size: 20px;
  color: (--text-color);
}
@media  screen and (min-width: 767px) { 
  #copyright p {text-align: center;}
}
@media screen and (max-width: 1210px) {
  #footer-AreaWrap {
    border-top-width: 1px;
    padding-bottom: 60px;
  }
  .footer_catArea {
    padding: 0;
    border: 1px solid var(--main-color);
  }
  .footer_catArea .container {
    padding: 0;
  }
  .footer_catNavi {
    gap: 0;
}
  .footer_catlinkList {
    display: flex;
    gap: 0px;
    width: calc(100% / 3);
    padding-left: 15px;
    min-height: 60px;
        align-items: center;
  }

  .footer_catlinkList + .footer_catlinkList {
    border-left: 1px solid var(--main-color);
  }

  .footer_catlink a {
    font-size: 20px;
    padding: 17px 0;
  }

  .footer_catlinkList .children {
    display: none;
  }
  #footer-AreaWrap .logo {
  max-width: 264px;
  margin-bottom: 45px;
}
  #footer-AreaWrap #footerNaviWrap {
    flex-direction: column;
}
  #footer-AreaWrap .footerNaviBox {
    padding: 30px 15px 60px;
  }
  #footer-AreaWrap .footerNaviBox._01 {
    order: 2;
    border-width: 1px 0px 0px 0px;
  }
  #footer-AreaWrap .footerNaviBox._02,
  #footer-AreaWrap .footerNaviBox._03 {
    display: none;
  }
  #footer-AreaWrap .footerNaviBox._04 {
    order: 1;
    border-width: 0px 0 1px 0;
    padding: 30px 15px 60px;
  }
  #copyright p {
    padding: 0 15px;
  }
  #footer-AreaWrap .footerNaviBox {
    width: 100%;
  }
}


/*----------------------------------*/
/*accordion*/
/*----------------------------------*/
.nav_accordion {
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: 50px;
}
.accordion-list {
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(239, 239, 239, .3);
}
.nav_accordion .accordion-list .accordion-title {
  cursor: pointer;
  font-size: 18px;
  position: relative;
  font-weight: 400;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav_accordion .accordion-list .accordion-title .arrow {
  height: 7px;
  width: 12px;
  transition: all 0.3s ease-in-out;
  background: url("/tmp-parts/img/common/navi01_under.svg") no-repeat center / cover;
  flex-shrink: 0;
}
.nav_accordion .accordion-list .accordion-title.open {
  transition: all 0.3s ease-in-out;
}
.nav_accordion .accordion-list .accordion-title.open .arrow {
  transform: rotate(180deg) !important;
}
.nav_accordion .accordion-list .accordion-text {
  display: none;
  position: relative;
}

/* ----------------------------------- */
/* CTA固定ボタン */
#fixedBtnSpArea {
  width: 100%;
  opacity: 0;
  z-index: 10;
  position: fixed;
  bottom: -50px;
  transition: 0.6s;
  background-color: #D3D3D3;
}

#fixedBtnSpArea.fixed {
  opacity: 1;
  transition: 0.6s;
  bottom: 0;
}

#fixedBtnSpArea #fixedBtnSp {
  display: block;
}

#fixedBtnSpArea #fixedBtnSp ul {
  height: 50px;
  width: 100%;
  overflow: hidden;
  display: flex;
  gap: 1px;
}

#fixedBtnSpArea #fixedBtnSp ul li {
  flex-basis: 100%;
  background-color: var(--bg-color);
}

#fixedBtnSpArea #fixedBtnSp ul li.w80 {
  flex-basis: 80px;
  flex-shrink: 0;
  background-color: #363F4A;
}

#fixedBtnSpArea #fixedBtnSp ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--text-color) !important;
  margin: 0;
  font-size: 10px;
  text-decoration: none;
  padding-top: 2px;
}

#fixedBtnSpArea #fixedBtnSp ul li.w80 a {
  color: var(--bg-color) !important;
}

#fixedBtnSpArea #fixedBtnSp ul li a .icon {
  display: flex;
  height: 20px;
}

@media screen and (min-width: 1211px) {
  #fixedBtnSpArea #fixedBtnSp {
    display: none;
  }
}
