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

/******************************************************
 ** 全ページ共通CSS
******************************************************/
html, 
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Yu Gothic Medium", "游ゴシック Medium", "YuGothic", "游ゴシック体", "メイリオ", "Meiryo";
  margin: 0;
  padding: 0;
  color: #000;
}
body {
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-size: 1.6rem;
  /* 横スクロールを非表示にして横揺れを防ぐ */
  overflow-x: hidden;
}

li {
  list-style: none;
}
a {
  color: #000;
}
.font_serif {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Yu Gothic Medium", "游ゴシック Medium", "YuGothic", "游ゴシック体", "メイリオ", "Meiryo";
  font-weight: bold;
}


/* * ▼▼ PC・スマホ出し分け ▼▼ */
.sp_only {
  display: none;
}

@media screen and (max-width: 736px) {
  body {
    line-height: 1.6;
    font-size: 1.4rem;
  }
  .sp_only {
	display: block;
  }
  .pc_only {
	display: none;
  }
}

/* コンテンツタイトル */
.content-ttl {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS 明朝", serif;
  font-size: 1.6em;
  font-weight: bold;
  text-align: center;
  margin-top: 3em;
  margin-bottom: 1em;
}

.fs-l-main {
  margin: 0 auto;
}

/***************************
 ** テキスト装飾
 ****************************/

.text_red {
  color: #ab2323;
}
.text_bold {
  font-weight: bold;
}
.font_size2 {
  font-size: 2em;
}
.font_size1-5 {
  font-size: 1.5em;
}
.font_size1-4 {
  font-size: 1.4em;
}
.font_size1-2 {
  font-size: 1.2em;
}

/***************************
 ** padding
 ****************************/
.ptb_20 {
 padding-top: 20px;
 padding-bottom: 20px;
}
.pt_10 {
 padding-top: 10px;
}
.pb_10 {
 padding-bottom: 10px;
}
.pt_20 {
 padding-top: 20px;
}
.pb_20 {
 padding-bottom: 20px;
}

/***************************
 ** テキストリンク
 ****************************/
 .text-link {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-link:hover {
  color: #004999;
  text-decoration: none;
}

/***************************
 ** シンプルボタン【白背景】
 */
.simple_btn {
  text-align: center;
  margin-bottom: 6rem;
}
.simple_btn a {
  font-size: 2rem;
  background: #fff;
  position: relative;
  align-items: center;
  max-width: 400px;
  padding: 15px 25px;
  color: #000;
  transition: 0.3s ease-in-out;
  border: 1px #000 solid;
  display: block;
  margin: 0 auto;
}
.simple_btn a:hover {
  background: #999999;
  color: #000;
  text-decoration: none;
}
.simple_btn a:after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  transition: 0.3s ease-in-out;
}

@media only screen and (max-width: 736px) {
  .simple_btn a {
    font-size: 1.6rem;
  }
}

/***************************
 ** アコーディオン
 */
/*.accordion_container .accordion_item {}*/
.accordion_container .accordion_btn {
  cursor: pointer;
}
.accordion_container .accordion_box {
  display: none;
}
	
/***************************
 ** ヘッダー
****************************/

/*header {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS 明朝", serif;
}*/
.header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  z-index: 999;
}
.header_sp {
  display: none;
}

.hTop {
  background-color: #f2f2f2;
  padding: 7px 0;
  overflow: hidden;
  max-height: 50px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  position: relative;
  z-index: 1000;
}
/*.header.is-scroll .hTop {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}*/
.hTop p {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS 明朝", serif;
  max-width: 1380px;
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 1380px) {
  .hTop {
	  padding: 7px 2em;
  }
  .hTop p {
	  max-width: 100%;
  }
}

.guidance_BG {
  padding: 10px 0;
  background-color: #FFF;
}
.guidance {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  max-width: 1380px;
  margin: 0 auto;
}
@media only screen and (max-width: 1380px) {
  .guidance {
	  max-width: 100%;
	  padding: 10px 2em;
  }
}

h1.logo {
  margin: 0;
  line-height: 0;
  display: inline-block;
}
h1.logo img {
  width: 200px;
  height: auto;
}
.nav_guid {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
}
.nav_guid li {
  margin-left: 1em;
}
.nav_guid li.hTel {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS 明朝", serif;
  text-align: center;
  line-height: 1.2em;
}
.nav_guid li.hTel span {
  font-size: 0.8em;
}
.nav_guid img {
  transition: transform .3s ease, opacity .3s ease;
}
.nav_guid a:hover img {
  opacity:.75;
}

.nav_BG {
  border-top: 3px solid #f2f2f2;
  border-bottom: 3px solid #f2f2f2;
  background-color: #FFF;
}
.nav {
  position: relative; /* 0619 add */
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  max-width: 1380px;
  margin: 0 auto;
  padding: 10px 0;
}
@media only screen and (max-width: 1380px) {
  .nav {
	max-width: 100%;
	padding: 10px 2em;
  }
}

.nav_list {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0 2rem 0 0;
  font-size: 1.1em;
}

.nav_list a {
  text-decoration: none;
  padding: 10px;
  margin: 0 5px;
  color: #000;
  font-weight: bold;
}
.nav_icon {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  align-items: center;
  gap: 24px;
}
.nav_icon li {
  margin-left: 0;
}
.nav_icon img {
  width: auto;
  height: 46px;
  transition: all .3s ease;
}
.nav_icon a {
  text-decoration: none; 
}
.nav_icon a:hover img {
  opacity: .75;
}

.nav_title {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS 明朝", serif;
}

/***************************
 ** メガメニュー
****************************/
.nav_list > li {
  position: static;
}
.arrow {
  display: inline-block;
  margin-left: 5px;
  transition: .3s;
}
.arrow::before {
  content: "▼";
  display: block;
}
.hasMega:hover > a .arrow {
  transform: rotate(180deg);
}
.megaMenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
  border: 1px solid #d9d9d9;
  box-sizing: border-box;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.megaMenu::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}
.hasMega:hover .megaMenu {
  display: block;
}
.megaInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
}
/* 「商品一覧から探す」 */
.megaMenuProduct .megaInner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px 30px;
}
.productItem{
  display:flex;
  align-items:center;
  gap:15px;

  padding:12px;
  border-bottom:1px solid #d8e3ff;

  text-decoration:none;
  color:#333;

  transition:all .3s ease;
}

.productItem img{
  width:80px;
  height:60px;
  object-fit:cover;
  border-radius:6px;

  transition:transform .3s ease;
}

.productItem span{
  transition:color .3s ease;
  font-size: 18px;
  font-weight: 600;
}

/* ホバー */
.productItem:hover{
  background:#f6f9ff;
  border-bottom-color:#1d3f82;
  transform:translateX(8px);
}

.productItem:hover span{
  color:#1d3f82;
}

.productItem:hover img{
  transform:scale(1.06);
}
/* 「知る・学ぶ」 */
.megaMenuLearn .megaInner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
}

.learnItem {
  display: block;
  text-decoration: none;
  color: #333;
}

.learnThumb {
  aspect-ratio: 440 / 320;
  border: 1px solid #1d3f82;
  overflow: hidden;
  background: #fff;
}

.learnThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 画像下テキスト */
.learnText {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  font-weight: bold;
}

/* ホバー */
.learnItem:hover .learnThumb img {
  transform: scale(1.04);
}

.learnThumb img {
  transition: transform .3s ease;
}

.learnItem:hover .learnText {
  color: #1d3f82;
}

.learnMore {
  text-align: center;
  margin-top: 36px;
  margin-bottom: 40px;
}

.learnMore {
  text-align: center;
  margin: 36px 0 40px;
}

.learnMore a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 360px;
  height: 56px;

  border: 1px solid #888;
  border-radius: 12px;

  background: #fff;
  text-decoration: none;
  font-weight: bold;

  transition: all .3s ease;
}

/* 矢印 */
.learnMore a::after{
  content:"";
  position:absolute;
  right:22px;

  width:8px;
  height:8px;

  border-top:2px solid currentColor;
  border-right:2px solid currentColor;

  transform:rotate(45deg);
  transition:.3s;
}

/* ホバー */
.learnMore a:hover{
  background: #888;
  color:#fff;
  /*transform:translateY(-3px);
  box-shadow:0 10px 20px rgba(0,0,0,.15);*/
}

.learnMore a:hover::after{
  right:18px;
}


/* =========================
   スマホヘッダー用
========================= */
.spHeader{
  display:none;
}

@media only screen and (max-width:736px){

  .header{
    height:auto;
  }

  /* PCヘッダーは非表示 */
  .guidance_BG,
  .nav_BG{
    display:none;
  }

  /* タグライン */
  .hTop{
    padding:8px 15px;
    font-size:13px;
  }

  .hTop p{
    margin:0;
  }

  /* スマホヘッダー本体 */
  .spHeader{
    display:block;
    background:#fff;
    border-bottom:1px solid #1d3f82;
  }

  .spHeaderMain{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 15px;
  }

  /* ハンバーガー */
  .spMenuBtn{
    width:60px;
    padding:0;
    background:none;
    border:none;
    cursor:pointer;
    text-align:center;
    flex-shrink:0;
  }

  .spMenuBtn span{
    display:block;
    width:34px;
    height:3px;
    background:#000;
    margin:6px auto;
  }

  .spMenuBtn em{
    display:block;
    font-style:normal;
    font-size:12px;
    line-height:1;
    margin-top:4px;
  }

  /* ロゴ */
  .spLogo{
    margin:0;
    line-height:0;
    flex:1;
    text-align:center;
  }

  .spLogo img{
    width:180px;
    max-width:42vw;
    height:auto;
  }

  /* 右側アイコン */
  .spHeaderIcon{
    display:flex;
    gap:10px;
    margin:0;
    padding:0;
    flex-shrink:0;
  }

  .spHeaderIcon li{
    list-style:none;
  }

  .spHeaderIcon img{
    width:auto;
    height:52px;
    transition:.3s;
  }

  .spHeaderIcon a:hover img{
    opacity:.75;
  }

  /* 下段ナビ */
  .spHeaderNav{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid #eee;
  }

  .spHeaderNav a{
    display:block;
    text-align:center;
    padding:10px 4px;
    font-size:13px;
    line-height:1.4;
    text-decoration:none;
    color:#000;
  }

  /* 法人ボタン */
  .spCorporation{
    padding:0 15px 12px;
  }

  .spCorporation a{
    display:block;
    text-align:center;
  }

    /* スクロール後は上部タグラインを消す */
  /*.header.is-scroll .hTop{
    max-height:0;
    padding-top:0;
    padding-bottom:0;
  }*/

  /* スクロール後は下段ナビ・法人ボタンを非表示 */
  .header.is-scroll .spHeaderNav,
  .header.is-scroll .spCorporation{
    display:none;
  }

  /* スクロール後に残す部分 */
  .header.is-scroll .spHeaderMain{
    position:relative;
    top:auto;
    left:auto;
    width:100%;
    z-index:auto;
    background:#fff;
    border-bottom:1px solid #1d3f82;
    box-sizing:border-box;
  }

}

/* =========================
   スマホスライドメニュー
========================= */

.spDrawerOverlay,
.spDrawer{
  display:none;
}

@media only screen and (max-width:736px){

  .spDrawerOverlay{
    display:block;
    position:fixed;
    inset:0;
    background:rgba(8,20,45,.55);
    opacity:0;
    visibility:hidden;
    z-index:10000;
    transition:.35s ease;
  }

  .spDrawer{
    display:block;
    position:fixed;
    top:0;
    left:0;
    width:88%;
    max-width:390px;
    height:100vh;
    background:#fff;
    z-index:10001;
    transform:translateX(-105%);
    transition:transform .35s ease;
    overflow-y:auto;
    box-sizing:border-box;
    padding:0 18px 28px;
    box-shadow:8px 0 30px rgba(0,0,0,.18);
  }

  body.drawer-open{
    overflow:hidden;
  }

  body.drawer-open .spDrawerOverlay{
    opacity:1;
    visibility:visible;
  }

  body.drawer-open .spDrawer{
    transform:translateX(0);
  }

  .spDrawerHead{
    position:sticky;
    top:0;
    z-index:5;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    padding:18px 0;
    background:#fff;
    border-bottom:1px solid #e6e9f0;
  }

  .spDrawerLogo img{
    width:160px;
    height:auto;
    display:block;
  }

  .spDrawerClose{
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#f3f5f8;
    color:#1d3f82;
    font-size:28px;
    line-height:1;
    cursor:pointer;
  }

  .spDrawerContactArea{
    padding:22px 0 26px;
  }

  .spDrawerTel {
    font-family: "游明朝", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS 明朝", serif;
    text-align:center;
    margin:0 0 16px;
  }

  .spDrawerTel strong {
    display:block;
    font-size:28px;
    line-height:1.2;
    letter-spacing:.02em;
  }

  .spDrawerTel span {
    display:block;
    font-size:13px;
    margin-top:5px;
  }

  .spDrawerRedBtn{
    font-family: "游明朝", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS 明朝", serif;
    display:block;
    background:linear-gradient(135deg,#ff2d22,#e60000);
    color:#fff;
    text-align:center;
    padding:14px 10px;
    border-radius:14px;
    font-weight:bold;
    text-decoration:none;
    line-height:1.6;
    margin-bottom:14px;
    box-shadow:0 6px 14px rgba(230,0,0,.22);
  }

  .spDrawerRedBtn:visited {
    color:#fff;
  }
  .spDrawerRedBtn:hover {
    text-decoration: none;
  }

  .spDrawerBtnRow {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-bottom:14px;
  }

  .spDrawerBlueBtn,
  .spDrawerGrayBtn {
    font-family: "游明朝", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS 明朝", serif;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:66px;
    border-radius:14px;
    color:#fff;
    font-weight:bold;
    text-align:center;
    text-decoration:none;
    line-height:1.5;
    box-shadow:0 4px 10px rgba(0,0,0,.12);
  }

  .spDrawerBlueBtn:visited,
  .spDrawerGrayBtn:visited {
    color:#fff;
  }

  .spDrawerBlueBtn {
    background:#4977c8;
  }

  .spDrawerGrayBtn {
    background:#777;
  }

  .spDrawerContactBtn {
    font-family: "游明朝", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS 明朝", serif;
    display:flex;
    align-items:center;
    justify-content:center;
    height:54px;
    border:2px solid #888;
    border-radius:12px;
    color:#000;
    background:#fff;
    font-size:17px;
    font-weight:bold;
    text-decoration:none;
  }

  .spDrawerContactBtn:hover {
    text-decoration: none;
    color:#000;
  }

  .spDrawerBlock {
    margin-top:24px;
  }

  .spDrawerCategoryAccordion {
    border:1px solid #d7deea;
    border-radius:14px;
    overflow:hidden;
    background:#fff;
  }

  .spDrawerCategoryBtn {
    width:100%;
    padding:15px 14px;
    border:none;
    background:#FBFAF6;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:15px;
    font-weight:bold;
    cursor:pointer;
    box-sizing:border-box;
  }

  .spDrawerCategoryBody .spDrawerLinkList {
    border:none;
    border-radius:0;
  }

  .spDrawerBlockTitle {
    font-family: "游明朝", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS 明朝", serif;
    margin:0 0 12px;
    padding-left:10px;
    border-left:4px solid #1d3f82;
    font-size:16px;
    font-weight:bold;
    line-height:1.4;
  }

  .spDrawerLinkList,
  .spDrawerAccordionBody ul,
  .spDrawerSizeBody ul,
  .spDrawerGuideBody ul {
    margin:0;
    padding:0;
    border:1px solid #d7deea;
    border-radius:14px;
    overflow:hidden;
    background:#fff;
  }

  .spDrawerLinkList li,
  .spDrawerAccordionBody li,
  .spDrawerSizeBody li,
  .spDrawerGuideBody li {
    border-bottom:1px solid #e6e9f0;
  }

  .spDrawerLinkList li:last-child,
  .spDrawerAccordionBody li:last-child,
  .spDrawerSizeBody li:last-child,
  .spDrawerGuideBody li:last-child {
    border-bottom:none;
  }

  .spDrawerLinkList a,
  .spDrawerAccordionBody a,
  .spDrawerSizeBody a,
  .spDrawerGuideBody a {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    padding:15px 14px;
    color:#222;
    text-decoration:none;
    font-size:14px;
    line-height:1.5;
    background:#fff;
  }

  .spDrawerLinkList a span,
  .spDrawerAccordionBody a span,
  .spDrawerSizeBody a span,
  .spDrawerGuideBody a span {
    color:#1d3f82;
    flex-shrink:0;
  }

  .spDrawerAccordion,
  .spDrawerSizeAccordion,
  .spDrawerGuideAccordion,
  .spDrawerLearnAccordion {
    border:1px solid #d7deea;
    border-radius:14px;
    overflow:hidden;
    background:#fff;
  }

  .spDrawerAccordion + .spDrawerAccordion {
    margin-top:10px;
  }

  .spDrawerAccordionBtn,
  .spDrawerSizeBtn,
  .spDrawerGuideBtn,
  .spDrawerSingleLink,
  .spDrawerLearnBtn {
    width:100%;
    padding:15px 14px;
    border:none;
    background: #FBFAF6;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:15px;
    font-weight:bold;
    text-decoration:none;
    cursor:pointer;
    box-sizing:border-box;
  }
  .spDrawerLearnBtn {
    border:1px solid #d7deea;
  }

  .spDrawerCategoryBody,
  .spDrawerAccordionBody,
  .spDrawerSizeBody,
  .spDrawerGuideBody,
  .spDrawerLearnBody {
    display:grid;
    grid-template-rows:0fr;
    transition:grid-template-rows .35s ease;
  }

  .spDrawerCategoryBody > *,
  .spDrawerAccordionBody > *,
  .spDrawerSizeBody > *,
  .spDrawerGuideBody > *,
  .spDrawerLearnBody > * {
    overflow:hidden;
  }

  .spDrawerCategoryAccordion.is-open .spDrawerCategoryBody,
  .spDrawerAccordion.is-open .spDrawerAccordionBody,
  .spDrawerSizeAccordion.is-open .spDrawerSizeBody,
  .spDrawerGuideAccordion.is-open .spDrawerGuideBody,
  .spDrawerLearn.is-open .spDrawerLearnBody {
    grid-template-rows:1fr;
  }

  .spDrawerCategoryArrow,
  .spDrawerAccordionArrow,
  .spDrawerSizeArrow,
  .spDrawerLearnArrow,
  .spDrawerGuideArrow {
    width:9px;
    height:9px;
    display:inline-block;
    border-right:2px solid #000;
    border-bottom:2px solid #000;
    transform:rotate(45deg);
    transition:transform .3s ease;
    flex-shrink:0;
    margin-left:12px;
  }

  .spDrawerCategoryAccordion.is-open .spDrawerCategoryArrow,
  .spDrawerAccordion.is-open .spDrawerAccordionArrow,
  .spDrawerSizeAccordion.is-open .spDrawerSizeArrow,
  .spDrawerLearn.is-open .spDrawerLearnArrow,
  .spDrawerGuideAccordion.is-open .spDrawerGuideArrow {
    transform:rotate(-135deg);
  }

  .spDrawerLinkArrow {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform .3s ease, opacity .3s ease;
  }

  .spDrawerLinkList a,
  .spDrawerAccordionBody a,
  .spDrawerSizeBody a,
  .spDrawerGuideBody a,
  .spDrawerSingleLink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .spDrawerLinkList a:hover .spDrawerLinkArrow,
  .spDrawerAccordionBody a:hover .spDrawerLinkArrow,
  .spDrawerSizeBody a:hover .spDrawerLinkArrow,
  .spDrawerGuideBody a:hover .spDrawerLinkArrow,
  .spDrawerSingleLink:hover .spDrawerLinkArrow {
    transform: rotate(45deg) translate(2px, -2px);
    opacity: .7;
  }

  .spDrawerAccordionBody ul,
  .spDrawerSizeBody ul,
  .spDrawerGuideBody ul {
    border:none;
    border-radius:0;
  }

  .spDrawerLearn {
    margin-top:24px;
  }

  .spDrawerLearnBtn {
    border-radius:14px;
  }

  .spDrawerLearnGrid {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin-top:14px;
  }

  .spDrawerLearnItem {
    display:block;
    overflow:hidden;
    border:1px solid #d7deea;
    border-radius:14px;
    background:#fff;
    line-height:0;
  }

  .spDrawerLearnItem img {
    width:100%;
    aspect-ratio:1 / 1;
    object-fit:cover;
    display:block;
  }

  .spDrawerLearnMore {
    margin:18px auto 0;
    width:78%;
  }

  .spDrawerLearnMore a {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:35px;
    height:50px;
    border:1px solid #888;
    border-radius: 10px;
    font-size:14px;
    font-weight:bold;
    background:#fff;
  }

  .spDrawerLearnMore a:hover {
    background: #888;
    color: #fff;
    text-decoration: none;
  }

  .spDrawerGuide {
    margin-top:24px;
  }

  .spDrawerSingleLink {
    border-radius:14px;
    margin-bottom:10px;
    border:1px solid #d7deea;
  }

  .spDrawerSns {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
    margin:30px 0 6px;
  }

  .spDrawerSns a {
    aspect-ratio:1 / 1;
    border:1px solid #d7deea;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    transition:.3s;
  }

  .spDrawerSns a:hover {
    opacity:.75;
    transform:translateY(-2px);
  }

  .spDrawerSns img {
    width:46%;
    height:46%;
    object-fit:contain;
    display:block;
  }

}


/***************************
 ** 任意商品表示（新着・売れ筋など）のコピーを非表示
 */

.fs-c-productName__copy {
  display:none;
}


/***************************
 ** headerの高さ分を調整　
 */

/*パンくずリストに設定*/
.fs-c-breadcrumb {
  font-size: 1.2rem;
  max-width:1200px;
  margin:0 auto;
  padding-top: 2rem;
}
  
@media only screen and (max-width: 736px) {
  .fs-c-breadcrumb {
    padding-top: 0;
  }
}

/* ========================================
   ページトップへ戻るボタン
======================================== */
.pageTop{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1d3f82;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  z-index: 9998;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease, background .3s ease;
  text-decoration: none;
}

/* 表示時 */
.pageTop.is-show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 矢印 */
.pageTop span{
  display: block;
  width: 12px;
  height: 12px;
  border-left: 3px solid #fff;
  border-top: 3px solid #fff;
  transform: rotate(45deg);
  margin-top: 6px;
}

/* ホバー */
.pageTop:hover{
  background: #3459a8;
  text-decoration: none;
}

/* スマホ */
@media only screen and (max-width:736px){
  .pageTop{
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }

  .pageTop span{
    width: 10px;
    height: 10px;
    border-left: 2px solid #fff;
    border-top: 2px solid #fff;
    margin-top: 4px;
  }
}

/* ========================================
   カテゴリから探す
======================================== */
.categoryFinderContents {
  display: none;
  background: #fff;
  padding: 40px;
  border-radius: 0 12px 12px 12px;
}

.categoryFinderContents.active {
  display: block;
}

/* スマホ */
@media (max-width: 767px) {
  .categoryFinderContents {
    padding: 20px 15px;
    border-radius: 0 0 12px 12px;
  }
}