@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* -----------------------------------------------
common
----------------------------------------------- */
html {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}
body {
  color: #000;
  line-height: 1.5;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
.inner__wrap {
  margin-inline: auto;
}
.parts__hidden {
  display: none;
}
.fs-c-productPrice__addon::before {
  content: '（'!important;
  margin-right: -0.2em;
}
.fs-c-productPrice__addon::after {
  content: '）'!important;
  margin-left: -0.2em;
}

body:not(:has(header.sougou)) .footer__common__nav {
  display: none;
}

@media (max-width: 767px) {
  :root {
    --vw: calc(100vw / 375); /* ●●● = 基準値、vwの計算に使用：calc(var(--vw) * px) */
  }
  .pc__only {
    display: none;
  }
  body {
    font-size: 14px;
  }
  main {
    padding-bottom: 28px;
  }
  .inner__wrap {
    width: 89.33%;
  }
}

@media (min-width: 768px) {
  :root {
    --vw: calc(100vw / 1160); /* ●●● = 基準値、vwの計算に使用：calc(var(--vw) * px) */
  }
  .sp__only {
    display: none;
  }
  body {
    font-size: 16px;
  }
  main {
    padding-bottom: 81px;
  }
  .inner__wrap {
    max-width: calc(1120px + 40px);
    width: 100%;
    padding: 0 20px;
  }
}

@media (any-hover: hover) {
  a,
  button {
    transition: all .3s;
    cursor: pointer;
  }
  a:hover,
  button:hover {
    opacity: 0.8;
  }
}

/* -----------------------------------------------
見出し
----------------------------------------------- */
.head__inner {
  margin-inline: auto;
}
.head__bg-border .head__inner {
  border-bottom: 1px solid #6a1684;
}
.head__bg-border .head__inner > * {
  background: #6a1684;
  color: #fff;
  display: inline-block;
}

.title__wrap {
  position: relative;
  z-index: 1;
}
.title__wrap::before {
  content: '';
  width: 100vw;
  height: 100%;
  background-color: #F1E8F3;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  z-index: -1;
}
.title__wrap .inner__wrap {
  position: relative;
  height: 100%;
}
.title__wrap h1 {
  margin: 0!important;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.title__wrap h1 strong {
  font-weight: bold;
}
.title__wrap h1 span {
  font-weight: bold;
  color: #6A1684;
  border-bottom: 1px solid #6A1684;
}
.title__wrap .sb {
  position: absolute;
  right: 0;
}

@media (max-width: 767px) {
  .head__bg-border {
    margin-bottom: 20px;
  }
  .head__bg-border .head__inner > * {
    font-size: 16px;
    margin-left: 15px;
    border-radius: 5px 5px 0 0;
    padding: 0.13em 0.5em;
  }
  .head__bg-border h3 span {
    font-size: .68em;
    padding-left: 1em;
  }
  
  .title__wrap {
    height: 130px;
    margin-bottom: 22px;
  }
  .title__wrap h1 {
    gap: 3px 0;
  }
  .title__wrap h1 strong {
    font-size: 20px;
  }
  .title__wrap h1 span {
    font-size: 11px;
    padding: 0 0 0.05em;
  }
  .title__wrap .sb {
    bottom: -25px;
    width: 59.25%;
    max-width: 198px;
  }
}

@media (min-width: 768px) {
  .head__inner {
    max-width: 1120px;
    width: calc(100% - 40px);
  }
  .head__bg-border .head__inner > * {
    font-size: 30px;
    border-radius: 8px 8px 0 0;
    height: 56px;
    line-height: 56px;
    padding-inline: 18px;
  }
  .head__bg-border .head__inner > * span {
    font-size: .6em;
    padding-left: 1em;
  }
  
  .title__wrap {
    height: 240px;
    margin-bottom: 60px;
  }
  .title__wrap h1 {
    gap: 6px 0;
  }
  .title__wrap h1 strong {
    font-size: 40px;
  }
  .title__wrap h1 span {
    font-size: 22px;
    padding: 0 0.28em 0.1em;
  }
  .title__wrap .sb {
    bottom: -14px;
    width: 35.62%;
  }
  .title__wrap .sb__02 {
    bottom: -49px;
    width: 22.32%;
  }
}

/* -----------------------------------------------
header
----------------------------------------------- */
header {
  position: relative;
  width: 100%;
}
html:has(body.menu__open),
body.menu__open {
  height: 100%;
  overflow: hidden;
}
#nav__toggle {
  aspect-ratio: 1 / 1;
  border: none;
  padding: 0;
  z-index: 10;
}
#nav__toggle span {
  left: 50%;
  transform: translateX(-50%);
  display: block;
  background: #fff;
  position: absolute;
  transition: transform .6s ease-in-out, top .5s ease;
}
body.menu__open #nav__toggle span:nth-child(1) {
  transform: translateX(-50%) rotate(45deg);
}
body.menu__open #nav__toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}
body.menu__open #nav__toggle span:nth-child(3) {
  transform: translateX(-50%) rotate(-45deg);
}
.search .search__form__wrap {
  background: rgba(0, 0, 0, .38);
  width: 100vw;
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  display: none;
}
.header__serach__open .search .search__form__wrap {
  display: block;
}
.search .search__form__wrap form {
  position: relative;
}
.search .search__form__wrap input {
  border-radius: 50vh;
  display: block;
  background-color: #fff;
}
.search .search__form__wrap input:focus {
  box-shadow: none;
}
.search .search__form__wrap button {
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  border: none;
}
.common__nav__wrap .nav__acc__content__wrap {
  display: none;
}
.header__icon__nav .true.login {
  display: none;
}
.header__icon__nav .false.mypage {
  display: none;
}
.header__top__nav button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
}
.realshop__link a {
  background-color: #6A1684;
}
.realshop__link span {
  color: #fff;
}
.header__nav__wrap {
  background-color: #fff;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transition: all 0.5s;
  width: 100vw;
  max-width: 375px;
  position: absolute;
  right: 0;
  padding: 10px 20px 44px;
  overflow-y: scroll;
  z-index: 10;
}
body.menu__open .header__nav__wrap {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}
.header__nav__close {
  display: none;
  width: 100vw;
  position: absolute;
  left: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 9;
}
body.menu__open .header__nav__wrap, body.menu__open .header__nav__close {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}
.header__nav__wrap .name__wrap {
  font-size: 14px;
  margin-bottom: 20px;
}
.header__nav__wrap .header__icon__nav {
  margin-bottom: 30px;
}
.header__nav__wrap .header__icon__nav li:is(.mypage, .login, .members, .shop) + li:is(.mypage, .login, .members, .shop) {
  margin-top: 10px;
}
.header__nav__wrap .header__icon__nav :is(.mypage, .login, .members, .shop) a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 50px;
  font-size: 14px;
  padding: 0 65px;
}
.header__nav__wrap .header__icon__nav :is(.mypage, .login) a {
  border: 1px solid #000000;
}
.header__nav__wrap .header__icon__nav .members a {
  border: 1px solid #6A1684;
  background-color: #6A1684;
  color: #fff;
}
.header__nav__wrap .header__icon__nav .shop a {
  border: 1px solid #F0E7F2;
  background-color: #F0E7F2;
}
.header__nav__wrap .header__icon__nav :is(.mypage, .login, .members, .shop) a picture {
  position: absolute;
  top: 50%;
  left: 15px;
  translate: 0 -50%;
  width: 39px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__nav__wrap .header__icon__nav :is(.mypage, .login) a picture img {
  width: 21px;
}
.header__nav__wrap .header__icon__nav .favorite {
  margin-top: 15px;
}
.header__nav__wrap .header__icon__nav :is(.favorite, .cart) {
  border-bottom: 1px solid #EDEDED;
}
.header__nav__wrap .header__icon__nav :is(.favorite, .cart) a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 15px;
  width: 100%;
  min-height: 50px;
  padding-left: 15px;
  padding-right: 25px;
  font-size: 14px;
}
.header__nav__wrap .header__icon__nav :is(.favorite, .cart) picture {
  width: 24px;
}
.header__nav__wrap .header__icon__nav :is(.favorite, .cart) span {
  flex: 1;
}
.header__nav__wrap .header__icon__nav :is(.shop, .favorite, .cart) a {
  position: relative;
}
.header__nav__wrap .header__icon__nav :is(.shop, .favorite, .cart) a::after {
  content: '';
  width: 10px;
  aspect-ratio: 1/1;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  position: absolute;
  top: 50%;
  right: 10px;
  translate: 0 -50%;
  rotate: 45deg;
}
.header__nav__wrap .common__nav__wrap {
  margin-bottom: 20px;
}
.header__nav__wrap .common__nav__wrap li.active .nav__acc__content__wrap {
  display: block;
}
.header__nav__wrap .common__nav__wrap .common__nav__heading {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 30px;
  background-color: #363636;
  color: #fff;
  padding: 0 13px;
  font-size: 13px;
}
.header__nav__wrap .common__nav__wrap .nav > li > a {
  font-size: 13px;
  min-height: 50px;
  padding: 0 25px 0 13px;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid #EDEDED;
}
.header__nav__wrap .common__nav__wrap .nav > li > a:not(.nav__acc__sw)::before {
  content: '';
  width: 10px;
  aspect-ratio: 1/1;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  position: absolute;
  top: 50%;
  right: 10px;
  translate: 0 -50%;
  rotate: 45deg;
}
.header__nav__wrap .common__nav__wrap .nav > li > a.nav__acc__sw::before {
  content: '';
  width: 11px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  right: 8px;
  translate: 0 -50%;
}
.header__nav__wrap .common__nav__wrap .nav > li > a.nav__acc__sw::after {
  content: '';
  width: 1px;
  height: 11px;
  background-color: #000;
  position: absolute;
  top: 50%;
  right: 13px;
  translate: 0 -50%;
}
.header__nav__wrap .common__nav__wrap .nav > li.active > a.nav__acc__sw::after {
  content: none;
}
.header__nav__wrap .common__nav__wrap .nav__acc__content__wrap {
  background-color: #F8F8F8;
  padding: 12px 13px;
  font-size: 13px;
}
.header__nav__wrap .common__nav__wrap .nav__acc__content__wrap li + li {
  margin-top: 0.6em;
}
.header__nav__wrap .common__nav__wrap .nav__acc__content__wrap a {
  padding: 0.25em 1em;
  display: inline-block;
}
.header__nav__wrap .sub__nav__wrap {
  font-size: 13px;
}
.header__nav__wrap .sub__nav__wrap li + li {
  margin-top: 0.7em;
}
.header__nav__wrap .sub__nav__wrap a {
  padding: 0.25em 0 0.25em 15px;
  display: inline-block;
  position: relative;
}
.header__nav__wrap .sub__nav__wrap a::before {
  content: '';
  width: 5px;
  height: 10px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
.fs-l-page:not(:has(> nav.fs-c-breadcrumb)) .fs-l-main #fs-page-error-container:has(*) {
  padding-top:30px;
}

@media (max-width: 1159px) {
  .header__pc__only {
    display: none;
  }
  header {
    border-bottom: 1px solid #E6E6E6;
  }
  header:before {
    content: "";
    display: block;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right,  
    #4e4256 0%,#4e4256 12.53%,
    #a4c9e6 12.53%,#a4c9e6 25.06%,
    #8898aa 25.06%,#8898aa 37.59%,
    #494766 37.59%,#494766 50.12%,
    #9f9aae 50.12%,#9f9aae 62.65%,
    #8e8ca4 62.65%,#8e8ca4 75.18%,
    #7d8e8d 75.18%,#7d8e8d 87.71%,
    #d6d4e1 87.71%, #d6d4e1 100%);
  }
  .header__inner {
    width: 94.14%;
    height: 53px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 min(3.2vw, 12px);
    padding-right: calc(53px + min(2.13vw, 8px));
  }
  .header__inner .header__logo {
    width: min(37.87vw, 142);
  }
  .header__inner .header__logo a {
    display: flex;
    align-items: flex-end;
    gap: 0 min(1.6vw, 6px);
  }
  .header__inner .header__logo picture {
    width: min(21.6vw, 81px);
  }
  .header__inner .header__logo span.ja {
    font-size: min(2.93vw, 11px);
    line-height: 1.09;
    margin-bottom: 0.1em;
  }
  .header__top__nav {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 0 10px;
  }
  header .search {
    line-height: 1;
  }
  header .search__button {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    width: min(6.93vw, 26px);
  }
  .search .search__form__wrap {
    height: 48px;
  }
  .search .search__form__wrap form {
    width: 70.67%;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .search .search__form__wrap input {
    width: 100%;
    height: 34px;
    font-size: 14px;
    line-height: 1;
    padding-inline: 10px 45px;
    border: 1px solid #000;
  }
  .search .search__form__wrap button {
    width: 34px;
    right: 10px;
    background: url(../images/common/icon_search.svg) center / contain no-repeat;
  }
  .shutto__lang__select {
    position: relative;
  }
  .shutto__lang__select:after {
    content: '';
    display: block;
    position: absolute;
    top: calc(50% - 2px);
    right: 0;
    background: url(../images/common/lang_arrow.svg) 50% / contain no-repeat;
    width: min(2.67vw, 10px);
    height: min(1.87vw, 7px);
  }
  .shutto__lang__select .shutto__select {
    border: none;
    font-size: min(3.47vw, 13px);
    padding-right: 1em;
  }
  .shutto__lang__select .shutto__select:focus {
    box-shadow: none;
  }
  .header__top__nav .header__icon__nav {
    display: none;
  }
  #nav__toggle {
    width: 53px;
    height: 53px;
    position: absolute;
    top: 0px;
    right: 0;
    background: url(../images/common/toggle-btn_bg.svg) 50% / 44px auto no-repeat;
  }
  #nav__toggle span {
    width: 15px;
    height: 1px;
  }
  #nav__toggle span:nth-child(1) {
    top: 22px;
  }
  #nav__toggle span:nth-child(2) {
    top: 27px;
  }
  #nav__toggle span:nth-child(3) {
    top: 32px;
  }
  body.menu__open #nav__toggle span:nth-child(1) {
    top: 28px;
  }
  body.menu__open #nav__toggle span:nth-child(3) {
    top: 28px;
  }
  .realshop__link {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    width: 83px;
    z-index: 2;
  }
  .realshop__link a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    min-height: 29px;
    border-radius: 0 0 5px 5px;
    border-top: 2px solid #C3A2CE;
  }
  .realshop__link span.ja {
    font-size: 7px;
  }
  .realshop__link span.en {
    font-size: 6px;
    margin-top: 1px;
    font-weight: 500;
  }
  .header__nav__wrap {
    height: calc(100svh - 59px);
    top: 59px;
  }
  .header__nav__close {
    height: calc(100svh - 59px);
    top: 59px;
  }
}

@media (min-width: 1160px) {
  .header__sp__only {
    display: none;
  }
  header:before {
    content: "";
    display: block;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right,  
    #4e4256 0%,#4e4256 5.6%,
    #a4c9e6 5.6%,#a4c9e6 11.2%,
    #8898aa 11.2%,#8898aa 16.8%,
    #494766 16.8%,#494766 22.4%,
    #9f9aae 22.4%,#9f9aae 28.0%,
    #8e8ca4 28.0%,#8e8ca4 33.6%,
    #7d8e8d 33.6%,#7d8e8d 39.2%,
    #d6d4e1 39.2%, #d6d4e1 44.8%,
    #4e4256 44.8%,#4e4256 50.4%,
    #a4c9e6 50.4%,#a4c9e6 56.0%,
    #8898aa 56.0%,#8898aa 61.6%,
    #494766 61.6%,#494766 67.2%,
    #9f9aae 67.2%,#9f9aae 72.8%,
    #8e8ca4 72.8%,#8e8ca4 78.4%,
    #7d8e8d 78.4%,#7d8e8d 84.0%,
    #d6d4e1 84.0%, #d6d4e1 89.6%,
    #4e4256 89.6%,#4e4256 95.2%,
    #a4c9e6 95.2%,#a4c9e6 100%);
  }
  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
  }
  .header__inner .header__logo {
    width: 372px;
  }
  .header__inner .header__logo a {
    display: flex;
    align-items: flex-end;
    gap: 0 9px;
    white-space: nowrap;
  }
  .header__inner .header__logo picture {
    width: 120px;
  }
  .header__inner .header__logo span.en {
    font-size: 24px;
    line-height: 1;
  }
  .header__inner .header__logo span.ja {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 0.1em;
  }
  .realshop__link {
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
    width: 166px;
  }
  .realshop__link a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    min-height: 58px;
    border-radius: 0 0 10px 10px;
    border-top: 4px solid #C3A2CE;
  }
  .realshop__link span.ja {
    font-size: 13px;
  }
  .realshop__link span.en {
    font-size: 11px;
    margin-top: 2px;
    font-weight: 500;
  }
  .header__inner .header__top__nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0 30px;
  }
  .header__inner .search {
    width: 36px;
    height: 36px;
  }
  .search .search__button {
    width: 100%;
  }
  .search .search__form__wrap {
    height: 80px;
  }
  .search .search__form__wrap form {
    max-width: calc(1120px + 40px);
    width: 100%;
    padding: 0 20px;
    margin-inline: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
  }
  .search .search__form__wrap input {
    width: 438px;
    height: 54px;
    font-size: 16px;
    line-height: 1;
    padding-inline: 20px 70px;
    border: 1px solid #000;
  }
  .search .search__form__wrap button {
    width: 50px;
    right: 42px;
    background: url(../images/common/icon_search.svg) center / contain no-repeat;
  }
  .search .search__form__wrap button:hover {
    opacity: .8;
  }
  .shutto__lang__select {
    position: relative;
  }
  .shutto__lang__select:after {
    content: '';
    display: block;
    position: absolute;
    top: calc(50% - 2px);
    right: 0;
    background: url(../images/common/lang_arrow.svg) 50% / contain no-repeat;
    width: 10px;
    height: 7px;
  }
  .shutto__lang__select .shutto__select {
    border: none;
    font-size: 12px;
    padding-right: 1.5em;
  }
  .shutto__lang__select .shutto__select:focus {
    box-shadow: none;
  }
  #nav__toggle {
    width: 72px;
    height: 72px;
    position: relative;
    background: url(../images/common/toggle-btn_bg.svg) 50% / contain no-repeat;
  }
  #nav__toggle span {
    width: 25px;
    height: 2px;
  }
  #nav__toggle span:nth-child(1) {
    top: 28px;
  }
  #nav__toggle span:nth-child(2) {
    top: 36px;
  }
  #nav__toggle span:nth-child(3) {
    top: 44px;
  }
  body.menu__open #nav__toggle span:nth-child(1) {
    top: 35px;
  }
  body.menu__open #nav__toggle span:nth-child(3) {
    top: 35px;
  }
  header > .common__nav__wrap {
    background: #f3f3f3;
  }
  header > .common__nav__wrap .nav {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
  }
  header > .common__nav__wrap .nav li a {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    text-align: center;
    font-size: 13px;
    min-height: 60px;
  }
  /* header > .common__nav__wrap .nav li a.current {
    color: #fff;
    background: #6a1684;
  } */
  header > .common__nav__wrap .nav li {
    position: relative;
    width: calc(100% / 7);
  }
  header > .common__nav__wrap .nav li:first-child:before,
  header > .common__nav__wrap .nav li:after {
    content: "";
    position: absolute;
    top: calc(50% - 15px);
    width: 1px;
    height: 30px;
    background: #000;
  }
  header > .common__nav__wrap .nav li:after {
    right: 0;
  }
  .header__top__nav .header__icon__nav ul {
    display: flex;
    gap: 0 30px;
  }
  .header__top__nav .header__icon__nav li img {
    height: 32px;
  }
  .header__top__nav .header__icon__nav li.members,
  .header__top__nav .header__icon__nav li.shop {
    display: none;
  }
  .header__top__nav .header__icon__nav li span {
    display: none;
  }
  .header__nav__wrap {
    height: calc(100svh - 88px);
    top: 88px;
  }
  .header__nav__close {
    height: calc(100svh - 88px);
    top: 88px;
  }
}

@media (any-hover: hover) {
  header > .common__nav__wrap .nav li a:hover {
    opacity: 1;
    color: #fff;
    background: #6a1684;
  }
}

/* -----------------------------------------------
ショッピングガイド
----------------------------------------------- */
.guide__wrap {
  background: rgba(106,22,132, .1);
}
.guide__heading {
  text-align: center;
}
.guide__heading strong {
  font-weight: normal;
  display: block;
}
.guide__heading span {
  display: block;
}
.guide__link__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.guide__link__list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
}
.guide__link__list a span {
  text-align: center;
}

@media (max-width: 767px) {
  .guide__wrap {
    padding: 30px 0 50px;
  }
  .guide__heading {
    margin-bottom: 20px;
  }
  .guide__heading strong {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .guide__heading span {
    font-size: 11px;
  }
  .guide__wrap p {
    width: 74.63%;
    margin: 0 auto 16px;
    font-size: 11px;
    line-height: 1.61;
  }
  .guide__link__list {
    gap: 0 3.47%;
    width: 79.1%;
    margin-inline: auto;
  }
  .guide__link__list a {
    border-radius: 5px;
    padding: 5px 5px 7px;
    gap: 6px 0;
  }
  .guide__link__list a picture {
    width: 77.33%;
  }
  .guide__link__list a span {
    font-size: 8px;
  }
}

@media (min-width: 768px) {
  .guide__wrap {
    padding: 46px 0 50px;
  }
  .guide__heading {
    margin-bottom: 34px;
  }
  .guide__heading strong {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .guide__heading span {
    font-size: 16px;
  }
  .guide__wrap p {
    max-width: 762px;
    margin: 0 auto 49px;
    font-size: 16px;
    line-height: 1.5;
  }
  .guide__link__list {
    gap: 0 49px;
    max-width: 833px;
    margin-inline: auto;
  }
  .guide__link__list a {
    border-radius: 10px;
    padding: 24px 10px 14px;
    gap: 38px 0;
  }
  .guide__link__list a picture {
    width: 66.66%;
  }
  .guide__link__list a span {
    font-size: 20px;
  }
}

/* -----------------------------------------------
店舗情報
----------------------------------------------- */
.shop__cap_01 { grid-area: shop__cap_01; }
.shop__cap_02 { grid-area: shop__cap_02; }
.shop__cap_03 { grid-area: shop__cap_03; }
.shop__img_01 { grid-area: shop__img_01; }
.shop__img_02 { grid-area: shop__img_02; }
.shop__cap_03 dd div strong:before {
  content: "■";
  color: #6a1684;
}
.shop__link__list li a {
  background: #975ca9;
  border-radius: 50vh;
  color: #fff;
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
}

@media (max-width: 767px) {
  .shop__wrap {
    padding: 19px 0 38px;
  }

  .shop__wrap__container {
    display: grid;
    grid-template-columns: 38.65% 41.79%; 
    grid-template-rows: auto auto auto auto; 
    gap: 0px 3.58%; 
    grid-template-areas:
      "shop__cap_01 shop__img_02"
      "shop__cap_02 shop__cap_02"
      "shop__img_01 shop__img_01"
      "shop__cap_03 shop__cap_03";
    margin-bottom: 28px;
    justify-content: center;
  }
  .shop__cap_01 {
    font-size: 11px;
    line-height: 1.61;
  }
  .shop__cap_02 dt,
  .shop__cap_03 dt {
    overflow-x: hidden;
  }
  .shop__cap_02 dl dt span,
  .shop__cap_03 dl dt span {
    font-size: 14px;
    padding-right: 0.5em;
    margin-bottom: 0.2em;
    display: inline-block;
    position: relative;
  }
  .shop__cap_02 dl dt span::after,
  .shop__cap_03 dl dt span::after {
    content: '';
    width: 100vw;
    height: 1px;
    background-color: #6A1684;
    position: absolute;
    top: 50%;
    left: 100%;
    translate: 0 -50%;
  }
  .shop__cap_02 dl dd,
  .shop__cap_03 dl dd {
    font-size: 13px;
  }
  .shop__cap_02 {
    padding-top: 6px;
  }
  .shop__cap_03 {
    padding-top: 18px;
  }
  .shop__cap_03 dd div + div {
    padding-top: 4px;
  }
  .shop__cap_03 dd ul li {
    margin-bottom: 2px;
    white-space: nowrap;
  }
  .shop__img_01 {
    padding-top: 12px;
  }
  
  .shop__link__list li {
    width: 160px;
    margin-inline: auto;
  }
  .shop__link__list li + li {
    margin-top: 16px;
  }
  .shop__link__list li a {
    font-size: 14px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .shop__wrap {
    padding: 78px 0 64px;
  }

  .shop__wrap__container {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto auto;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
      "shop__cap_01 shop__cap_01 shop__cap_01"
      "shop__cap_02 shop__img_01 shop__img_02"
      "shop__cap_03 shop__img_01 shop__img_02";
    padding-top: 60px;
    margin-bottom: 77px;
  }

  .shop__cap_01 {
    text-align: center;
    font-size: 13px;
    line-height: 1.538;
    margin-bottom: 54px;
  }
  .shop__cap_02,
  .shop__cap_03 {
    font-size: 13px;
    padding-left: 20px;
  }
  .shop__cap_02 dl dt,
  .shop__cap_03 dl dt {
    font-size: 16px;
    margin-bottom: 2px;
  }
  .shop__cap_02 {
    padding-top: 3px;
  }
  .shop__cap_03 {
    padding-top: 104px;
  }
  .shop__cap_03 dd div + div {
    padding-top: 10px;
  }
  .shop__cap_03 dd ul li {
    margin-bottom: 2px;
  }
  .shop__img_01,
  .shop__img_02 {
    width: 92%;
    justify-self: end; 
  }
  .shop__img_01 {
    max-width: 388px;
  }
  .shop__img_02 {
    max-width: 320px;
  }

  ul.shop__link__list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .shop__link__list li {
    width: 240px;
    margin-inline: 35px;
  }
  .shop__link__list li a {
    font-size: 20px;
    height: 48px;
    line-height: 48px;
  }
}

/* -----------------------------------------------
FOLLOW US
----------------------------------------------- */
.follow__wrap {
  background: #f3f3f3;
}
.follow__wrap .follow__list__wrap {
  margin-inline: auto;
}
.follow__list__wrap .head__inner {
  position: relative;
}
.follow__list__wrap .head__inner:after {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/common/follow_us_panda.svg) 50% / contain no-repeat;
  aspect-ratio: 114 / 133;
  height: auto;
}
.follow__list__wrap .head__inner h3 {
  color: #6a1684;
  text-align: center;
}
.follow__list li a {
  display: block;
  border-radius: 50vh;
  box-shadow: 10px 10px 20px 6px rgba(0, 0, 0, .2);
  overflow: hidden;
  width: 100%;
  height: auto;
}
.follow__insta {
  margin-top: 40px;
}
.follow__fx strong {
  display: block;
}
.follow__fx__X .twitter-timeline {
  width: 100%!important;
  overflow: hidden;
}
.follow__fx__X .twitter-timeline iframe {
  width: 100%!important;
  height: auto!important;
}
.follow__fx__tokubai .tokubai__wrap {
  width: 100%!important;
  overflow: auto;
}
/* .follow__fx__tokubai .tokubai__wrap iframe {
  width: 100%!important;
  height: auto!important;
} */

@media (max-width: 767px) {
  .follow__wrap {
    padding: 26px 0 18px;
  }
  .follow__list__wrap {
    width: 89.33%;
    margin-inline: auto;
  }
  .follow__list__wrap .head__inner:after {
    width: 50px;
    right: 0;
    bottom: -6px;
  }
  .follow__list__wrap .head__inner h3 {
    font-size: 15px;
  }
  .follow__list__container {
    padding-top: 18px;
  }
  .follow__list__container .follow__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 3.73%;
  }
  .follow__list li {
    width: 10.74%;
  }
  .follow__insta {
    margin-top: 40px;
  }
  .follow__fx {
    width: 74.67%;
    margin-inline: auto;
    padding: 22px 0 0;
  }
  .follow__fx > div {
    width: 100%;
  }
  .follow__fx > div + div {
    margin-top: 20px;
  }
  .follow__fx strong {
    margin-bottom: 5px;
    width: 95%;
  }
  .follow__fx__X .twitter-timeline {
    aspect-ratio: 560 / 340;
  }
  .follow__fx__tokubai .tokubai__wrap {
    aspect-ratio: 560 / 340;
  }
}

@media (min-width: 768px) {
  .follow__wrap {
    padding: 38px 0 104px;
  }
  .follow__list__wrap {
    max-width: calc(1006px + 40px);
    width: 100%;
    padding: 0 20px;
  }
  .follow__list__wrap .head__inner:after {
    width: 114px;
    right: 0;
    bottom: -6px;
  }
  .follow__list__wrap .head__inner h3 {
    font-size: 30px;
  }
  .follow__list__container {
    padding-top: 43px;
  }
  .follow__list__container .follow__list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    max-width: 868px;
    margin-inline: auto;
  }
  .follow__list li {
    width: 9.908%;
    max-width: 86px;
  }
  .follow__fx {
    max-width: calc(1022px + 40px);
    width: 100%;
    padding: 90px 20px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    margin-inline: auto;
  }
  .follow__fx > div {
    width: 48.7%;
  }
  .follow__fx strong {
    margin-bottom: 23px;
    width: 98.38%;
  }
  .follow__fx__X .twitter-timeline {
    aspect-ratio: 495 / 416;
  }
  .follow__fx__tokubai .tokubai__wrap {
    aspect-ratio: 495 / 416;
  }
}

/* -----------------------------------------------
ABOUT US
----------------------------------------------- */
.about__wrap {
  background: #f0e8f3;
}
.about__list li a {
  background: #fff;
  text-align: center;
  display: block;
}
.about__wrap .head__inner {
  position: relative;
}
.about__wrap .head__inner:after {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/common/about_us_panda.svg) 50% / contain no-repeat;
  aspect-ratio: 146 / 286;
  height: auto;
}
.about__list__container .about__list {
  margin-inline: auto;
}

@media (max-width: 767px) {
  .about__wrap {
    padding: 18px 0 22px;
  }
  .about__wrap .head__inner:after {
    width: 59px;
    left: 5px;
    top: calc(100% + 18px);
  }
  .about__list__container {
    width: 79.4%;
    margin-inline: auto;
  }
  .about__list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  .about__list li {
    width: 30.08%;
  }
  .about__list li a {
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .about__list li a strong {
    font-size: 12px;
    padding: 0 0 2px;
  }
  .about__list li a img  {
    width: 75%;
    height: auto;
  }
}

@media (min-width: 768px) {
  .about__wrap {
    padding: 78px 0 76px;
  }
  .about__wrap .head__inner:after {
    width: 146px;
    right: 96.7%;
    top: calc(50% - 119px);
  }
  .about__list__container {
    padding: 68px 0 0;
  }
  .about__list {
    max-width: 794px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: stretch;
    align-items: stretch;
  }
  .about__list li {
    width: 25.19%;
    max-width: 200px;
  }
  .about__list li a {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .about__list li a strong {
    font-size: 20px;
    padding: 8px 0 14px;
  }
  .about__list li a img  {
    max-width: 140px;
    width: 70%;
    height: auto;
  }
}

/* -----------------------------------------------
footer
----------------------------------------------- */
footer .footer__container {
  background: #f3f3f3;
}
.footer__logo__wrap .footer__logo {
  display: block;
}
.footer__nav ul li a:before {
  content: "・";
}
p.copy {
  text-align: center;
}

@media (max-width: 767px) {
  footer .footer__container {
    padding: 20px 0 1px;
  }
  .footer__fx {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    margin-bottom: 18px;
  }
  .footer__logo__wrap {
    flex: 1;
  }
  .footer__logo__wrap .footer__logo {
    margin-bottom: 8px;
    width: 80px;
  }
  .footer__logo__wrap ul li {
    font-size: 13px;
    font-weight: 600;
  }
  .footer__fx .footer__nav {
    width: 148px;
  }
  .footer__nav ul li {
    font-size: 14px;
    white-space: nowrap;
    text-align: right;
  }
  .footer__nav ul li + li {
    margin-top: 5px;
  }
  p.copy {
    font-size: 10px;
  }
}

@media (min-width: 768px) {
  footer * {
    font-size: 13px;
  }
  footer .footer__container {
    padding: 40px 0 10px;
  }
  .footer__fx {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  .footer__logo__wrap .footer__logo {
    width: 172px;
    margin-bottom: 20px;
  }
  .footer__logo__wrap ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 16px;
  }
  .footer__logo__wrap ul li {
    margin-right: 3.6em;
  }
  .footer__fx .footer__nav {
    max-width: 340px;
    padding-top: 14px;
  }
  .footer__fx .footer__nav ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: stretch;
    align-items: stretch;
  }
  .footer__nav ul li {
    width: 50%;
    margin-bottom: 15px;
  }
}

/* -----------------------------------------------
パンくず
----------------------------------------------- */
.fs-c-breadcrumb {
  margin-inline: auto;
}
.fs-c-breadcrumb__list {
  padding: 0;
  font-weight: normal;
  display: flex;
  flex-wrap: wrap;
}
.fs-c-breadcrumb__listItem + .fs-c-breadcrumb__listItem {
  position: relative;
}
.fs-c-breadcrumb__listItem + .fs-c-breadcrumb__listItem::before {
  content: "";
  aspect-ratio: 1/1;
  border-top: 1px solid #666666;
  border-right: 1px solid #666666;
  position: absolute;
  top: 0.55em;
  left: 0;
  rotate: 45deg;
  width: 6px;
}

@media (max-width: 767px) {
  .fs-c-breadcrumb {
    padding: 29px 0 31px;
    font-size: 12px;
    width: 89.33%;
  }
  .inner__wrap .fs-c-breadcrumb {
    width: 100%;
  }
  .fs-c-breadcrumb__listItem + .fs-c-breadcrumb__listItem {
    padding-left: 16px;
    margin-left: 4px;
  }
}

@media (min-width: 768px) {
  .fs-c-breadcrumb {
    padding: 29px 20px 31px;
    font-size: 14px;
    max-width: calc(1120px + 40px);
    width: 100%;
  }
  .inner__wrap .fs-c-breadcrumb {
    max-width: none;
    padding: 29px 0 31px;
  }
  .fs-c-breadcrumb__listItem + .fs-c-breadcrumb__listItem {
    padding-left: 16px;
    margin-left: 4px;
  }
}

/* -----------------------------------------------
商品マーク
----------------------------------------------- */
.fs-c-productMark__mark--0 {
  background-color: #6A1684;
  color: #fff;
}
.fs-c-productMark__mark {
  margin: 0;
  border-radius: 50vh;
}

/* -----------------------------------------------
商品一覧
----------------------------------------------- */
.no__slider .fs-c-productListCarousel__list__itemTrack {
  display: grid;
  align-items: flex-start;
}
.no__slider .fs-c-productListCarousel__ctrl {
  display: none;
}
.fs-c-productListItem {
  position: relative;
}
.fs-c-productListItem__viewMoreImageButton {
  display: none;
}
.fs-c-productListItem .fs-c-productName__copy {
  display: none;
}
.fs-c-productListItem .fs-c-button--addToCart--list,
.fs-c-productListItem .fs-c-button--viewProductDetail {
  display: none;
}
.fs-c-productListItem .fs-c-productListItem__productName {
  font-weight: normal;
}
.fs-c-productListItem .fs-c-price {
  justify-content: flex-start;
}
.fs-c-productListItem .fs-c-productPrice--selling {
  display: flex;
  align-items: flex-end;
}
.fs-c-productListItem .fs-c-productPrice__main__price {
  font-family: "Arial";
}
.fs-c-productListItem .fs-c-productPrice--selling .fs-c-productPrice__main__price {
  font-weight: bold;
  color: #C90000!important;
}
.fs-c-productListItem .fs-c-productPrice--selling .fs-c-productPrice__addon {
  color: #C90000!important;
}
.fs-c-productListItem .fs-c-productPrice--listed .fs-c-productPrice__main__price .fs-c-price__value {
  position: relative;
}
.fs-c-productListItem .fs-c-productPrice--listed .fs-c-productPrice__main__price .fs-c-price__value::after {
  content: '';
  background-color: #000;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
}
.fs-c-productListItem :is(.fs-c-button--addToWishList--icon, .fs-c-button--removeFromWishList--icon) {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  position: absolute;
  right: 0;
}
.fs-c-productListItem .review__info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.fs-c-productListItem .review__info .fs-c-reviewStars::before {
  color: #F7CD46;
  font-size: 1.2em;
  line-height: 1.5;
}
.fs-c-productListItem .fs-c-reviewStars[data-ratingCount=""]::before {
  content: "\e91b\e91b\e91b\e91b\e91b";
}
.fs-c-productListItem .fs-c-reviewStars[data-ratingCount=""] + .review__average.fs-c-rating__value + .review__count.fs-c-aggregateRating__count {
  display: none;
}

/* 任意商品、おすすめ商品パーツの並び替え用 */
.fs-c-productListCarousel__list__item {
  display: flex;
  flex-direction: column;
}
.fs-c-productListCarousel__list__item .fs-c-productMarks {
  order: 1;
}
.fs-c-productListCarousel__list__item .fs-c-productListItem__productName {
  order: 2;
}
.fs-c-productListCarousel__list__item .fs-c-productListItem__prices {
  order: 3;
}

@media (max-width: 767px) {
  .no__slider .fs-c-productListCarousel__list__itemTrack {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10.45%;
  }
  .fs-c-productListItem .fs-c-productListItem__imageContainer {
    margin-bottom: 12px;
  }
  .fs-c-productListItem .fs-c-productListItem__productName {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .fs-c-productListItem .fs-c-productMarks {
    margin-bottom: 5px;
  }
  .fs-c-productListItem .fs-c-productMark {
    gap: 6px;
  }
  .fs-c-productListItem .fs-c-productMark__mark {
    padding: 4px 9px;
    font-size: 11px;
  }
  .fs-c-productListItem .fs-c-productPrice--listed {
    margin-bottom: 6px;
  }
  .fs-c-productListItem .fs-c-productPrice--selling {
    padding-right: 25px;
    flex-wrap: wrap;
  }
  .fs-c-productListItem .fs-c-productPrice__main__label {
    font-size: 11px;
    margin-bottom: 2px;
  }
  .fs-c-productListItem .fs-c-productPrice--selling .fs-c-productPrice__main__label {
    margin-bottom: 0;
  }
  .fs-c-productListItem .fs-c-productPrice__main__price {
    gap: 0 0.3em;
  }
  .fs-c-productListItem .fs-c-productPrice--listed .fs-c-productPrice__main__price {
    font-size: 11px;
  }
  .fs-c-productListItem .fs-c-productPrice--selling .fs-c-productPrice__main__price {
    font-size: 16px;
  }
  .fs-c-productListItem .fs-c-productPrice--listed .fs-c-productPrice__main__price .fs-c-price__value::after {
    width: calc(100% + 0.7em);
    height: 1px;
  }
  .fs-c-productListItem .fs-c-productPrice__addon {
    margin-bottom: 0.4em;
    font-size: 11px;
  }
  .fs-c-productListItem :is(.fs-c-button--addToWishList--icon, .fs-c-button--removeFromWishList--icon) {
    width: 23px;
    bottom: 4px;
  }
  .fs-c-productListItem:has(.review__info) :is(.fs-c-button--addToWishList--icon, .fs-c-button--removeFromWishList--icon) {
    bottom: 26px;
  }
  .fs-c-productListItem .review__info {
    margin-top: 9px;
    font-size: 12px;
    gap: 0 18px;
  }
}

@media (min-width: 768px) {
  .no__slider .fs-c-productListCarousel__list__itemTrack {
    grid-template-columns: repeat(5, 1fr);
    gap: 49px 4.375%;
  }
  .fs-c-productListItem .fs-c-productListItem__imageContainer {
    margin-bottom: 22px;
  }
  .fs-c-productListItem .fs-c-productListItem__productName {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 1px;
  }
  .fs-c-productListItem .fs-c-productMarks {
    margin-bottom: 9px;
  }
  .fs-c-productListItem .fs-c-productMark {
    gap: 6px;
  }
  .fs-c-productListItem .fs-c-productMark__mark {
    padding: 4px 9px;
    font-size: 11px;
  }
  .fs-c-productListItem .fs-c-productPrice--listed {
    margin-bottom: 8px;
  }
  .fs-c-productListItem .fs-c-productPrice--selling {
    padding-right: 30px;
    flex-wrap: wrap;
  }
  .fs-c-productListItem .fs-c-productPrice__main__label {
    font-size: 12px;
    margin-bottom: 2px;
  }
  .fs-c-productListItem .fs-c-productPrice__main__price {
    gap: 0 0.3em;
  }
  .fs-c-productListItem .fs-c-productPrice--listed .fs-c-productPrice__main__price {
    font-size: 14px;
  }
  .fs-c-productListItem .fs-c-productPrice--selling .fs-c-productPrice__main__price {
    font-size: 20px;
  }
  .fs-c-productListItem .fs-c-productPrice--listed .fs-c-productPrice__main__price .fs-c-price__value::after {
    width: calc(100% + 0.7em);
    height: 1px;
  }
  .fs-c-productListItem .fs-c-productPrice__addon {
    margin-bottom: 0.4em;
    font-size: 12px;
  }
  .fs-c-productListItem :is(.fs-c-button--addToWishList--icon, .fs-c-button--removeFromWishList--icon) {
    width: 28px;
    bottom: 5px;
  }
  .fs-c-productListItem:has(.review__info) :is(.fs-c-button--addToWishList--icon, .fs-c-button--removeFromWishList--icon) {
    bottom: 26px;
  }
  .fs-c-productListItem .review__info {
    margin-top: 4px;
    font-size: min(1.25vw, 14px);
    gap: 0 min(1.6vw, 18px);
  }
}

/* -----------------------------------------------
フリーページ
----------------------------------------------- */
.freepage__wrap .heading__01 {
  background-color: #6A1684;
  color: #fff;
  font-weight: bold;
}
.freepage__wrap .heading__02 {
  position: relative;
  font-weight: bold;
}
.freepage__wrap .heading__02::before {
  content: '';
  background-color: #6A1684;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
.freepage__wrap .heading__03 {
  font-weight: bold;
}
.freepage__wrap .heading__large {
  font-weight: bold;
  position: relative;
  text-align: center;
}
.freepage__wrap .heading__large::after {
  content: '';
  background-color: #6A1684;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
}
.freepage__wrap .table__01 {
  border-collapse: separate;
}
.freepage__wrap .table__01 th {
  font-weight: 500;
  border-bottom: 1px solid #6A1684;
  text-align: left;
  vertical-align: top;
}
.freepage__wrap .table__01 td {
  border-bottom: 1px solid #F1E8F3;
}
.freepage__wrap .table__02 tr:first-child {
  border-top: 1px solid #6A1684;
}
.freepage__wrap .table__02 tr {
  border-bottom: 1px solid #6A1684;
}
.freepage__wrap .table__02 th {
  font-weight: normal;
  text-align: left;
  background-color: #F5F0FA;
}
.freepage__wrap ul li {
  position: relative;
}
.freepage__wrap ul li::before {
  content: '';
  aspect-ratio: 1/1;
  background-color: #6A1684;
  border-radius: 50%;
  position: absolute;
  left: 0;
}
.freepage__wrap .bg__gray {
  background-color: #F3F3F3;
}
.freepage__wrap .freepage__acc__wrap > div {
  background-color: #fff;
}
.freepage__wrap .freepage__acc__wrap dt {
  font-weight: 500;
}
.freepage__wrap .freepage__acc__wrap dt button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.freepage__wrap .freepage__acc__wrap dt button span {
  flex: 1;
}
.freepage__wrap .freepage__acc__wrap dt button i {
  aspect-ratio: 1/1;
  background-color: #6A1684;
  border-radius: 50%;
  position: relative;
}
.freepage__wrap .freepage__acc__wrap dt button i::before {
  content: '';
  background-color: #fff;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.freepage__wrap .freepage__acc__wrap dt button i::after {
  content: '';
  background-color: #fff;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.freepage__wrap .freepage__acc__wrap dd {
  border-top: 1px dashed #6A1684;
  display: none;
}
.freepage__wrap .freepage__acc__wrap.qa__wrap dt button span,
.freepage__wrap .freepage__acc__wrap.qa__wrap dd span {
  position: relative;
}
.freepage__wrap .freepage__acc__wrap.qa__wrap dd span {
  display: block;
}
.freepage__wrap .freepage__acc__wrap.qa__wrap dt button span::before {
  content: 'Q';
  aspect-ratio: 1/1;
  background-color: #6A1684;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  font-weight: 500;
}
.freepage__wrap .freepage__acc__wrap.qa__wrap dd span::before {
  content: 'A';
  aspect-ratio: 1/1;
  background-color: #F5F0FA;
  color: #6A1684;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  font-weight: 500;
}

/* アコーディオン */
.freepage__wrap .freepage__acc__wrap .active dt button i {
  background-color: #7B7B7B;
}
.freepage__wrap .freepage__acc__wrap .active dt button i::after {
  content: none;
}
.freepage__wrap .freepage__acc__wrap .active dd {
  display: block;
}

@media (max-width: 767px) {
  .freepage__wrap .mb__30 {
    margin-bottom: 25px;
  }
  .freepage__wrap .mb__60 {
    margin-bottom: 45px;
  }
  .freepage__wrap .mb__90 {
    margin-bottom: 60px;
  }
  .freepage__wrap .mb__120 {
    margin-bottom: 70px;
  }
  .freepage__wrap .heading__01 {
    font-size: 14px;
    padding: 0.3em 10px;
    margin-bottom: 16px;
  }
  .freepage__wrap .heading__02 {
    font-size: 14px;
    padding-left: 8px;
    margin-bottom: 15px;
  }
  .freepage__wrap .heading__02::before {
    width: 3px;
    height: 1.5em;
  }
  .freepage__wrap .heading__03 {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .freepage__wrap .heading__04 {
    font-size: 13px;
    margin-bottom: 15px;
  }
  .freepage__wrap .heading__large {
    font-size: 18px;
    padding-bottom: 0.5em;
    margin-bottom: 31px;
  }
  .freepage__wrap .heading__large::after {
    width: 22px;
    height: 1px;
  }
  .freepage__wrap p {
    font-size: 13px;
    line-height: 1.77;
  }
  .freepage__wrap .table__01 {
    border-spacing: 2px;
  }
  .freepage__wrap .table__01 th {
    width: 108px;
    font-size: 13px;
    padding: 0.5em 0.6em 0.5em;
  }
  .freepage__wrap .table__01 td {
    font-size: 13px;
    padding: 0.5em 0.3em 0.5em 0.77em;
  }
  .freepage__wrap .table__02,
  .freepage__wrap .table__02 tbody,
  .freepage__wrap .table__02 tr,
  .freepage__wrap .table__02 th,
  .freepage__wrap .table__02 td {
    display: block;
  }
  .freepage__wrap .table__02 th {
    font-size: 13px;
    padding: 0.6em 1.15em;
  }
  .freepage__wrap .table__02 td {
    font-size: 13px;
    padding: 0.6em 1.15em 2.8em;
  }
  .freepage__wrap ul li {
    padding-left: 13px;
  }
  .freepage__wrap ul li + li {
    margin-top: 15px;
  }
  .freepage__wrap ul li::before {
    width: 10px;
    top: 0.4em;
  }
  .freepage__wrap ol li + li {
    margin-top: 15px;
  }
  .freepage__wrap .bg__gray {
    border-radius: 10px;
    padding: 15px 8px 8px;
  }
  .freepage__wrap .bg__gray [class^="heading__"] {
    padding-left: 5px;
  }
  .freepage__wrap .freepage__acc__wrap > div {
    border-radius: 5px;
  }
  .freepage__wrap .freepage__acc__wrap > div + div {
    margin-top: 5px;
  }
  .freepage__wrap .freepage__acc__wrap dt {
    font-size: 13px;
  }
  .freepage__wrap .freepage__acc__wrap dt button {
    padding: 16px 15px;
    gap: 0 1em;
  }
  .freepage__wrap .freepage__acc__wrap dt button i {
    width: 24px;
  }
  .freepage__wrap .freepage__acc__wrap dt button i::before {
    width: 13px;
    height: 2px;
  }
  .freepage__wrap .freepage__acc__wrap dt button i::after {
    width: 2px;
    height: 13px;
  }
  .freepage__wrap .freepage__acc__wrap dd {
    font-size: 13px;
    line-height: 1.77;
    padding: 11px 0 15px;
    margin-inline: 15px;
  }
  .freepage__wrap .freepage__acc__wrap.qa__wrap dt button span,
  .freepage__wrap .freepage__acc__wrap.qa__wrap dd span {
    padding-left: 40px;
  }
  .freepage__wrap .freepage__acc__wrap.qa__wrap dt button span::before {
    width: 30px;
    top: -5px;
    padding-bottom: 0.3em;
    font-size: 13px;
  }
  .freepage__wrap .freepage__acc__wrap.qa__wrap dd span::before {
    width: 30px;
    top: -5px;
    padding-bottom: 0.3em;
    font-size: 13px;
  }
}

@media (min-width: 768px) {
  .freepage__wrap .mb__30 {
    margin-bottom: 30px;
  }
  .freepage__wrap .mb__60 {
    margin-bottom: 60px;
  }
  .freepage__wrap .mb__90 {
    margin-bottom: 90px;
  }
  .freepage__wrap .mb__120 {
    margin-bottom: 120px;
  }
  .freepage__wrap .heading__01 {
    font-size: 22px;
    padding: 0.6em 0.95em;
    margin-bottom: 30px;
  }
  .freepage__wrap .heading__02 {
    font-size: 20px;
    padding-left: 16px;
    margin-bottom: 30px;
  }
  .freepage__wrap .heading__02::before {
    width: 6px;
    height: 1.5em;
  }
  .freepage__wrap .heading__03 {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .freepage__wrap .heading__04 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .freepage__wrap .heading__large {
    font-size: 32px;
    padding-bottom: 0.4em;
    margin-bottom: 40px;
  }
  .freepage__wrap .heading__large::after {
    width: 45px;
    height: 2px;
  }
  .freepage__wrap p {
    font-size: 16px;
    line-height: 1.875;
  }
  .freepage__wrap .table__01 {
    width: 784px;
    max-width: 100%;
    border-spacing: 4px;
  }
  .freepage__wrap .table__01 th {
    width: 120px;
    font-size: 14px;
    padding: 0.7em 0.57em 1.1em;
  }
  .freepage__wrap .table__01 td {
    font-size: 14px;
    padding: 0.7em 0.57em 1.1em; 
  }
  .freepage__wrap .table__02 {
    width: 892px;
    max-width: 100%;
  }
  .freepage__wrap .table__02 th {
    width: 220px;
    font-size: 16px;
    padding: 1.1em 1em 1.1em 2.37em;
  }
  .freepage__wrap .table__02 td {
    font-size: 16px;
    padding: 1.1em 0 1.1em 2.37em;
  }
  .freepage__wrap ul li {
    padding-left: 21px;
  }
  .freepage__wrap ul li + li {
    margin-top: 10px;
  }
  .freepage__wrap ul li::before {
    width: 16px;
    top: 0.3em;
  }
  .freepage__wrap ol li + li {
    margin-top: 10px;
  }
  .freepage__wrap .bg__gray {
    border-radius: 20px;
    padding: 30px 15px 15px;
  }
  .freepage__wrap .bg__gray [class^="heading__"] {
    padding-left: 15px;
  }
  .freepage__wrap .freepage__acc__wrap > div {
    border-radius: 10px;
  }
  .freepage__wrap .freepage__acc__wrap > div + div {
    margin-top: 10px;
  }
  .freepage__wrap .freepage__acc__wrap dt {
    font-size: 18px;
  }
  .freepage__wrap .freepage__acc__wrap dt button {
    padding: 18px 30px;
    gap: 0 1em;
  }
  .freepage__wrap .freepage__acc__wrap dt button i {
    width: 36px;
  }
  .freepage__wrap .freepage__acc__wrap dt button i::before {
    width: 18px;
    height: 3px;
  }
  .freepage__wrap .freepage__acc__wrap dt button i::after {
    width: 3px;
    height: 18px;
  }
  .freepage__wrap .freepage__acc__wrap dd {
    font-size: 16px;
    line-height: 1.75;
    padding: 20px 0 34px;
    margin-inline: 30px;
  }
  .freepage__wrap .freepage__acc__wrap.qa__wrap dt button span,
  .freepage__wrap .freepage__acc__wrap.qa__wrap dd span {
    padding-left: 56px;
  }
  .freepage__wrap .freepage__acc__wrap.qa__wrap dt button span::before {
    width: 44px;
    top: -10px;
    padding-bottom: 0.3em;
    font-size: 20px;
  }
  .freepage__wrap .freepage__acc__wrap.qa__wrap dd span::before {
    width: 44px;
    top: -10px;
    padding-bottom: 0.3em;
    font-size: 20px;
  }
}

@media (any-hover: hover) {
  .freepage__wrap .freepage__acc__wrap dt button:hover {
      opacity: 1;
  }
}

/* -----------------------------------------------
総合トップ_共通部分
----------------------------------------------- */
/* ヘッダー */
header.sougou > .common__nav__wrap .humb__only {
  display: none;
}
header.sougou > .header__nav__wrap .global__only {
  display: none;
}
header.sougou .header__top__nav .header__icon__nav {
  display: none;
}
header.sougou .header__nav__wrap .header__icon__nav :is(.shop, .favorite, .cart) {
  display: none;
}
header.sougou .header__nav__wrap .common__nav__wrap .common__nav__heading {
  display: none;
}
header.sougou .header__nav__wrap .common__nav__wrap .nav > li > a {
  padding: 0 25px 0 0;
  gap: 0 10px;
}
header.sougou .header__nav__wrap .common__nav__wrap .nav > li > a picture {
  width: 40px;
}
body:has(header.sougou) .guide__wrap {
  display: none;
}

@media (max-width: 1159px) {
  header.sougou .header__top__nav {
    flex-direction: row;
  }
}

@media (min-width: 1160px) {
  header.sougou .header__inner .search {
    width: 320px;
    height: auto;
  }
  header.sougou .search .search__button {
    display: none;
  }
  header.sougou .search .search__form__wrap {
    height: auto;
    background: none;
    width: auto;
    position: static;
    top: 0;
    left: 0;
    translate: 0 0;
    z-index: 2;
    display: block;
  }
  header.sougou .search .search__form__wrap form {
    max-width: none;
    padding: 0;
    margin-inline: auto;
    display: block;
    height: auto;
  }
  header.sougou .search .search__form__wrap input {
    width: 100%;
    height: 40px;
    font-size: 13px;
    padding-inline: 15px 45px;
  }
  header.sougou .search .search__form__wrap button {
    width: 34px;
    right: 10px;
  }
}

/* フッター */
.footer__common__nav .common__nav__wrap .humb__only {
  display: none;
}

@media (max-width: 1159px) {
  .footer__common__nav {
    padding: 19px 0 20px;
  }
  .footer__common__nav .inner__wrap {
    width: 88.8%;
  }
  .footer__common__nav .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 9px 2.7%;
  }
  .footer__common__nav .nav li {
    width: 48.65%;
  }
  .footer__common__nav .nav li a {
    width: 100%;
    min-height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #f3f3f3;
    font-size: 14px;
  }
  .footer__common__nav .nav li a span br {
    display: none;
  }
}

@media (min-width: 1160px) {
  .footer__common__nav .common__nav__wrap {
    background-color: #fff;
  }
  .footer__common__nav .common__nav__wrap .nav {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
  }
  .footer__common__nav .common__nav__wrap .nav li a {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 13px;
    min-height: 60px;
  }
  /* .footer__common__nav .common__nav__wrap .nav li a.current {
    color: #fff;
    background: #6a1684;
  } */
  .footer__common__nav .common__nav__wrap .nav li {
    position: relative;
    width: calc(100% / 7);
  }
  .footer__common__nav .common__nav__wrap .nav li:first-child:before,
  .footer__common__nav .common__nav__wrap .nav li:after {
    content: "";
    position: absolute;
    top: calc(50% - 15px);
    width: 1px;
    height: 30px;
    background: #000;
  }
  .footer__common__nav .common__nav__wrap .nav li:after {
    right: 0;
  }
}

@media (any-hover: hover) {
  .footer__common__nav .common__nav__wrap .nav li a:hover {
    opacity: 1;
    color: #fff;
    background: #6a1684;
  }
}

/* -----------------------------------------------
common-btn
----------------------------------------------- */

.common-btn {
  display: grid;
  place-items: center;
  background-color: #975CA9;
  color: #fff;
  /* widthは各ページでModifierで上書き */
  width: 120px;
  height: 32px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
  text-decoration: none;
  font-size: 11px;
}

@media screen and (min-width:768px) {
  .common-btn {
    height: 48px;
    /* widthは各ページでModifierで上書き */
    width: 180px;
    border-radius: 24px;
    font-size: 16px;
  }
}

.common-btn span {
  position: relative;
}

.common-btn span::after {
  content: "";
  position: absolute;
  background: url("../images/common/arrow_white.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  top: 50%;
  right: -14px;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  width: 10px;
  height: 10px;
}

@media screen and (min-width:768px) {
  .common-btn span::after {
    right: -22px;
    width: 15px;
    height: 15px;
  }
}

/* -----------------------------------------------
fixed__btn
----------------------------------------------- */
.fixed__beginner {
  position: fixed;
  z-index: 8;
}
.fixed__line {
  position: fixed;
  z-index: 8;
}
.fixed__top {
  position: fixed;
  z-index: 8;
}

@media (max-width: 767px) {
  .fixed__beginner {
    width: 68px;
    right: 28px;
    bottom: 30px;
  }
  .fixed__line {
    width: 92px;
    right: 15px;
    bottom: 114px;
  }
}

@media (min-width: 768px) {
  .fixed__beginner {
    width: 105px;
    left: 30px;
    bottom: 30px;
  }
  .fixed__line {
    width: 142px;
    right: 30px;
    bottom: 148px;
    display: none;
  }
  .fixed__top {
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}

/* -----------------------------------------------
ヤマト宅配料金表
----------------------------------------------- */
.freepage__wrap .table__t01 tr:first-child {
  border-top: 1px solid #6A1684;
}
.freepage__wrap .table__t01 tr {
  border-bottom: 1px solid #6A1684;
}
.freepage__wrap .table__t01 th {
  font-weight: normal;
  text-align: left;
  background-color: #F5F0FA;
}

@media  screen and (max-width: 767px) {
  .freepage__wrap .mb__t90 {
    margin-bottom: 60px;
    overflow: auto;
  }
  .freepage__wrap .table__t01 {
    min-width: 892px;
  }
  .freepage__wrap .table__t01 th,
  .freepage__wrap .table__t01 td {
    white-space: nowrap;
  }
}
@media (min-width: 768px) {
  .freepage__wrap .mb__t90 {
    margin-bottom: 90px;
  }
  .freepage__wrap .table__t01 {
    width: 892px;
    max-width: 100%;
  }
  .freepage__wrap .table__t01 th {
    width: 220px;
    font-size: 16px;
    padding: 1.1em 1em 1.1em 2.37em;
  }
  .freepage__wrap .table__t01 td {
    font-size: 16px;
    padding: 1.1em 0 1.1em 2.37em;
  }
}

