@charset "UTF-8";
/* ===============================================
  * 共通 *
=============================================== */
:root {
  /* ===============================================
    * Color *
  =============================================== */
  --color-primary: #CA9E01;
  --color-secondary: #666666;
  /* --color-tertiary: #B39665;
  --color-emphasis: #307635; */
  --color-text-default: #363229;
  --color-primary-bg: #F0F0F0;
  /* --color-secondary-bg: #F5F5F5; */
  --color-error: var(--color-red);
  --color-textlink: var(--color-text-default);
  --color-black: #222;
  --color-white: #fff;
  --color-red: #CC1800;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #e6e4e4;
  --color-gray-300: #dbdbdb;
  --color-gray-400: #bebebe;
  --color-gray-500: #7e7e7e;
  --color-gray-600: #4e4e4e;
  --color-gray-middle: #7C7C7C;
  --color-gray-a: #aaa;
  --color-bg-form: #FDFDFD;
  --color-gray-form: #CBCBCB;
  --color-placeholder-form: #999;
  --color-border: #DBDBDB;
  --color-border: #D5D5D5;
  --color-product-border: #D5D5D5;
  --color-bg-active: #F7F7F7;

  /* ===============================================
    * Font *
  =============================================== */
  /* Font Family */

  --ff-shippori-mincho: "Shippori Mincho B1", serif;
  /* --ff-noto: "Noto Serif JP"; */
  --ff-noto-sans: "Noto Sans JP";
  --ff-outfit: "Outfit"; 
  --font-ja: var(--ff-shippori-mincho), sans-serif;
  --font-en: var(--ff-outfit), sans-serif;
  --ff-ja-design:var(--ff-shippori-mincho);
  --font-main: var(--ff-shippori-mincho), sans-serif;
  /* --font-main: var(--ff-outfit), var(--ff-shippori-mincho), sans-serif; */
  /* Font Weight (fw = font-weight) */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  /* ===============================================
    * Animation *
  =============================================== */
  --transition-duration: 300ms;
  --transition-duration-short: 150ms;
  --transition-duration-long: 400ms;
  --transition-timing-function: ease;
  --transition-default: var(--transition-duration) var(--transition-timing-function);
  --hover-opacity: 0.7;
  /* ===============================================
    * z-index *
  =============================================== */
  --zindex-base: 1;
  --zindex-floating-element: 10;
  --zindex-header: 20;
  --zindex-hamburgermenu-bg: 30;
  --zindex-hamburgermenu-contents: 40;
  /* ===============================================
    * container *
  =============================================== */
  --container-lp-default: 100%;
  --container-lp-wide: 100%;
  /* ===============================================
    * height *
  =============================================== */
  --height-ticker: 3rem;
  --height-ticker-douible: 6rem;
  --height-navi: 7rem;
  --hegiht-header-max:calc(var(--height-ticker-douible) + var(--height-navi));
  --hegiht-header:calc(var(--height-ticker) + var(--height-navi));
  /* ===============================================
    * Button Size *
  =============================================== */
  --button-common-size:20rem;
}

@media screen and (min-width: 768px) {
  :root{
    --container-default: 132rem;

  /* ===============================================
    * Button Size *
  =============================================== */
  --button-common-size:22rem;
  }
}
.u-visually-hidden {
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip-path: inset(0px 0px 99.9% 99.9%);
}

@media screen and (max-width: 767px) {
  .pconly {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sponly {
    display: none !important;
  }
}
body {
  font-family: var(--font-main);
  color: var(--color-text-default);
}

@media screen and (min-width: 992px) {
}
@media screen and (max-width: 991px) {
}
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
}


/* =============================================================
    Common
============================================================= */
input[type=text], input[type=password], input[type=tel], input[type=email], input[type=text], input[type=number],textarea{
  background-color: var(--color-white)
}

.c-common-section--separator{
    display: grid;
    grid-gap: 6rem;
}
.c-common-section--separator::before{
    content: '';
    width: 100%;
    height: .6rem;
    background-repeat: repeat-x;
    background-size: contain;
    background-image: url(../../../assets/img/common/separator_top_section_sp.jpg);
    opacity: .5;
}

.c-common-title{
    display: grid;
    justify-items: center;
    grid-gap: .7rem;
}
.c-common-title--jp{
    font-size: 3rem;
    font-family: var(--ff-shippori-mincho);
    font-weight: var(--fw-semibold);
    letter-spacing: .03em;
    line-height: 1.46666;
}
.c-common-title--en{
    font-size: 1.2rem;
    font-family: var(--ff-outfit);
    letter-spacing: .1em;
    line-height: 1.25;
    color: #A0A0A0;
}

.c-product-sIcon__item{
  height: 2rem;
}
.c-product-sIcon__item img{
  width: auto;
  height: 100%;
}
@media screen and (min-width: 768px) {
    .c-common-section{
        grid-gap: 8rem;
    }
    .c-common-section::before{
        background-image: url(../../../assets/img/common/separator_top_section_pc.jpg);
    }
    .c-common-title{
        grid-gap: .8rem;
    }
}

/* ===============================================
  * Header *
=============================================== */
/* html.js-navOpened,
html.js-infoboxOpened,
html.js-UserBoxOpened{
  overflow: hidden;
} */
header{
  font-family: var(--ff-noto-sans);
}
/* ticker text */
.s-header-ticker--text{
  background-color: #F7EFD2;
}
.ticker-list-text__inner{
  position: relative;
  /* height: var(--height-ticker);

  display: flex; */
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
}
/* .s-header-ticker--text-list {
    display: flex;
    animation: ticker-scroll 10s linear infinite;
} */

.s-header-ticker--text-item{
  /* padding-inline: 5rem; */
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  display: grid;
  place-content: center;
  width: 100%;
  height: var(--height-ticker);
}
a.s-header-ticker--text-item{
  color: #56869B;
}

.close-button-ticker{
  background-color: #F7EFD2;
  position: absolute;
  top: 0;
  right: 0;

  appearance: none;
  border: unset;
  padding: 0;
  margin: 0;
  padding-inline: .3rem;
}

.hidden-ticker .js-target-ticker{
  display: none;
}

/* @keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
} */

/* ticker text */
.s-header-ticker--bottom{
  background-color: var(--color-primary-bg);
}

/* ticker image */
.s-header-ticker-bottom-text-item{
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  display: grid;
  place-content: center;
  width: 100%;
  height: var(--height-ticker);
}
.s-header-ticker-bottom-text-item__tax{
  font-size: 1rem;
}
.c-link-color-primary{
  color: var(--color-primary);
}


/* main header */
.s-header-wrap{
  border-bottom: unset;
}
.s-header-wrap__logo{
  width: 5rem;
}
@media screen and (min-width: 768px) {
  .s-header-wrap__logo{
    width: 24.8rem;
  }
}
.s-header-wrap{
  position: relative;
}
.s-header-wrap::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  pointer-events: none;
}
.s-header{
  height: auto;
  position: sticky;
  top: calc(var(--height-ticker-douible) * -1);
  z-index: 1000;
}
.hidden-ticker .s-header{
  top: calc(var(--height-ticker) * -1);
}


.s-header-wrap{
  height: var(--height-navi);
}
.s-header__cartCnt{
  background: var(--color-primary);
  font-size: 1rem;
  line-height: 1;
  width: 1.8rem;
  aspect-ratio: 1;
  top: 0;
  right: 0.6rem;
  height: 1.8rem;
}
/* Category List */
.s-header-categoryNav__navlist{
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  .s-header__cartCnt{
    top: -.1rem;
    right: 0.2rem;
  }
  .s-header-wrap{
    display: grid;
    grid-template-columns: 24.8rem auto 19.8rem;
    justify-content: center;
  }
  .s-header-wrap:not(:has(.s-header-wrap__nav-list)){
    grid-template-columns: unset;
  }

  .s-header-wrap__nav-list{
    overflow-x: auto;
    position: relative;
  }
  .s-header-categoryNav__navlist{
    flex-wrap: nowrap;
    overflow-x: auto;
    flex-direction: row;
    gap: 2rem;
  }
  .s-header-categoryNav__navLink{
    width: fit-content; 
  }
  .s-header-categoryNav__navLink > a{
    white-space: nowrap;
    font-size: 1.2rem;
    line-height: 1;
  }
  .s-header-categoryNav__navlist::-webkit-scrollbar{
      /* WebKit系ブラウザ */
      display: none;
  }
  .s-header-categoryNav__navlist {
    /* Firefox */
    scrollbar-width: none;
    /* IE and Edge (旧版) */
    -ms-overflow-style: none;
  }
  

}
@media screen and (max-width: 991px) {
  .s-header-wrap__utility {
    margin-block: auto;
    display: flex;
    align-items: center;
    right: 1rem;
    top: 0;
    bottom: 0;
    width: unset;
    height: unset;
  }
}
@media screen and (min-width: 992px) and (max-width: 1390px) {
  .s-header-navBlok__nav{
    position: relative;
  }
  .s-header-categoryNav__navlist{
    /* 白グラデと同じサイズに */
    padding-right: 6rem;
  }
  .s-header-navBlok__nav::after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 6rem;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
  }
}

@media screen and (max-width: 991px) {
  .s-header-navBlok__nav{
    position: absolute;
    top: 100%;
  }
}




/* user */
.s-header-utilityList__item{
  max-width: 4rem;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
}
.s-header__search-contents{
  margin-inline: auto;
  padding-block: 4rem;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--color-bg-active);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-default);
}

.s-search-contents__inner{
  width: 100%;
}

.information-box{
  position: relative;
}
.information-box::after{
  margin-inline: auto;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 1.3rem;
  height: .8rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2213%22%20height%3D%228%22%20viewBox%3D%220%200%2013%208%22%3E%20%3Cpath%20id%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2_2%22%20data-name%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2%202%22%20d%3D%22M6.5%2C0%2C13%2C8H0Z%22%20fill%3D%22%23f7f7f7%22%2F%3E%3C%2Fsvg%3E');
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-default);
}
.js-infoboxOpened .information-box::after,
.js-UserBoxOpened .user-box::after{
  opacity: 1;
}
.s-header__information-contents{
  margin-inline: auto;
  padding: 3.4rem 2rem;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 9;
  width: 20rem;
  background-color: var(--color-bg-active);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-default);
}
.s-header-wrap__utility{
  position: static;
}
.s-header__user-contents{
  margin-inline: auto;
  padding: 3.4rem 4rem;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 9;
  width: 100%;
  background-color: var(--color-bg-active);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-default);
}
.s-information-contents__list,
.s-user-contents__list{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.s-information-contents__list a,
.s-user-contents__list a{
  padding-inline: 2rem;
  font-size: 1.4rem;
  line-height: 1;
  font-family: var(--font-ja);
  display: block;
  width: 100%;
}

.js-navOpened .s-header__search-contents,
.js-infoboxOpened .s-header__information-contents,
.js-UserBoxOpened .s-header__user-contents{
  opacity: 1;
  pointer-events: all;
}

.s-header-navBlok__bg {
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, .7);
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}
.js-navOpened .s-header-navBlok__bg,
.js-infoboxOpened .s-header-navBlok__bg,
.js-UserBoxOpened .s-header-navBlok__bg{
  opacity: 1;
  visibility: visible;
}
.s-header-navBlok__openBtn.active,
.js-navOpened .search-box{
  background-color: var(--color-bg-active);
}
@media screen and (min-width: 992px) {
  .s-header-utilityList{
    align-items: center;
    height: var(--height-navi);
    gap: 0;
  }
  .s-header-utilityList__icon{
    padding-inline: .25rem;
  }
  .user-box{
    position: relative;
  }
  .user-box::after{
    margin-inline: auto;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 1.3rem;
    height: .8rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2213%22%20height%3D%228%22%20viewBox%3D%220%200%2013%208%22%3E%20%3Cpath%20id%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2_2%22%20data-name%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2%202%22%20d%3D%22M6.5%2C0%2C13%2C8H0Z%22%20fill%3D%22%23f7f7f7%22%2F%3E%3C%2Fsvg%3E');
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-default);
  }

  .s-header-categoryNav__navLink > a{ 
    padding-block: 1px;
    padding-inline: 0;
    text-decoration: unset;
  }
}

.s-header-navBlok__openBtn{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4.8rem;
}

.s-header-navBlok__openBtn::before,
.s-header-navBlok__openBtn::after,
.s-header-navBlok__openBtn > span {
  width: 2.8rem; 
  left: 0;
  right: 0;
  margin-inline: auto;
  
}
.s-header-navBlok__openBtn > span{
  top: 0;
  bottom: 0;
  margin: auto;
}
.s-header-navBlok__openBtn::before{
  top: 2.6rem;
}
.s-header-navBlok__openBtn::after{
  bottom: 2.6rem;
}

@media screen and (max-width: 991px) {
  .c-navOpenBtn{
    margin-inline: unset;
    position: absolute;
    top: 0;
    right: unset;
    left: 4.8rem;

    width: 4.8rem;
    max-width: unset;
    padding-inline: .4rem;
  }
  .js-navOpened .c-navOpenBtn{
    background-color: var(--color-bg-active);
  }
  .s-header-wrap__logo{
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
  }
  .s-header-wrap{
    padding-right: 1rem;
    justify-content: space-between;
  }

}

@media screen and (min-width: 768px) {
  .s-header__user-contents{
    padding: 3.4rem 2rem;
    width: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .s-header__user-contents{
    padding: 1.5rem 0 2rem;
  }
  .s-user-contents__list{
    gap: 0;
  }
  .s-user-contents__list a {
    padding: 1rem 2rem;
    display: grid;
    grid-template-columns: 3rem auto;
    gap: 1rem;
    align-items: center;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: var(--fw-semibold);
  }
  .s-user-contents__list a:before {
    content: '';
    width: 3rem;
    aspect-ratio: 1;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .s-user-contents__list a::before{
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2230%22%20height%3D%2230%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_22008%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2022008%22%20transform%3D%22translate(12729%20-2218)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_42%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2042%22%20width%3D%2230%22%20height%3D%2230%22%20transform%3D%22translate(-12729%202218)%22%20fill%3D%22none%22%2F%3E%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_8%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%208%22%20cx%3D%226.89%22%20cy%3D%226.89%22%20r%3D%226.89%22%20transform%3D%22translate(-12720.843%202221.431)%22%20fill%3D%22none%22%20stroke%3D%22%23363229%22%20stroke-width%3D%221.7%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_509%22%20data-name%3D%22%E3%83%91%E3%82%B9%20509%22%20d%3D%22M351.188%2C67.851a10.288%2C10.288%2C0%2C0%2C1%2C9.328-5.8%2C10.15%2C10.15%2C0%2C0%2C1%2C9.267%2C5.8%22%20transform%3D%22translate(-13074.452%202176.649)%22%20fill%3D%22none%22%20stroke%3D%22%23363229%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.7%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')
  }
  .s-user-contents__list a[data-role="logout"]::before{
    background-repeat: unset;
    background-size: unset;
    background-image: unset;
  }
  .s-header-wrap__utility,
  .s-header-utilityList{
    height: 100%;
  }
  .js-UserBoxOpened .user-box{
    background-color: var(--color-bg-active);
  }
}

.js-navOpened .js-navOpenBtn .c-button-swich--on,
.js-navOpenBtn .c-button-swich--off,
.js-UserBoxOpened .js-navUserBoxOpenBtn .c-button-swich--on,
.js-navUserBoxOpenBtn .c-button-swich--off,
.js-infoboxOpened .js-infoboxOpenBtn .c-button-swich--on,
.js-infoboxOpenBtn .c-button-swich--off{
  display: none;
}
.js-navOpened .js-navOpenBtn .c-button-swich--off,
.js-UserBoxOpened .js-navUserBoxOpenBtn .c-button-swich--off,
.js-infoboxOpened .js-infoboxOpenBtn .c-button-swich--off{
  display:block;
}


/* Search Nav */
.s-search-contents__inner.l-container{
  padding-inline: 2rem;
}
.s-header-freeWordSearch{
  margin-inline: auto;
  max-width: 100%;
}
.s-header-freeWordSearch input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  display: none;
}
.c-freeWordSearchBox{
  margin-inline: auto;
  /* padding: 1rem 2rem .855rem; */
  /* padding: 1.19rem 2rem .999rem; */
  padding: 0 0 0 2rem;
  border-radius: unset;
  max-width: 33.5rem;
  width: 100%;
  background-color: #fff;
  cursor: text;
}
.c-freeWordSearchBox__submit--icon{
  margin: 0;
  padding: 0;
  border: unset;
  background-color: unset;
  flex-shrink: 0;
  display: grid;
  place-content: center;
  cursor: pointer;
  height: 4.5rem;
  padding-inline: 2rem;
}
.c-freeWordSearchBox__submit--icon svg{
  width: 100%;
  aspect-ratio: 1;
}
.c-keyword-panel{
  margin-top: 3rem;
}
.c-keyword-panel__heading{
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
}
.c-keyword-panel__list{
  margin-top: 1.96rem;
  display: flex;
  justify-content: center;
  gap: 1rem 1.2rem;
  flex-wrap: wrap;
}
.c-keyword-panel__item{
  padding: 1.4rem 2rem 1.2rem;
  display: grid;
  place-content: center;
  font-size: 1.4rem;
  line-height: 1;
  border-radius: 6px;
  border: 1px solid #A0A0A0;
  background-color: #fff;
}

@media screen and (min-width: 768px) {

}

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

  .c-freeWordSearchBox{
    max-width: 100%;
    width: 100%;
  }
}


/* ハンバーガー内 */
@media screen and (max-width: 991px) {
  .s-header-navBlok__nav{
    background-color: var(--color-primary-bg);
  }
  .s-header-userNav{
    padding-inline: 0;
  }
  .s-header-userNav__navLink{
    border-bottom: unset;
  }
  .s-header-userNav__navlist{
    display: flex;
    flex-direction: column;
    gap: .4rem;
  }
  .s-header-userNav__navlist a{
    padding:1rem 2rem;
    display: grid;
    grid-template-columns: 3rem auto;
    gap: 1rem;
    align-items: center;

    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: var(--fw-semibold);
  }
  .s-header-userNav__navlist a:before{
    content: '';
    width: 3rem;
    aspect-ratio: 1;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .s-header-userNav__navlist a[data-role="login"]:before{
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2230%22%20height%3D%2230%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_22008%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2022008%22%20transform%3D%22translate(12729%20-2218)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_42%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2042%22%20width%3D%2230%22%20height%3D%2230%22%20transform%3D%22translate(-12729%202218)%22%20fill%3D%22none%22%2F%3E%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_8%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%208%22%20cx%3D%226.89%22%20cy%3D%226.89%22%20r%3D%226.89%22%20transform%3D%22translate(-12720.843%202221.431)%22%20fill%3D%22none%22%20stroke%3D%22%23363229%22%20stroke-width%3D%221.7%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_509%22%20data-name%3D%22%E3%83%91%E3%82%B9%20509%22%20d%3D%22M351.188%2C67.851a10.288%2C10.288%2C0%2C0%2C1%2C9.328-5.8%2C10.15%2C10.15%2C0%2C0%2C1%2C9.267%2C5.8%22%20transform%3D%22translate(-13074.452%202176.649)%22%20fill%3D%22none%22%20stroke%3D%22%23363229%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.7%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')
  }
  .s-header-userNav__navlist a[data-role="favorite"]:before{
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2230%22%20height%3D%2230%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_22009%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2022009%22%20transform%3D%22translate(12729%20-2272)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_5568%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%205568%22%20width%3D%2230%22%20height%3D%2230%22%20transform%3D%22translate(-12729%202272)%22%20fill%3D%22none%22%2F%3E%20%3Cpath%20id%3D%22Icon_ionic-md-heart-empty%22%20data-name%3D%22Icon%20ionic-md-heart-empty%22%20d%3D%22M20.487%2C4.5a6.981%2C6.981%2C0%2C0%2C0-5.311%2C2.491A6.981%2C6.981%2C0%2C0%2C0%2C9.866%2C4.5a6.417%2C6.417%2C0%2C0%2C0-6.491%2C6.531c0%2C4.511%2C4.011%2C8.131%2C10.088%2C13.714l1.714%2C1.543%2C1.714-1.543c6.077-5.583%2C10.088-9.2%2C10.088-13.714A6.417%2C6.417%2C0%2C0%2C0%2C20.487%2C4.5ZM15.9%2C23.184l-.238.221-.488.443-.488-.443-.238-.221a72.118%2C72.118%2C0%2C0%2C1-6.962-6.922C5.9%2C14.293%2C5.2%2C12.682%2C5.2%2C11.031A4.719%2C4.719%2C0%2C0%2C1%2C6.541%2C7.666a4.618%2C4.618%2C0%2C0%2C1%2C3.325-1.35A5.2%2C5.2%2C0%2C0%2C1%2C13.787%2C8.16l1.39%2C1.651%2C1.39-1.651a5.184%2C5.184%2C0%2C0%2C1%2C3.921-1.844%2C4.64%2C4.64%2C0%2C0%2C1%2C3.331%2C1.35%2C4.729%2C4.729%2C0%2C0%2C1%2C1.345%2C3.365c0%2C1.645-.709%2C3.262-2.292%2C5.231A72.264%2C72.264%2C0%2C0%2C1%2C15.9%2C23.184Z%22%20transform%3D%22translate(-12729.375%202271.5)%22%20fill%3D%22%23363229%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')
  }
  .s-header-userNav__navlist a[data-role="mail-magazine"]:before{
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2230%22%20height%3D%2230%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_22010%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2022010%22%20transform%3D%22translate(12729%20-2325)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_5568%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%205568%22%20width%3D%2230%22%20height%3D%2230%22%20transform%3D%22translate(-12729%202325)%22%20fill%3D%22none%22%2F%3E%20%3Cg%20id%3D%22Icon_feather-mail%22%20data-name%3D%22Icon%20feather-mail%22%20transform%3D%22translate(-12728%202326)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_3410%22%20data-name%3D%22%E3%83%91%E3%82%B9%203410%22%20d%3D%22M5.113%2C6h16.9a2.119%2C2.119%2C0%2C0%2C1%2C2.113%2C2.113V20.792A2.119%2C2.119%2C0%2C0%2C1%2C22.018%2C22.9H5.113A2.119%2C2.119%2C0%2C0%2C1%2C3%2C20.792V8.113A2.119%2C2.119%2C0%2C0%2C1%2C5.113%2C6Z%22%20fill%3D%22none%22%20stroke%3D%22%23363229%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.7%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_3411%22%20data-name%3D%22%E3%83%91%E3%82%B9%203411%22%20d%3D%22M24.131%2C9%2C13.565%2C16.4%2C3%2C9%22%20transform%3D%22translate(0%20-0.887)%22%20fill%3D%22none%22%20stroke%3D%22%23363229%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.7%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')
  }
  .s-header-userNav__navlist a[data-role="logout"]:before{
    background-repeat: unset;
    background-size: unset;
  }

  .m-common-acc-headding{
    padding: 2rem;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: .1em;
    font-weight: var(--fw-semibold);
    background-color: #fff;
    display: grid;
    grid-template-columns: auto 2.4rem;
    align-items: center;
  }
  .m-common-acc-headding::after{
    content: '';
    width: 2.4rem;
    aspect-ratio: 1;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_22011%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2022011%22%20transform%3D%22translate(355%20340)%20rotate(180)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_5735%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%205735%22%20width%3D%2224%22%20height%3D%2224%22%20transform%3D%22translate(331%20316)%22%20fill%3D%22none%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_3379%22%20data-name%3D%22%E3%83%91%E3%82%B9%203379%22%20d%3D%22M4453.375%2C5245.5l6.349-6.349%2C6.349%2C6.349%22%20transform%3D%22translate(-4116.875%20-4914.651)%22%20fill%3D%22none%22%20stroke%3D%22%23363229%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
    transform: rotate3d(1, 0, 0, 0);
    transition: transform var(--transition-default);
  }

  .is-open-acc.m-accordion__container .m-common-acc-headding::after{
    transform: rotate3d(1, 0, 0, 180deg);
  }

  .m-accordion__body {
    display: grid;
    grid-template-rows: 0fr;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    grid-template-columns: 1fr;
  }
  .is-open-acc.m-accordion__container > .m-accordion__body {
    grid-template-rows: 1fr;
  }
  .m-accordion__body--inner{
    overflow: hidden;
  }
  .m-accordion__body--contents{
    margin-top: 1rem;
  }
  .s-header-categoryNav__navLink,
  .s-header-contentsNav__navLink{
    border: unset;
  }
  .m-common-acc__link-text{
    padding: 1.2rem 2rem 1.4rem;
    border: unset;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: .1em;
  }
  
}
/* ===============================================
  * Footer *
=============================================== */
.s-footer{
  padding-block: 5rem 4rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../../../assets/img/common/footer/footer_bg_sp.jpg);
  /* font-family: var(--ff-noto-sans); */
}
.c-footer-logo{
  margin-inline: auto;
  max-width: 30rem;
  display: block;
}
.s-footer__nav{
  max-width: 100%;
}
.s-footer-sns__list{
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.s-footer-sns__item{
  width: 2rem;
}
.s-footer-tel-area{
  margin-top: 2rem;
}
.s-footer-tel-area dl{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .82rem;
}
.s-footer-tel-area dt{
  font-size: 1.2rem;
  line-height: 1;
}
.s-footer-tel-area dd a{
  display: grid;
  grid-template-columns: 2.467rem auto;
  gap: .8rem;
  align-items: center;
  font-family: var(--font-en);
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: .07em;
  font-weight: var(--fw-bold);
}
.s-footer-tel-area dd a::before{
  content: '';
  width: 2.467rem;
  height: 1.618rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224.667%22%20height%3D%2216.184%22%20viewBox%3D%220%200%2024.667%2016.184%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_22016%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2022016%22%20transform%3D%22translate(-115.25%20-6197.408)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_524%22%20data-name%3D%22%E3%83%91%E3%82%B9%20524%22%20d%3D%22M0%2C88.032v2.523a14.544%2C14.544%2C0%2C0%2C1%2C5.306.992q.438.173.85.371a13.446%2C13.446%2C0%2C0%2C1%2C2.008-.769%2C14.765%2C14.765%2C0%2C0%2C1%2C4.17-.593%2C14.55%2C14.55%2C0%2C0%2C1%2C5.329.992q.438.173.849.371a13.456%2C13.456%2C0%2C0%2C1%2C2.008-.769%2C14.772%2C14.772%2C0%2C0%2C1%2C4.147-.593V88.032Z%22%20transform%3D%22translate(115.25%206109.376)%22%20fill%3D%22%23363229%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_525%22%20data-name%3D%22%E3%83%91%E3%82%B9%20525%22%20d%3D%22M320.59%2C209.853a3.067%2C3.067%2C0%2C0%2C0%2C4.78%2C2.543%2C3.06%2C3.06%2C0%2C0%2C0%2C1.353-2.543%2C2.616%2C2.616%2C0%2C0%2C0-.2-.964%2C4.25%2C4.25%2C0%2C0%2C0-.61-1.04%2C7.753%2C7.753%2C0%2C0%2C0-2.259-1.883%2C8.336%2C8.336%2C0%2C0%2C0-1.855%2C1.418A4.607%2C4.607%2C0%2C0%2C0%2C320.745%2C209%2C2.561%2C2.561%2C0%2C0%2C0%2C320.59%2C209.853Z%22%20transform%3D%22translate(-189.895%205997.123)%22%20fill%3D%22%23363229%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_526%22%20data-name%3D%22%E3%83%91%E3%82%B9%20526%22%20d%3D%22M21.513%2C175.294a6.185%2C6.185%2C0%2C0%2C1%2C1.409%2C2.19%2C4.152%2C4.152%2C0%2C0%2C1%2C.245%2C1.381%2C4.656%2C4.656%2C0%2C1%2C1-9.312%2C0%2C4.416%2C4.416%2C0%2C0%2C1%2C.534-2.041%2C6.943%2C6.943%2C0%2C0%2C1%2C1.406-1.812%2C9.68%2C9.68%2C0%2C0%2C1%2C1.008-.825c-.243-.089-.493-.173-.75-.249a13.19%2C13.19%2C0%2C0%2C0-3.72-.528%2C13.007%2C13.007%2C0%2C0%2C0-4.471.777%2C9.325%2C9.325%2C0%2C0%2C1%2C1.294%2C1.108%2C6.19%2C6.19%2C0%2C0%2C1%2C1.409%2C2.19%2C4.147%2C4.147%2C0%2C0%2C1%2C.246%2C1.381%2C4.656%2C4.656%2C0%2C1%2C1-9.312%2C0%2C4.418%2C4.418%2C0%2C0%2C1%2C.534-2.041%2C6.945%2C6.945%2C0%2C0%2C1%2C1.407-1.812%2C9.653%2C9.653%2C0%2C0%2C1%2C1.008-.825c-.244-.089-.493-.173-.75-.249a13.2%2C13.2%2C0%2C0%2C0-3.7-.528V185.48H24.667V173.409a13.011%2C13.011%2C0%2C0%2C0-4.448.777A9.322%2C9.322%2C0%2C0%2C1%2C21.513%2C175.294Z%22%20transform%3D%22translate(115.25%206028.112)%22%20fill%3D%22%23363229%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_527%22%20data-name%3D%22%E3%83%91%E3%82%B9%20527%22%20d%3D%22M64.118%2C209.853A3.067%2C3.067%2C0%2C0%2C0%2C68.9%2C212.4a3.061%2C3.061%2C0%2C0%2C0%2C1.353-2.543%2C2.624%2C2.624%2C0%2C0%2C0-.2-.964%2C4.263%2C4.263%2C0%2C0%2C0-.61-1.04%2C7.759%2C7.759%2C0%2C0%2C0-2.26-1.883%2C8.329%2C8.329%2C0%2C0%2C0-1.855%2C1.418A4.607%2C4.607%2C0%2C0%2C0%2C64.273%2C209%2C2.557%2C2.557%2C0%2C0%2C0%2C64.118%2C209.853Z%22%20transform%3D%22translate(54.221%205997.123)%22%20fill%3D%22%23363229%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')
}
.s-footer-tel__notice{
  margin-top: 1.2rem;
  font-size: 1.2rem;
  letter-spacing: .05em;
  line-height: 1;
  text-align: center;
}
.c-button-area--fax{
  margin-top: 2rem;
  /* padding-inline: 6.2rem; */
}
a.c-button--fax{
  margin-inline: auto;
  padding: 1.45rem 0;
  width: 100%;
  color: #fff;
  font-size: 1.2rem;
  font-weight: var(--fw-regular);
  font-family: var(--font-main);
  line-height: 1;
  letter-spacing: .1em;
  display: grid;
  place-content: center;
  background-color: var(--color-text-default);
  border-radius: 2rem;
  width: var(--button-common-size);
}
.s-footer-contents__links{
  margin-top: 4.5rem;
}
.s-footer-contents__links-inner{
  display: flex;
  flex-wrap: wrap;
  gap: 4.7rem 2rem;
}
.s-footer-link-list{
  width: calc(50% - 1rem);
  display: flex;
  flex-direction: column;
  gap: 2.6rem;

  font-size: 1.3rem;
  line-height: 1;
}
.s-footer__copy{
  margin-top: 4.2rem;
  font-size: 1rem;
  line-height: 1;
  font-weight: var(--fw-regular);
  text-align: center;
}

.c-pop--mail-magazine{
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: var(--zindex-hamburgermenu-contents);
  font-family: var(--font-main);
  opacity: 1;
  transition: opacity var(--transition-default);
}
.c-pop--mail-magazine.c-pop--mail-magazine--hidden{
  opacity: 0;
  pointer-events: none;
}
.c-pop--mail-magazine__inner{
  position: relative;
}
.c-button-pop-close{
  padding: 0;
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  border-radius: 99%;
  /* background-color: rgba(0,0,0,.3);
  border: 1px solid var(--color-secondary); */
  background-color: rgba(0, 0, 0, .1);
  border: 1px solid var(--color-bg-active);
  overflow: hidden;
  width: 3.5rem;
  aspect-ratio: 1;
  z-index: 2;
}
.c-pop--mail-magazine__contents{
  /* padding: 2.8rem 1.6rem;
  background-color: #F7EFD2;
  border-radius: 0 1.2rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: center; */
  max-width: 14rem;
}
.icon-pop--mail-magazine{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon-pop--mail-magazine svg{
  width: 4rem;
}
.icon-pop--mail-magazine figcaption{
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: .1em;
}
.c-common-title.c-common-title--pop{
  grid-gap: 0;
}
.c-common-title.c-common-title--pop .c-common-title--jp{
  font-size: 2.4rem;
}
.c-common-title.c-common-title--pop .c-common-title--en{
  font-size: 1rem;
}
.c-button--mail-magazine,
a.c-button--mail-magazine{
  margin-top: 1rem;
  padding-block: 1.2rem;
  background-color: var(--color-text-default);
  color: #fff;
  display: grid;
  place-content: center;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: .1em;
  border-radius: 4em;
  width: 100%;
}
.c-button--page-top{
  padding: 0;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: var(--zindex-hamburgermenu-contents);
  border-radius: 99%;
  background-color: rgba(0,0,0,.3);
  border: 1px solid var(--color-secondary);
  overflow: hidden;
  width: 4rem;
  aspect-ratio: 1;
}

@media screen and (min-width: 768px) {
  .s-footer{
    padding-block: 5rem;
    background-image: url(../../../assets/img/common/footer/footer_bg_pc.jpg);
  }
  .s-footer-contents-list{
    display: flex;
    /* grid-template-columns: 30rem 1fr; */
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
  }
  .s-footer-sns__list{
    justify-content: flex-start;
  }
  .s-footer-tel-area{
    margin-top: 3rem;
  }
  .s-footer-tel-area dl{
    justify-content: flex-start;
    gap: 2rem;
  }
  .s-footer-tel-area dd a{
    grid-template-columns: 1.929rem auto;
    gap: 1rem;
    font-size: 2rem;
  }
  .s-footer-tel-area dd a::before{
    width: 1.929rem;
    height: 1.266rem;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2219.289%22%20height%3D%2212.656%22%20viewBox%3D%220%200%2019.289%2012.656%22%3E%20%3Cg%20id%3D%22%E3%83%95%E3%83%AA%E3%83%BC%E3%82%BF%E3%82%99%E3%82%A4%E3%83%A4%E3%83%AB%E3%81%AE%E3%82%A2%E3%82%A4%E3%82%B3%E3%83%B3%22%20transform%3D%22translate(0%20-88.032)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_524%22%20data-name%3D%22%E3%83%91%E3%82%B9%20524%22%20d%3D%22M0%2C88.032v1.973a11.373%2C11.373%2C0%2C0%2C1%2C4.149.775q.343.135.664.29a10.514%2C10.514%2C0%2C0%2C1%2C1.57-.6%2C11.546%2C11.546%2C0%2C0%2C1%2C3.261-.464%2C11.378%2C11.378%2C0%2C0%2C1%2C4.167.775q.343.135.664.29a10.523%2C10.523%2C0%2C0%2C1%2C1.57-.6%2C11.552%2C11.552%2C0%2C0%2C1%2C3.243-.464V88.032Z%22%20fill%3D%22%23363229%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_525%22%20data-name%3D%22%E3%83%91%E3%82%B9%20525%22%20d%3D%22M320.59%2C209.006a2.4%2C2.4%2C0%2C0%2C0%2C3.738%2C1.989%2C2.393%2C2.393%2C0%2C0%2C0%2C1.058-1.988%2C2.046%2C2.046%2C0%2C0%2C0-.154-.754%2C3.324%2C3.324%2C0%2C0%2C0-.477-.813%2C6.063%2C6.063%2C0%2C0%2C0-1.767-1.473%2C6.519%2C6.519%2C0%2C0%2C0-1.451%2C1.109%2C3.6%2C3.6%2C0%2C0%2C0-.826%2C1.264A2%2C2%2C0%2C0%2C0%2C320.59%2C209.006Z%22%20transform%3D%22translate(-308.512%20-113.491)%22%20fill%3D%22%23363229%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_526%22%20data-name%3D%22%E3%83%91%E3%82%B9%20526%22%20d%3D%22M16.823%2C174.883a4.837%2C4.837%2C0%2C0%2C1%2C1.1%2C1.712%2C3.246%2C3.246%2C0%2C0%2C1%2C.192%2C1.08%2C3.641%2C3.641%2C0%2C1%2C1-7.282%2C0%2C3.453%2C3.453%2C0%2C0%2C1%2C.418-1.6%2C5.43%2C5.43%2C0%2C0%2C1%2C1.1-1.417%2C7.569%2C7.569%2C0%2C0%2C1%2C.788-.645c-.19-.07-.386-.135-.586-.195a10.314%2C10.314%2C0%2C0%2C0-2.909-.413%2C10.172%2C10.172%2C0%2C0%2C0-3.5.607%2C7.292%2C7.292%2C0%2C0%2C1%2C1.012.866%2C4.84%2C4.84%2C0%2C0%2C1%2C1.1%2C1.712%2C3.243%2C3.243%2C0%2C0%2C1%2C.192%2C1.08%2C3.641%2C3.641%2C0%2C1%2C1-7.282%2C0%2C3.455%2C3.455%2C0%2C0%2C1%2C.417-1.6%2C5.431%2C5.431%2C0%2C0%2C1%2C1.1-1.417%2C7.548%2C7.548%2C0%2C0%2C1%2C.788-.645c-.191-.07-.386-.135-.586-.195A10.319%2C10.319%2C0%2C0%2C0%2C0%2C173.409v9.44H19.289v-9.44a10.174%2C10.174%2C0%2C0%2C0-3.478.607A7.29%2C7.29%2C0%2C0%2C1%2C16.823%2C174.883Z%22%20transform%3D%22translate(0%20-82.16)%22%20fill%3D%22%23363229%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_527%22%20data-name%3D%22%E3%83%91%E3%82%B9%20527%22%20d%3D%22M64.118%2C209.006a2.4%2C2.4%2C0%2C0%2C0%2C3.738%2C1.989%2C2.394%2C2.394%2C0%2C0%2C0%2C1.058-1.988%2C2.052%2C2.052%2C0%2C0%2C0-.154-.754%2C3.333%2C3.333%2C0%2C0%2C0-.477-.813%2C6.068%2C6.068%2C0%2C0%2C0-1.767-1.473%2C6.513%2C6.513%2C0%2C0%2C0-1.451%2C1.109%2C3.6%2C3.6%2C0%2C0%2C0-.826%2C1.264A2%2C2%2C0%2C0%2C0%2C64.118%2C209.006Z%22%20transform%3D%22translate(-61.702%20-113.491)%22%20fill%3D%22%23363229%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')
  }
  .s-footer-tel__notice{
    font-size: 1rem;
    text-align: left;
  }
  .c-button-area--fax{
    margin-top: 2rem;
    padding-inline: 0;
  }



  .s-footer-contents__company{
    flex-shrink: 0;
  }
  .s-footer-contents__links{
    margin-top: 0;
    width: 100%;
    max-width: 82rem;
  }

  .s-footer-contents__links-inner{
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    /* gap: 7.6923%; */
    gap: 2rem;
  }
  .s-footer-link-list{
    width: 100%;
    gap: 2.6rem;

    font-size: 1rem;
    line-height: 1.3;
  }
  .s-footer-link-list a{
    width: fit-content;
  }

  /* .s-footer-link-list[data-link-list="02"]{
    margin-left: 16.66666%;
  }
  .s-footer-link-list[data-link-list="03"]{
    margin-left: 15.38461%;
  }
  .s-footer-link-list[data-link-list="04"]{
    margin-left: 20.51282%;
  } */
  .s-footer__copy{
    margin-top: 5.4rem;
    text-align: right;
  }
  a.c-button--fax{
    margin-inline: 0 auto;
  }
  /* .c-pop--mail-magazine{
    bottom: 2rem;
    left: 2rem;
  } */
  .c-pop--mail-magazine__contents{
    max-width: 20rem;
  }
  .c-button-pop-close{
    width: 4rem;
    top: -1.75rem;
    right: -1.75rem;
  }

  .c-pop--mail-magazine__contents{
    position: relative;
  }
  .c-bg-magazine__contents{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    background-color: #fff;
    z-index: -1;
    border-radius: 1.2rem;
  }

  .c-button--common-footer{
    cursor: pointer;
  }

}
@media (min-width: 600px) {
   a[href^="tel"] {
    pointer-events: none;
   }
}


@media (hover: hover){
  .c-hover--primary-color{
    background-color: var(--color-primary);
    transition: background var(--transition-default);
  }
  .c-hover--primary-color:hover{
    --color-primary: #D0BB48;
    opacity: 1;
  }
}

/** 
 * #c-breadcrumb-list
 */
 .c-breadcrumb-list {
  font-size: 1rem;
  letter-spacing: .1em;
}
 .c-breadcrumb-item:last-child {
  color: var(--color-text-default);
 }
 .c-breadcrumb-item:not(:last-child):after {
  content: "";
  margin-right: 0.4rem;
  margin-left: .4rem;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../../assets/img/common/bread_slit.svg);
  background-repeat: no-repeat;
  background-size: 1.5rem;
}



/* =============================================================
    Product Slider
============================================================= */
.c-common-section--product-slider{
    padding-bottom: 6rem;
}
.c-product-slider {
    margin-top: 3rem;
}
.c-slide-product__inner{
    border: 1px solid #CCCCCC;
    padding-block: .5rem 2rem;
    height: 100%;
    display: block;
}
.c-product-head{
    padding-inline: .5rem;
}
.c-product-body{
    margin-top: 1.4rem;
    padding-inline: 1rem;
}
.p-homeSection .c-product-head__link {
    display: flex;
    aspect-ratio: 1;
}
.c-product-head__picture{
    display: block;
    position: relative;
    width: 100%;
}
.c-product-slider .c-product-head__picture::before {
  content: none;
}
.c-product-slider .c-product-head__link img {
    position: initial;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}
.c-product-slider .slider-arrow__wrap{
    margin-top: 0;
}
[data-section="recommended"] .c-product-head__rank{
    display: none;
}
.c-product-head__rank{
    padding-top: .8rem;
    clip-path: polygon(0% 0%, 100% 0, 100% 100%, 50% 88%, 0% 100%);
    top: 0;
    left: 0;
    z-index: 2;
    min-width: 2.4rem;
    height: 3.3rem;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: var(--fw-regular);
    align-items: flex-start;
    background-color: #A0A0A0;
}
.c-product-head__rank[data-num="1"]{
    background-color: var(--color-primary);
}
.c-product-head__rank[data-num="2"]{
    background-color: #56869B;
}
.c-product-head__rank[data-num="3"]{
    background-color: #A2624F;
}
.c-product-sIcon{
    gap: .4rem .6rem;
}
.m-productLine-col2-md4-scroll__item,
.c-slide-product__inner{
    position: relative;
}
.c-product-body__title{
    margin-top: 0.4rem;
}
.c-product-body__title-name{
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: .1em;
}

@media screen and (min-width: 768px) {
    .c-common-section--product-slider{
        padding-bottom: 8rem;
    }
    .c-slide-product__inner{
        padding-block: 1rem 2rem;
    }
    .c-product-body{
        padding-inline: 2rem;
    }
}
@media screen and (max-width: 767px) {
    .c-product-slider.l-container{
        padding-inline: 0;
    }
    .c-product-head{
        padding-inline: 1rem;
    }

}

/* =============================================================
    Product Item
============================================================= */
.c-product-body__price{
    margin-top: 1.2rem;
}
.c-product-body__price-subsc,
.c-product-body__price--subscriptionnotfirst,
.c-product-body__price--subscriptionregular{
    color: var(--color-primary);
}
.c-product-body__price-subsc,
.c-product-body__price.c-product-body__price--discount{
    display: flex;
    align-items: baseline;
    gap: .4rem;
    flex-wrap: wrap;
}
.c-product .c-product-body .c-product-body__price-subsc-icon,
.c-product .c-product-body .c-product-body__price-discount-icon{
    font-size: 1.3rem;
    line-height: 1;
    letter-spacing: .1em;
    font-family: var(--ff-noto-sans);

    border-radius: unset;
    padding: unset;
    border: unset;
    font-weight: var(--fw-regular);
    color: inherit;
}
.c-product-body__price,
.c-product-body__price-subsc-price,
.c-product-body__price-discount-price{
    font-size: 2rem;
    line-height: 1;
    letter-spacing: .01em;
    font-family: var(--font-en);
    display: flex;
    align-items: baseline;
    gap: .2rem;
}
.c-product-body__price:not(:has(.c-product-body__price-subsc-price))::before,
.c-product-body__price-subsc-price::before,
.c-product-body__price-discount-price:before{
    content: '¥';
    font-size: 1.6rem;
    line-height: 1;
}
.c-product-body__price.c-product-body__price--discount::before{
    content: unset;
}
.taxLabel{
    font-size: 1rem;
    font-family: var(--ff-noto-sans);
    line-height: 1;
    margin-left: .6rem;
}

.hidden-ranking-section{
  display: none;
}

.recently-viewed-products .m-productLine-col2-md4-scroll{
  gap: 1.4rem;
}

.recently-viewed-products .m-productLine-col2-md4-scroll__item{
  display: block;
  width: 12.5rem;
  padding-block: 0.2rem 2rem;
  height: 100%;
  border: 0;
}

.recently-viewed-products .c-product-head,
.recently-viewed-products .m-productLine-col2-md4-scroll__item .c-product-body{
  padding-inline: 0;
}

.recently-viewed-products .m-productLine-col2-md4-scroll__item{
  transition: opacity var(--transition-default);
}

.recently-viewed-products .c-product-head__picture::before{ padding-top: 100%;}

@media screen and (min-width: 768px) {
  .recently-viewed-products .c-product-body__title-name,
  .recently-viewed-products .c-product-body__price{
    padding: 0 0.7rem;
  }

  .recently-viewed-products .m-productLine-col2-md4-scroll{
    gap: 1.8rem;
  }

  .recently-viewed-products .m-productLine-col2-md4-scroll__item{
    width: calc(calc(100% - 9rem) / 6);
  }
}

/* =============================================================
    News
============================================================= */
.p-page-newsList .c-common-title{
  margin-bottom: 3rem;
}
.p-newsList-content__article-date-posted{
  margin-bottom: 1rem;
}


/* =============================================================
  矢印
============================================================= */

.c-pager__prev,
.c-pager__next{
    margin-block: auto;
    padding: 0;
    width: 4rem;
    aspect-ratio: 1;
    border-radius: 99%;
    overflow: hidden;
    background-color: rgba(0,0,0,.1);
    border: 1px solid var(--color-bg-active);
}



@media (hover: hover){
    .s-header-utilityList__item,
    .c-button--fax,
    .c-keyword-panel__item,
    .c-button--mail-magazine,
    .c-button--hover-default{
      transition: background var(--transition-default);
    }
    .s-header-utilityList__item:has(.s-header-utilityList__icon:hover){
      background-color: var(--color-bg-active);
    }
    .c-button--fax:hover{
      background-color: var(--color-secondary);
      opacity: 1;
    }
    .c-keyword-panel__item:hover,
    .c-button--hover-default:hover{
      background-color: var(--color-bg-active);
      opacity: 1;
    }

    .c-pager__prev,
    .c-pager__next{
      transition: background var(--transition-default);
    }
    .slider-arrow:hover,
    .c-pager__prev:hover,
    .c-pager__next:hover{
        background-color: rgba(0,0,0,.3);
    }
    .c-pager__prev:hover,
    .c-pager__next:hover{
      transition: background var(--transition-default);
      opacity: 1;
    }
    .c-pop--mail-magazine__contents a,
    .c-footer-logo,
    .c-common-item,
    .s-footer-sns__item a,
    .c-button--page-top{
      transition: opacity var(--transition-default);
    }
    .c-footer-logo:hover,
    .c-common-item:hover,
    .s-footer-sns__item a:hover,
    .c-pop--mail-magazine__contents a:hover,
    .c-button--page-top:hover{
      opacity: var(--hover-opacity);
    }
    /* [data-section="feature"] .c-common-item:hover{
        --hover-opacity:.7;
        opacity: var(--hover-opacity);
    } */
    .s-header-utilityList__icon:hover,
    .m-productLine-col2-md4-scroll__item:hover,
    .c-slide-product__inner:hover,
    .c-product-head__picture:hover{
        opacity: 1;
    }

    .recently-viewed-products .m-productLine-col2-md4-scroll__item:hover::after{
      display: none !important;
    }
    .recently-viewed-products .m-productLine-col2-md4-scroll__item:hover{
      opacity: 0.8;
    }

    .m-productLine-col2-md4-scroll__item:after,
    .c-slide-product__inner::after{
      content: '';
      position: absolute;
      top: -1px;
      left: -1px;
      display: block;
      width: calc(100% + 2px);
      height: calc(100% + 2px);
      border: 4px solid var(--color-primary);
      pointer-events: none;
      transition: opacity var(--transition-default);
      opacity: 0;
    }
    .m-productLine-col2-md4-scroll__item:hover::after,
    .c-slide-product__inner:hover::after{
        opacity: 1;
    }
    
    .s-header-categoryNav__navLink > a{
      transition: text-decoration var(--transition-default);
    }
    .c-text-link--underline:hover,
    .s-information-contents__list a:hover,
    .s-user-contents__list a:hover,
    .s-header-ticker--text-item:hover,
    .s-header-ticker-bottom-text-item:hover,
    .s-header-categoryNav__navLink > a:hover,
    .s-footer-link-list a:hover{
      text-decoration: underline;
      opacity: 1;
    }

    .c-button--mail-magazine:hover {
      background-color: var(--color-secondary);
      opacity: 1;
      color: #fff;
    }
    .c-button-pop-close{
      cursor: pointer;
      transition: background var(--transition-default);
    }
    .c-button-pop-close:hover{
      /* background-color: rgba(0,0,0,.5); */
      background-color: rgba(0, 0, 0, .3);
    }
    .c-product-body__title .c-product-body__title-name:hover{
      opacity: 1;
    }

}