@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display&family=Noto+Sans&display=swap);
/*==============================================================================
header
==============================================================================*/

/*---------------------------------
common
---------------------------------*/
.pc {
  display: none;
}

@media screen and (min-width: 960px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}

@media screen and (min-width: 960px) {
  .sp {
    display: none;
  }
}

*:focus {
  outline: none;
}

/*---------------------------------
header-menu
---------------------------------*/
.header-menu {
  display: flex;
  height: 50px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
}

@media screen and (min-width: 960px) {
  .header-menu {
    height: 60px;
  }
}

.header-menu p {
  margin-top: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 9px;
  text-align: center;
  color: #cccccc;
}

@media screen and (min-width: 960px) {
  .header-menu p {
    font-size: 10px;
    margin-top: 9px;
  }
}

.header-menu .header-menu-menu p {
  margin-top: -24px;
}

@media screen and (min-width: 960px) {
  .header-menu .header-menu-menu p {
    margin-top: -19px;
  }
}

.header-menu .fs-clientInfo {
	min-width: 58px;
	position: fixed;
	top: 0;
	left: 60px;
}
@media screen and (min-width: 960px) {
	.header-menu .fs-clientInfo {
		left: 70px;
	}
}

.header-menu-bg {
  min-width: 58px;
  background: linear-gradient(to top, #e8e8e8, #ffffff);
}

@media screen and (min-width: 960px) {
  .header-menu-bg {
    background: #ffffff;
    margin-left: 10px;
    margin-right: 10px;
  }
}

.header-menu-bg.search {
  min-width: 54px;
}

.header-menu-bg.category {
  min-width: 70px;
}

.header-menu-bg.logo {
  width: calc(100% - 220px);
  display: flex;
  justify-content: center;
  background: #ffffff;
	margin-left: 60px;
}

@media screen and (min-width: 960px) {
  .header-menu-bg.logo {
    margin-left: 100px;
  }
}

.header-menu-menu,
.header-menu-point {
  background-color: #ffffff;
  height: 100%;
  min-width: 54px;
  margin-right: 1px;
}

@media screen and (min-width: 960px) {
  .header-menu-menu,
  .header-menu-point {
    min-width: 55px;
  }
}

@media screen and (min-width: 960px) {
  .header-menu-menu,
  .header-menu-point {
    margin-left: 20px;
  }
}

.header-menu-search,
.header-menu-category {
  background-color: #ffffff;
  height: 100%;
  min-width: 54px;
  margin-left: 1px;
}

.header-menu-search {
  min-width: 54px;
}

.header-menu-category {
  min-width: 73px;
}

@media screen and (min-width: 960px) {
  .header-menu-search,
  .header-menu-category {
    min-width: 70px;
    margin-left: 0px;
  }
}

.header-menu-point h4 {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  text-align: center;
  color: #cc0000;
  padding-top: 12px;
}

.header-menu-point h4 span {
  font-size: 11px;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .header-menu-point h4 {
    padding-top: 15px;
    font-size: 15px;
  }
}

.header-menu-logo {
  background-color: #ffffff;
}

.header-menu-logo img {
  width: 70px;
  margin: 10px auto 0;
  display: block;
}

@media screen and (min-width: 960px) {
  .header-menu-logo img {
    width: 100px;
    margin: 7px auto 0;
  }
}

.header-menu-search a img,
.header-menu-category a img {
  width: 14px;
  display: block;
  padding-top: 14px;
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  .header-menu-search a img,
  .header-menu-category a img {
    padding-top: 15px;
    width: 19px;
  }
}

.header-menu-cart {
  display: none;
}

@media screen and (min-width: 960px) {
  .header-menu-cart {
    min-width: 55px;
    display: block;
    margin-right: 40px;
  }
  .header-menu-cart a p {
    margin-left: 6px;
    margin-top: 3px;
  }
  .header-menu-cart a img {
    width: 30px;
    display: block;
    padding-top: 10px;
    margin: 0 auto;
  }
}

/*---------------------------------
hanburger menu
---------------------------------*/
#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display: none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 54px;
  height: 60px;
  vertical-align: middle;
}

/*ハンバーガーの形をCSSで表現*/
#nav-open span,
#nav-open span:before,
#nav-open span:after {
  position: absolute;
  height: 2px;
  /*線の太さ*/
  width: 18px;
  /*長さ*/
  background: #000000;
  display: block;
  content: '';
  cursor: pointer;
  margin-top: 12px;
}

@media screen and (min-width: 960px) {
  #nav-open span,
  #nav-open span:before,
  #nav-open span:after {
    width: 30px;
  }
}

#nav-open span:before {
  bottom: -5px;
}

@media screen and (min-width: 960px) {
  #nav-open span:before {
    bottom: -6px;
  }
}

#nav-open span:after {
  bottom: -10px;
}

@media screen and (min-width: 960px) {
  #nav-open span:after {
    bottom: -12px;
  }
}

#nav-open span {
  margin-left: 18px;
  margin-top: 14px;
}

@media screen and (min-width: 960px) {
  #nav-open span {
    margin-top: 16px;
    margin-left: 12px;
  }
}

/*閉じる用の薄黒箇所*/
#nav-close {
  display: none;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  transition: 0.3s ease-in-out;
}

/*メニューの中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 90%;
  height: 100%;
  background: #ffffff;
  transition: 0.3s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

@media screen and (min-width: 960px) {
  #nav-content {
    width: 400px;
  }
}

/*チェックがついたら表示させる*/
#nav-input:checked ~ #nav-close {
  display: block;
  background-color: rgba(0, 0, 0, 0.6);
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

#nav-close-btn {
  position: absolute;
  top: 6px;
  right: 10px;
  pointer-events: none;
}

@media screen and (min-width: 960px) {
  #nav-close-btn {
    right: unset;
    left: 416px;
  }
}

#nav-close-btn img {
  width: 16px;
  height: 16px;
}

#nav-input:checked ~ #nav-close-btn {
  display: block;
}

/*---------------------------------
accordion
---------------------------------*/
.accordion-heading {
  background-color: #f7f7f7;
  padding: 15px 0 15px 16px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: left;
  color: #000000;
  font-size: 16px;
  letter-spacing: 0.32px;
  border-bottom: solid 0.5px #cccccc;
  position: relative;
}

@media screen and (min-width: 960px) {
  .accordion-heading {
    padding: 15px 0 15px 22px;
    font-size: 20px;
    height: 51px;
  }
}

.accordion-heading span {
  font-size: 13px;
  letter-spacing: 0.26px;
}

@media screen and (min-width: 960px) {
  .accordion-heading span {
    font-size: 16px;
  }
}

.more-nav-btn {
  display: block;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}

.more-nav-btn.active:before {
  display: none;
}

@media screen and (min-width: 960px) {
  .more-nav-btn {
    width: 12px;
    height: 12px;
    right: 12px;
  }
}

.more-nav-btn:before,
.more-nav-btn:after {
  display: flex;
  content: '';
  background-color: #717171;
  border-radius: 10px;
  width: 12px;
  height: 2px;
  position: absolute;
  top: 5px;
  left: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
}

@media screen and (min-width: 960px) {
  .more-nav-btn:before {
    width: 12px;
    height: 2px;
    top: 5px;
  }
}

.more-nav-btn:after {
  width: 2px;
  height: 12px;
  top: 0;
  left: 5px;
}

@media screen and (min-width: 960px) {
  .more-nav-btn:after {
    width: 2px;
    height: 12px;
    left: 5px;
  }
}

.more-nav-btn:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.accordion-one .accordion-header.open .accordion-more-box .more-nav-btn:before {
  content: none;
}

.accordion-one .accordion-header {
  background-color: #ffffff;
  border-bottom: 1px solid #cccccc;
  color: #333333;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
  text-align: left;
  height: 45px;
  display: flex;
  align-items: center;
  padding-left: 8px;
}

@media screen and (min-width: 960px) {
  .accordion-one .accordion-header {
    padding-left: 22px;
    font-size: 18px;
  }
}

@media screen and (min-width: 960px) {
  .accordion-one .accordion-header a {
    font-size: 14px;
  }
}

.accordion-one .accordion-header.link-box > a {
  font-size: 12px;
}

@media screen and (min-width: 960px) {
  .accordion-one .accordion-header.link-box > a {
    font-size: 14px;
  }
}

.accordion-one .accordion-header .accordion-more-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 20px;
  height: 37px;
  margin-top: -20px;
  box-sizing: border-box;
}

.accordion-one .accordion-header .accordion-more-box .more-nav-btn {
  display: block;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}

@media screen and (min-width: 960px) {
  .accordion-one .accordion-header .accordion-more-box .more-nav-btn {
    width: 12px;
    height: 12px;
    right: 12px;
  }
}

.accordion-one .accordion-header.open .accordion-more-box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.accordion-one .accordion-header .accordion-more-box .more-nav-btn:before,
.accordion-one .accordion-header .accordion-more-box .more-nav-btn:after {
  display: flex;
  content: '';
  background-color: #a1a1a1;
  border-radius: 10px;
  width: 9px;
  height: 1px;
  position: absolute;
  top: 4px;
  left: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
}

@media screen and (min-width: 960px) {
  .accordion-one .accordion-header .accordion-more-box .more-nav-btn:before,
  .accordion-one .accordion-header .accordion-more-box .more-nav-btn:after {
    width: 12px;
    height: 2px;
    top: 5px;
  }
}

.accordion-one .accordion-header .accordion-more-box .more-nav-btn:before {
  width: 1px;
  height: 9px;
  top: 0;
  left: 4px;
}

@media screen and (min-width: 960px) {
  .accordion-one .accordion-header .accordion-more-box .more-nav-btn:before {
    width: 2px;
    height: 12px;
    left: 5px;
  }
}

.accordion-one .accordion-header.open .accordion-more-box .more-nav-btn:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.accordion-one .accordion-inner {
  display: none;
  padding: 0;
  box-sizing: border-box;
}

img.menu-icon {
  width: 12px;
  height: 12px;
  margin-right: 6px;
}

@media screen and (min-width: 960px) {
  img.menu-icon {
    width: 20px;
    height: auto;
    margin-right: 12px;
  }
}

.separated-area {
  width: 100%;
  display: flex;
}

@media screen and (min-width: 960px) {
  .separated-area {
    flex-wrap: wrap;
  }
}

.separated-area .accordion-one {
  width: 50%;
  border-right: 1px solid #cccccc;
}

@media screen and (min-width: 960px) {
  .separated-area .accordion-one {
    width: 100%;
    border-right: none;
  }
}

.separated-area .accordion-one:last-child {
  border-right: none;
}

a.display-no-flex:after {
  content: '';
  display: inline-block;
  width: 5.5px;
  height: 8px;
  background: url("../images/arrow-right.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 12px;
  top: 18px;
}

@media screen and (min-width: 960px) {
  a.display-no-flex:after {
    width: 10px;
    height: 13px;
    right: 20px;
  }
}

a.display-flex {
  display: flex;
}

a.display-flex:after {
  content: '';
  display: inline-block;
  width: 5.5px;
  height: 8px;
  background: url("../images/arrow-right.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 12px;
  top: 18px;
}

@media screen and (min-width: 960px) {
  a.display-flex:after {
    width: 10px;
    height: 13px;
    right: 20px;
  }
}

/*---------------------------------
additional accordion 
---------------------------------*/
.accordion-area-2 {
  display: flex;
}

@media screen and (min-width: 960px) {
  .accordion-area-2 {
    flex-wrap: wrap;
  }
}

.accordion-area-2 .accordion-two.accordion-two-flex {
  width: 50%;
}

@media screen and (min-width: 960px) {
  .accordion-area-2 .accordion-two.accordion-two-flex {
    width: 100%;
  }
}

.additional-accordion .accordion-two .additional-accordion-header {
  border-right: 1px solid #cccccc;
  color: #333333;
  font-size: 12px;
  text-align: left;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
  height: 45px;
  display: flex;
  align-items: center;
  padding-left: 8px;
  border-bottom: 1px solid #cccccc;
}

@media screen and (min-width: 960px) {
  .additional-accordion .accordion-two .additional-accordion-header {
    border-right: none;
    padding-left: 22px;
    font-size: 14px;
  }
}

@media screen and (max-width: 374px) {
  .additional-accordion .accordion-two .additional-accordion-header {
    font-size: 10px;
  }
}

.additional-accordion .accordion-two .additional-accordion-header.min-letter {
  letter-spacing: -1.9px;
}

.additional-accordion-header.open {
  background-color: #f7f7f7;
}

.additional-accordion .accordion-two .accordion-header-two {
  border-right: 1px solid #cccccc;
  color: #333333;
  font-size: 12px;
  text-align: left;
  position: relative;
  z-index: +1;
  cursor: pointer;
  height: 45px;
  float: left;
  width: 50%;
  padding-left: 8px;
  border-bottom: 1px solid #cccccc;
  padding-top: 16px;
  background-color: #f7f7f7;
}

@media screen and (min-width: 960px) {
  .additional-accordion .accordion-two .accordion-header-two {
    width: 100%;
    border-right: none;
    padding-left: 55px;
    font-size: 14px;
  }
}

.accordion-more-box {
  position: absolute;
  right: 10px;
}

.additional-accordion .accordion-two .accordion_header:hover {
  opacity: 0.8;
}

.additional-accordion .accordion-two .additional-accordion-inner {
  display: none;
  padding: 0;
  box-sizing: border-box;
  width: 200%;
}

@media screen and (min-width: 960px) {
  .additional-accordion .accordion-two .additional-accordion-inner {
    width: 100%;
  }
}

.additional-accordion-inner.additional-accordion-innner-right {
  margin-left: -100%;
}

@media screen and (min-width: 960px) {
  .additional-accordion-inner.additional-accordion-innner-right {
    margin-left: 0;
  }
}

.additional-accordion .accordion-two .additional-accordion-inner .box_one {
  height: 300px;
}

.additional-accordion .accordion-two .additional-accordion-inner p.txt_a_ac {
  margin: 0;
}

.accordion-two .additional-accordion-header .accordion-more-box .more-nav-btn {
  display: block;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}

@media screen and (min-width: 960px) {
  .accordion-two .additional-accordion-header .accordion-more-box .more-nav-btn {
    right: 12px;
  }
}

.accordion-two .additional-accordion-header.open .accordion-more-box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.accordion-two .additional-accordion-header .accordion-more-box .more-nav-btn:before,
.accordion-two .additional-accordion-header .accordion-more-box .more-nav-btn:after {
  display: flex;
  content: '';
  background-color: #a1a1a1;
  border-radius: 10px;
  width: 9px;
  height: 1px;
  position: absolute;
  top: 4px;
  left: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
}

@media screen and (min-width: 960px) {
  .accordion-two .additional-accordion-header .accordion-more-box .more-nav-btn:before,
  .accordion-two .additional-accordion-header .accordion-more-box .more-nav-btn:after {
    width: 12px;
    height: 2px;
    top: 5px;
  }
}

.accordion-two .additional-accordion-header .accordion-more-box .more-nav-btn:before {
  width: 1px;
  height: 9px;
  top: 0;
  left: 4px;
}

@media screen and (min-width: 960px) {
  .accordion-two .additional-accordion-header .accordion-more-box .more-nav-btn:before {
    width: 2px;
    height: 12px;
    left: 5px;
  }
}

.accordion-two .additional-accordion-header.open .accordion-more-box .more-nav-btn:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*---------------------------------
accordion-banner-container
---------------------------------*/
.accordion-banner-container {
  width: calc(100% - 20px);
  display: block;
  margin: 10px auto;
}

.accordion-banner-container a img {
  width: 100%;
  margin-top: 10px;
}

.accordion-banner-container a:first-child img {
  margin-top: 0px;
}

/*---------------------------------
accordion-sns-container
---------------------------------*/
.accordion-sns-container {
  margin: 30px auto 37px;
  display: flex;
  width: calc(100% - 80px);
  justify-content: center;
  align-items: center;
}

.accordion-sns-box {
  width: calc(100% / 4);
}

.accordion-sns-box img {
  width: 43px;
  display: flex;
  margin: 0 auto;
}

/*---------------------------------
header-category
---------------------------------*/
.header-category ul {
  display: flex;
  margin: 16px auto 0;
  padding-bottom: 17px;
  width: 100%;
  border-bottom: solid 0.5px #dcdcdc;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .header-category ul {
    margin-top: 20px;
    margin-bottom: 20px;
    border-bottom: none;
    padding-bottom: 0px;
    width: 70%;
  }
}

.header-category ul li {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #a1a1a1;
}

@media screen and (min-width: 960px) {
  .header-category ul li {
    font-size: 16px;
    letter-spacing: 0.32px;
    line-height: 1;
    min-width: 20%;
    width: 25%;
    border-left: solid 1px #dcdcdc;
  }
  .header-category ul li:first-child {
    border-left: none;
  }
}

.header-category ul li span {
  padding: 0px 17px;
  border-left: solid 0.5px #dcdcdc;
  font-weight: 600;
}

@media screen and (max-width: 374px) {
  .header-category ul li span {
    padding: 0 12px;
  }
}

@media screen and (min-width: 960px) {
  .header-category ul li span {
    padding: unset;
    border-left: none;
  }
}

.header-category ul li span.eng-letter {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.header-category ul li:nth-child(1) span {
  border-left: none;
}

.header-category ul li.header-category-active {
  color: #333333;
}

.header-category ul li.header-category-active span > a {
  pointer-events: none;
}

/*---------------------------------
header-item-type
---------------------------------*/
.header-item-type ul {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  width: 100%;
  margin-top: 10px;
  padding-bottom: 10px;
}

@media screen and (min-width: 960px) {
  .header-item-type ul {
    display: none;
  }
}

.header-item-type ul li {
  min-width: 22.2%;
}

.header-item-type ul li a img {
  display: block;
  margin: 0 auto;
  width: 18px;
}

.header-item-type ul li a p {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 300;
  text-align: center;
  color: #000000;
  margin-top: 8px;
}

/*---------------------------------
accordion
---------------------------------*/
.search-accordion-one.search-form-category .search-accordion-header.search-form-main-heading {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  letter-spacing: 0.32px;
  color: #000000;
  justify-content: center;
}

.search-accordion-one.search-form-category .search-accordion-header.search-form-main-heading span {
  font-size: 14px;
  letter-spacing: 0.28px;
}

@media screen and (min-width: 960px) {
  .search-accordion-one.search-form-category .search-accordion-header.search-form-main-heading {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 30px;
    letter-spacing: 0.36px;
    color: #a1a1a1;
    height: 50px;
    padding-top: 8px;
  }
  .search-accordion-one.search-form-category .search-accordion-header.search-form-main-heading span {
    font-size: 13px;
    letter-spacing: 0.26px;
  }
}

.search-accordion-one .search-accordion-header.open .accordion-more-box .more-nav-btn:before {
  content: none;
}

.search-accordion-one .search-accordion-header {
  background-color: #ffffff;
  border-top: 0.5px solid #cccccc;
  color: #333333;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
  text-align: left;
  height: 45px;
  display: flex;
  align-items: center;
  padding-left: 8px;
}

@media screen and (min-width: 960px) {
  .search-accordion-one .search-accordion-header {
    padding-left: 22px;
    font-size: 18px;
    border-bottom: none;
    border-top: 1px solid #cccccc;
  }
}

@media screen and (min-width: 960px) {
  .search-accordion-one .search-accordion-header a {
    font-size: 14px;
  }
}

.search-accordion-one .search-accordion-header.link-box > a {
  font-size: 12px;
}

@media screen and (min-width: 960px) {
  .search-accordion-one .search-accordion-header.link-box > a {
    font-size: 14px;
  }
}

.search-accordion-one .search-accordion-header .accordion-more-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 20px;
  height: 37px;
  margin-top: -20px;
  box-sizing: border-box;
}

.search-accordion-one .search-accordion-header .accordion-more-box .more-nav-btn {
  display: block;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}

@media screen and (min-width: 960px) {
  .search-accordion-one .search-accordion-header .accordion-more-box .more-nav-btn {
    width: 12px;
    height: 12px;
    right: 12px;
  }
}

.search-accordion-one .search-accordion-header.open .accordion-more-box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.search-accordion-one .search-accordion-header .accordion-more-box .more-nav-btn:before,
.search-accordion-one .search-accordion-header .accordion-more-box .more-nav-btn:after {
  display: flex;
  content: '';
  background-color: #a1a1a1;
  border-radius: 10px;
  width: 9px;
  height: 1px;
  position: absolute;
  top: 4px;
  left: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
}

@media screen and (min-width: 960px) {
  .search-accordion-one .search-accordion-header .accordion-more-box .more-nav-btn:before,
  .search-accordion-one .search-accordion-header .accordion-more-box .more-nav-btn:after {
    width: 12px;
    height: 2px;
    top: 5px;
  }
}

.search-accordion-one .search-accordion-header .accordion-more-box .more-nav-btn:before {
  width: 1px;
  height: 9px;
  top: 0;
  left: 4px;
}

@media screen and (min-width: 960px) {
  .search-accordion-one .search-accordion-header .accordion-more-box .more-nav-btn:before {
    width: 2px;
    height: 12px;
    left: 5px;
  }
}

.search-accordion-one .search-accordion-header.open .accordion-more-box .more-nav-btn:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.search-accordion-one .accordion-inner {
  display: none;
  padding: 0;
  box-sizing: border-box;
}

img.menu-icon {
  width: 12px;
  height: 12px;
  margin-right: 6px;
}

@media screen and (min-width: 960px) {
  img.menu-icon {
    width: 20px;
    height: auto;
    margin-right: 12px;
  }
}

.separated-area {
  width: 100%;
  display: flex;
}

@media screen and (min-width: 960px) {
  .separated-area {
    flex-wrap: wrap;
  }
}

.separated-area search-accordion-one {
  width: 50%;
  border-right: 1px solid #cccccc;
}

@media screen and (min-width: 960px) {
  .separated-area search-accordion-one {
    width: 100%;
    border-right: none;
  }
}

.separated-area search-accordion-one:last-child {
  border-right: none;
}

a.display-no-flex:after {
  content: '';
  display: inline-block;
  width: 5.5px;
  height: 8px;
  background: url("../images/arrow-right.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 12px;
  top: 18px;
}

@media screen and (min-width: 960px) {
  a.display-no-flex:after {
    width: 10px;
    height: 13px;
    right: 20px;
  }
}

a.display-flex {
  display: flex;
}

a.display-flex:after {
  content: '';
  display: inline-block;
  width: 5.5px;
  height: 8px;
  background: url("../images/arrow-right.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 12px;
  top: 18px;
}

@media screen and (min-width: 960px) {
  a.display-flex:after {
    width: 10px;
    height: 13px;
    right: 20px;
  }
}

/*---------------------------------
additional accordion 
---------------------------------*/
@media screen and (min-width: 960px) {
  .search-additional-accordion {
    display: flex;
    flex-wrap: wrap;
  }
}

.search-additional-accordion .accordion-area-2 {
  display: flex;
}

@media screen and (min-width: 960px) {
  .search-additional-accordion .accordion-area-2 {
    flex-wrap: nowrap;
    width: 50%;
  }
}

@media screen and (min-width: 960px) {
  .search-additional-accordion .accordion-area-2.accordion-area-color {
    width: 100%;
    background-color: #fbfbfb;
  }
}

.search-additional-accordion .accordion-area-2.accordion-two.accordion-two-flex {
  width: 50%;
}

@media screen and (min-width: 960px) {
  .search-additional-accordion .accordion-area-2.accordion-two.accordion-two-flex {
    width: 100%;
  }
}

@media screen and (min-width: 960px) {
  .accordion-two.search-modal-category-pc {
    width: 400%;
  }
  .accordion-two.search-modal-category-pc.second-line {
    margin-left: -100%;
  }
  .accordion-two.search-modal-category-pc.third-line {
    margin-left: -200%;
  }
  .accordion-two.search-modal-category-pc.fourth-line {
    margin-left: -300%;
  }
}

.search-additional-accordion .accordion-two .additional-accordion-header {
  border-right: 1px solid #efefef;
  color: #333333;
  font-size: 12px;
  text-align: left;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
  height: 45px;
  display: flex;
  align-items: center;
  padding-left: 8px;
  border-bottom: 1px solid #efefef;
}

@media screen and (min-width: 960px) {
  .search-additional-accordion .accordion-two .additional-accordion-header {
    padding-left: 22px;
    font-size: 14px;
    border-right: solid 1px #efefef;
    border-top: solid 1px #efefef;
  }
}

@media screen and (max-width: 374px) {
  .search-additional-accordion .accordion-two .additional-accordion-header {
    font-size: 10px;
  }
}

.search-additional-accordion .accordion-two .additional-accordion-header.min-letter {
  letter-spacing: -1.9px;
}

.additional-accordion-header.open {
  background-color: #f7f7f7;
}

.search-additional-accordion .accordion-two .accordion-header-two {
  border-right: 1px solid #efefef;
  color: #333333;
  font-size: 12px;
  text-align: left;
  position: relative;
  z-index: +1;
  cursor: pointer;
  height: 45px;
  float: left;
  width: 50%;
  padding-left: 8px;
  border-bottom: 1px solid #efefef;
  padding-top: 10px;
  background-color: #f7f7f7;
}

@media screen and (min-width: 960px) {
  .search-additional-accordion .accordion-two .accordion-header-two {
    width: 25%;
    padding-left: 20px;
    font-size: 14px;
  }
}

@media screen and (max-width: 374px) {
  .search-additional-accordion .accordion-two .accordion-header-two {
    font-size: 10px;
  }
}

.accordion-more-box {
  position: absolute;
  right: 10px;
}

.search-additional-accordion .accordion-two .accordion_header:hover {
  opacity: 0.8;
}

.search-additional-accordion .accordion-two .additional-accordion-inner {
  display: none;
  padding: 0;
  box-sizing: border-box;
  width: 200%;
}

@media screen and (min-width: 960px) {
  .search-additional-accordion .accordion-two .additional-accordion-inner {
    width: 100%;
  }
}

.additional-accordion-inner.additional-accordion-innner-right {
  margin-left: -100%;
}

@media screen and (min-width: 960px) {
  .additional-accordion-inner.additional-accordion-innner-right {
    margin-left: 0;
  }
}

.search-additional-accordion .accordion-two .additional-accordion-inner .box_one {
  height: 300px;
}

.search-additional-accordion .accordion-two .additional-accordion-inner p.txt_a_ac {
  margin: 0;
}

.accordion-two .additional-accordion-header .accordion-more-box .more-nav-btn {
  display: block;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}

@media screen and (min-width: 960px) {
  .accordion-two .additional-accordion-header .accordion-more-box .more-nav-btn {
    right: 12px;
  }
}

.accordion-two .additional-accordion-header.open .accordion-more-box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.accordion-two .additional-accordion-header .accordion-more-box .more-nav-btn:before,
.accordion-two .additional-accordion-header .accordion-more-box .more-nav-btn:after {
  display: flex;
  content: '';
  background-color: #a1a1a1;
  border-radius: 10px;
  width: 9px;
  height: 1px;
  position: absolute;
  top: 4px;
  left: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
}

@media screen and (min-width: 960px) {
  .accordion-two .additional-accordion-header .accordion-more-box .more-nav-btn:before,
  .accordion-two .additional-accordion-header .accordion-more-box .more-nav-btn:after {
    width: 12px;
    height: 2px;
    top: 5px;
  }
}

.accordion-two .additional-accordion-header .accordion-more-box .more-nav-btn:before {
  width: 1px;
  height: 9px;
  top: 0;
  left: 4px;
}

@media screen and (min-width: 960px) {
  .accordion-two .additional-accordion-header .accordion-more-box .more-nav-btn:before {
    width: 2px;
    height: 12px;
    left: 5px;
  }
}

.accordion-two .additional-accordion-header.open .accordion-more-box .more-nav-btn:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*---------------------------------
  modal-search
---------------------------------*/
.modal-search-wrapper.search-panel {
  display: flex;
  align-items: center;
  height: 70px;
}

.modal-search-wrapper.search-panel .search-modal-panel {
  width: 100%;
  display: flex;
  margin: 10px;
}

@media screen and (min-width: 960px) {
  .modal-search-wrapper.search-panel .search-modal-panel {
    width: calc(100% - 210px);
    margin: 10px auto;
  }
}

.modal-search-wrapper.search-panel .search-modal-panel label {
  width: calc(100% / 3);
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: center;
  color: #333333;
  padding: 15px 0;
}

@media screen and (min-width: 960px) {
  .modal-search-wrapper.search-panel .search-modal-panel label {
    font-size: 16px;
    letter-spacing: 0.32px;
  }
}

.modal-search-wrapper.search-panel .search-modal-panel label span {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

.modal-search-wrapper.search-panel .search-modal-panel input {
  display: none;
}

.modal-search-wrapper.search-panel .search-modal-panel.col-2 label {
  width: calc(100% / 2);
}

.modal-search-wrapper.search-panel.search-panel-last {
  border-bottom: solid 0.5px #cccccc;
}

@media screen and (min-width: 960px) {
  .modal-search-wrapper.pc-hidden {
    display: none;
  }
}

.modal-search-wrapper.sp-top-line {
  border-top: 1px solid #cccccc;
}

@media screen and (min-width: 960px) {
  .modal-search-wrapper.sp-top-line {
    border-top: none;
  }
}

.search-modal-panel label:first-of-type {
  border-radius: 3px 0 0 3px;
}

.search-modal-panel label:last-of-type {
  border-right: 0px;
  border-radius: 0 3px 3px 0;
}

.search-modal-panel input[type='radio'] + label {
  margin-right: unset;
}

.search-modal-panel input[type='radio'] + label::before {
  content: none;
}

.search-modal-panel input[type='radio']:checked + label {
  border-radius: 3px;
  border: solid 0.5px #d2d2d2;
  background-color: #ffffff;
  margin-right: unset;
}

.search-modal-panel input[type='radio']:checked + label::before {
  content: none;
}

/*---------------------------------
#search-from-color-checkbox
---------------------------------*/
.search-from-color-checkbox-container {
  width: 100%;
  background-color: #fbfbfb;
}

.search-from-color-checkbox-container .search-from-color-checkbox-wrapper {
  margin: 0 auto;
  margin-top: 16px;
  margin-bottom: 25px;
  width: 314px;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 960px) {
  .search-from-color-checkbox-container .search-from-color-checkbox-wrapper {
    width: 486px;
    margin-top: 20px;
    margin-bottom: 22px;
  }
}

.search-from-color-checkbox-container .search-from-color-checkbox-wrapper .color-search-label {
  margin: 0 5px;
}

@media screen and (max-width: 374px) {
  .search-from-color-checkbox-container .search-from-color-checkbox-wrapper .color-search-label {
    margin: 0 2px;
  }
}

.search-from-color-checkbox-container .search-from-color-checkbox-wrapper .color-search-label:nth-child(6n + 1) {
  margin-left: 0px;
}

@media screen and (min-width: 960px) {
  .search-from-color-checkbox-container .search-from-color-checkbox-wrapper .color-search-label:nth-child(6n + 1) {
    margin: 0 5px;
  }
}

.search-from-color-checkbox-container .search-from-color-checkbox-wrapper .color-search-label:nth-child(6n) {
  margin-right: 0px;
}

@media screen and (min-width: 960px) {
  .search-from-color-checkbox-container .search-from-color-checkbox-wrapper .color-search-label:nth-child(6n) {
    margin: 0 5px;
  }
}

.search-from-color-checkbox-container .search-from-color-checkbox-wrapper .color-search-label:nth-child(n + 7) {
  margin-top: 10px;
}

@media screen and (min-width: 960px) {
  .search-from-color-checkbox-container .search-from-color-checkbox-wrapper .color-search-label:nth-child(n + 7) {
    margin: 0 5px;
  }
}

@media screen and (min-width: 960px) {
  .search-from-color-checkbox-container .search-from-color-checkbox-wrapper .color-search-label:nth-child(n + 10) {
    margin-top: 10px;
  }
}

.search-form-color-checkbox {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.search-form-color-checkbox::before {
  background: #ffffff;
  border-radius: 5px;
  content: '';
  display: block;
  height: 44px;
  width: 44px;
  position: unset;
}

@media screen and (max-width: 374px) {
  .search-form-color-checkbox::before {
    height: 40px;
    width: 40px;
  }
}

.search-form-color-checkbox.color-white::before {
  background-color: #ffffff;
  border: solid 0.5px #f0f0f0;
}

.search-form-color-checkbox.color-black::before {
  background-color: #000000;
}

.search-form-color-checkbox.color-cherry::before {
  background-color: #db092c;
}

.search-form-color-checkbox.color-pale-mauve::before {
  background-color: #ffeef8;
}

.search-form-color-checkbox.color-dark-grey-blue::before {
  background-color: #3b536b;
}

.search-form-color-checkbox.color-brownish-orange::before {
  background-color: #d0a024;
}

.search-form-color-checkbox.color-parchment::before {
  background-color: #fefab1;
}

.search-form-color-checkbox.color-reddish-orange::before {
  background-color: #f94f1c;
}

.search-form-color-checkbox.color-greyish::before {
  background-color: #a89f96;
}

.search-form-color-checkbox.color-pale::before {
  background-color: #f5ede0;
}

.search-form-color-checkbox.color-terra-cotta::before {
  background-color: #d36f31;
}

.search-form-color-checkbox.color-ice::before {
  background-color: #e6fdeb;
}

.search-form-color-checkbox.color-sapphire::before {
  background-color: #242b95;
}

.search-form-color-checkbox.color-darkish-purple::before {
  background-color: #761b56;
}

.search-form-color-checkbox.color-blue-grey::before {
  background-color: #6d74ab;
}

.search-form-color-checkbox.color-pale-teal::before {
  background-color: #a1c0b8;
}

.search-form-color-checkbox.color-milk-chocolate::before {
  background-color: #6b2525;
}

.search-form-color-checkbox.color-light-orange::before {
  background-color: #f9b051;
}

.search-form-color-checkbox::after {
  border: solid 3px #cccccc;
  content: '';
  border-radius: 5px;
  display: block;
  left: 0px;
  top: 0px;
  opacity: 0;
  position: absolute;
  height: 44px;
  width: 44px;
}

@media screen and (max-width: 374px) {
  .search-form-color-checkbox::after {
    height: 40px;
    width: 40px;
  }
}

input[type='checkbox']:checked + .search-form-color-checkbox::before {
  border-color: #666666;
}

input[type='checkbox']:checked + .search-form-color-checkbox::after {
  opacity: 1;
}

.modal-search-btn {
  margin-top: 30px;
  padding-bottom: 40px;
  border-bottom: solid 0.5px #cccccc;
}

.modal-close-box {
  margin-top: 17.5px;
  padding-bottom: 22.5px;
}

.modal-close-box a p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: center;
  color: #333333;
}

@media screen and (min-width: 960px) {
  .modal-close-box a p {
    font-size: 14px;
  }
}

.section-heading.single-page-section-heading.search-result-heading {
  margin: 15px 0 40px;
}

@media screen and (min-width: 960px) {
  .section-heading.single-page-section-heading.search-result-heading {
    margin: 25px 0 35px;
  }
}

.section-heading.single-page-section-heading.search-result-heading h3 {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.36px;
  text-align: center;
}

@media screen and (min-width: 960px) {
  .section-heading.single-page-section-heading.search-result-heading h3 {
    font-size: 15.5px;
    color: #333333;
  }
}

/*---------------------------------
#modal-search-form
---------------------------------*/
.keyword-input {
  position: relative;
  width: calc(100% - 30px);
  border-radius: 5px;
  box-shadow: inset 0 0 1px 0 rgba(14, 5, 10, 0.25);
  border: solid 0.5px #cccccc;
  background-color: #f7f7f7;
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  .keyword-input {
    width: 630px;
    height: 80px;
    box-shadow: inset 0 0 5px 0 rgba(14, 5, 10, 0.25);
    border: solid 1px #cccccc;
    border-radius: 10px;
  }
}

.keyword-input input {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.26px;
  text-align: left;
  color: #a1a1a1;
  padding: 20px 59px 20px 15px;
  width: 100%;
}

@media screen and (max-width: 374px) {
  .keyword-input input {
    font-size: 16px;
  }
}

@media screen and (min-width: 960px) {
  .keyword-input input {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 24px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 40px;
    letter-spacing: 0.48px;
    text-align: left;
    padding-left: 34px;
  }
  .keyword-input input::placeholder {
    color: #cccccc;
  }
}

.keyword-input button img {
  width: 16px;
  height: 16px;
}

@media screen and (min-width: 960px) {
  .keyword-input button img {
    width: 20px;
    height: 20px;
  }
}

#modal-search-btn {
  position: absolute;
  top: 16px;
  right: 15px;
}

@media screen and (min-width: 960px) {
  #modal-search-btn {
    top: 27px;
    right: 25px;
  }
}

.modal-search-tags ul.tag-container {
  margin: 30px auto 40px;
  width: calc(100% - 30px);
}

@media screen and (min-width: 960px) {
  .modal-search-tags ul.tag-container {
    margin: 70px auto 40px;
  }
}

.modal-search-tags ul.tag-container li {
  font-size: 14.25px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
}

@media screen and (min-width: 960px) {
  .modal-search-tags ul.tag-container li {
    font-size: 13.5px;
  }
}

.modal-search-wrapper {
  background-color: #fbfbfb;
}

.modal-search-wrapper .modal-search-panel {
  margin: 10px;
  display: flex;
}

.modal-search-wrapper .modal-search-panel li {
  width: calc(100% / 3);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: center;
  color: #333333;
  padding: 15px 0;
}

.modal-search-wrapper .modal-search-panel li.active {
  border-radius: 3px;
  border: solid 0.5px #d2d2d2;
  background-color: #ffffff;
}

.modal-search-wrapper .modal-search-panel.modal-search-panel-half li {
  width: calc(100% / 2);
}

/*---------------------------------
#search-from-category-checkbox
---------------------------------*/
input[type='checkbox'] {
  display: none;
}

.search-form-checkbox {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
}

.search-form-checkbox::before {
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 50%;
  content: '';
  display: block;
  height: 16px;
  width: 16px;
  left: 0px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}

.search-form-checkbox::after {
  background: #333333;
  border-radius: 50%;
  content: '';
  display: block;
  height: 6px;
  width: 6px;
  left: 5px;
  margin-top: -3px;
  opacity: 0;
  position: absolute;
  top: 50%;
}

input[type='checkbox']:checked + .search-form-checkbox::before {
  border-color: #666666;
}

input[type='checkbox']:checked + .search-form-checkbox::after {
  opacity: 1;
}

.additional-accordion .accordion-two .accordion-header-two.search-form-header-tow {
  padding-top: 10px;
}

@media screen and (min-width: 960px) {
  .modal-contents.search-modal-contents {
    margin-top: 150px;
    height: calc(100% + 5px);
  }
}

@media screen and (min-width: 960px) {
  .modal-content-wrapper.search-modal-content-wrapper {
    width: calc(100% - 200px);
    height: calc(100% - 200px);
  }
}

@media screen and (min-width: 960px) {
  .modal-content.search-modal-content {
    margin-top: 80px;
  }
}

/*==============================================================================
FOOTER
==============================================================================*/
.footer {
  border-top: solid 1px #cccccc;
}

@media screen and (min-width: 960px) {
  .footer {
    max-width: 1300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

/*---------------------------------
footer-menu-list
---------------------------------*/
.footer-menu-list {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  margin: 0px auto 30px;
}

@media screen and (min-width: 960px) {
  .footer-menu-list {
    padding-top: 40px;
    max-width: calc(100% - 110px);
    height: 112px;
  }
}

.footer-menu-list li {
  width: 25%;
}

@media screen and (min-width: 960px) {
  .footer-menu-list li {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 22px;
    border-left: solid 1px #dcdcdc;
  }
  .footer-menu-list li:first-child {
    border-left: none;
  }
}

@media screen and (min-width: 960px) {
  .footer-menu-list li a {
    display: flex;
    align-items: center;
  }
}

.footer-menu-list li a p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 15px;
  letter-spacing: 0.24px;
  text-align: center;
  color: #666666;
  margin-top: 5px;
}

@media screen and (min-width: 960px) {
  .footer-menu-list li a p {
    display: inline-block;
    margin-left: 20px;
    font-size: 14px;
    letter-spacing: 0.28px;
  }
}

.footer-menu-box-icon {
  background-color: #f4f4f4;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 960px) {
  .footer-menu-box-icon {
    margin: 0;
    width: 72px;
    height: 72px;
    border-radius: 36px;
  }
}

.footer-menu-box-icon img {
  width: 23px;
}

@media screen and (min-width: 960px) {
  .footer-menu-box-icon img {
    width: 30px;
  }
}

/*---------------------------------
footer-sns
---------------------------------*/
@media screen and (min-width: 960px) {
  .pc-footer-container {
    display: flex;
    width: calc(100% - 130px);
    margin: 0 auto;
    align-items: center;
    margin-bottom: 30px;
  }
}

.footer-sns {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 25px;
}

@media screen and (min-width: 960px) {
  .footer-sns {
    width: 50%;
    margin-bottom: 0px;
    margin-left: 50px;
  }
}

.footer-sns a {
  width: 19%;
}

@media screen and (min-width: 960px) {
  .footer-sns a {
    width: 41px;
    margin-right: 20px;
  }
  .footer-sns a img {
    width: 100%;
  }
}

.sns-on {
  width: 20%;
}

@media screen and (min-width: 960px) {
  .sns-on {
    max-width: 242px;
    width: 50%;
    margin-right: 20px;
  }
}

.footer-sns a img.sns-img {
  width: calc(100% - 12px);
  display: block;
  margin: 0 auto;
  width: 60%;
}

@media screen and (min-width: 960px) {
  .footer-sns a img.sns-img {
    width: 100%;
  }
}

.sns-on img {
  width: 60%;
  margin-left: 20%;
}

@media screen and (min-width: 960px) {
  .sns-on img {
    width: 100%;
    margin-left: 0;
  }
}

/*---------------------------------
footer-app-bg-banner
---------------------------------*/
.footer-app-bg-banner {
  width: calc(100% - 16px);
  display: flex;
  margin: 0 auto 30px;
  position: relative;
}

@media screen and (min-width: 960px) {
  .footer-app-bg-banner {
    width: 50%;
  }
}

.footer-app-banner {
  width: calc(100% - 17px);
  margin: 0 auto;
  margin-bottom: 30px;
}

.footer-app-banner img {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .footer-app-banner {
    max-width: 570px;
    margin: 0;
    width: 50%;
  }
}

/*---------------------------------
footer-navigation
---------------------------------*/
.footer-navigation {
  border-top: solid 1px #cccccc;
  border-bottom: solid 1px #cccccc;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.3;
  letter-spacing: 0.24px;
  text-align: left;
  color: #666666;
}

@media screen and (min-width: 960px) {
  .footer-navigation {
    border-bottom: none;
  }
}

.footer-navigation ul {
  margin: 21px auto;
  width: calc(100% - 30px);
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 960px) {
  .footer-navigation ul {
    max-width: 960px;
    margin: 42px auto 45px;
  }
}

@media screen and (max-width: 374px) {
  .footer-navigation ul {
    width: calc(100% - 10px);
  }
}

.footer-navigation ul li {
  display: inline-flex;
  flex-basis: 50%;
  font-size: 12px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 32px;
  text-align: left;
  letter-spacing: 0.24px;
}

@media screen and (min-width: 960px) {
  .footer-navigation ul li {
    flex-basis: unset;
    font-size: 13px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 1.04px;
    text-align: center;
    color: #a1a1a1;
    margin-left: auto;
    margin-right: auto;
    line-height: 1;
  }
}

@media screen and (max-width: 374px) {
  .footer-navigation ul li {
    font-size: 11px;
  }
}

/*---------------------------------
footer-copy
---------------------------------*/
.footer-copy {
  margin: 13px 0;
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  font-weight: 300;
  line-height: 15px;
  letter-spacing: 1.2px;
  text-align: center;
  color: #a1a1a1;
}

@media screen and (min-width: 960px) {
  .footer-copy {
    margin: 0 0 19px;
    font-size: 11px;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.44px;
  }
}

/*==============================================================================
parts
==============================================================================*/
/*---------------------------------
breadcrumbs-section
---------------------------------*/
.breadcrumbs-section {
  margin-top: 17px;
  margin-left: 13px;
}

@media screen and (min-width: 960px) {
  .breadcrumbs-section {
    width: calc(100% - 130px);
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 11px;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  width: 100%;
}

@media screen and (min-width: 960px) {
  .breadcrumb {
    margin-left: auto;
    margin-right: auto;
  }
  .breadcrumb.shoplist-breadcrumbs {
    width: calc(100% - 130px);
  }
}

@media screen and (min-width: 1300px) {
  .breadcrumb {
    width: 100%;
  }
  .breadcrumb.shoplist-breadcrumbs {
    width: 100%;
  }
}

.breadcrumb li {
  font-size: 10px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.2px;
  text-align: left;
  color: #000000;
  display: inline;
  list-style: none;
  min-width: fit-content;
}

@media screen and (min-width: 960px) {
  .breadcrumb li {
    font-size: 11px;
  }
}

.breadcrumb li:after {
  content: '>';
  padding: 0 0.2em;
  color: #000000;
  font-weight: 300;
  letter-spacing: 0.22px;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color: #0099ff;
  text-decoration: underline;
  display: inline-block;
}

.breadcrumb li a:hover {
  text-decoration: underline;
  display: inline-block;
}

/*---------------------------------
button
---------------------------------*/
button.read-more {
  width: 100%;
  max-width: 180px;
  height: 44px;
  border-radius: 22px;
  font-size: 14px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1;
  letter-spacing: 0.28px;
  background-color: #333333;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

button.read-more.more-staff {
  max-width: 220px;
}

button.read-more:after {
  content: '';
  display: inline-block;
  width: 5.5px;
  height: 8px;
  background: url("../images/read-more-arrow-right.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 20px;
  top: 18px;
}

@media screen and (min-width: 960px) {
  button.read-more.regi-form-submit {
    max-width: 190px;
  }
}

@media screen and (min-width: 960px) {
  button.read-more {
    max-width: 240px;
    font-size: 13px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: 0.26px;
    cursor: pointer;
  }
}

button.read-more.item-info-more {
  background-color: #f4f4f4;
  color: #000000;
}

button.read-more.item-info-more:after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 10.5px;
  background: url("../images/item-btn-stock.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 20px;
  top: 18px;
}

button.read-more.see-all-review {
  max-width: 230px;
  background-color: #f4f4f4;
  color: #000000;
}

button.read-more.see-all-review::after {
  content: '';
  display: inline-block;
  width: 5.5px;
  height: 8px;
  background: url("../images/find-from-link-arrow-right.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 20px;
  top: 18px;
}

button.read-more.write-review-btn {
  max-width: 335px;
  background-color: #333333;
  color: #ffffff;
}

button.read-more.write-review-btn:after {
  content: '';
  display: inline-block;
  width: 11.5px;
  height: 11.5px;
  background: url("../images/write-review-right.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 16.5px;
  top: 16px;
}

@media screen and (min-width: 960px) {
  button.read-more.add-address-btn {
    max-width: 190px;
  }
}

button.read-more.add-address-btn::after {
  content: none;
}

button.back-to-home {
  width: 100%;
  max-width: 180px;
  height: 44px;
  border-radius: 22px;
  font-size: 14px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1;
  letter-spacing: 0.28px;
  background-color: #f4f4f4;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

button.back-to-home span {
  font-family: "Roboto", sans-serif;
}

button.back-to-home:before {
  content: '';
  display: inline-block;
  width: 5.5px;
  height: 8px;
  background: url("../images/back-to-home-arrow-left.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  left: 20px;
  top: 18px;
}

@media screen and (min-width: 960px) {
  button.back-to-home {
    max-width: 240px;
    font-size: 13px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: 0.26px;
    cursor: pointer;
  }
}

button.back-to-child-page {
  width: 100%;
  max-width: 250px;
  height: 44px;
  border-radius: 22px;
  font-size: 14px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1;
  letter-spacing: 0.28px;
  background-color: #333333;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

button.back-to-child-page span {
  font-family: "Roboto", sans-serif;
}

button.back-to-child-page:before {
  content: '';
  display: inline-block;
  width: 5.5px;
  height: 8px;
  background: url("../images/back-to-child-page-arrow-left.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  left: 20px;
  top: 18px;
}

@media screen and (min-width: 960px) {
  button.back-to-child-page {
    max-width: 240px;
    font-size: 13px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: 0.26px;
    cursor: pointer;
  }
}

label.grad-btn {
  width: 100%;
  max-width: 162px;
  height: 44px;
  border-radius: 22px;
  font-size: 14px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1;
  letter-spacing: 0.28px;
  background-color: #f4f4f4;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  z-index: 2;
}

label.grad-btn:after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 5.5px;
  background: url("../images/grad-btn-arrow-right.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 20px;
  top: 18px;
}

.btn-pre-next-container {
  display: flex;
  width: calc(100% - 45px);
  margin: 40px auto 20px;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 960px) {
  .btn-pre-next-container {
    max-width: 340px;
    margin: 60px auto 30px;
  }
}

.read-prev {
  width: 100%;
  max-width: 180px;
  height: 44px;
  border-radius: 22px;
  font-size: 14px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1;
  letter-spacing: 0.28px;
  background-color: #333333;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  position: relative;
}

@media screen and (min-width: 960px) {
  .read-prev {
    font-size: 12px;
    cursor: pointer;
    max-width: 160px;
  }
  .read-prev.active {
    border: solid 1px #e2e2e2;
    background-color: #ffffff;
    color: #dddddd;
    pointer-events: none;
  }
  .read-prev.active:before {
    content: '';
    background: url("../images/read-more-arrow-left-hover.png") no-repeat;
    display: inline-block;
    width: 6px;
    height: 9px;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    left: 20px;
    top: 18px;
  }
  .read-prev:hover {
    border: solid 1px #e2e2e2;
    background-color: #ffffff;
    color: #dddddd;
  }
  .read-prev:hover:before {
    content: '';
    background: url("../images/read-more-arrow-left-hover.png") no-repeat;
    display: inline-block;
    width: 6px;
    height: 9px;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    left: 20px;
    top: 18px;
  }
}

.read-prev:before {
  content: '';
  display: inline-block;
  width: 5.5px;
  height: 8px;
  background: url("../images/read-more-arrow-left.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  left: 20px;
  top: 18px;
}

@media screen and (min-width: 960px) {
  .read-prev:before {
    width: 6px;
    height: 9px;
  }
}

@media screen and (max-width: 374px) {
  .read-prev:before {
    left: 10px;
  }
}

.read-next {
  width: 100%;
  max-width: 180px;
  height: 44px;
  border-radius: 22px;
  font-size: 14px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1;
  letter-spacing: 0.28px;
  background-color: #333333;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  position: relative;
}

@media screen and (min-width: 960px) {
  .read-next {
    cursor: pointer;
    font-size: 12px;
    max-width: 160px;
  }
  .read-next.active {
    border: solid 1px #e2e2e2;
    background-color: #ffffff;
    color: #dddddd;
    pointer-events: none;
  }
  .read-next.active:after {
    background: url("../images/read-more-arrow-right-hover.png") no-repeat;
    display: inline-block;
    width: 6px;
    height: 9px;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    right: 20px;
    top: 18px;
  }
  .read-next:hover {
    border: solid 1px #e2e2e2;
    background-color: #ffffff;
    color: #dddddd;
  }
  .read-next:hover:after {
    background: url("../images/read-more-arrow-right-hover.png") no-repeat;
    display: inline-block;
    width: 6px;
    height: 9px;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    right: 20px;
    top: 18px;
  }
}

.read-next:after {
  content: '';
  display: inline-block;
  width: 5.5px;
  height: 8px;
  background: url("../images/read-more-arrow-right.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 20px;
  top: 18px;
}

@media screen and (min-width: 960px) {
  .read-next:after {
    width: 6px;
    height: 9px;
  }
}

@media screen and (max-width: 374px) {
  .read-next:after {
    right: 10px;
  }
}

.put-into-cart {
  width: calc(100% - 40px);
  height: 45px;
  border-radius: calc(45px / 2);
  background-color: #cc0000;
  margin: 15px auto 0;
  display: block;
  text-align: center;
  border-bottom: 5px solid #990000;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: -0.49px;
  text-align: center;
  position: relative;
}

@media screen and (min-width: 960px) {
  .put-into-cart {
    display: none;
  }
}

.put-into-cart a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.put-into-cart span {
  color: #ffffff;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12.25px;
  font-weight: 500;
  margin-left: -30px;
}

.put-into-cart span.put-into-cart-emph {
  font-size: 16px;
  margin-left: 0.5em;
}

.put-into-cart:after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../images/put-in-cart-right.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 20px;
  top: 10px;
}

@media screen and (min-width: 960px) {
  .put-into-cart:hover {
    margin-top: 3px;
    border-bottom: 2px solid #990000;
  }
}

.under-cart-btn {
  width: 100%;
  max-width: 180px;
  height: 44px;
  border-radius: calc(44px / 2);
  background-color: #cc0000;
  text-align: center;
  border-bottom: 5px solid #990000;
  position: relative;
  margin-left: 5.5px;
  margin-right: 5.5px;
}

.under-cart-btn span {
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-left: -20px;
}

.under-cart-btn:after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../images/put-in-cart-right.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 20px;
  top: 10px;
}

.item-list-into-cart-btn {
  width: 100%;
  max-width: 180px;
  height: 44px;
  border-radius: calc(44px / 2);
  background-color: #cc0000;
  text-align: center;
  position: relative;
  margin-left: 5.5px;
  margin-right: 5px;
}

.item-list-into-cart-btn span {
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-left: -20px;
}

.item-list-into-cart-btn:after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../images/put-in-cart-right.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 20px;
  top: 10px;
}

@media screen and (min-width: 960px) and (max-width: 1255px) {
  .item-list-into-cart-btn:after {
    right: 8px;
  }
}

.item-list-into-stock-btn {
  width: 100%;
  max-width: 162px;
  height: 44px;
  border-radius: calc(44px / 2);
  background-color: #ffffff;
  text-align: center;
  position: relative;
  margin-left: auto;
  margin-right: 5px;
}

.item-list-into-stock-btn span {
  display: flex;
  justify-content: center;
}

.item-list-into-stock-btn span a {
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #000000;
  margin-left: -20px;
}

.item-list-into-stock-btn:after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 10.5px;
  background: url("../images/item-btn-stock.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 15.5px;
  top: 17px;
}

@media screen and (min-width: 960px) {
  .item-list-into-stock-btn.fit-pc {
    max-width: 220px;
  }
}

@media screen and (min-width: 960px) {
  .item-list-into-stock-btn.fit-pc span a {
    font-size: 13px;
    letter-spacing: 0.26px;
  }
}

.item-info-btn-wrapper {
  margin: 16px auto 0;
  display: flex;
  width: calc(100% - 40px);
}

@media screen and (min-width: 960px) {
  .item-info-btn-wrapper {
    width: 100%;
  }
}

.item-info-btn-wrapper .item-info-btn {
  background-color: #f4f4f4;
  position: relative;
  width: 50%;
  border-radius: 22px;
  height: 44px;
  text-align: center;
  color: #000000;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.26px;
  text-align: center;
}

@media screen and (min-width: 960px) {
  .item-info-btn-wrapper .item-info-btn {
    height: 46px;
  }
}

.item-info-btn-wrapper .item-info-btn.btn-stock {
  margin-right: 5px;
}

.item-info-btn-wrapper .item-info-btn.btn-stock a {
  display: block;
}

.item-info-btn-wrapper .item-info-btn.btn-stock::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 10.5px;
  background: url("../images/item-btn-stock.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 15.5px;
  top: 16px;
}

@media screen and (min-width: 960px) {
  .item-info-btn-wrapper .item-info-btn.btn-stock::after {
    width: 15px;
    height: 12px;
    right: 20px;
  }
}

.item-info-btn-wrapper .item-info-btn.btn-fav {
  margin-left: 5px;
}

.item-info-btn-wrapper .item-info-btn.btn-fav a {
  display: block;
}

.item-info-btn-wrapper .item-info-btn.btn-fav span {
  margin-left: -10px;
}

.item-info-btn-wrapper .item-info-btn.btn-fav::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 10.5px;
  background: url("../images/item-btn-fav.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 15.5px;
  top: 16px;
}

@media screen and (min-width: 960px) {
  .item-info-btn-wrapper .item-info-btn.btn-fav::after {
    width: 16px;
    height: 14px;
    right: 20px;
  }
}

/*---------------------------------
registration btn
---------------------------------*/
.registration-new {
  width: 100%;
  max-width: 250px;
  height: 44px;
  border-radius: 22px;
  font-size: 14px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1;
  letter-spacing: 0.28px;
  background-color: #333333;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

.registration-new a {
  display: block;
}

.registration-new.more-staff {
  max-width: 220px;
}

.registration-new:after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 5.5px;
  background: url("../images/new-regi-arrow-left.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 20px;
  top: 18px;
}

@media screen and (min-width: 960px) {
  .registration-new {
    max-width: 240px;
    font-size: 13px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: 0.26px;
    cursor: pointer;
  }
}

/*---------------------------------
rank info btn
---------------------------------*/
.rank-info-more {
  width: 100%;
  max-width: 300px;
  height: 44px;
  border-radius: 22px;
  font-size: 14px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1;
  letter-spacing: 0.28px;
  background-color: #f4f4f4;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

.rank-info-more a {
  display: block;
}

.rank-info-more.more-staff {
  max-width: 220px;
}

.rank-info-more:after {
  content: '';
  display: inline-block;
  width: 5.5px;
  height: 8px;
  background: url("../images/find-from-link-arrow-right.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 20px;
  top: 18px;
}

@media screen and (min-width: 960px) {
  .rank-info-more {
    background-color: #ffffff;
    max-width: 310px;
    font-size: 13px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: 0.26px;
    cursor: pointer;
  }
}

@media screen and (min-width: 960px) and (max-width: 1080px) {
  .rank-info-more {
    max-width: 260px;
  }
}

/*---------------------------------
pagination
---------------------------------*/
.item-list-pagination-container {
  width: 100%;
  height: 75px;
  background-color: #f4f4f4;
  border-bottom: solid 0.5px #cccccc;
}

@media screen and (min-width: 960px) {
  .item-list-pagination-container {
    height: 100px;
    border-bottom: none;
  }
  .item-list-pagination-container.btn-line {
    border-bottom: solid 1px #cccccc;
  }
}

.pagination-wrapper {
  width: fit-content;
  margin: 0 auto;
  padding-top: 15px;
  display: flex;
}

@media screen and (min-width: 960px) {
  .pagination-wrapper {
    padding-top: 28px;
  }
}

.pagination-wrapper li {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 22px;
  background-color: #333333;
  color: #ffffff;
  margin-left: 13px;
  font-family: "Roboto", sans-serif;
}

@media screen and (min-width: 960px) {
  .pagination-wrapper li {
    cursor: pointer;
  }
  .pagination-wrapper li:hover {
    background-color: #ffffff;
  }
  .pagination-wrapper li:hover a {
    color: #000000;
  }
}

.pagination-wrapper li:first-child {
  margin-left: 0px;
}

.pagination-wrapper li:nth-child(n + 5) {
  display: none;
}

@media screen and (min-width: 960px) {
  .pagination-wrapper li:nth-child(n + 5) {
    display: flex;
  }
}

@media screen and (min-width: 960px) {
  .pagination-wrapper li:nth-child(n + 6) {
    display: none;
  }
}

.pagination-wrapper li:last-child {
  display: flex;
  position: relative;
  margin-left: 30px;
}

.pagination-wrapper li:last-child:before {
  content: '...';
  position: absolute;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: 0.26px;
  text-align: center;
  color: #000000;
  top: 11px;
  left: -20px;
}

.pagination-wrapper li a {
  color: #ffffff;
  font-size: 13px;
}

@media screen and (min-width: 960px) {
  .pagination-wrapper li a {
    font-size: 14px;
  }
}

.pagination-wrapper li.active {
  background-color: #ffffff;
}

.pagination-wrapper li.active a {
  color: #000000;
  pointer-events: none;
}

@media screen and (min-width: 960px) {
  .pagination-wrapper li.active a {
    cursor: default;
  }
}

@media screen and (min-width: 960px) {
  .pagination-wrapper li.active {
    cursor: default;
  }
}

.pagination-wrapper.pagination-max-3 li:last-child {
  margin-left: 13px;
}

.pagination-wrapper.pagination-max-3 li:last-child:before {
  content: '';
}

@media screen and (min-width: 960px) {
  .pc-item-list-pagenav-wrapper {
    border-bottom: solid 1px #cccccc;
  }
}

.item-list-pagenav-container {
  height: 44px;
  display: flex;
  border-top: solid 1px #cccccc;
  border-bottom: solid 1px #cccccc;
}

@media screen and (min-width: 960px) {
  .item-list-pagenav-container {
    height: 80px;
    max-width: 440px;
    border-top: none;
    border-bottom: none;
    margin: 0 auto;
  }
}

.pagenav-left,
.pagenav-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagenav-left a,
.pagenav-right a {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.28px;
  text-align: center;
  color: #040404;
  border: 0;
}

@media screen and (min-width: 960px) {
  .pagenav-left a,
  .pagenav-right a {
    font-weight: 300;
    line-height: 1.14;
    letter-spacing: 0.14px;
    display: inline-block;
    height: 22px;
    width: 100%;
    padding-top: 4px;
  }
}

.pagenav-left {
  border-right: solid 1px #cccccc;
}

@media screen and (min-width: 960px) {
  .pagenav-left {
    border-right: none;
  }
}

@media screen and (min-width: 960px) {
  /*.pagenav-left a {
    border-right: solid 1px #dcdcdc;
  }*/
}

/*==============================================================================
swiper slide
==============================================================================*/
/*---------------------------------
mainview slide
---------------------------------*/
.swiper-slide img {
  width: 100%;
  padding: 0 5px;
}

@media screen and (min-width: 960px) {
  .swiper-slide img {
    padding: 0 10px;
  }
}


.swiper-pagination {
  position: relative;
  margin-bottom: 6px;
}

@media screen and (min-width: 960px) {
  .swiper-pagination {
    margin-bottom: 0px;
  }
}

@media screen and (min-width: 960px) {
  .swiper-pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 26px;
  }
}

.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin-left: 5px;
  margin-right: 5px;
  background-color: #e8e8e8;
  opacity: 1;
}

@media screen and (min-width: 960px) {
  .swiper-pagination-bullet {
    margin-left: 10px;
    margin-right: 10px;
    width: 9px;
    height: 9px;
  }
}

.swiper-pagination-bullet-active {
  border: solid 0.5px #000000;
}

@media screen and (min-width: 960px) {
  .swiper-pagination-bullet-active {
    border: solid 1px #000000;
    background-color: #ffffff;
  }
}

.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 7px;
}

.swiper-button-prev {
  background: url("../images/main-view-slide-arrow-left.png") no-repeat center center/contain;
  width: 14px;
}

@media screen and (min-width: 960px) {
  .swiper-button-prev.hidden-btn {
    display: none;
  }
}

.swiper-button-prev.bisible-pc {
  display: none;
}

@media screen and (min-width: 960px) {
  .swiper-button-prev.bisible-pc {
    display: block;
    background: url("../images/swiper-pc-arrow-left.png") no-repeat center center/contain;
    width: 9px;
    position: relative;
    margin-right: 40px;
  }
}

.swiper-button-prev::after {
  content: '';
}

@media screen and (min-width: 960px) {
  .swiper-ranking-next {
    background: url("../images/swiper-pc-arrow-right.png") no-repeat center center/contain;
    width: 7px;
    height: 11px;
    right: 0px;
    left: auto;
    z-index: 10;
    cursor: pointer;
    display: block;
    align-items: center;
    justify-content: center;
    position: relative;
  }
}

@media screen and (min-width: 960px) {
  .swiper-ranking-prev {
    background: url("../images/swiper-pc-arrow-left.png") no-repeat center center/contain;
    width: 7px;
    height: 11px;
    left: 0px;
    right: auto;
    z-index: 10;
    cursor: pointer;
    display: block;
    align-items: center;
    justify-content: center;
    position: relative;
  }
}

.swiper-button-next {
  background: url("../images/main-view-slide-arrow-right.png") no-repeat center center/contain;
  width: 14px;
}

@media screen and (min-width: 960px) {
  .swiper-button-next.hidden-btn {
    display: none;
  }
}

.swiper-button-next.bisible-pc {
  display: none;
}

@media screen and (min-width: 960px) {
  .swiper-button-next.bisible-pc {
    display: block;
    background: url("../images/swiper-pc-arrow-right.png") no-repeat center center/contain;
    width: 9px;
    position: relative;
    margin-left: 40px;
  }
}

.swiper-button-next::after {
  content: '';
}

/*---------------------------------
ranking slide
---------------------------------*/
.swiper-container.ranking-thumbs {
  margin-bottom: 20px;
}

@media screen and (min-width: 960px) {
  .swiper-container.ranking-thumbs {
    margin-bottom: 25px;
    display: flex;
    width: calc(100% - 100px);
    align-items: center;
  }
}

@media screen and (min-width: 960px) {
  .swiper-container.ranking-thumbs .swiper-wrapper {
    margin: 0 auto;
  }
}

.swiper-container.contents-thumbs {
  margin-bottom: 20px;
}

@media screen and (min-width: 960px) {
  .swiper-container.contents-thumbs {
    margin-bottom: 25px;
  }
}

@media screen and (min-width: 960px) {
  .swiper-container.contents-thumbs .swiper-wrapper {
    width: calc(100% - 100px);
    margin: 0 auto;
  }
}

.ranking {
  width: 100%;
  max-width: 620px;
  margin: 40px auto;
}

.ranking-slider {
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
}

@media screen and (min-width: 960px) {
  .ranking-slider {
    margin: 0;
  }
}

.ranking-slider .swiper-slide {
  width: auto;
}

.ranking-slider .swiper-slide img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.ranking-thumbs {
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.ranking-thumbs .swiper-slide {
  width: 100px;
  text-align: center;
  overflow: hidden;
  color: #a1a1a1;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  line-height: 30px;
  letter-spacing: 0.32px;
}

@media screen and (min-width: 960px) {
  .ranking-thumbs .swiper-slide {
    cursor: pointer;
    width: calc(100% / 5 - 4px);
  }
}

.contents {
  width: 100%;
  max-width: 620px;
  margin: 40px auto;
}

.contents-slider {
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
}

@media screen and (min-width: 960px) {
  .contents-slider {
    margin: 0;
  }
}

.contents-slider .swiper-slide {
  width: auto;
}

.contents-slider .swiper-slide img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.contents-thumbs {
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.contents-thumbs .swiper-slide {
  width: 100px;
  text-align: center;
  overflow: hidden;
  color: #a1a1a1;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.32px;
}

@media screen and (min-width: 960px) {
  .contents-thumbs .swiper-slide {
    cursor: pointer;
    width: calc(100% / 6);
  }
}

.swiper-slide.swiper-slide-thumb-active {
  color: #000000;
  font-weight: bold;
  border-bottom: solid 0.5px #000000;
}

@media screen and (min-width: 960px) {
  .swiper-slide.swiper-slide-thumb-active {
    border-bottom: solid 1px #000000;
  }
}

/*---------------------------------
07-4 staff coordinate slider
---------------------------------*/
@media screen and (min-width: 960px) {
  .swiper-container.staff-coordinate-slider {
    width: 100%;
  }
}

.swiper-container.staff-coordinate-slider-thumbnail {
  display: none;
}

@media screen and (min-width: 960px) {
  .swiper-container.staff-coordinate-slider-thumbnail {
    display: flex;
    margin-top: 20px;
    width: 100%;
  }
  .swiper-container.staff-coordinate-slider-thumbnail .swiper-wrapper {
    transform: none !important;
  }
  .swiper-container.staff-coordinate-slider-thumbnail .swiper-wrapper .swiper-slide.staff-styling-thumb {
    width: 25%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    border-bottom: none;
  }
  .swiper-container.staff-coordinate-slider-thumbnail .swiper-wrapper .swiper-slide.staff-styling-thumb.swiper-slide-thumb-active {
    border: solid 1px #a1a1a1;
  }
}

/*---------------------------------
03 item slider
---------------------------------*/
.swiper-container.item-info-slider .swiper-slide img {
  margin-bottom: -2px;
}

.item-info-slider-thumbnail {
  margin-top: 15px;
  overflow-x: scroll;
}

@media screen and (min-width: 960px) {
  .item-info-slider-thumbnail {
    overflow-x: unset;
  }
}

@media screen and (min-width: 960px) {
  .swiper-wrapper.item-info-sliber-thumb-pc-wrap {
    transform: unset !important;
    transition-duration: unset !important;
    width: calc(100% + 6px);
    flex-wrap: wrap;
  }
  .swiper-wrapper.item-info-sliber-thumb-pc-wrap .swiper-slide:nth-child(n + 7) {
    margin-top: 12px;
  }
}

.swiper-wrapper.item-info-sliber-thumb-pc-wrap .swiper-slide {
  cursor: pointer;
}

.swiper-wrapper.item-info-sliber-thumb-pc-wrap .swiper-slide.swiper-slide-thumb-active {
  border: solid 1px #a1a1a1;
}

/*==============================================================================
01 home
==============================================================================*/
/*---------------------------------
home common
---------------------------------*/
.main-section {
  border-top: solid 1px #cccccc;
}

@media screen and (min-width: 960px) {
  .main-section {
    max-width: 1300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.main-section.main-section-noline {
  border-top: none;
}

@media screen and (min-width: 960px) {
  .main-section.main-section-fullwidth {
    max-width: 100%;
  }
}

.single-separated-section {
  border-top: solid 0.5px #cccccc;
}

@media screen and (min-width: 960px) {
  .single-separated-section {
    max-width: 1300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-top: none;
  }
}

.single-separated-section .single-separated-line {
  width: calc(100% - 100px);
  border-top: none;
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  .single-separated-section .single-separated-line {
    border-top: solid 1px #efefef;
  }
}

/*---------------------------------
section-heading
---------------------------------*/
.section-heading {
  margin: 10px 0 15px;
}

@media screen and (min-width: 960px) {
  .section-heading {
    margin: 20px 0 30px;
  }
}

.section-heading h1,
.section-heading h3 {
  font-size: 26px;
  text-align: center;
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 1;
}

@media screen and (min-width: 960px) {
  .section-heading h1,
  .section-heading h3 {
    font-size: 30px;
    font-weight: 300;
  }
}

.section-heading h1 span,
.section-heading h3 span {
  font-size: 12px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.28px;
  display: block;
  margin-top: 5px;
  color: #a1a1a1;
}

@media screen and (min-width: 960px) {
  .section-heading h1 span,
  .section-heading h3 span {
    display: inline-block;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.28px;
    text-align: left;
    margin-top: 0px;
    vertical-align: middle;
    margin-bottom: 4px;
  }
}

@media screen and (min-width: 960px) {
  .section-heading h1 span.sub-heading,
  .section-heading h3 span.sub-heading {
    margin-left: 21px;
  }
}

.section-heading.single-page-section-heading {
  margin: 20px 0 25px;
}

@media screen and (min-width: 960px) {
  .section-heading.single-page-section-heading {
    margin: 20px 0 30px;
  }
}

.section-heading.my-page-section-heading {
  margin: 9px 0 30px;
}

@media screen and (min-width: 960px) {
  .section-heading.my-page-section-heading {
    margin: 21px 0 30px;
  }
}

.section-heading.sub-heading {
  margin: 40px 0 30px;
}

@media screen and (min-width: 960px) {
  .section-heading.sub-heading {
    margin: 60px 0 43px;
  }
}

.section-heading.sub-heading h3 {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.28px;
  text-align: center;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .section-heading.sub-heading h3 {
    font-size: 20px;
    line-height: 1.52;
    letter-spacing: normal;
  }
}

.section-heading-desc {
  width: calc(100% - 50px);
  margin: 30px auto 0;
}

.section-heading-desc p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0.28px;
  text-align: left;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .section-heading-desc p {
    text-align: center;
  }
}

/*---------------------------------
section-heading page-top-heading PC
---------------------------------*/
@media screen and (min-width: 960px) {
  .section-heading.page-top-heading h3 {
    font-size: 34px;
  }
}

/*---------------------------------
recommend-section, new-arraival-section, stee-section
---------------------------------*/
.product-item-container {
  width: calc(100% - 16px);
  margin: 0 auto 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

@media screen and (min-width: 960px) {
  .product-item-container {
    width: calc(100% - 100px);
    margin-bottom: 30px;
  }
}

.product-item-box {
  width: calc(100% / 3 - 6px);
  margin: 0 4px 13px;
}

.product-item-box img {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .product-item-box {
    width: calc(100% / 5 - 24px);
    margin: 0 15px;
  }
}

.product-item-box:nth-child(1),
.product-item-box:nth-child(3n + 4) {
  margin-left: 0px;
}

.product-item-box:nth-child(3),
.product-item-box:nth-child(3n + 6) {
  margin-right: 0px;
}

@media screen and (min-width: 960px) {
  .product-item-box:nth-child(3),
  .product-item-box:nth-child(3n + 6) {
    margin: 0 15px;
  }
}

@media screen and (min-width: 960px) {
  .product-item-box:nth-child(n + 4) {
    margin: 0 15px;
  }
}

@media screen and (min-width: 960px) {
  .product-item-box:nth-child(5) {
    margin-right: 0px;
  }
}

@media screen and (min-width: 960px) {
  .product-item-box:nth-child(n + 6) {
    display: none;
  }
}

h4.product-name {
  margin-top: 6px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  line-height: 17.5px;
  letter-spacing: 0.24px;
  text-align: left;
  color: #333333;
  font-weight: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

h4.product-name span {
  font-size: 11px;
  letter-spacing: 0.22px;
  color: #a1a1a1;
  margin-left: 0.25em;
}

@media screen and (min-width: 960px) {
  h4.product-name {
    margin-top: 14px;
    line-height: 18px;
    letter-spacing: 0.48px;
    text-align: left;
  }
}

p.product-price {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  letter-spacing: 0.32px;
  color: #cc0000;
  margin-top: 2px;
}


p.product-price span {
  display: none;
  font-size: 11px;
  letter-spacing: 0.22px;
  color: #a1a1a1;
  margin-left: 0.25em;
  vertical-align: middle;
}

@media screen and (min-width: 960px) {
  p.product-price span {
    vertical-align: bottom;
  }
}

@media screen and (min-width: 960px) {
  p.product-price {
    font-size: 16px;
    letter-spacing: 0.64px;
    line-height: 18px;
    margin-top: 4px;
  }
  p.product-price span {
    font-size: 12px;
    letter-spacing: 0.48px;
  }
}

/*---------------------------------
tag-container
---------------------------------*/
ul.tag-container {
  margin: 30px auto;
  width: calc(100% - 24px);
}

@media screen and (min-width: 960px) {
  ul.tag-container {
    margin: 50px auto;
    max-width: 750px;
    text-align: center;
  }
}

ul.tag-container > li {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin: 0 4px 10px 0;
  display: inline-block;
  line-height: 22px;
  letter-spacing: 0.25px;
  text-align: left;
  background-color: #f4f4f4;
  color: #000000;
  border-radius: 5px;
}

ul.tag-container > li a {
  display: block;
  padding: 10px 8px;
  font-size: 12px;
}

@media screen and (min-width: 960px) {
  ul.tag-container > li a {
    padding: 11px 15px;
    font-size: 13px;
  }
}

/*---------------------------------
topics-section
---------------------------------*/
.topics-container {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 16px);
  margin: 0 auto 40px;
}

@media screen and (min-width: 960px) {
  .topics-container {
    width: calc(100% - 100px);
    margin-bottom: 31px;
  }
}

.topics-item-box {
  width: calc(100% / 2 - 4px);
  margin: 0 4px;
}

@media screen and (min-width: 960px) {
  .topics-item-box {
    width: calc(100% / 4 - 23px);
    margin: 0 15px;
  }
}

.topics-item-box:nth-child(odd) {
  margin-left: 0px;
}

@media screen and (min-width: 960px) {
  .topics-item-box:nth-child(odd) {
    margin: 0 15px;
  }
}

.topics-item-box:nth-child(even) {
  margin-right: 0px;
}

@media screen and (min-width: 960px) {
  .topics-item-box:nth-child(even) {
    margin: 0 15px;
  }
}

.topics-item-box:nth-child(n + 3) {
  margin-top: 22px;
}

@media screen and (min-width: 960px) {
  .topics-item-box:nth-child(n + 3) {
    margin: 0 15px;
  }
}

@media screen and (min-width: 960px) {
  .topics-item-box:nth-child(n + 5) {
    margin-top: 30px;
  }
}

@media screen and (min-width: 960px) {
  .topics-item-box:nth-child(1) {
    margin-left: 0px;
  }
}

@media screen and (min-width: 960px) {
  .topics-item-box:nth-child(4) {
    margin-right: 0px;
  }
}

@media screen and (min-width: 960px) {
  .topics-item-box:nth-child(4n + 1) {
    margin-left: 0px;
  }
}

@media screen and (min-width: 960px) {
  .topics-item-box:nth-child(4n + 4) {
    margin-right: 0px;
  }
}

.topics-item-box img {
  width: 100%;
}

.topics-item-box h4 {
  margin: 8px 0;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  line-height: 15.5px;
  letter-spacing: 0.24px;
  text-align: left;
  color: #333333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media screen and (min-width: 960px) {
  .topics-item-box h4 {
    margin-top: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.48px;
    margin-top: 14px;
    line-height: 18px;
  }
}

p.topics-date {
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  line-height: 17px;
  letter-spacing: 0.22px;
  color: #a1a1a1;
}

@media screen and (min-width: 960px) {
  p.topics-date {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.48px;
  }
}

/*---------------------------------
ranking-section
---------------------------------*/
.product-item-box.ranking-item-box {
  width: calc(100% / 2 - 4px);
  margin: 0 4px;
}

.product-item-box.ranking-item-box img {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .product-item-box.ranking-item-box {
    width: calc(100% / 5 - 24px);
    margin: 0 15px;
  }
}

.product-item-box.ranking-item-box:nth-child(1) {
  margin-left: 0px;
}

.product-item-box.ranking-item-box:nth-child(2) {
  margin-right: 0px;
}

@media screen and (min-width: 960px) {
  .product-item-box.ranking-item-box:nth-child(2) {
    margin: 0 15px;
  }
}

.product-item-box.ranking-item-box:nth-child(n + 3) {
  width: calc(100% / 3 - 6px);
  margin: 20px 4px 40px;
}

.product-item-box.ranking-item-box:nth-child(n + 3) img {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .product-item-box.ranking-item-box:nth-child(n + 3) {
    width: calc(100% / 5 - 24px);
    margin: 0 15px;
  }
}

.product-item-box.ranking-item-box:nth-child(3) {
  margin-left: 0px;
}

@media screen and (min-width: 960px) {
  .product-item-box.ranking-item-box:nth-child(3) {
    margin: 0 15px;
  }
}

.product-item-box.ranking-item-box:nth-child(5) {
  margin-right: 0px;
}

.product-item-box.ranking-item-box .product-image {
  position: relative;
}

.rank-mark {
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  padding-top: 2px;
  border-radius: 10px;
  position: absolute;
  color: #a1a1a1;
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}

.rank-1 {
  color: #ffffff;
  background-color: #dcbc6e;
}

.rank-2 {
  color: #ffffff;
  background-color: #bfbfbf;
}

.rank-3 {
  color: #ffffff;
  background-color: #b7834b;
}

/*---------------------------------
goods-ranking-section
---------------------------------*/
.goods-ranking-container {
  padding-bottom: 50px;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  overflow-x: scroll;
}

@media screen and (min-width: 960px) {
  .goods-ranking-container {
    max-width: calc(100% - 100px);
    padding-bottom: 76px;
    margin: 0 auto;
  }
}

.goods-ranking-box {
  margin-left: 8px;
  min-width: calc(40% - 8px);
}

@media screen and (min-width: 960px) {
  .goods-ranking-box {
    min-width: calc(100% / 5 - 24px);
    margin: 0 15px;
  }
  .goods-ranking-box:first-child {
    margin-left: 0px;
  }
}

p.goods-type {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  line-height: 0.94;
  letter-spacing: 0.32px;
  text-align: center;
  color: #000000;
  margin-bottom: 13px;
}

@media screen and (min-width: 960px) {
  p.goods-type {
    margin-bottom: 19px;
    font-size: 16px;
  }
}

.goods-ranking-box img {
  width: 100%;
}

h4.goods-ranking-product-name {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  line-height: 15.5px;
  margin-top: 8px;
  letter-spacing: 0.24px;
  text-align: left;
  color: #333333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.read-more.goods-ranking-btn {
  margin-top: 20px;
  min-width: 110px;
  width: 60px;
  height: 40px;
}

@media screen and (min-width: 960px) {
  .read-more.goods-ranking-btn {
    margin-top: 30px;
    height: 44px;
  }
}

/*---------------------------------
staff-coordinate-section
---------------------------------*/
.staff-coordinate-container {
  max-width: calc(100% - 16px);
  margin: 0 auto 40px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-container {
    max-width: calc(100% - 130px);
    margin: 0 auto 40px;
  }
}

.staff-coordinate-container .staff-coordinate-box {
  width: calc(100% / 2 - 4px);
  margin: 0 4px;
}

.staff-coordinate-container .staff-coordinate-boximg {
  width: 100%;
}

.staff-coordinate-container .staff-coordinate-box .staff-coordinate-image img {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-container .staff-coordinate-box {
    width: calc(100% / 4 - 23px);
    margin: 0 15px;
  }
}

.staff-coordinate-container .staff-coordinate-box:nth-child(odd) {
  margin-left: 0px;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-container .staff-coordinate-box:nth-child(odd) {
    margin: 0 15px;
  }
}

.staff-coordinate-container .staff-coordinate-box:nth-child(even) {
  margin-right: 0px;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-container .staff-coordinate-box:nth-child(even) {
    margin: 0 15px;
  }
}

.staff-coordinate-container .staff-coordinate-box:nth-child(n + 3) {
  margin-top: 20px;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-container .staff-coordinate-box:nth-child(n + 3) {
    margin: 0 15px;
  }
}

@media screen and (min-width: 960px) {
  .staff-coordinate-container .staff-coordinate-box:nth-child(4n + 1) {
    margin-left: 0px;
  }
}

@media screen and (min-width: 960px) {
  .staff-coordinate-container .staff-coordinate-box:nth-child(4n + 4) {
    margin-right: 0px;
  }
}

@media screen and (min-width: 960px) {
  .staff-coordinate-container .staff-coordinate-box:nth-child(n + 5) {
    margin-top: 40px;
  }
}

.staff-coordinate-info {
  display: flex;
  flex-wrap: wrap;
  margin-top: 6px;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-info {
    margin-top: 10px;
  }
}

.staff-coordinate-staff-image {
  max-width: 45px;
  width: 30%;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-staff-image {
    max-width: 60px;
  }
}

.staff-coordinate-staff-image img {
  width: 100%;
}

.staff-coordinate-desc {
  margin-left: 6px;
  width: calc(100% - 51px);
}

@media screen and (min-width: 960px) {
  .staff-coordinate-desc {
    margin-left: 13px;
    width: calc(100% - 73px);
  }
}

.staff-coordinate-shopname {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22px;
  text-align: left;
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 4px;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-shopname {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.48px;
  }
}

.staff-coordinate-staff-name {
  font-size: 12px;
  letter-spacing: 0.24px;
  color: #333333;
  margin-top: 6px;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-staff-name {
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

.staff-coordinate-staff-hight {
  font-size: 12px;
  letter-spacing: 0.24px;
  color: #333333;
  margin-top: 5px;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-staff-hight {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.48px;
  }
}

/*---------------------------------
stee-section
---------------------------------*/
@media screen and (min-width: 960px) {
  .stee-section {
    margin-bottom: 70px;
  }
}

/*---------------------------------
brand-section
---------------------------------*/
@media screen and (min-width: 960px) {
  .brand-section {
    margin-bottom: 120px;
  }
}

.brand-container {
  width: calc(100% - 16px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .brand-container {
    max-width: calc(100% - 100px);
  }
}

.brand-box {
  width: calc(100% / 3 - 6px);
  margin: 0 4px;
}

.brand-box:nth-child(n + 10) {
  display: none;
}

@media screen and (min-width: 960px) {
  .brand-box {
    width: calc(100% / 6 - 25px);
    margin: 0 15px;
  }
  .brand-box:nth-child(n + 10) {
    display: block;
  }
}

.brand-box:nth-child(3n + 1) {
  margin-left: 0px;
}

@media screen and (min-width: 960px) {
  .brand-box:nth-child(3n + 1) {
    margin: 0 15px;
  }
}

.brand-box:nth-child(3n + 3) {
  margin-right: 0px;
}

@media screen and (min-width: 960px) {
  .brand-box:nth-child(3n + 3) {
    margin: 0 15px;
  }
}

.brand-box:nth-child(n + 4) {
  margin-top: 8px;
}

@media screen and (min-width: 960px) {
  .brand-box:nth-child(n + 4) {
    margin: 0 15px;
  }
}

@media screen and (min-width: 960px) {
  .brand-box:nth-child(6n + 1) {
    margin-left: 0px;
  }
}

@media screen and (min-width: 960px) {
  .brand-box:nth-child(6n + 6) {
    margin-right: 0px;
  }
}

@media screen and (min-width: 960px) {
  .brand-box:nth-child(n + 7) {
    margin-top: 30px;
  }
}

.brand-box img {
  width: 100%;
}

/*---------------------------------
news-section
---------------------------------*/
@media screen and (min-width: 960px) {
  .news-section {
    margin-bottom: 70px;
  }
}

.news-container {
  width: calc(100% - 16px);
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 960px) {
  .news-container {
    max-width: calc(100% - 100px);
    margin: 0 auto 33px;
  }
}

.news-box {
  width: calc(100% / 3 - 6px);
  margin: 0 4px;
}

@media screen and (min-width: 960px) {
  .news-box {
    width: calc(100% / 5 - 24px);
    margin: 0 15px;
  }
}

.news-box:first-child {
  margin-left: 0px;
}

.news-box:nth-child(n + 3) {
  margin-right: 0px;
}

@media screen and (min-width: 960px) {
  .news-box:nth-child(n + 3) {
    margin: 0 15px;
  }
}

.news-box:nth-child(n + 4) {
  display: none;
}

@media screen and (min-width: 960px) {
  .news-box:nth-child(n + 4) {
    display: block;
  }
}

@media screen and (min-width: 960px) {
  .news-box:nth-child(5n) {
    margin-right: 0px;
  }
}

.news-box img {
  width: 100%;
}

h4.news-heading {
  margin: 8px 0 0;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  line-height: 15.5px;
  letter-spacing: 0.24px;
  text-align: left;
  color: #333333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media screen and (min-width: 960px) {
  h4.news-heading {
    margin: 10px 0 0;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 18px;
    letter-spacing: 0.48px;
  }
}

p.news-date {
  margin: 2px 0 0;
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  line-height: 17px;
  letter-spacing: 0.22px;
  color: #a1a1a1;
}

/*---------------------------------
main-banner-section
---------------------------------*/
.main-banner-section {
  width: 100%;
}

.main-banner-section img {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .main-banner-section img {
    max-width: 750px;
    margin: 0 auto;
    display: block;
  }
}

/*---------------------------------
find-from-section
---------------------------------*/
.find-from-section ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: solid 1px #cccccc;
}

@media screen and (min-width: 960px) {
  .find-from-section ul {
    align-items: center;
    justify-content: center;
    margin: 42px 0 43px;
    border-top: 0;
  }
}

.find-from-section ul li {
  width: 50%;
  padding: 15px 10px 15px 15px;
  border-right: 0.5px solid #efefef;
  border-bottom: 0.5px solid #efefef;
  position: relative;
}

@media screen and (max-width: 374px) {
  .find-from-section ul li {
    padding: 15px 5px 15px 5px;
  }
}

@media screen and (min-width: 960px) {
  .find-from-section ul li {
    padding: 0px 40px 0px 50px;
    border-right: 1px solid #dcdcdc;
    border-bottom: none;
    width: unset;
    margin-right: 10px;
  }
  .find-from-section ul li:last-child {
    border-right: none;
  }
}

.find-from-section ul li:nth-child(n + 3) {
  border-bottom: none;
}

.find-from-section ul li a {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 15px;
  text-align: left;
  color: #000000;
  font-size: 14px;
  letter-spacing: 0.28px;
}

@media screen and (max-width: 374px) {
  .find-from-section ul li a {
    font-size: 11px;
  }
}

@media screen and (min-width: 960px) {
  .find-from-section ul li a {
    font-size: 13px;
    letter-spacing: 0.26px;
    position: relative;
    padding-right: 30px;
  }
}

.find-from-section ul li a > span {
  font-size: 16px;
  letter-spacing: 0.32px;
}

@media screen and (max-width: 374px) {
  .find-from-section ul li a > span {
    font-size: 13px;
  }
}

@media screen and (min-width: 960px) {
  .find-from-section ul li a > span {
    font-size: 18px;
    letter-spacing: 0.36px;
  }
}

.find-from-link:after {
  content: '';
  display: inline-block;
  width: 5.5px;
  height: 8px;
  background: url("../images/find-from-link-arrow-right.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 10px;
  top: 21px;
}

@media screen and (min-width: 960px) {
  .find-from-link:after {
    top: 4px;
    width: 7px;
    height: 11px;
    right: 0;
  }
}

/*==============================================================================
01-used
==============================================================================*/
/*---------------------------------
new-item-section > recommend-section
---------------------------------*/
.section-heading h1 span.new-item-separated,
.section-heading h3 span.new-item-separated {
  font-weight: 100;
  font-size: 24px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.14px;
  display: inline-block;
  margin-top: unset;
  color: #000000;
  margin-left: 0.5em;
  margin-right: 0.5em;
}

.section-heading h1 span.month,
.section-heading h3 span.month {
  font-weight: 300;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.14px;
  display: inline-block;
  margin-top: unset;
  color: #000000;
  vertical-align: middle;
}

@media screen and (min-width: 960px) {
  .section-heading h1 span.month,
  .section-heading h3 span.month {
    font-weight: 400;
    font-size: 18px;
  }
}

/*---------------------------------
category-section
---------------------------------*/
.category-container {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 16px);
  margin: 0 auto 40px;
}

@media screen and (min-width: 960px) {
  .category-container {
    width: calc(100% - 100px);
    margin-bottom: 36px;
  }
}

.category-item-box {
  width: calc(100% / 2 - 4px);
  margin: 0 4px 4px;
}

@media screen and (min-width: 960px) {
  .category-item-box {
    width: calc(100% / 4 - 23px);
    margin: 0 15px 15px;
  }
}

.category-item-box:nth-child(odd) {
  margin-left: 0px;
}

@media screen and (min-width: 960px) {
  .category-item-box:nth-child(odd) {
    margin-left: 15px;
  }
}

.category-item-box:first-child {
  margin-left: 0px;
}

@media screen and (min-width: 960px) {
  .category-item-box:first-child {
    margin: 0 15px 15px 0;
  }
}

.category-item-box:nth-child(n + 3) {
  margin-top: 4px;
}

@media screen and (min-width: 960px) {
  .category-item-box:nth-child(n + 3) {
    margin-top: 0;
  }
}

@media screen and (min-width: 960px) {
  .category-item-box:nth-child(n + 5) {
    margin-top: 15px;
  }
}

.category-item-box:nth-child(2n) {
  margin-right: 0px;
}

@media screen and (min-width: 960px) {
  .category-item-box:nth-child(2n) {
    margin-right: 15px;
  }
}

@media screen and (min-width: 960px) {
  .category-item-box:nth-child(4n) {
    margin-right: 0px;
  }
}

@media screen and (min-width: 960px) {
  .category-item-box:nth-child(5) {
    margin-left: 0px;
  }
}

.category-item-box {
  position: relative;
  z-index: 10;
}

.category-item-box p {
  position: absolute;
  z-index: 100;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.32px;
  text-align: center;
  color: #ffffff;
  top: calc(50% - 14px);
  width: 100%;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 960px) {
  .category-item-box p {
    font-weight: 500;
    font-size: 23px;
    line-height: 28px;
    text-shadow: 1.4px 1.4px 5px rgba(0, 0, 0, 0.44);
  }
}

.category-item-box img {
  width: 100%;
}

/*==============================================================================
01-6
==============================================================================*/
/*---------------------------------
#modal-search
---------------------------------*/
.modal-open {
  display: inline-block;
  background-color: #666666;
  color: #ffffff;
  margin: 10px;
}

.modal-open a {
  display: inline-block;
  padding: 5px;
  text-decoration: none;
  color: #ffffff;
}

.modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}

.modal:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.modal:target {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s, visibility 0.5s;
}

.modal .overlay {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #000000;
  opacity: 0.7;
  top: 0;
  left: 0;
}

.modal-content-wrapper {
  position: relative;
  width: calc(100% - 30px);
  height: 100%;
  margin: 0 auto;
}

.modal-container {
  background-color: #ffffff;
  height: 100%;
}

.modal-contents {
  margin-top: 15px;
  overflow: auto;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: calc(100% - 15px);
}

.modal-close {
  position: absolute;
  top: 13px;
  right: 15px;
  text-decoration: none;
}

.modal-close img {
  width: 15.5px;
  height: 15.5px;
}

.modal-heading h3 {
  text-align: center;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  color: #333333;
  margin: 15px 0px;
  padding-bottom: 15px;
  border-bottom: solid 0.5px #cccccc;
}

.modal-content {
  margin-top: 15px;
}

/*==============================================================================
02 
==============================================================================*/
/*---------------------------------
best-hits-cotainer
---------------------------------*/
.best-hits-cotainer {
  background-color: #f4f4f4;
}

.sub-section-heading {
  padding-top: 25px;
  margin-bottom: 20px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: center;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .sub-section-heading {
    font-size: 14px;
    color: #a1a1a1;
    padding-top: 30px;
    margin-bottom: 30px;
  }
}

.sub-section-heading span {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 0.42;
  margin-right: 0.4em;
}

@media screen and (min-width: 960px) {
  .sub-section-heading span {
    font-size: 22px;
    color: #000000;
  }
}

.best-hits-item-cotainer {
  padding-bottom: 30px;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  overflow-x: scroll;
  padding-left: 8px;
}

@media screen and (min-width: 960px) {
  .best-hits-item-cotainer {
    width: calc(100% - 65px);
    margin-left: 65px;
    padding-left: 0px;
    padding-bottom: 40px;
  }
}

.best-hits-item-cotainer .product-item-box {
  min-width: calc(100% / 2.5 - 8px);
}

@media screen and (min-width: 960px) {
  .best-hits-item-cotainer .product-item-box {
    min-width: calc(100% / 5 - 34px);
    margin: 0 15px;
  }
}

@media screen and (min-width: 960px) {
  .best-hits-item-cotainer .product-item-box:nth-child(n + 6) {
    display: block;
  }
}

.best-hits-item-cotainer .product-item-box:nth-child(n + 4) {
  margin-top: 0px;
  margin-bottom: unset;
}

.best-hits-item-cotainer .product-item-box:nth-child(1), .best-hits-item-cotainer .product-item-box:nth-child(3n + 4), .best-hits-item-cotainer .product-item-box:nth-child(3), .best-hits-item-cotainer .product-item-box:nth-child(3n + 6) {
  margin: 0 4px;
}

@media screen and (min-width: 960px) {
  .best-hits-item-cotainer .product-item-box:nth-child(1), .best-hits-item-cotainer .product-item-box:nth-child(3n + 4), .best-hits-item-cotainer .product-item-box:nth-child(3), .best-hits-item-cotainer .product-item-box:nth-child(3n + 6) {
    margin: 0 15px;
  }
}

@media screen and (min-width: 960px) {
  .best-hits-item-cotainer .product-item-box:nth-child(1) {
    margin-left: 0px;
  }
}

/*---------------------------------
item-sort-container 
---------------------------------*/
.item-list-section {
  margin-top: 20px;
}

@media screen and (min-width: 960px) {
  .item-list-section {
    margin-top: 40px;
  }
}

.item-sort-container {
  display: flex;
  width: calc(100% - 37px);
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  .item-sort-container {
    width: 100%;
    max-width: 1170px;
  }
}

.refinement {
  width: 50%;
  height: 54px;
  border-radius: 5px;
  background-color: #f4f4f4;
}

@media screen and (min-width: 960px) {
  .refinement {
    max-width: 250px;
    height: 40px;
  }
}

.refinement a {
  display: flex;
  height: 54px;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media screen and (min-width: 960px) {
  .refinement a {
    height: 40px;
  }
}

.refinement a p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: center;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .refinement a p {
    font-size: 13px;
    letter-spacing: 0.13px;
  }
}

.refinement a img {
  width: 15.5px;
  height: 15.5px;
  right: 16px;
  position: absolute;
}

@media screen and (min-width: 960px) {
  .refinement a img {
    width: 15px;
    height: 15px;
    right: 12px;
  }
}

.switch-display {
  margin-left: 5px;
  width: 50%;
  display: flex;
  height: 54px;
  border-radius: 5px;
  background-color: #f4f4f4;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .switch-display {
    max-width: 160px;
    margin-left: auto;
    height: 40px;
    margin-right: 266px;
  }
}

.switch-display p {
  width: calc(100% / 3);
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: center;
  color: #000000;
}

.switch-display img {
  width: 16px;
  height: 16px;
  margin-top: 14px;
}

@media screen and (min-width: 960px) {
  .switch-display img {
    width: 11px;
    height: 11px;
    margin-top: 10px;
  }
}

/*---------------------------------
tabs
---------------------------------*/
.list-tab {
  display: flex;
  width: calc(100% / 3 * 2 - 4px);
}

.list-tab > li {
  display: block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  width: 50%;
}

.list-tab .active {
  background: #ffffff;
  border: solid 0.5px #d2d2d2;
  height: 44px;
  border-radius: 3px;
}

@media screen and (min-width: 960px) {
  .list-tab .active {
    height: 32px;
    border: solid 1px #d2d2d2;
  }
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content-2 {
  display: none;
}

.tab-content-2.active {
  display: block;
}

.sort-tab-content {
  display: none;
}

.sort-tab-content.active {
  display: block;
}

.sort-tab-content-2 {
  display: none;
}

.sort-tab-content-2.active {
  display: block;
}

.switch-display-two,
.switch-display-three {
  width: calc(100% / 3);
}

.switch-display-two.switch-display-active,
.switch-display-three.switch-display-active {
  background-color: #ffffff;
  border-radius: 3px;
  border: solid 0.5px #d2d2d2;
  height: 44px;
}

@media screen and (min-width: 960px) {
  .switch-display-two.switch-display-active,
  .switch-display-three.switch-display-active {
    border: solid 1px #d2d2d2;
  }
}

.switch-display-two.switch-display-active img,
.switch-display-three.switch-display-active img {
  margin-top: 13px;
}

.switch-display-two a img,
.switch-display-three a img {
  width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.item-oreder-sort-tab {
  display: flex;
  width: calc(100% - 37px);
  border-radius: 5px;
  margin: 5px auto 0;
  height: 54px;
  background-color: #f4f4f4;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .item-oreder-sort-tab {
    max-width: 256px;
    margin-right: 0px;
    height: 40px;
    margin-top: -40px;
  }
}

.item-oreder-sort-tab li {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: center;
  color: #000000;
  height: 44px;
  width: calc(100% / 3 - 5px);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .item-oreder-sort-tab li {
    cursor: pointer;
    height: 32px;
  }
}

.item-oreder-sort-tab li.active {
  background-color: #ffffff;
  border: solid 0.5px #d2d2d2;
  border-radius: 3px;
}

@media screen and (min-width: 960px) {
  .item-oreder-sort-tab li.active {
    border: solid 1px #d2d2d2;
  }
}

@media screen and (min-width: 960px) {
  .item-oreder-sort-tab-pc-wrapper {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
  }
}

/*---------------------------------
product-item-list-container
---------------------------------*/
.product-item-list-container {
  margin: 20px auto 0;
  display: flex;
  flex-wrap: wrap;
  max-width: calc(100% - 16px);
  width: 100%;
}

.product-item-list-container.ranking-item-col {
  display: block;
}

.product-item-list-container.display-two-col > .product-item-box {
  width: calc(100% / 2 - 9px);
  margin: 0 9px;
}

.product-item-list-container.display-two-col > .product-item-box:nth-child(odd) {
  margin-left: 0px;
}

@media screen and (min-width: 960px) {
  .product-item-list-container.display-two-col > .product-item-box:nth-child(odd) {
    margin-left: 15px;
  }
}

.product-item-list-container.display-two-col > .product-item-box:nth-child(even) {
  margin-right: 0px;
}

@media screen and (min-width: 960px) {
  .product-item-list-container.display-two-col > .product-item-box:nth-child(even) {
    margin-right: 15px;
  }
}

.product-item-list-container.display-two-col > .product-item-box:nth-child(n + 3) {
  margin-top: 15px;
}

@media screen and (min-width: 960px) {
  .product-item-list-container.display-two-col > .product-item-box:nth-child(n + 3) {
    margin-top: 0px;
  }
}

@media screen and (min-width: 960px) {
  .product-item-list-container.display-two-col > .product-item-box:nth-child(n + 6) {
    display: block;
  }
}

.product-item-list-container.display-three-col > .product-item-box:nth-child(n + 4) {
  margin-top: 16px;
  margin-bottom: 0px;
}

@media screen and (min-width: 960px) {
  .product-item-list-container.display-three-col > .product-item-box:nth-child(n + 4) {
    margin-top: 0px;
  }
}

@media screen and (min-width: 960px) {
  .product-item-list-container.display-three-col > .product-item-box:nth-child(n + 6) {
    display: block;
  }
}

@media screen and (min-width: 960px) {
  .product-item-list-container {
    max-width: 1170px;
    margin: 30px auto 0;
  }
  .product-item-list-container.display-two-col > .product-item-box {
    width: calc(100% / 3 - 20px);
    margin: 0 15px;
  }
  .product-item-list-container.display-two-col > .product-item-box:nth-child(n + 4) {
    margin-top: 30px;
  }
  .product-item-list-container.display-two-col > .product-item-box:nth-child(3n + 1) {
    margin-left: 0px;
  }
  .product-item-list-container.display-two-col > .product-item-box:nth-child(3n) {
    margin-right: 0px;
  }
}

@media screen and (min-width: 960px) and (min-width: 960px) {
  .product-item-list-container.display-two-col > .product-item-box:nth-child(n + 6) {
    display: block;
  }
}

@media screen and (min-width: 960px) {
  .product-item-list-container.display-three-col > .product-item-box:nth-child(5n + 1) {
    margin-left: 0px;
  }
  .product-item-list-container.display-three-col > .product-item-box:nth-child(5n) {
    margin-right: 0px;
  }
  .product-item-list-container.display-three-col > .product-item-box:nth-child(n + 6) {
    margin-top: 28px;
  }
}

@media screen and (min-width: 960px) {
  .item-list-product-name-wrapper {
    width: calc(100% - 54px);
  }
}

h4.product-name.item-list-product-name {
  margin-top: 0px;
}

@media screen and (min-width: 960px) {
  h4.product-name.item-list-product-name {
    width: 100%;
  }
}

@media screen and (min-width: 960px) {
  h4.product-name.item-list-product-name.one-line {
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

/*---------------------------------
fav-icon
---------------------------------*/
.item-fav-price {
  display: flex;
  flex-wrap: wrap;
}

.item-fav-price .product-price {
  margin-left: auto;
  margin-top: 6px;
}

@media screen and (min-width: 960px) {
  .item-fav-price .product-price {
    margin-left: 0px;
    margin-top: -24px;
  }
  .item-fav-price .product-price.item-list-col-5 {
    margin-top: -8px;
  }
}

.item-fav-price .product-price > span {
  display: block;
  text-align: right;
  line-height: 1.4;
}

@media screen and (min-width: 960px) {
  .item-fav-price .product-price > span {
    display: inline-block;
  }
}

.fav-icon {
  margin-top: 2px;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  border: solid 0.5px #cccccc;
  background-image: url("../images/item-fav.png");
  background-size: 15px 13px;
  background-repeat: no-repeat;
  background-position: center center;
}

.fav-icon.active {
  background-image: url("../images/item-fav-active.png");
}

@media screen and (min-width: 960px) {
  .fav-icon {
    margin-left: auto;
  }
}

/*---------------------------------
item-pop
---------------------------------*/
.item-pop {
  display: flex;
  padding-bottom: 4px;
}

.item-pop li {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.24px;
  text-align: left;
  color: #333333;
  margin-right: 0.5em;
}

.item-pop li.item-pop-red {
  color: #cc0000;
}

.item-pop li span {
  font-family: "Roboto", sans-serif;
}

/*---------------------------------
product-color-palette
---------------------------------*/
.product-color-palette {
  margin-top: 5px;
  margin-bottom: 7.5px;
  display: flex;
}

.product-color-palette li {
  height: 4px;
  width: calc(25px / 2);
  margin-left: 2px;
}

@media screen and (min-width: 960px) {
  .product-color-palette li {
    height: 7px;
    width: 22px;
    margin-left: 5px;
  }
}

.product-color-palette li:first-child {
  margin-left: 0px;
}

.product-color-palette li.gray-palette {
  background-color: #cccccc;
}

.product-color-palette li.black-palette {
  background-color: #000000;
}

.product-color-palette li.red-palette {
  background-color: #b71414;
}

.product-color-palette li.blue-palette {
  background-color: #092d74;
}

.product-color-palette li.yellow-palette {
  background-color: #e5b629;
}

.product-color-palette li.dark-gray-palette {
  background-color: #302f3d;
}

.product-color-palette li.light-gray-palette {
  background-color: #cdc6de;
}

/*==============================================================================
03
==============================================================================*/
/*---------------------------------
03-1
---------------------------------*/
@media screen and (min-width: 960px) {
  .staff-coordinate-wrapper-left.staff-coordinate-left {
    width: calc(50% - 50px);
    max-width: 600px;
    width: 57%;
  }
}

@media screen and (min-width: 960px) {
  .staff-coordinate-wrapper-right.staff-coordinate-right {
    width: 43%;
  }
}

/*---------------------------------
item-info-slider-section
---------------------------------*/
.item-info-slider-section {
  margin-top: 16.5px;
}

@media screen and (min-width: 960px) {
  .item-info-slider-section {
    margin-top: 23px;
  }
}

.item-name-container {
  margin-top: 7.5px;
}

.item-name-container .item-name-above-heading {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.24px;
  text-align: center;
  color: #333333;
}

.item-name-container .item-name-above-heading span {
  color: #cc0000;
  margin-left: 0.5em;
}

@media screen and (min-width: 960px) {
  .item-name-container .item-name-above-heading {
    font-size: 13px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.26px;
    text-align: right;
    margin-top: 20px;
  }
}

.item-name-container .item-name-heading {
  margin-top: 10px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.32px;
  text-align: center;
  color: #302f3d;
}

@media screen and (min-width: 960px) {
  .item-name-container .item-name-heading {
    margin-top: -14px;
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.4px;
    text-align: left;
    color: #302f3d;
  }
}

.item-name-container .item-price {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .item-name-container .item-price {
    justify-content: left;
  }
}

.item-name-container .item-price li.item-price-box {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.32px;
  color: #cc0000;
  text-align: center;
}

.item-name-container .item-price li.item-price-box span {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (min-width: 960px) {
  .item-name-container .item-price li.item-price-box {
    font-size: 30px;
    line-height: 39px;
    letter-spacing: 0.6px;
  }
}

.item-name-container .item-price li.item-price-intax {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 11px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.5px;
  color: #a1a1a1;
  margin-left: 0.5em;
}

@media screen and (min-width: 960px) {
  .item-name-container .item-price li.item-price-intax {
    font-size: 14px;
    letter-spacing: 0.7px;
  }
}

.item-name-container .item-price li.item-price-point {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.42px;
  color: #ff0000;
  margin-left: 0.75em;
}

@media screen and (min-width: 960px) {
  .item-name-container .item-price li.item-price-point {
    font-size: 16px;
    letter-spacing: 0.48px;
  }
}

.item-info-slider-text-container {
  position: absolute;
  width: 100%;
  bottom: -2px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  z-index: 2;
  height: 50px;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}

.item-info-slider-text-container p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 10px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.4px;
  text-align: center;
  color: #ffffff;
  position: absolute;
  bottom: 6.5px;
}

.item-info-tab {
  border-top: solid 0.5px #cccccc;
  display: flex;
  width: 100%;
  margin: 30px auto 0;
  height: 44px;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .item-info-tab {
    margin: 20px auto 0;
    height: 53px;
  }
}

.item-info-tab li {
  width: calc(100% / 3);
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: center;
  color: #000000;
  border-bottom: solid 0.5px #cccccc;
  border-left: solid 0.5px #cccccc;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 960px) {
  .item-info-tab li {
    cursor: pointer;
  }
}

.item-info-tab li:first-child {
  border-left: none;
}

.item-info-tab li.active {
  border-bottom: none;
}

.item-info-tab.second-col {
  margin: 0px auto;
  height: 60px;
}

.item-info-tab.second-col li {
  width: 50%;
  text-align: center;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  color: #000000;
}

.item-info-description {
  width: calc(100% - 36px);
  margin: 0 auto;
}

.item-info-description p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  line-height: 22.5px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 1px;
  text-align: left;
  color: #000000;
}

label.grad-btn.item-info-grand {
  bottom: 22px;
}

@media screen and (min-width: 960px) {
  label.grad-btn {
    display: flex;
    max-width: 190px;
  }
}

.product-item-info-container {
  margin-top: 25px;
  position: relative;
  min-height: 170px;
}

.product-item-info-container .grad-item {
  position: relative;
  overflow: hidden;
}

.product-item-info-container .grad-item::before {
  content: '';
  display: block;
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 110px;
  background: -webkit-linear-gradient(top, #ffffff00 0%, rgba(255, 255, 255, 0.99) 50%, rgba(255, 255, 255, 0.99) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
}

.item-star-rating-container {
  border-top: solid 0.5px #cccccc;
  background-color: #f4f4f4;
}

@media screen and (min-width: 960px) {
  .item-star-rating-container {
    border-top: solid 1px #e2e2e2;
  }
}

.item-star-rating-container .item-star-rating-wrapper {
  height: 44px;
  width: calc(100% - 66px);
  margin: 0 auto;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .item-star-rating-container .item-star-rating-wrapper {
    width: calc(100% - 128px);
    height: 53px;
  }
}

.item-star-rating-container .item-star-rating-wrapper .star-rating-heading p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: center;
  color: #000000;
  margin-left: 0px;
}

@media screen and (min-width: 960px) {
  .item-star-rating-container .item-star-rating-wrapper .star-rating-heading p span {
    margin-left: 1em;
    margin-right: 1em;
  }
}

.item-star-rating-container .item-star-rating-wrapper .star-rating-list {
  display: flex;
  margin-top: -3px;
}

.item-star-rating-container .item-star-rating-wrapper .star-rating-list li {
  margin-left: 5px;
}

.item-star-rating-container .item-star-rating-wrapper .star-rating-list li img {
  width: 16px;
  height: 15px;
}

@media screen and (min-width: 960px) {
  .item-star-rating-container .item-star-rating-wrapper .star-rating-list li img {
    width: 22px;
    height: 21px;
  }
}

.item-star-rating-container .item-star-rating-wrapper .star-rating-list li:first-child {
  margin-left: 0px;
}

.item-star-rating-container .item-star-rating-wrapper .star-rating-value {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: center;
  color: #000000;
  margin-left: auto;
}

.item-info-link-container {
  border-top: solid 0.5px #cccccc;
  display: flex;
}

@media screen and (min-width: 960px) {
  .item-info-link-container {
    border-top: solid 1px #e2e2e2;
    border-bottom: solid 1px #e2e2e2;
  }
}

.item-info-link-container li {
  width: calc(100% / 3);
  height: 45px;
  text-align: center;
  border-left: solid 0.5px #cccccc;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .item-info-link-container li {
    border-left: solid 1px #e2e2e2;
    height: 53px;
  }
}

.item-info-link-container li span.item-info-link-twitter {
  color: #78cdf0;
  font-weight: 600;
}

.item-info-link-container li span.item-info-link-line {
  color: #33a936;
  font-weight: 600;
}

.item-info-link-container li:first-child {
  border-left: none;
}

.product-item-info-list-container {
  margin-top: 30px;
}

.staff-coordinate-container.third-col .staff-coordinate-box {
  width: calc(100% / 3 - 6px);
  margin: 0 4px;
}

.staff-coordinate-container.third-col .staff-coordinate-box img {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-container.third-col .staff-coordinate-box {
    width: calc(100% / 4 - 23px);
    margin: 0 15px;
  }
}

.staff-coordinate-container.third-col .staff-coordinate-box:nth-child(3n + 1) {
  margin-left: 0;
}

.staff-coordinate-container.third-col .staff-coordinate-box:nth-child(3n) {
  margin-right: 0;
}

.staff-coordinate-container.third-col .staff-coordinate-box:nth-child(n + 4) {
  margin-top: 20px;
}

.staff-coordinate-desc.item-info-staff-coordinate-desc {
  margin: 0px;
  width: 100%;
}

@media screen and (min-width: 960px) {
  .swiper-button-prev.item-info-slider {
    width: 21px;
  }
}

@media screen and (min-width: 960px) {
  .swiper-button-next.item-info-slider {
    width: 21px;
  }
}

/*---------------------------------
product-item-info-review-container
---------------------------------*/
.product-item-info-review-container {
  width: calc(100% - 40px);
  margin: 26px auto 30px;
}

.product-item-info-review-box {
  border-bottom: solid 0.5px #efefef;
}

@media screen and (min-width: 960px) {
  .product-item-info-review-box {
    border-bottom: solid 1px #efefef;
  }
}

.product-item-info-review-box .reviewer-name {
  margin-top: 26px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 11px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 18.5px;
  letter-spacing: 0.55px;
  text-align: left;
  color: #a1a1a1;
}

.product-item-info-review-box .reviewer-name span {
  color: #cc0000;
}

.product-item-info-review-box .reviewer-info {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 11px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 18.5px;
  letter-spacing: 0.55px;
  text-align: left;
  color: #a1a1a1;
}

.product-item-info-review-box .reviewer-info span {
  color: #cc0000;
}

.product-item-info-review-box .reviewer-star-rate {
  margin-top: 13.5px;
  display: flex;
}

.product-item-info-review-box .reviewer-star-rate li {
  width: 16px;
  width: 15px;
  margin-left: 5px;
}

@media screen and (min-width: 960px) {
  .product-item-info-review-box .reviewer-star-rate li {
    margin-left: 11px;
  }
}

.product-item-info-review-box .reviewer-star-rate li:first-child {
  margin-left: 0px;
}

.product-item-info-review-box .reviewer-comment {
  margin-top: 15px;
  padding-bottom: 25px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 22.5px;
  letter-spacing: 1px;
  text-align: left;
  color: #000000;
}

/*---------------------------------
.fixed-under-cart-contaier
---------------------------------*/
.fixed-under-cart-contaier {
  height: 60px;
  background: rgba(255, 255, 255, 0.86);
  position: fixed;
  width: 100%;
  bottom: 0px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fixed-under-cart-contaier.is-hidden {
  display: none;
}

@media screen and (min-width: 960px) {
  .fixed-under-cart-contaier {
    display: none;
  }
}

.fixed-under-cart-contaier .under-cart-price-heading {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fixed-under-cart-contaier .under-cart-price-heading li {
  font-family: "Roboto", sans-serif;
  font-size: 19px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.38px;
  text-align: right;
  color: #cc0000;
  margin-left: 20px;
}

.fixed-under-cart-contaier .under-cart-price-heading li span {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 18px;
  letter-spacing: 0.36px;
}

.fixed-under-cart-contaier .under-cart-price-heading li.in-tax {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 11px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.55px;
  text-align: left;
  color: #a1a1a1;
  margin-left: 0.5em;
}

.fixed-under-cart-contaier .fav-icon.under-cart-fav-btn {
  height: 46px;
  background-color: #ffffff;
  margin-left: auto;
  border-bottom: 4px solid #cecece;
  border-radius: 24px;
}

/*---------------------------------
.into-cart-modal
---------------------------------*/
.modal a {
  display: block;
  height: 100%;
}

@media screen and (min-width: 960px) {
  .modal a {
    height: unset;
  }
}

.modal.into-cart-modal .overlay.into-cart-modal-overlay {
  top: 340px;
}

@media screen and (min-width: 960px) {
  .modal.into-cart-modal .overlay.into-cart-modal-overlay {
    top: 0px;
  }
}

.modal.into-cart-modal .modal-content-wrapper {
  height: calc(100% - 360px);
}

@media screen and (min-width: 960px) {
  .modal.into-cart-modal .modal-content-wrapper {
    width: calc(100% - 500px);
    height: calc(100% - 220px);
    max-width: 750px;
  }
}

.modal.into-cart-modal .modal-contents {
  margin-top: -305px;
  height: 100%;
}

@media screen and (min-width: 960px) {
  .modal.into-cart-modal .modal-contents {
    margin-top: 120px;
  }
}

.modal-heading.into-cart-modal-heading h3 {
  margin: 15px 0px 0px;
}

@media screen and (min-width: 960px) {
  .modal-heading.into-cart-modal-heading h3 {
    border-bottom: none;
  }
}

.into-cart-item-box-info {
  display: flex;
  width: calc(100% - 20px);
  margin: 20px auto 10px;
}

@media screen and (min-width: 960px) {
  .into-cart-item-box-info {
    width: 43%;
    margin: 0;
  }
}

.into-cart-item-box-info .into-cart-item-box-image {
  max-width: 71px;
}

@media screen and (min-width: 960px) {
  .into-cart-item-box-info .into-cart-item-box-image {
    max-width: 40px;
    margin-left: 40px;
  }
}

.into-cart-item-box-info .into-cart-item-box-image img {
  width: 100%;
}

.into-cart-item-box-info .into-cart-item-color-price {
  margin-left: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}

.into-cart-item-box-info .into-cart-item-color-price li {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: left;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .into-cart-item-box-info .into-cart-item-color-price li {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 13px;
    letter-spacing: 0.39px;
    font-weight: bold;
  }
}

.into-cart-item-box-info .into-cart-item-color-price li.price {
  font-family: "Roboto", sans-serif;
  font-size: 19px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.76px;
  color: #cc0000;
  margin-top: 10px;
  margin-left: -16px;
}

.into-cart-item-box-info .into-cart-item-color-price li span {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 18px;
  letter-spacing: 0.36px;
}

.into-cart-item-box-info .into-cart-item-color-price li span.in-tax {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.55px;
  color: #a1a1a1;
  margin-left: 0.5em;
}

@media screen and (min-width: 960px) {
  .into-cart-item-list-container {
    border-top: solid 1px #cccccc;
  }
}

.into-cart-item-under-wrapper {
  height: 54.5px;
  background-color: #f7f7f7;
  display: flex;
  align-items: center;
  border-bottom: solid 0.5px #cccccc;
}

@media screen and (min-width: 960px) {
  .into-cart-item-under-wrapper {
    border-bottom: none;
    width: 57%;
  }
}

.into-cart-item-under-wrapper .into-cart-item-under-instock {
  margin-left: 12px;
}

@media screen and (min-width: 960px) {
  .into-cart-item-under-wrapper .into-cart-item-under-instock {
    margin-left: 45px;
  }
}

.into-cart-item-under-wrapper .into-cart-item-under-instock li {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 19px;
  letter-spacing: 0.28px;
  text-align: left;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .into-cart-item-under-wrapper .into-cart-item-under-instock li {
    font-size: 14px;
    letter-spacing: 0.26px;
  }
}

.fav-icon.item-list-into-cart-fav {
  margin-left: auto;
}

/*---------------------------------
.modal-stock-info
---------------------------------*/
@media screen and (min-width: 960px) {
  .modal-container.height-fit {
    height: fit-content;
  }
}

.modal.stock-info-modal .overlay.into-cart-modal-overlay {
  top: 0px;
}

.modal.stock-info-modal .modal-content-wrapper {
  width: 100%;
}

.modal.stock-info-modal .modal-contents {
  margin-top: 0px;
  height: 100%;
}

@media screen and (min-width: 960px) {
  .modal.stock-info-modal .modal-contents {
    max-width: 650px;
    margin: 0 auto;
  }
}

.item-stock-info-modal-container .stock-info-item {
  display: flex;
  width: calc(100% - 50px);
  margin: 25px auto 20px;
}

@media screen and (min-width: 960px) {
  .item-stock-info-modal-container .stock-info-item {
    justify-content: center;
    margin: 27px auto 30px;
  }
}

.item-stock-info-modal-container .stock-info-item .stock-info-img {
  max-width: 71.5px;
}

@media screen and (min-width: 960px) {
  .item-stock-info-modal-container .stock-info-item .stock-info-img {
    max-width: 100px;
  }
}

.item-stock-info-modal-container .stock-info-item .stock-info-img img {
  width: 100%;
}

.item-stock-info-modal-container .stock-info-item .stock-info-heading {
  margin-left: 32.5px;
}

@media screen and (min-width: 960px) {
  .item-stock-info-modal-container .stock-info-item .stock-info-heading {
    margin-top: 20px;
    margin-left: 60px;
  }
}

.item-stock-info-modal-container .stock-info-item .stock-info-heading li.stock-info-heading-item-name {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 18.5px;
  letter-spacing: 0.32px;
  color: #302f3d;
}

@media screen and (min-width: 960px) {
  .item-stock-info-modal-container .stock-info-item .stock-info-heading li.stock-info-heading-item-name {
    font-size: 18px;
    letter-spacing: 0.36px;
  }
}

.item-stock-info-modal-container .stock-info-item .stock-info-heading li.stock-info-heading-item-price {
  margin-top: 12px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.32px;
  color: #cc0000;
}

@media screen and (min-width: 960px) {
  .item-stock-info-modal-container .stock-info-item .stock-info-heading li.stock-info-heading-item-price {
    font-size: 20px;
    letter-spacing: 0.4px;
  }
}

.item-stock-info-modal-container .stock-info-item .stock-info-heading li.stock-info-heading-item-price span {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.item-stock-info-modal-container .stock-info-item .stock-info-heading li.stock-info-heading-item-price span.in-tax {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #a1a1a1;
  margin-left: 0.5em;
}

@media screen and (min-width: 960px) {
  .item-stock-info-modal-container .stock-info-item .stock-info-heading li.stock-info-heading-item-price span.in-tax {
    font-size: 14px;
    margin-left: 10px;
  }
}

.item-stock-info-modal-container .stock-info-item .stock-info-heading li.stock-info-heading-item-number {
  margin-top: 11.5px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  letter-spacing: 0.9px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  color: #a1a1a1;
}

@media screen and (min-width: 960px) {
  .item-stock-info-modal-container .stock-info-item .stock-info-heading li.stock-info-heading-item-number {
    font-size: 14px;
    letter-spacing: 0.98px;
  }
}

.item-stock-info-modal-container .stock-info-item .stock-info-heading li.stock-info-heading-item-number span {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  letter-spacing: 0.56px;
}

@media screen and (min-width: 960px) {
  .item-stock-info-modal-container .stock-info-item .stock-info-heading li.stock-info-heading-item-number span {
    font-size: 15px;
    letter-spacing: 0.3px;
  }
}

.item-stock-info-list-section > .item-stock-info-list-content:nth-of-type(n + 2) {
  display: none;
}

.selectItemWrapper {
  width: calc(100% - 40px);
  position: relative;
  display: block;
  margin: 0 auto;
}

.selectItemWrapper #selectItem {
  width: 100%;
  margin: 0 auto;
  height: 45px;
  border-radius: 3px;
  box-shadow: inset 0px 0.5px 2.5px 0 rgba(14, 5, 10, 0.25);
  border: solid 0.5px #cccccc;
  background-color: #f4f4f4;
  display: flex;
  padding-left: 20px;
}

@media screen and (min-width: 960px) {
  .selectItemWrapper #selectItem {
    border: solid 1px #cccccc;
  }
}

.selectItemWrapper::after {
  position: absolute;
  content: '';
  width: 8px;
  height: 5.5px;
  background: url(../images/grad-btn-arrow-right.png);
  background-size: contain;
  right: 10px;
  top: 19px;
}

.item-stock-info-list-description {
  width: calc(100% - 40px);
  margin: 30px auto 50px;
}

.item-stock-info-list-description li {
  margin-top: 20px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 22.5px;
  letter-spacing: 0.26px;
  color: black;
  position: relative;
  margin-left: 16px;
}

.item-stock-info-list-description li:first-child {
  margin-top: 0px;
}

.item-stock-info-list-description li::before {
  position: absolute;
  content: '※';
  left: -16px;
  font-size: 13px;
}

/*---------------------------------
stock-list-accordion
---------------------.------------*/
.stock-list-accordion {
  width: 100%;
  margin: 30px auto 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.stock-list-accordion .link {
  height: 55px;
  background-color: #f7f7f7;
  cursor: pointer;
  display: block;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.3px;
  text-align: center;
  color: #333333;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-top: solid 0.5px #cccccc;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .stock-list-accordion .link {
    height: 44px;
    font-size: 15.5px;
  }
}

.stock-list-accordion .link img {
  width: 8px;
  height: 5.5px;
  position: absolute;
  top: 23px;
  right: 15px;
}

.stock-list-accordion li:last-child .link {
  border-bottom: solid 0.5px #cccccc;
}

.stock-list-accordion li i {
  position: absolute;
  top: 16px;
  left: 12px;
  font-size: 18px;
  color: #595959;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.stock-list-accordion li i.fa-chevron-down {
  right: 12px;
  left: auto;
  font-size: 16px;
}

.stock-list-accordion li.open img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.stock-list-accordion li.default .stock-list-content {
  display: block;
}

.stock-list-content {
  display: none;
}

.stock-list-content li {
  padding-left: 20px;
  padding-right: 20px;
  height: 43px;
  border-top: solid 0.5px #efefef;
  border-bottom: solid 0.5px #efefef;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  color: #333333;
}

@media screen and (min-width: 960px) {
  .stock-list-content li {
    font-size: 15.5px;
  }
}

.stock-list-content li span {
  font-family: "Roboto", sans-serif;
}

.stock-list-content li span.stock-satus {
  margin-left: auto;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
}

/*---------------------------------
into-cart-item-list-pc-container
---------------------.------------*/
.into-cart-item-list-pc-container {
  display: none;
}

@media screen and (min-width: 960px) {
  .into-cart-item-list-pc-container {
    border-top: solid 1px #e2e2e2;
    display: block;
    margin-top: 20px;
  }
}

.into-cart-item-list-pc-container .into-cart-item-box-info.into-cart-item-box-info-pc {
  width: 100%;
  display: grid;
  grid-template-columns: 40px 210px 70px 1fr;
  border-bottom: solid 1px #e2e2e2;
  margin: 10px auto 0px;
  padding-bottom: 10px;
}

@media screen and (max-width: 1100px) {
  .into-cart-item-list-pc-container .into-cart-item-box-info.into-cart-item-box-info-pc {
    grid-template-columns: 40px 140px 70px 1fr;
    border-bottom: none;
    margin: 9px auto 0px;
    padding-bottom: 9px;
  }
}

.into-cart-item-list-pc-container .into-cart-item-box-info .into-cart-item-box-image.into-cart-item-box-image-pc {
  width: 40px;
  margin-left: 0px;
}

.into-cart-item-list-pc-container .into-cart-item-box-info.into-cart-item-box-info .into-cart-item-color-price {
  margin-left: 20px;
  align-items: flex-start;
}

@media screen and (min-width: 960px) and (max-width: 1055px) {
  .into-cart-item-list-pc-container .into-cart-item-box-info.into-cart-item-box-info .into-cart-item-color-price {
    margin-left: 10px;
  }
}

.into-cart-item-list-pc-container .into-cart-item-box-info.into-cart-item-box-info .into-cart-item-color-price li {
  font-size: 13px;
  letter-spacing: 0.39px;
  font-weight: bold;
}

.into-cart-item-list-pc-container .into-cart-item-box-info .into-cart-item-under-instock {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.into-cart-item-list-pc-container .into-cart-item-box-info .into-cart-item-under-instock li {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 20px;
  letter-spacing: 0.26px;
  text-align: left;
  color: #000000;
}

.into-cart-item-list-pc-container .into-cart-item-box-info .into-cart-item-under-instock li span {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.into-cart-item-list-pc-container .into-cart-item-box-info .item-list-into-cart-btn {
  margin-top: 2px;
  margin-left: auto;
  margin-right: 0px;
  height: 43px;
  border-bottom: 5px solid #990000;
  max-width: 190px;
}

@media screen and (min-width: 960px) {
  .into-cart-item-list-pc-container .into-cart-item-box-info .item-list-into-cart-btn {
    min-width: 130px;
  }
}

.into-cart-item-list-pc-container .into-cart-item-box-info .item-list-into-cart-btn:hover {
  margin-top: 3px;
  border-bottom: 2px solid #990000;
}

.into-cart-item-list-pc-container .into-cart-item-box-info .restock-mail a {
  margin-left: auto;
  margin-right: 0px;
  height: 43px;
  max-width: 190px;
  width: 100%;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.39px;
  text-align: center;
  color: #302f3d;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 43px;
}

.into-cart-item-list-pc-container .into-cart-item-box-info .restock-mail a img {
  width: 18px;
  height: 13px;
  margin-left: 6px;
}

.into-cart-item-list-pc-container .into-cart-item-box-info .sold-out {
  margin-left: auto;
  margin-right: 0px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  max-width: 190px;
  width: 100%;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 37px;
  letter-spacing: 0.39px;
  color: #a1a1a1;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 43px;
}

.staff-coordinate-container.item-info-container {
  width: calc(100% - 100px);
}

.staff-coordinate-container.item-info-container .staff-coordinate-box {
  width: calc(100% / 5 - 24px);
  margin: 0 15px;
}

.staff-coordinate-container.item-info-container .staff-coordinate-box:first-child {
  margin-left: 0px;
}

.staff-coordinate-container.item-info-container .staff-coordinate-box:nth-child(n + 5) {
  margin-right: 0px;
}

.staff-coordinate-container.item-info-container .staff-coordinate-box .staff-coordinate-info {
  margin-top: 14px;
}

.staff-coordinate-container.item-info-container .staff-coordinate-box .staff-coordinate-info .staff-coordinate-desc {
  font-size: 100px;
}

.staff-coordinate-container.item-info-container .staff-coordinate-box .staff-coordinate-info .staff-coordinate-desc .staff-coordinate-shopname {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.48px;
  text-align: left;
}

.staff-coordinate-container.item-info-container .staff-coordinate-box .staff-coordinate-info .staff-coordinate-desc .staff-coordinate-staff-name {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  text-align: left;
  font-size: 14px;
  letter-spacing: 0.56px;
  margin-top: 5px;
}

.staff-coordinate-container.item-info-container .staff-coordinate-box .staff-coordinate-info .staff-coordinate-desc .staff-coordinate-staff-hight {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.48px;
  text-align: left;
  margin-top: 5px;
}

@media screen and (min-width: 960px) {
  .into-cart-item-box {
    display: flex;
  }
}

@media screen and (min-width: 960px) {
  .into-cart-item-box.modal-pc-fit {
    margin-top: 0px;
    padding-bottom: 0px;
    border-bottom: solid 1px #e2e2e2;
  }
}

@media screen and (min-width: 960px) {
  .into-cart-item-box.modal-pc-fit .into-cart-item-box-info {
    padding-top: 4px;
  }
}

@media screen and (min-width: 960px) {
  .into-cart-item-box.modal-pc-fit .into-cart-item-under-wrapper {
    width: 410px;
    margin-left: auto;
  }
}

/*==============================================================================
04 single-ranking-section
==============================================================================*/

@media screen and (min-width: 960px) {
  .single-ranking-container {
    border-top: none;
  }
}

.ranking-sex-label-container {
  width: calc(100% - 20px);
  margin: 10px auto;
  display: flex;
  height: 44px;
}

@media screen and (min-width: 960px) {
  .ranking-sex-label-container {
    width: calc(100% - 130px);
    padding-top: 10px;
    border-top: solid 1px #cccccc;
    height: 60px;
  }
}

.ranking-sex-label-container li {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: center;
  color: #333333;
}

.ranking-sex-label-container li.active {
  background-color: #f4f4f4;
}

@media screen and (min-width: 960px) {
  .ranking-sex-label-container li {
    font-size: 16px;
    cursor: pointer;
  }
}

.category-sort-tab {
  display: flex;
  flex-wrap: wrap;
  border-top: solid 0.5px #cccccc;
  border-bottom: solid 0.5px #cccccc;
}

@media screen and (min-width: 960px) {
  .category-sort-tab {
    width: calc(100% - 130px);
    margin: 0 auto;
    border-top: solid 1px #cccccc;
    border-bottom: solid 1px #cccccc;
  }
}

.category-sort-tab li {
  width: calc(100% / 3);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  font-size: 12px;
  letter-spacing: normal;
  color: #000000;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
  border-right: solid 0.5px #efefef;
  border-bottom: solid 0.5px #efefef;
}

.category-sort-tab li.active {
  background-color: #f4f4f4;
}

.category-sort-tab li:nth-child(3n) {
  border-right: none;
}

.category-sort-tab li:nth-child(n + 10) {
  border-bottom: none;
}

@media screen and (min-width: 960px) {
  .category-sort-tab li {
    width: calc(100% / 5);
    height: 50px;
    cursor: pointer;
    border-right: solid 1px #efefef;
    border-bottom: solid 1px #efefef;
  }
  .category-sort-tab li:nth-child(3n) {
    border-right: solid 1px #efefef;
  }
  .category-sort-tab li:nth-child(5n) {
    border-right: none;
  }
  .category-sort-tab li:nth-child(n + 10) {
    border-bottom: solid 1px #efefef;
  }
  .category-sort-tab li:nth-child(n + 11) {
    border-bottom: none;
  }
}

.ranking-item-list-heading {
  margin-top: 40px;
  margin-bottom: 20px;
}

.ranking-item-list-heading h3 {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.32px;
  text-align: center;
  color: #a1a1a1;
}

@media screen and (min-width: 960px) {
  .ranking-item-list-heading h3 {
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: center;
    color: #000000;
  }
}

.ranking-item-list-heading h4 {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  text-align: center;
  color: #a1a1a1;
  margin-top: 6px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (min-width: 960px) {
  .ranking-item-list-heading h4 {
    font-size: 20px;
    letter-spacing: 0.4px;
    text-align: center;
    color: #333333;
  }
}

.ranking-item-list-heading h5 {
  font-size: 13px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.26px;
  text-align: center;
  color: #a1a1a1;
  margin-top: 6px;
}

.ranking-item-list-heading h5 span {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  letter-spacing: 0.28px;
  margin-right: 0.25em;
}

@media screen and (min-width: 960px) {
  .ranking-item-list-heading h5 {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
    letter-spacing: 0.28px;
  }
  .ranking-item-list-heading h5 span {
    font-size: 16px;
    letter-spacing: 0.32px;
    font-family: "Roboto", sans-serif;
  }
}

.ranking-item-col .product-item-box.ranking-item-box {
  width: calc(100% / 2 - 4px);
  margin: 0 4px;
}

@media screen and (min-width: 960px) {
  .ranking-item-col .product-item-box.ranking-item-box {
    width: calc(100% / 5 - 24px);
    margin: 0 15px;
  }
}

.ranking-item-col .product-item-box.ranking-item-box:nth-child(n + 3) {
  width: calc(100% / 2 - 4px);
  margin: 0 4px;
  margin-top: 20px;
}

@media screen and (min-width: 960px) {
  .ranking-item-col .product-item-box.ranking-item-box:nth-child(n + 3) {
    width: calc(100% / 5 - 24px);
    margin: 0 15px;
  }
}

.ranking-item-col .product-item-box.ranking-item-box:nth-child(even) {
  margin-right: 0px;
}

@media screen and (min-width: 960px) {
  .ranking-item-col .product-item-box.ranking-item-box:nth-child(even) {
    width: calc(100% / 5 - 24px);
    margin: 0 15px;
  }
}

.ranking-item-col .product-item-box.ranking-item-box:nth-child(odd) {
  margin-left: 0px;
}

@media screen and (min-width: 960px) {
  .ranking-item-col .product-item-box.ranking-item-box:nth-child(odd) {
    width: calc(100% / 5 - 24px);
    margin: 0 15px;
  }
}

@media screen and (min-width: 960px) {
  .ranking-item-col .product-item-box.ranking-item-box:nth-child(5n + 1) {
    margin-left: 0px;
  }
}

@media screen and (min-width: 960px) {
  .ranking-item-col .product-item-box.ranking-item-box:nth-child(5n) {
    margin-right: 0px;
  }
}

@media screen and (min-width: 960px) {
  .ranking-item-col .product-item-box.ranking-item-box:nth-child(n + 6) {
    display: block;
    margin-top: 30px;
  }
}

@media screen and (min-width: 960px) {
  .ranking-item-col .product-item-box.ranking-item-box .product-image > .rank-mark {
    top: 6px;
    left: 5px;
    width: 25px;
    height: 25px;
    border-radius: 12.5px;
  }
}

/*==============================================================================
07 staff coordinate
==============================================================================*/
.staff-coordinate-tabs {
  display: flex;
  width: 100%;
  height: 45px;
}

.staff-coordinate-tabs li {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.32px;
  color: #a1a1a1;
  border-bottom: solid 0.5px #cccccc;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-tabs li {
    font-size: 15px;
    letter-spacing: 0.3px;
  }
}

.staff-coordinate-tabs li.active {
  font-weight: bold;
  color: #333333;
  border-bottom: solid 0.5px #333333;
  pointer-events: none;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-tabs {
    width: calc(100% - 130px);
    margin: 0 auto;
  }
}

@media screen and (min-width: 960px) {
  .sort-refind-wapper {
    width: calc(100% - 130px);
    margin: 10px auto 0;
    border-top: solid 1px #efefef;
  }
}

@media screen and (min-width: 960px) {
  .sort-refind-container {
    display: flex;
    width: 610px;
    margin-left: auto;
  }
}

.staff-coordinate-sort {
  border-bottom: solid 0.5px #efefef;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-sort {
    border-bottom: none;
  }
}

.staff-coordinate-sort-label-container {
  width: calc(100% - 20px);
  margin: 10px auto;
  display: flex;
  height: 44px;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-sort-label-container {
    width: 270px;
    height: 40px;
    padding: 4px;
    width: 270px;
    border-radius: 4px;
    background-color: #f4f4f4;
    margin: 30px 20px 0 0;
  }
}

.staff-coordinate-sort-label-container li {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: center;
  color: #000000;
  font-size: 13px;
  letter-spacing: 0.26px;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-sort-label-container li {
    cursor: pointer;
    height: 32px;
  }
}

.staff-coordinate-sort-label-container li.active {
  background-color: #f4f4f4;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-sort-label-container li.active {
    border-radius: 3px;
    border: solid 1px #d2d2d2;
    background-color: #ffffff;
  }
}

@media screen and (min-width: 960px) {
  .staff-coordinate-description-container label.grad-btn {
    display: none;
  }
}

.staff-coodinate-insta-link a img {
  width: 13px;
  height: 13.5px;
}

.staff-coodinate-insta-link a span {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.24px;
  color: #333333;
  margin-left: 0.25em;
}

@media screen and (min-width: 960px) {
  .staff-coodinate-insta-link a {
    display: none;
  }
}

.staff-coordinate-count {
  margin-left: 10px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.24px;
  text-align: left;
  color: #000000;
  margin-bottom: 20px;
}

.staff-coordinate-count span {
  font-family: "Roboto", sans-serif;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-count {
    margin-left: 0px;
    width: calc(100% - 130px);
    margin: -20px auto 44px;
    text-align: left;
  }
}

.section-heading.staff-ranking-heading {
  margin: 40px 0 30px;
}

.section-heading.staff-ranking-heading h3 {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.32px;
  text-align: center;
  color: #a1a1a1;
}

@media screen and (min-width: 960px) {
  .section-heading.staff-ranking-heading {
    margin: 70px 0 50px;
  }
  .section-heading.staff-ranking-heading h3 {
    font-size: 20px;
    letter-spacing: 0.4px;
  }
}

.staff-ranking-container {
  display: flex;
  width: calc(100% - 40px);
  margin: 0 auto 40px;
  flex-wrap: wrap;
}

@media screen and (min-width: 960px) {
  .staff-ranking-container {
    width: calc(100% - 140px);
  }
}

.staff-ranking-box {
  width: calc(100% / 3 - 8px);
  margin-left: 12px;
}

.staff-ranking-box:nth-child(3n + 1) {
  margin-left: 0px;
}

.staff-ranking-box:nth-child(n + 4) {
  margin-top: 25px;
}

@media screen and (min-width: 960px) {
  .staff-ranking-box {
    width: calc(100% / 5 - 24px);
    margin: 0 15px;
  }
  .staff-ranking-box:nth-child(3n + 1) {
    margin: 0 15px;
  }
  .staff-ranking-box:nth-child(n + 4) {
    margin: 0 15px;
  }
  .staff-ranking-box:nth-child(5n + 1) {
    margin-left: 0;
  }
  .staff-ranking-box:nth-child(5n) {
    margin-right: 0;
  }
  .staff-ranking-box:nth-child(n + 6) {
    margin-top: 50px;
  }
}

.staff-ranking-container.maxim-9 .staff-ranking-box:nth-child(n + 10) {
  display: none;
}

@media screen and (min-width: 960px) {
  .staff-ranking-container.maxim-9 .staff-ranking-box:nth-child(n + 10) {
    display: block;
  }
}

.staff-ranking-image {
  position: relative;
}

.ranking-mark {
  position: absolute;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  color: #333333;
}

.ranking-mark.ranking-mark-1 {
  color: #dcbc6e;
}

.ranking-mark.ranking-mark-2 {
  color: #bfbfbf;
}

.ranking-mark.ranking-mark-3 {
  color: #b7834b;
}

@media screen and (min-width: 960px) {
  .ranking-mark {
    font-size: 20px;
  }
}

.staff-coodinate-ranking-staff-image {
  position: relative;
  min-width: 100px;
}

@media screen and (min-width: 960px) {
  .staff-coodinate-ranking-staff-image {
    max-width: 220px;
  }
}

.staff-coodinate-ranking-staff-image a img {
  width: 100%;
  position: relative;
}

.staff-ranking-insta {
  width: 44px;
  height: 44px;
  border-radius: 22px;
  border: solid 0.5px #cccccc;
  background-color: #ffffff;
  position: absolute;
  bottom: 0px;
  right: -5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.staff-ranking-insta img {
  width: 17px;
  height: 17.5px;
}

@media screen and (min-width: 960px) {
  .staff-ranking-insta {
    width: 51px;
    height: 51px;
    border-radius: 25px;
    top: unset;
    right: 0px;
  }
  .staff-ranking-insta img {
    width: 19px;
    height: 20px;
  }
}

.staff-ranking-info {
  margin-top: 10px;
}

.staff-ranking-shop-name {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 11px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 16.5px;
  letter-spacing: normal;
  text-align: center;
  color: #333333;
}

@media screen and (min-width: 960px) {
  .staff-ranking-shop-name {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.48px;
  }
  .staff-ranking-shop-name span {
    line-height: 15px;
  }
}

.staff-ranking-staff-name-height {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  line-height: 16.5px;
  letter-spacing: normal;
  text-align: center;
  color: #333333;
}

.staff-ranking-staff-name-height span {
  display: block;
}

@media screen and (min-width: 960px) {
  .staff-ranking-staff-name-height {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.48px;
  }
  .staff-ranking-staff-name-height span {
    display: inline-block;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.56px;
    margin-right: 0.75em;
  }
}

/*---------------------------------
refine-search-btn
---------------------------------*/
.refine-search-btn {
  width: calc(100% - 20px);
  height: 45px;
  margin: 25px auto 20px;
  border-radius: 3px;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: center;
  color: #000000;
  position: relative;
}

@media screen and (min-width: 960px) {
  .refine-search-btn {
    width: 320px;
    margin: 30px auto 0px;
    height: 40px;
  }
}

.refine-search-btn.is-hidden {
  display: none;
}

.refine-search-btn.is-hidden.is-visible {
  display: flex;
}

.refine-search-btn:after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 5px;
  background: url("../images/refine-search-arrow.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 130px;
  top: 20px;
}

@media screen and (min-width: 960px) {
  .refine-search-btn:after {
    right: 110px;
    height: 6px;
    top: 17px;
  }
}

.acd-check {
  display: none;
}

@media screen and (min-width: 960px) {
  .refine-search-container {
    position: relative;
  }
}

.refine-search-content {
  display: block;
  width: calc(100% - 20px);
  margin: 25px auto 22px;
  border-radius: 3px;
  background-color: #f4f4f4;
  padding: 40px 30px;
}

@media screen and (min-width: 960px) {
  .refine-search-content {
    min-width: 320px;
    width: 100%;
    padding: 40px 30px 30px 40px;
    position: absolute;
    z-index: 2;
  }
}

.refine-search-content.is-hidden {
  display: none;
}

.refine-search-content .refine-search-item {
  display: flex;
  align-items: center;
}

.refine-search-content .refine-search-item:nth-child(n + 2) {
  margin-top: 15px;
}

@media screen and (min-width: 960px) {
  .refine-search-content .refine-search-item:nth-child(n + 2) {
    margin-top: 10px;
  }
}

.refine-search-content .refine-search-item label {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 22.5px;
  letter-spacing: 0.28px;
  text-align: left;
  color: #000000;
}

.refine-search-content .refine-search-item .select-content {
  overflow: hidden;
  width: 90%;
  text-align: center;
}

.refine-search-content .refine-search-item .select-content select {
  width: 100%;
  height: 45px;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.refine-search-content .refine-search-item .select-content select::-ms-expand {
  display: none;
}

.refine-search-content .refine-search-item .select-content.item-select-1 {
  position: relative;
  border: solid 0.5px #cccccc;
  border-radius: 3px;
  background: #ffffff;
  max-width: 220px;
  margin-left: auto;
}

@media screen and (min-width: 960px) {
  .refine-search-content .refine-search-item .select-content.item-select-1 {
    max-width: 180px;
  }
}

.refine-search-content .refine-search-item .select-content.item-select-1::before {
  position: absolute;
  content: '';
  top: 20px;
  right: 10px;
  width: 9px;
  height: 5.5px;
  pointer-events: none;
  background: url("../images/refine-search-arrow.png") no-repeat;
  background-size: cover;
}

.refine-search-content .refine-search-item .select-content.item-select-1 select {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 22.5px;
  letter-spacing: 0.28px;
  text-align: left;
  color: #000000;
  margin-left: 16px;
}

.refine-search-content .refine-search-input-btn {
  width: 100%;
  max-width: 295px;
  height: 45px;
  border-radius: 3px;
  background-color: #333333;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .refine-search-content .refine-search-input-btn {
    margin-top: 10px;
  }
}

.refine-search-content .refine-search-input-btn input {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: center;
  color: #ffffff;
}

.refine-search-content button.refine-search-close {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 295px;
  height: 45px;
  border-radius: 3px;
  background-color: #ffffff;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: center;
  color: #333333;
}

@media screen and (min-width: 960px) {
  .refine-search-content button.refine-search-close {
    margin-top: 10px;
  }
}

.staff-coordinate-tags {
  border-bottom: solid 0.5px #efefef;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-tags {
    border-bottom: none;
  }
}

.staff-coordinate-tags ul.tag-container {
  margin: 25px auto 0;
  width: calc(100% - 25px);
}

@media screen and (min-width: 960px) {
  .staff-coordinate-tags ul.tag-container {
    width: 100%;
    max-width: calc(100% - 130px);
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .staff-coordinate-tags ul.tag-container li {
    font-size: 14px;
    letter-spacing: 0.28px;
    padding: 13px 13px;
  }
}

/*---------------------------------
07-3
---------------------------------*/
.staff-coordinate-staff-info-container {
  display: flex;
  width: calc(100% - 40px);
  margin: 0 auto 20px;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-staff-info-container {
    padding-top: 10px;
    width: calc(100% - 130px);
    margin: 0 auto 40px;
    max-width: 1300px;
  }
}

.staff-info-left-content {
  max-width: 160px;
}

.staff-info-left-content img {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .staff-info-left-content {
    max-width: 300px;
  }
}

.staff-info-right-content {
  margin-left: 20px;
  height: 160px;
  display: table;
}

.staff-info-right-content .staff-info-right-box {
  display: table-cell;
  vertical-align: middle;
}

.staff-info-right-content .staff-info-right-box p {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #333333;
}

.staff-info-right-content .staff-info-right-box p.staff-info-right-staff-name-height {
  font-size: 16px;
  line-height: 28.5px;
}

.staff-info-right-content .staff-info-right-box p.staff-info-right-staff-name-height span {
  display: block;
}

.staff-info-right-content .staff-info-right-box .staff-info-right-insta-link a img {
  width: 17px;
  margin-right: 5.5px;
}

.staff-info-right-content .staff-info-right-box .staff-info-right-insta-link a span {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 23px;
  letter-spacing: normal;
  text-align: left;
  color: #333333;
}

@media screen and (min-width: 960px) {
  .staff-info-right-content {
    height: 300px;
    margin-left: 55px;
  }
  .staff-info-right-content .staff-info-right-box p {
    font-size: 16px;
    line-height: 31px;
    letter-spacing: 0.64px;
  }
  .staff-info-right-content .staff-info-right-box p.staff-info-right-staff-name-height {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 31px;
    letter-spacing: 0.64px;
  }
  .staff-info-right-content .staff-info-right-box p.staff-info-right-staff-name-height span {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.56px;
    color: #a1a1a1;
    margin-left: 1em;
  }
  .staff-info-right-content .staff-info-right-box .staff-info-right-insta-link a img {
    width: 20px;
    margin-right: 7px;
  }
  .staff-info-right-content .staff-info-right-box .staff-info-right-insta-link a span {
    font-size: 16px;
  }
}

.staff-coordinate-staff-coordinate-list-container {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 16px);
  margin: 0 auto 40px;
}

.staff-coordinate-staff-coordinate-list-container .coordinate-list-box {
  width: calc(100% / 2 - 4px);
  margin: 0 4px;
}

.staff-coordinate-staff-coordinate-list-container .coordinate-list-box a img {
  width: 100%;
}

.staff-coordinate-staff-coordinate-list-container .coordinate-list-box:nth-child(odd) {
  margin-left: 0px;
}

.staff-coordinate-staff-coordinate-list-container .coordinate-list-box:nth-child(even) {
  margin-right: 0px;
}

.staff-coordinate-staff-coordinate-list-container .coordinate-list-box:nth-child(n + 3) {
  margin-top: 9px;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-staff-coordinate-list-container {
    width: calc(100% - 130px);
    max-width: 1300px;
  }
  .staff-coordinate-staff-coordinate-list-container .coordinate-list-box {
    width: calc(100% / 5 - 24px);
    margin: 0 15px;
  }
  .staff-coordinate-staff-coordinate-list-container .coordinate-list-box:nth-child(odd) {
    margin-left: 15px;
  }
  .staff-coordinate-staff-coordinate-list-container .coordinate-list-box:nth-child(even) {
    margin-right: 15px;
  }
  .staff-coordinate-staff-coordinate-list-container .coordinate-list-box:nth-child(n + 3) {
    margin-top: 0px;
  }
  .staff-coordinate-staff-coordinate-list-container .coordinate-list-box:nth-child(5n + 1) {
    margin-left: 0px;
  }
  .staff-coordinate-staff-coordinate-list-container .coordinate-list-box:nth-child(5n) {
    margin-right: 0px;
  }
  .staff-coordinate-staff-coordinate-list-container .coordinate-list-box:nth-child(n + 6) {
    margin-top: 30px;
  }
}

@media screen and (min-width: 960px) {
  .staff-coordinate-staff-coordinate-list-container.maxim-5 .coordinate-list-box:nth-child(n + 6) {
    display: none;
  }
}

/*---------------------------------
07-4
---------------------------------*/
.staff-coordinate-slider-section {
  width: calc(100% - 17px);
  margin: 0 auto;
  padding-top: 10px;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-slider-section {
    width: 100%;
  }
}

.staff-coordinate-detail-container {
  width: calc(100% - 30px);
  display: flex;
  margin: 15px auto 25px;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-detail-container {
    margin: 10px auto 38px;
    width: 100%;
  }
}

.staff-coordinate-detail-left-content {
  width: 60px;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-detail-left-content {
    width: 100px;
  }
}

.staff-coordinate-detail-left-content img {
  width: 100%;
}

.staff-coordinate-detail-right-content {
  margin-left: 9px;
  height: 60px;
  display: table;
}

.staff-coordinate-detail-right-content .staff-coordinate-detail-right-box {
  display: table-cell;
  vertical-align: middle;
}

.staff-coordinate-detail-right-content .staff-coordinate-detail-right-box p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 11px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 15.5px;
  letter-spacing: 0.22px;
  text-align: left;
  color: #333333;
}

.staff-coordinate-detail-right-content .staff-coordinate-detail-right-box p.staff-coordinate-detail-name-height {
  font-size: 12px;
  letter-spacing: 0.24px;
}

.staff-coordinate-detail-right-content .staff-coordinate-detail-right-box p.staff-coordinate-detail-name-height span {
  display: block;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-detail-right-content {
    height: 100px;
    margin-left: 23px;
  }
  .staff-coordinate-detail-right-content .staff-coordinate-detail-right-box p {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.56px;
    color: #333333;
  }
  .staff-coordinate-detail-right-content .staff-coordinate-detail-right-box p.staff-coordinate-detail-name-height {
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0.64px;
  }
  .staff-coordinate-detail-right-content .staff-coordinate-detail-right-box p.staff-coordinate-detail-name-height span {
    display: inline-block;
    color: #a1a1a1;
    margin-left: 1em;
    font-size: 14px;
  }
}

.staff-coordinate-description-container {
  margin: 25px auto 0px;
  position: relative;
}

.staff-coordinate-description-container .grad-item {
  position: relative;
  overflow: hidden;
  height: 110px;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-description-container .grad-item {
    height: auto;
  }
}

.staff-coordinate-description-container .grad-item::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.99) 50%, rgba(255, 255, 255, 0.99) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
}

@media screen and (min-width: 960px) {
  .staff-coordinate-description-container .grad-item::before {
    height: auto;
  }
}

.staff-coordinate-description-container .grad-item .coordinate-description {
  width: calc(100% - 40px);
  margin: 0 auto;
}

.staff-coordinate-description-container .grad-item .coordinate-description p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 22.5px;
  letter-spacing: 1px;
  text-align: left;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-description-container .grad-item .coordinate-description {
    width: 100%;
  }
  .staff-coordinate-description-container .grad-item .coordinate-description p {
    line-height: 24px;
  }
}

.staff-coordinate-description-container .grad-item .coordinate-under-description {
  display: none;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-description-container .grad-item .coordinate-under-description {
    display: block;
    margin-top: 30px;
  }
  .staff-coordinate-description-container .grad-item .coordinate-under-description li {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 24px;
    letter-spacing: 0.84px;
    text-align: left;
    color: #cccccc;
    position: relative;
    display: inline-block;
  }
  .staff-coordinate-description-container .grad-item .coordinate-under-description li:first-child {
    margin-right: 2em;
  }
  .staff-coordinate-description-container .grad-item .coordinate-under-description li:first-child::after {
    content: '|';
    position: absolute;
    right: -1.25em;
  }
}

.grad-trigger {
  display: none;
}

.grad-trigger:checked + .grad-btn {
  display: none;
}

.grad-trigger:checked ~ .grad-item {
  height: auto;
}

.grad-trigger:checked ~ .grad-item::before {
  display: none;
}

.staff-coordinate-tags.staff-coordinate-detail-tag ul.tag-container {
  margin: 50px auto 0;
  width: calc(100% - 25px);
}

@media screen and (min-width: 960px) {
  .staff-coordinate-tags.staff-coordinate-detail-tag ul.tag-container {
    width: 100%;
    max-width: 100%;
    margin: 50px auto 0;
    text-align: left;
    display: block;
  }
  .staff-coordinate-tags.staff-coordinate-detail-tag ul.tag-container li {
    font-size: 14px;
    letter-spacing: 0.28px;
    padding: 13px 13px;
  }
}

.staff-coordinate-heading-container {
  margin: 0px auto 30px;
  padding-top: 50px;
}

.staff-coordinate-heading-container h3 {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 15px;
  letter-spacing: 0.28px;
  text-align: center;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-heading-container {
    margin: 60px auto 43px;
    width: 100%;
  }
  .staff-coordinate-heading-container.staff-coordinate-heading-container-separated-line {
    border-top: solid 1px #cccccc;
  }
  .staff-coordinate-heading-container.staff-coordinate-heading-container-light-separated-line {
    border-top: solid 1px #f0f0f0;
  }
}

.staff-coordinate-heading-container h3 {
  font-size: 20px;
  line-height: 30.3px;
  letter-spacing: 0.4px;
  text-align: center;
  color: #333333;
}

.staff-coordinate-separated-line {
  border-bottom: solid 0.5px #cccccc;
}

@media screen and (min-width: 960px) {
  .staff-coordinate-separated-line {
    display: none;
  }
}

.product-item-container.staff-coordinate-item-container {
  width: calc(100% - 16px);
  padding-bottom: 60px;
}

.product-item-container.staff-coordinate-item-container .product-item-box {
  width: calc(100% / 2 - 5px);
  margin: 0 4.5px;
}

.product-item-container.staff-coordinate-item-container .product-item-box:nth-child(odd) {
  margin-left: 0px;
}

.product-item-container.staff-coordinate-item-container .product-item-box:nth-child(even) {
  margin-right: 0px;
}

.product-item-container.staff-coordinate-item-container .product-item-box:nth-child(n + 3) {
  margin-top: 20px;
}

@media screen and (min-width: 960px) {
  .product-item-container.staff-coordinate-item-container {
    width: 100%;
  }
  .product-item-container.staff-coordinate-item-container .product-item-box {
    width: calc(100% / 4 - 8px);
    margin: 0 5px;
  }
  .product-item-container.staff-coordinate-item-container .product-item-box:nth-child(odd) {
    margin: 0 5px;
  }
  .product-item-container.staff-coordinate-item-container .product-item-box:nth-child(even) {
    margin: 0 5px;
  }
  .product-item-container.staff-coordinate-item-container .product-item-box:nth-child(n + 3) {
    margin-top: 0px;
  }
  .product-item-container.staff-coordinate-item-container .product-item-box:nth-child(4n + 1) {
    margin-left: 0px;
  }
  .product-item-container.staff-coordinate-item-container .product-item-box:nth-child(4n) {
    margin-right: 0px;
  }
  .product-item-container.staff-coordinate-item-container .product-item-box:nth-child(n + 5) {
    display: none;
  }
}

/*---------------------------------
07-4 pc view
---------------------------------*/
@media screen and (min-width: 960px) {
  .staff-coordinate-wrapper {
    display: flex;
    width: calc(100% - 130px);
    margin: 0 auto;
  }
  .staff-coordinate-wrapper-left {
    max-width: 500px;
  }
  .staff-coordinate-wrapper-right {
    margin-left: 40px;
  }
}

@media screen and (min-width: 960px) and (max-width: 1255px) {
  .staff-coordinate-wrapper-right {
    margin-left: 20px;
  }
}

/*==============================================================================
08 shop list
==============================================================================*/
/*---------------------------------
shoplist-section
---------------------------------*/
@media screen and (min-width: 960px) {
  .shoplist-section {
    width: calc(100% - 130px);
    display: block;
    margin: 0 auto;
  }
}

.shoplist-nav {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-top: solid 0.5px #cccccc;
}

.shoplist-nav-item {
  min-width: 50%;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-bottom: solid 0.5px #efefef;
  border-right: solid 0.5px #efefef;
}

.shoplist-nav-item:nth-child(n + 5) {
  border-bottom: solid 0.5px #cccccc;
}

@media screen and (min-width: 960px) {
  .shoplist-nav-item:nth-child(n + 5) {
    border-bottom: none;
  }
}

@media screen and (min-width: 960px) {
  .shoplist-nav-item {
    height: 50px;
    min-width: unset;
    width: calc(100% / 6);
    border-bottom: none;
  }
  .shoplist-nav-item:last-child:last-child {
    border-right: none;
  }
}

.shoplist-nav-item:nth-child(even) {
  border-right: none;
}

@media screen and (min-width: 960px) {
  .shoplist-nav-item:nth-child(even) {
    border-right: solid 0.5px #efefef;
  }
}

.shoplist-nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: center;
  color: #000000;
  position: relative;
}

.shoplist-nav-item a::after {
  position: absolute;
  right: 15px;
  content: '';
  background-image: url("../images/shoplist-nav-arrow.png");
  width: 8px;
  height: 6px;
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  margin-left: 7px;
  margin-top: 3px;
}

.shoplist-block-heading {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.32px;
  text-align: center;
  color: #333333;
  background-color: #f7f7f7;
  padding: 20px 0;
  border-top: solid 0.5px #cccccc;
  margin-top: 5px;
  border-bottom: solid 0.5px #efefef;
}

@media screen and (min-width: 960px) {
  .shoplist-block-heading {
    margin-top: 0px;
    border-bottom: none;
  }
}

@media screen and (min-width: 960px) {
  .shoplist-block-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}

.shoplist-box {
  width: 100%;
  display: block;
  margin: 0 auto;
  margin-top: 26px;
  margin-bottom: 25px;
}

@media screen and (min-width: 960px) {
  .shoplist-box {
    width: calc(100% / 3 - 27px);
    margin-left: 40px;
    margin-right: 0px;
    min-height: 220px;
    border-bottom: solid 0.5px #efefef;
    margin-top: 38px;
    margin-bottom: 0px;
  }
  .shoplist-box:nth-child(3n + 1) {
    margin-left: 0px;
  }
  .shoplist-box.shoplist-box-bo-underline {
    border-bottom: none;
  }
}

.shoplist-separated-line {
  border-bottom: solid 0.5px #efefef;
}

@media screen and (min-width: 960px) {
  .shoplist-separated-line {
    display: none;
  }
}

.shop-name-box {
  display: flex;
}

.shop-name-box .shop-name {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: left;
  color: #333333;
  margin-left: 20px;
}

.shop-name-box .shop-name span {
  font-family: "Roboto", sans-serif;
}

@media screen and (min-width: 960px) {
  .shop-name-box .shop-name {
    margin-left: 0px;
    font-size: 15px;
  }
}

ul.item-category {
  display: flex;
  margin-left: auto;
  margin-top: 3px;
  margin-right: 20px;
}

@media screen and (min-width: 960px) {
  ul.item-category {
    margin-right: 0px;
  }
}

ul.item-category li {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: right;
  color: #333333;
  margin-left: 1em;
}

@media screen and (min-width: 960px) {
  ul.item-category li {
    font-size: 12px;
  }
}

ul.shop-info {
  margin-top: 18px;
  margin-left: 20px;
  margin-right: 20px;
}

@media screen and (min-width: 960px) {
  ul.shop-info {
    margin-left: 0px;
    margin-right: 0px;
  }
}

ul.shop-info li {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.77;
  text-align: left;
  color: #000000;
}

@media screen and (min-width: 960px) {
  ul.shop-info li {
    font-size: 12px;
  }
}

ul.shop-info li span {
  font-family: "Roboto", sans-serif;
}

ul.shop-info li span.shop-info-bussiness-hour {
  padding-left: 5em;
}

ul.shop-info li small {
  font-size: 11px;
  letter-spacing: 0.22px;
}

.shop-link-label {
  margin-top: 15px;
  margin-bottom: 25px;
  display: flex;
  margin-left: 20px;
  margin-right: 20px;
}

@media screen and (min-width: 960px) {
  .shop-link-label {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 40px;
  }
}

.shop-link-map,
.shop-link-coordinate,
.shop-link-instagram {
  border-radius: 5px;
  background-color: #f4f4f4;
  height: 40px;
  margin-left: 10px;
  width: calc(100% / 3 - 6px);
  display: flex;
  align-items: center;
  justify-content: center;
}


.shop-link-map:first-child,
.shop-link-coordinate:first-child,
.shop-link-instagram:first-child {
  margin-left: 0px;
}

.shop-link-map a,
.shop-link-coordinate a,
.shop-link-instagram a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.shop-link-map a > p,
.shop-link-coordinate a > p,
.shop-link-instagram a > p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: center;
  color: #000000;
}

.shop-link-map a > p span,
.shop-link-coordinate a > p span,
.shop-link-instagram a > p span {
  font-family: "Roboto", sans-serif;
}

.shop-link-instagram a {
  height: 13.5px;
  line-height: 13.5px;
}

.shop-link-instagram a img {
  width: 13.5px;
}

/*==============================================================================
09 member registration
==============================================================================*/
/*---------------------------------
member-regstration-section
---------------------------------*/
.section-heading.member-regi-heading {
  margin: 9px 0 0;
  padding-bottom: 30px;
}

.member-registration-heading {
  width: calc(100% - 40px);
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  .member-registration-heading {
    width: calc(100% - 220px);
  }
}

.member-registration-heading h4 {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 23px;
  letter-spacing: 0.32px;
  text-align: center;
  color: #000000;
}

.member-registration-heading h3 {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 21px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 30px;
  letter-spacing: 0.42px;
  text-align: center;
  color: #000000;
}

.member-registration-heading p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 22.5px;
  letter-spacing: 0.28px;
  text-align: center;
  color: #000000;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 960px) {
  .member-registration-heading p {
    width: calc(100% - 30px);
    max-width: 500px;
    line-height: 26px;
    margin-left: auto;
    margin-right: auto;
  }
}

.member-registration-heading p.text-left {
  text-align: left;
}

.member-registration-heading p.narrow-text {
  letter-spacing: 0.01px;
}

.member-registration-heading .benefit-img {
  width: 50px;
  margin: 0 auto 20px;
}

@media screen and (min-width: 960px) {
  .member-registration-heading .benefit-img {
    width: 71px;
  }
}

.member-registration-heading .benefit-img.benefit-img-03 {
  width: 62px;
}

@media screen and (min-width: 960px) {
  .member-registration-heading .benefit-img.benefit-img-03 {
    width: 89px;
  }
}

.member-registration-heading .benefit-img img {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .regstration-benefit-content-pc-wrapper {
    width: calc(100% - 130px);
    display: flex;
    flex-wrap: wrap;
    margin: 60px auto;
  }
}

.regstration-benefit-content {
  padding-top: 50px;
  margin-top: 50px;
  border-top: solid 0.5px #cccccc;
}

@media screen and (min-width: 960px) {
  .regstration-benefit-content.six-benefits {
    border-top: none;
    width: calc(100% / 3 - 6px);
    max-width: 384px;
    background-color: #f8f8f8;
    margin: 0 4.5px;
  }
  .regstration-benefit-content.six-benefits:nth-of-type(3n + 1) {
    margin-left: 0px;
  }
  .regstration-benefit-content.six-benefits:nth-of-type(3n) {
    margin-right: 0px;
  }
  .regstration-benefit-content.six-benefits:nth-of-type(n + 4) {
    margin-top: 10px;
  }
}

@media screen and (min-width: 960px) and (min-width: 960px) {
  .regstration-benefit-content.six-benefits .member-registration-heading {
    width: 100%;
  }
}

.birth-day-stage-list {
  margin-left: 1em;
}

@media screen and (min-width: 960px) {
  .birth-day-stage-list {
    margin-left: 0px;
    margin: 0 auto;
  }
}

.birth-day-stage-list li span {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 21.5px;
  letter-spacing: 0.26px;
  text-align: left;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .birth-day-stage-list li span {
    position: relative;
    margin-left: 14px;
    font-size: 12px;
    line-height: 21px;
    letter-spacing: 0.24px;
  }
}

.birth-day-stage-list li span::before {
  position: absolute;
  content: '※';
  left: 1.5em;
}

@media screen and (min-width: 960px) {
  .birth-day-stage-list li span::before {
    left: -16px;
  }
}

.birth-day-list {
  margin-left: 1em;
  max-width: 560px;
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 960px) {
  .birth-day-list {
    margin-left: 0px;
    width: 308px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 960px) and (max-width: 1080px) {
  .birth-day-list {
    width: 260px;
  }
}

.birth-day-list li span {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 21.5px;
  letter-spacing: 0.26px;
  text-align: left;
  color: #000000;
  position: relative;
  position: relative;
  margin-left: 17px;
  display: inline-block;
}

@media screen and (min-width: 960px) {
  .birth-day-list li span {
    position: relative;
    margin-left: 14px;
    font-size: 12px;
    line-height: 21px;
    letter-spacing: 0.24px;
  }
}

.birth-day-list li span::before {
  position: absolute;
  content: '※';
  left: -17px;
}

@media screen and (min-width: 960px) {
  .birth-day-list li span::before {
    left: -16px;
  }
}

/*---------------------------------
stage lanl table
---------------------------------*/
.stage-rank-tale {
  position: relative;
  border-top: 0.5px solid #cccccc;
  border-right: 0.5px solid #cccccc;
  border-spacing: 0;
  margin-left: 10px;
}

@media screen and (min-width: 960px) {
  .stage-rank-tale {
    margin-left: 0px;
  }
}

.stage-rank-tale.stage-rank-header {
  width: 145px;
  margin-top: 26px;
  margin-bottom: 22px;
}

@media screen and (min-width: 960px) {
  .stage-rank-tale.stage-rank-header {
    width: 160px;
  }
}

.stage-rank-tale thead {
  background-color: #ffffff;
}

.stage-rank-tale th,
.stage-rank-tale td {
  border-bottom: 0.5px solid #cccccc;
  border-left: 0.5px solid #cccccc;
  min-width: 125px;
  height: 45px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  color: #000000;
  text-align: center;
  vertical-align: middle;
}

@media screen and (min-width: 960px) {
  .stage-rank-tale th,
  .stage-rank-tale td {
    height: 50px;
    width: 19%;
  }
}

#stage-rank-head-area {
  position: relative;
}

@media screen and (min-width: 960px) {
  #stage-rank-head-area {
    margin: 0 auto;
    display: block;
    max-width: 1080px;
  }
}

#stage-rank-header {
  left: 0px;
  top: 0px;
  z-index: 2;
}

#stage-rank-header th {
  background-color: #ffffff;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.26px;
  color: #333333;
  height: 45px;
  text-align: center;
}

#stage-rank-header th small {
  display: block;
  margin-top: 5px;
}

#stage-rank-header th small.red-txt {
  color: #ff5555;
}

#stage-rank-header tr.row-two th {
  height: 90px;
}

@media screen and (min-width: 960px) {
  #stage-rank-header th {
    font-size: 14px;
    height: 50px;
  }
  #stage-rank-header tr.row-two th {
    height: 100px;
  }
}

#stage-rank-area {
  width: calc(100% - 144px);
  position: absolute;
  left: 144px;
  top: 0;
  overflow-x: scroll;
  z-index: 1;
}

@media screen and (min-width: 960px) {
  #stage-rank-area {
    width: calc(100% - 159px);
    left: 159px;
  }
}

#stage-rank-area .table-header td {
  background-color: #f7f7f7;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  color: #000000;
}

/*---------------------------------
regi-form-section
---------------------------------*/
.regi-form-container {
  background-color: #f4f4f4;
  padding-bottom: 60px;
}

.regi-form-container .section-heading h3 {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: center;
  color: #000000;
  padding-top: 40px;
  margin-bottom: 20px;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .regi-form-container .section-heading h1,
  .regi-form-container .section-heading h3 {
    font-size: 21px;
    letter-spacing: 0.21px;
    padding-top: 60px;
    margin-bottom: 50px;
  }
}

/*---------------------------------
regi form
---------------------------------*/
.regi-form-wrapper {
  width: 100%;
}

.form-item-list {
  width: 100%;
}

.form-item-list > .regi-form-item {
  padding: 0 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 380px;
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  .form-item-list > .regi-form-item {
    max-width: 600px;
    position: relative;
  }
}

@media screen and (min-width: 960px) and (max-width: 1100px) {
  .form-item-list > .regi-form-item {
    max-width: 480px;
  }
}

.form-item-list > .regi-form-item > span.form-label {
  font-size: 14px;
  letter-spacing: 0.28px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  color: #000000;
  margin-bottom: 5.5px;
  margin-left: 0px;
  margin-right: auto;
  position: relative;
}

@media screen and (min-width: 960px) {
  .form-item-list > .regi-form-item > span.form-label {
    width: 150px;
    text-align: right;
    margin-left: unset;
    margin-right: unset;
    position: absolute;
    left: -100px;
    top: 17px;
  }
}

@media screen and (min-width: 960px) {
  .form-item-list > .regi-form-item > span.form-label.narrow-left-form-label {
    left: -91px;
  }
}

.form-item-list > .regi-form-item > span.form-label span.form-kana {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.24px;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .form-item-list > .regi-form-item > span.form-label span.form-kana {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.28px;
    text-align: left;
  }
}

.form-item-list > .regi-form-item > span.form-label span.form-badge {
  width: 26px;
  height: 15px;
  background-color: #ff5555;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 10.25px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.2px;
  color: #ffffff;
  position: absolute;
  top: 1px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
}

.form-item-list > .regi-form-item > span.form-label span.form-badge.narrow-left {
  margin-left: -4px;
}

.form-item-list > .regi-form-item > span.form-label span.form-badge.display-none-less-960 {
  display: none;
}

@media screen and (min-width: 960px) {
  .form-item-list > .regi-form-item > span.form-label span.form-badge.display-none-less-960 {
    display: inline-flex;
  }
}

.form-item-list > .regi-form-item > span.form-label span.form-notice {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 11px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.22px;
  color: #000000;
  display: inline-block;
  margin-left: 37px;
}

@media screen and (min-width: 960px) {
  .form-item-list > .regi-form-item > span.form-label span.form-notice {
    width: 170px;
    text-align: left;
    margin-left: 620px;
    position: relative;
    top: -15px;
  }
}

.form-item-list > .regi-form-item > div {
  width: 100%;
  display: flex;
}

@media screen and (min-width: 960px) {
  .form-item-list > .regi-form-item > div {
    justify-content: center;
    align-items: center;
  }
}

.form-item-list > .regi-form-item > div.input-wrapper {
  flex-wrap: wrap;
  margin-bottom: 15px;
}

@media screen and (min-width: 960px) {
  .form-item-list > .regi-form-item > div.input-wrapper {
    margin-bottom: 20px;
  }
}

.form-item-list > .regi-form-item > div.input-wrapper > *:last-child {
  margin-left: 0px;
  margin-top: 5px;
}

@media screen and (min-width: 960px) {
  .form-item-list > .regi-form-item > div.input-wrapper > *:last-child {
    margin-top: 10px;
  }
}

.form-item-list > .regi-form-item > div.input-wrapper .reinput {
  display: flex;
  width: 100%;
}

@media screen and (min-width: 960px) {
  .form-item-list > .regi-form-item > div.input-wrapper .reinput {
    justify-content: center;
    align-items: center;
    margin-left: 60px;
  }
}

.form-item-list > .regi-form-item > div.input-wrapper .reinput span {
  margin-left: 8px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 11px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.22px;
  text-align: left;
  color: #000000;
  display: inline-flex;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .form-item-list > .regi-form-item > div.input-wrapper .reinput span {
    margin-left: 20px;
  }
}

.form-item-list > .regi-form-item > div .has-many-items > * {
  width: calc(50% - 16px);
}

.form-exam {
  display: flex;
}

.form-exam .form-exam-item {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 11px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.22px;
  text-align: left;
  color: #a1a1a1;
  width: 50%;
  margin-top: 5px;
  margin-bottom: 15px;
  max-width: 170px;
}

@media screen and (min-width: 960px) {
  .form-exam .form-exam-item {
    max-width: 195px;
    font-size: 12px;
    letter-spacing: 0.24px;
    margin-top: 11px;
    margin-bottom: 20px;
  }
}

.regi-input.input-item {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  color: #000000;
  background-color: #ffffff;
  border-radius: 3px;
  border: solid 0.5px #cccccc;
  max-width: 170px;
  height: 45px;
  padding-left: 15px;
  width: 50%;
  color: #000000;
  box-shadow: inset 0px 0.5px 2.5px 0 rgba(14, 5, 10, 0.25);
}

.regi-input.input-item:last-child {
  margin-left: 5px;
}

@media screen and (min-width: 960px) {
  .regi-input.input-item:last-child {
    margin-left: 10px;
  }
}

@media screen and (min-width: 960px) {
  .regi-input.input-item {
    max-width: 195px;
    padding-left: 22px;
    height: 50px;
  }
}

.regi-input.input-item-num {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  color: #000000;
  background-color: #ffffff;
  border-radius: 3px;
  border: solid 0.5px #cccccc;
  width: 115px;
  height: 45px;
  padding-left: 15px;
  box-shadow: inset 0px 0.5px 2.5px 0 rgba(14, 5, 10, 0.25);
}

@media screen and (min-width: 960px) {
  .regi-input.input-item-num {
    width: 120px;
    height: 50px;
    padding-left: 22px;
  }
}

@media screen and (min-width: 960px) {
  .regi-input.input-item-num.second-item-pc {
    width: 140px;
    margin-right: 10px;
    height: 50px;
  }
}

.regi-input.input-item-tel {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  color: #000000;
  background-color: #ffffff;
  border-radius: 3px;
  border: solid 0.5px #cccccc;
  width: 105px;
  height: 45px;
  padding-left: 15px;
  box-shadow: inset 0px 0.5px 2.5px 0 rgba(14, 5, 10, 0.25);
}

@media screen and (max-width: 374px) {
  .regi-input.input-item-tel {
    width: 87px;
  }
}

@media screen and (min-width: 960px) {
  .regi-input.input-item-tel {
    width: 124px;
    height: 50px;
    padding-left: 22px;
  }
}

@media screen and (min-width: 960px) {
  .regi-input.input-item-tel.second-item-pc {
    width: 140px;
    margin-right: 10px;
    height: 50px;
  }
}

.regi-input.input-item-mail {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  color: #000000;
  background-color: #ffffff;
  border-radius: 3px;
  border: solid 0.5px #cccccc;
  width: 90%;
  max-width: 295px;
  height: 45px;
  padding-left: 15px;
  box-shadow: inset 0px 1px 2.5px 0 rgba(14, 5, 10, 0.25);
}

@media screen and (max-width: 374px) {
  .regi-input.input-item-mail {
    width: 80%;
  }
}

@media screen and (min-width: 960px) {
  .regi-input.input-item-mail {
    max-width: 400px;
    height: 50px;
    padding-left: 22px;
    border-radius: 4px;
  }
}

@media screen and (min-width: 960px) and (max-width: 1100px) {
  .regi-input.input-item-mail {
    max-width: 280px;
  }
}

.address-sep {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.24px;
  color: #000000;
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .address-sep {
    margin: 0 4px 0 5px;
  }
}

.form-item-list > .regi-form-item > div.has-many-items input::placeholder {
  color: #a1a1a1;
}

.form-item-list > .regi-form-item > div.has-many-items.address-search-item {
  margin-bottom: 15px;
}

@media screen and (min-width: 960px) {
  .form-item-list > .regi-form-item > div.has-many-items.address-search-item {
    margin-bottom: 20px;
  }
}

.form-item-list > .regi-form-item > div.has-many-items.address-search-item > *:last-child {
  margin-left: 10px;
}

.form-item-list > .regi-form-item > div.has-many-items.telphone-input-item {
  margin-bottom: 15px;
}

@media screen and (min-width: 960px) {
  .form-item-list > .regi-form-item > div.has-many-items.telphone-input-item {
    margin-bottom: 20px;
  }
}

.form-item-list > .regi-form-item > div.has-many-items.radio-search-item {
  margin-top: 14.5px;
  margin-bottom: 30px;
}

@media screen and (min-width: 960px) {
  .form-item-list > .regi-form-item > div.has-many-items.radio-search-item {
    width: 400px;
    justify-content: flex-start;
    margin-top: 17.5px;
  }
}

.form-item-list > .regi-form-item > div.has-many-items.radio-search-item > *:last-child {
  margin-left: 0px;
}

.form-item-list > .regi-form-item > div.member-stage {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: left;
  color: #000000;
  position: absolute;
  width: fit-content;
  margin-left: -10px;
}

@media screen and (min-width: 960px) {
  .form-item-list > .regi-form-item > div.member-stage {
    max-width: 400px;
    height: 50px;
    justify-content: flex-start;
    left: 100px;
    margin-left: unset;
  }
}

.address-search {
  width: 95px;
  height: 45px;
  border-radius: 3px;
  background-color: #333333;
  font-size: 13px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.26px;
  text-align: center;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .address-search {
    width: 106px;
    height: 50px;
    font-size: 12px;
  }
}

.region-search-select {
  max-width: 400px;
  width: 100%;
  height: 45px;
  border-radius: 3px;
  border: solid 0.5px #cccccc;
  background-color: #ffffff;
  border-radius: 3px;
  position: relative;
  margin-bottom: 15px;
  box-shadow: inset 0px 0.5px 2.5px 0 rgba(14, 5, 10, 0.25);
}

@media screen and (min-width: 960px) {
  .region-search-select {
    max-width: 400px;
    height: 50px;
  }
}

.region-search-select::before {
  position: absolute;
  content: '';
  top: 20px;
  right: 10px;
  width: 12px;
  height: 6.5px;
  pointer-events: none;
  background: url("../images/regi-form-left-arrow.png") no-repeat;
  background-size: cover;
}

.region-search-select .region-search {
  width: 100%;
  margin-left: 15px;
  font-size: 14px;
}

@media screen and (min-width: 960px) {
  .region-search-select .region-search {
    margin-left: 22px;
  }
}

.region-search-select .region-search:invalid {
  color: #a1a1a1;
}

.region-form {
  max-width: 400px;
  width: 100%;
  height: 45px;
  border-radius: 3px;
  border: solid 0.5px #cccccc;
  background-color: #ffffff;
  border-radius: 3px;
  position: relative;
  margin-bottom: 15px;
  box-shadow: inset 0px 0.5px 2.5px 0 rgba(14, 5, 10, 0.25);
}

@media screen and (min-width: 960px) {
  .region-form {
    max-width: 400px;
    height: 50px;
  }
}

.region-form .regi-input {
  width: 100%;
  margin-left: 15px;
  margin-right: 15px;
  font-size: 14px;
}

@media screen and (min-width: 960px) {
  .region-form .regi-input {
    margin-left: 22px;
  }
}

.birth-search-wrapper {
  display: flex;
}

.form-item-list > .regi-form-item > div .birth-search-select-year {
  max-width: 116px;
  width: 30%;
  height: 45px;
  border-radius: 3px;
  border: solid 0.5px #cccccc;
  background-color: #ffffff;
  border-radius: 3px;
  position: relative;
  margin-bottom: 15px;
}

@media screen and (min-width: 960px) {
  .form-item-list > .regi-form-item > div .birth-search-select-year {
    max-width: 135px;
    height: 50px;
  }
}

.form-item-list > .regi-form-item > div .birth-search-select-year::before {
  position: absolute;
  content: '';
  top: 20px;
  right: 10px;
  width: 12px;
  height: 6.5px;
  pointer-events: none;
  background: url("../images/regi-form-left-arrow.png") no-repeat;
  background-size: cover;
}

.form-item-list > .regi-form-item > div .birth-search-select-year .birth-search-year {
  width: 100%;
  font-size: 14px;
  padding-left: 15px;
  height: 45px;
  box-shadow: inset 0px 0.5px 2.5px 0 rgba(14, 5, 10, 0.25);
}

@media screen and (max-width: 374px) {
  .form-item-list > .regi-form-item > div .birth-search-select-year .birth-search-year {
    padding-left: 5px;
  }
}

@media screen and (min-width: 960px) {
  .form-item-list > .regi-form-item > div .birth-search-select-year .birth-search-year {
    height: 50px;
    padding-left: 22px;
  }
}

.form-item-list > .regi-form-item > div .birth-search-select-month {
  max-width: 80px;
  width: 30%;
  height: 45px;
  border-radius: 3px;
  border: solid 0.5px #cccccc;
  background-color: #ffffff;
  border-radius: 3px;
  position: relative;
  margin-bottom: 15px;
  box-shadow: inset 0px 0.5px 2.5px 0 rgba(14, 5, 10, 0.25);
}

@media screen and (min-width: 960px) {
  .form-item-list > .regi-form-item > div .birth-search-select-month {
    max-width: 90px;
    height: 50px;
  }
}

.form-item-list > .regi-form-item > div .birth-search-select-month::before {
  position: absolute;
  content: '';
  top: 20px;
  right: 10px;
  width: 12px;
  height: 6.5px;
  pointer-events: none;
  background: url("../images/regi-form-left-arrow.png") no-repeat;
  background-size: cover;
}

.form-item-list > .regi-form-item > div .birth-search-select-month .birth-search-month {
  width: 100%;
  font-size: 14px;
  padding-left: 15px;
  height: 45px;
}

@media screen and (min-width: 960px) {
  .form-item-list > .regi-form-item > div .birth-search-select-month .birth-search-month {
    height: 50px;
    padding-left: 22px;
  }
}

.form-item-list > .regi-form-item > div .birth-search-select-day {
  max-width: 80px;
  width: 30%;
  height: 45px;
  border-radius: 3px;
  border: solid 0.5px #cccccc;
  background-color: #ffffff;
  border-radius: 3px;
  position: relative;
  margin-bottom: 15px;
  box-shadow: inset 0px 0.5px 2.5px 0 rgba(14, 5, 10, 0.25);
}

@media screen and (min-width: 960px) {
  .form-item-list > .regi-form-item > div .birth-search-select-day {
    max-width: 90px;
    height: 50px;
  }
}

.form-item-list > .regi-form-item > div .birth-search-select-day::before {
  position: absolute;
  content: '';
  top: 20px;
  right: 10px;
  width: 12px;
  height: 6.5px;
  pointer-events: none;
  background: url("../images/regi-form-left-arrow.png") no-repeat;
  background-size: cover;
}

.form-item-list > .regi-form-item > div .birth-search-select-day .birth-search-day {
  width: 100%;
  font-size: 14px;
  padding-left: 15px;
  height: 45px;
}

@media screen and (min-width: 960px) {
  .form-item-list > .regi-form-item > div .birth-search-select-day .birth-search-day {
    height: 50px;
    padding-left: 22px;
  }
}

.birth-sep {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  color: #000000;
  margin: 0 10px 0 5px;
  display: inline-flex;
  align-items: center;
  height: 45px;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .birth-sep {
    font-size: 14px;
    height: 50px;
    margin-top: -15px;
    margin-left: 5px;
    margin-right: 15px;
  }
}

@media screen and (min-width: 960px) {
  .birth-sep:last-child {
    margin-right: 0px;
  }
}

input.regi-form-radio {
  display: none;
}

input.regi-form-radio + label {
  padding-left: 20px;
  position: relative;
  margin-right: 31px;
}

@media screen and (min-width: 960px) {
  input.regi-form-radio + label {
    font-size: 14px;
    padding-left: 23px;
  }
}

input.regi-form-radio + label::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 17px;
  height: 17px;
  border: solid 0.5px #000000;
  border-radius: 50%;
  box-shadow: inset 0px 0.5px 2.5px 0 rgba(14, 5, 10, 0.25);
}

@media screen and (min-width: 960px) {
  input.regi-form-radio + label::before {
    border: solid 1px #666666;
  }
}

input.regi-form-radio:checked + label::before {
  background: linear-gradient(#2a2a2a, #878787);
  border: solid 1px #000000;
}

input.regi-form-radio:checked + label::after {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 7px;
  height: 7px;
  background: #ffffff;
  border-radius: 50%;
}

.region-search-select .region-search {
  width: 100%;
  margin-left: 15px;
  font-size: 14px;
  margin-top: 0px;
}

.region-search-select .region-search:invalid {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 15px;
  letter-spacing: 0.28px;
  text-align: left;
  color: #333333;
  margin-top: 15px;
}

/*==============================================================================
10 my page
==============================================================================*/
/*---------------------------------
10-0 ログイン
---------------------------------*/
.pass-reset-notice.member-login-heading h3 {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.32px;
  text-align: center;
  color: #000000;
  margin-top: 38px;
  margin-bottom: 33px;
}

@media screen and (min-width: 960px) {
  .pass-reset-notice.member-login-heading h3 {
    font-size: 20px;
    margin-top: 22px;
    margin-bottom: 30px;
  }
}

/*---------------------------------
member-rank-content
---------------------------------*/
.member-rank-content {
  background-color: #f8f8f8;
  padding-bottom: 25px;
}

.member-info {
  display: flex;
  width: calc(100% - 50px);
  padding-top: 21px;
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  .member-info {
    padding-top: 47px;
    padding-bottom: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.member-info .member-name {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.28px;
  text-align: center;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .member-info .member-name::after {
    content: '|';
    padding-left: 30px;
    color: #e0e0e0;
  }
}

.member-info .member-rank-label {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.28px;
  text-align: center;
  color: #000000;
  margin-left: auto;
}

@media screen and (min-width: 960px) {
  .member-info .member-rank-label {
    margin-left: 30px;
  }
}

.my-point-box {
  width: calc(100% - 50px);
  margin: 15px auto 0;
  border-radius: 5px;
  background-color: #ffffff;
}

@media screen and (min-width: 960px) {
  .my-point-box {
    width: 955px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
}

.my-point-box .point-label {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.24px;
  text-align: center;
  color: #a1a1a1;
  padding-top: 12px;
}

@media screen and (min-width: 960px) {
  .my-point-box .point-label {
    font-size: 14px;
    line-height: 2.17;
    letter-spacing: 0.28px;
    position: absolute;
    left: 42px;
    padding-top: 6px;
  }
}

.my-point-box .my-point {
  font-family: "Roboto", sans-serif;
  font-size: 50px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: -1px;
  color: #cc0000;
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 960px) {
  .my-point-box .my-point {
    font-size: 60px;
    letter-spacing: -1.2px;
    margin-top: 28px;
    margin-bottom: 28px;
  }
}

.my-point-box .my-point span {
  margin-left: 8px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.28px;
  text-align: center;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .my-point-box .my-point span {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.32px;
  }
}

.my-point-box .my-point-rate {
  margin-top: 20px;
  padding-bottom: 15px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.28px;
  text-align: center;
  color: #000000;
}

.my-point-box .my-point-rate span {
  font-family: "Roboto", sans-serif;
}

@media screen and (min-width: 960px) {
  .my-point-box .my-point-rate {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.32px;
    position: absolute;
    right: 43px;
    margin-top: 12px;
  }
}

/*---------------------------------
mypage-menu-content
---------------------------------*/
.mypage-menu-content {
  width: calc(100% - 16px);
  margin: 9px auto 40px;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 960px) {
  .mypage-menu-content {
    max-width: calc(100% - 100px);
    margin: 23px auto 33px;
  }
}

.mypage-menu-box {
  width: calc(100% / 3 - 6px);
  margin: 0 4px 9px;
  border-radius: 5px;
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mypage-menu-box a {
  display: block;
  width: 100%;
}

.mypage-menu-box img {
  width: 50px;
  margin: 43px auto 15px;
  display: block;
}

.mypage-menu-box p {
  margin: 32px 0 34px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.23;
  letter-spacing: 0.28px;
  text-align: center;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .mypage-menu-box {
    width: calc(100% / 6 - 9px);
    margin: 0 4px;
  }
}

.mypage-menu-box:nth-child(3n + 1) {
  margin-left: 0px;
}

@media screen and (min-width: 960px) {
  .mypage-menu-box:nth-child(3n + 1) {
    margin: 0 4px;
  }
}

.mypage-menu-box:nth-child(3n + 3) {
  margin-right: 0px;
}

@media screen and (min-width: 960px) {
  .mypage-menu-box:nth-child(3n + 3) {
    margin: 0 4px;
  }
}

@media screen and (min-width: 960px) {
  .mypage-menu-box:nth-child(n + 7) {
    margin-top: 10px;
  }
}

@media screen and (min-width: 960px) {
  .mypage-menu-box:nth-child(6n + 1) {
    margin-left: 0px;
  }
}

@media screen and (min-width: 960px) {
  .mypage-menu-box:nth-child(6n) {
    margin-right: 0px;
  }
}

p.news-date {
  margin: 2px 0 0;
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  line-height: 17px;
  letter-spacing: 0.22px;
  color: #a1a1a1;
}

ul.mypage-menu-bottom {
  margin-top: 50px;
  margin-right: 16px;
  text-align: right;
}

ul.mypage-menu-bottom li a {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 3.46;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.24px;
  color: #a1a1a1;
}

@media screen and (min-width: 960px) {
  ul.mypage-menu-bottom {
    display: none;
  }
}

/*---------------------------------
favorite-item-section
---------------------------------*/
.favorite-item-container {
  padding-bottom: 40px;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  overflow-x: scroll;
}

@media screen and (min-width: 960px) {
  .favorite-item-container {
    max-width: calc(100% - 130px);
    padding-bottom: 10px;
    margin: 0 auto;
    overflow-x: unset;
  }
}

.favorite-item-box {
  margin-left: 8px;
  min-width: 70px;
}

.favorite-item-box img {
  width: 100%;
}

.favorite-item-box:last-child {
  margin-right: 8px;
}

@media screen and (min-width: 960px) {
  .favorite-item-box {
    margin-left: 0;
    min-width: 70px;
  }
}


/*---------------------------------
osusume-item-section
---------------------------------*/
.osusume-item-container {
  padding-bottom: 40px;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  overflow-x: scroll;
}

@media screen and (min-width: 960px) {
  .osusume-item-container {
    max-width: calc(100% - 130px);
    padding-bottom: 76px;
    margin: 0 auto;
    overflow-x: unset;
  }
}

.osusume-item-box {
  margin-left: 8px;
  min-width: 70px;
}

.osusume-item-box img {
  width: 100%;
}

.osusume-item-box:last-child {
  margin-right: 8px;
}

@media screen and (min-width: 960px) {
  .osusume-item-box {
    margin-left: 0;
    min-width: 70px;
  }
}




/*---------------------------------
10-7 会員登録内容変更
---------------------------------*/
.regi-form-container.fix-regi-container {
  padding-bottom: 80px;
}

@media screen and (min-width: 960px) {
  .regi-form-container.fix-regi-container {
    padding-bottom: 120px;
  }
}

@media screen and (min-width: 960px) {
  .regi-form-container.fix-regi-container .section-heading {
    margin: 0px 0 40px;
  }
}

.fix-member-info {
  border-top: solid 0.5px #cccccc;
}

@media screen and (min-width: 960px) {
  .fix-member-info {
    border-top: none;
  }
}

.fix-member-info h3 {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: center;
  color: #000000;
  margin-top: 38px;
  margin-bottom: 33px;
}

@media screen and (min-width: 960px) {
  .fix-member-info h3 {
    display: none;
  }
}

/*---------------------------------
10-9 アドレス追加
---------------------------------*/
.section-heading.my-page-section-heading.add-address-header-heading {
  margin-top: 10px;
  border-bottom: none;
}

.section-heading.add-address-heading {
  margin-top: 0px;
}

@media screen and (min-width: 960px) {
  .section-heading.add-address-heading h3 {
    font-size: 14px;
    letter-spacing: 0.28px;
    text-align: center;
  }
}

/*---------------------------------
10-3 パスワード変更
---------------------------------*/
@media screen and (min-width: 960px) {
  .regi-form-container.pc-radious-container {
    border-radius: 6px;
  }
}

/*---------------------------------
pc two colmun
---------------------------------*/
@media screen and (min-width: 960px) {
  .pc-col-wrapper {
    max-width: calc(100% - 130px);
    margin: 0 auto;
    display: flex;
  }
}

.pc-col-wrapper .pc-col-wrapper-left {
  display: none;
}

@media screen and (min-width: 960px) {
  .pc-col-wrapper .pc-col-wrapper-left {
    display: block;
    max-width: 210px;
    width: 18%;
    margin-right: 30px;
    border-top: solid 1px #cccccc;
  }
  .pc-col-wrapper .pc-col-wrapper-left .pc-left-nav {
    margin-top: 30px;
  }
  .pc-col-wrapper .pc-col-wrapper-left .pc-left-nav li {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.14px;
    text-align: left;
    color: #000000;
    margin-bottom: 18px;
  }
  .pc-col-wrapper .pc-col-wrapper-left .pc-left-nav li.menu-active {
    font-weight: bold;
    pointer-events: none;
  }
}

@media screen and (min-width: 1300px) {
  .pc-col-wrapper .pc-col-wrapper-left {
    min-width: 210px;
    max-width: 18%;
  }
}

@media screen and (min-width: 960px) {
  .pc-col-wrapper .pc-col-wrapper-right {
    max-width: 910px;
    width: 82%;
    border-top: solid 1px #cccccc;
  }
}

@media screen and (min-width: 1300px) {
  .pc-col-wrapper .pc-col-wrapper-right {
    min-width: 910px;
    max-width: 82%;
  }
}

.regi-form-container .section-heading.password-reset-heading {
  margin: 0px;
}

.regi-form-container .section-heading.password-reset-heading h3 {
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.5px;
  padding-top: 30px;
  margin-bottom: 30px;
}

@media screen and (min-width: 960px) {
  .regi-form-container .section-heading.password-reset-heading h3 {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 20px;
    font-weight: 200;
    padding-top: 60px;
    margin-bottom: 40px;
    margin-top: 0px;
  }
}

button.read-more.password-reset-submit {
  max-width: 250px;
}

button.back-to-home.back-top-mypage {
  max-width: 300px;
}

@media screen and (min-width: 960px) {
  button.back-to-home.back-top-mypage {
    display: none;
  }
}

.pass-reset-notice {
  border-top: solid 0.5px #cccccc;
}

@media screen and (min-width: 960px) {
  .pass-reset-notice {
    border-top: solid 1px #cccccc;
  }
}

.pass-reset-notice h3 {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: center;
  color: #000000;
  margin-top: 38px;
  margin-bottom: 33px;
}

@media screen and (min-width: 960px) {
  .pass-reset-notice h3 {
    margin-top: 40px;
    margin-bottom: 30px;
  }
}

.form-item-list > .regi-form-item > div.input-wrapper.only-form > *:last-child {
  margin-left: 0px;
  margin-top: 5px;
}

@media screen and (min-width: 960px) {
  .form-item-list > .regi-form-item > div.input-wrapper.only-form > *:last-child {
    margin-top: 0px;
  }
}

/*---------------------------------
10-6 会員登録内容変更
---------------------------------*/
.pass-reset-notice.member-name h3 {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.32px;
  text-align: center;
  color: #000000;
  margin-top: 38px;
  margin-bottom: 33px;
}

@media screen and (min-width: 960px) {
  .pass-reset-notice.member-name h3 {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 30px;
  }
}

.conform-container {
  border-bottom: solid 0.5px #cccccc;
}

@media screen and (min-width: 960px) {
  .conform-container {
    border-bottom: solid 1px #cccccc;
  }
}

.conform-container .conform-list li {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: solid 0.5px #efefef;
  height: 43.5px;
}

.conform-container .conform-list li:last-child {
  border-bottom: solid 0.5px #efefef;
}

.conform-container .conform-list li .conform-list-heading {
  width: 50%;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: left;
  color: #000000;
  margin-left: 20px;
}

@media screen and (min-width: 960px) {
  .conform-container .conform-list li .conform-list-heading {
    margin-left: 0px;
    margin-right: 50px;
    text-align: right;
  }
}

.conform-container .conform-list li .conform-list-content {
  width: 50%;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: left;
  color: #000000;
  margin-left: -20px;
}

.fix-member-info-btn-container {
  display: flex;
  width: calc(100% - 45px);
  margin: 30px auto 50px;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 960px) {
  .fix-member-info-btn-container {
    margin: 40px auto 60px;
  }
}

.cancell-left {
  width: 100%;
  max-width: 180px;
  height: 44px;
  border-radius: 22px;
  font-size: 14px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1;
  letter-spacing: 0.28px;
  background-color: #f4f4f4;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  position: relative;
}

@media screen and (min-width: 960px) {
  .cancell-left {
    font-size: 12px;
    cursor: pointer;
    max-width: 100px;
    height: 34px;
    border-radius: 17px;
    margin-right: 10px;
  }
}

.registration-right {
  width: 100%;
  max-width: 180px;
  height: 44px;
  border-radius: 22px;
  font-size: 14px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1;
  letter-spacing: 0.28px;
  background-color: #333333;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  position: relative;
}

@media screen and (min-width: 960px) {
  .registration-right {
    cursor: pointer;
    font-size: 12px;
    max-width: 100px;
    height: 34px;
    border-radius: 17px;
    margin-left: 10px;
  }
}

/*---------------------------------
10-15 退会手続き
---------------------------------*/
@media screen and (min-width: 960px) {
  .pass-reset-notice.withdrawal-notice h3 {
    font-size: 13px;
    letter-spacing: 0.26px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

/*---------------------------------
10-4 取得クーポン一覧
---------------------------------*/
.pass-reset-notice.coupon-notice {
  width: calc(100% - 25px);
  margin: 30px auto;
}

@media screen and (min-width: 960px) {
  .pass-reset-notice.coupon-notice {
    margin-top: 0px;
    padding-top: 34px;
    padding-bottom: 24px;
    border-bottom: solid 1px #cccccc;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.pass-reset-notice.coupon-notice span {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 21.5px;
  letter-spacing: 0.26px;
  text-align: left;
  color: #000000;
  display: block;
  position: relative;
  margin-left: 22px;
}

@media screen and (min-width: 960px) {
  .pass-reset-notice.coupon-notice span {
    line-height: 26px;
    max-width: 700px;
    width: 100%;
  }
}

.pass-reset-notice.coupon-notice span:before {
  position: absolute;
  content: '※';
  left: -16px;
}

.pass-reset-notice.coupon-notice h3 {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.32px;
  text-align: center;
  color: #000000;
  margin-top: 60px;
  margin-bottom: 30px;
}

.pass-reset-notice.coupon-notice-sub {
  border-top: solid 0.5px #cccccc;
}

@media screen and (min-width: 960px) {
  .pass-reset-notice.coupon-notice-sub {
    border-top: none;
  }
}

.pass-reset-notice.coupon-notice-sub h3 {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.32px;
  text-align: center;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .pass-reset-notice.coupon-notice-sub h3 {
    font-size: 20px;
  }
}

.coupon-list-container {
  width: calc(100% - 20px);
  margin: 0 auto;
}

.coupon-list-container .coupon-list-box {
  background-color: #f4f4f4;
  margin-top: 10px;
}

@media screen and (min-width: 960px) {
  .coupon-list-container .coupon-list-box {
    margin-top: 20px;
  }
}

.coupon-list-container .coupon-list-box:first-child {
  margin-top: 0px;
}

.coupon-list-container .coupon-list-box .coupon-header {
  display: flex;
  align-items: center;
  border-bottom: solid 0.5px #cccccc;
  width: calc(100% - 60px);
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 20px;
  justify-content: center;
}

@media screen and (min-width: 960px) {
  .coupon-list-container .coupon-list-box .coupon-header {
    width: calc(100% - 120px);
    border-bottom: none;
    justify-content: unset;
  }
}

.coupon-list-container .coupon-list-box .coupon-header .coupon-header-img {
  min-width: 120px;
  width: 26%;
}

@media screen and (max-width: 374px) {
  .coupon-list-container .coupon-list-box .coupon-header .coupon-header-img {
    width: 80px;
  }
}

@media screen and (min-width: 960px) {
  .coupon-list-container .coupon-list-box .coupon-header .coupon-header-img {
    min-width: 233px;
  }
}

.coupon-list-container .coupon-list-box .coupon-header .coupon-header-img img {
  width: 100%;
}

.coupon-list-container .coupon-list-box .coupon-header .coupon-header-desc {
  margin-left: 13px;
}

@media screen and (min-width: 960px) {
  .coupon-list-container .coupon-list-box .coupon-header .coupon-header-desc {
    margin-left: 40px;
  }
}

.coupon-list-container .coupon-list-box .coupon-header .coupon-header-desc p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 22.5px;
  letter-spacing: 0.28px;
  text-align: left;
  color: #333333;
}

.coupon-list-container .coupon-list-box .coupon-container {
  padding-top: 20px;
}

@media screen and (min-width: 960px) {
  .coupon-list-container .coupon-list-box .coupon-container {
    padding-top: 0px;
    padding-bottom: 60px;
  }
}

@media screen and (min-width: 960px) {
  .coupon-list-container .coupon-list-box .coupon-container .coupon-content {
    display: none;
  }
}

.coupon-list-container .coupon-list-box .coupon-container .coupon-content h4 {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 14px;
  letter-spacing: 0.3px;
  text-align: center;
  color: #cd0000;
}

.coupon-list-container .coupon-list-box .coupon-container .coupon-content h4 span {
  font-family: "Roboto", sans-serif;
}

.coupon-list-container .coupon-list-box .coupon-container .coupon-content p {
  margin-top: 10px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 14px;
  letter-spacing: 0.25px;
  text-align: center;
  color: #666666;
}

@media screen and (min-width: 960px) {
  .coupon-list-container .coupon-list-box .coupon-header .coupon-header-desc p {
    font-size: 16px;
  }
}

.coupon-list-container .coupon-list-box .coupon-header .coupon-header-desc .coupon-content.visible-pc {
  display: none;
}

@media screen and (min-width: 960px) {
  .coupon-list-container .coupon-list-box .coupon-header .coupon-header-desc .coupon-content.visible-pc {
    display: block;
  }
  .coupon-list-container .coupon-list-box .coupon-header .coupon-header-desc .coupon-content.visible-pc h4 {
    margin-top: 40px;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.4px;
    text-align: left;
    color: #cd0000;
  }
  .coupon-list-container .coupon-list-box .coupon-header .coupon-header-desc .coupon-content.visible-pc h4 span {
    font-family: "Roboto", sans-serif;
  }
  .coupon-list-container .coupon-list-box .coupon-header .coupon-header-desc .coupon-content.visible-pc p.coupon-content-text {
    margin-top: 10px;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 13px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 45px;
    letter-spacing: 0.26px;
    text-align: left;
    color: #666666;
    line-height: 1;
  }
}

.read-more.use-coupon {
  margin: 0 auto;
  max-width: 315px;
  border-radius: 22px;
}

@media screen and (min-width: 960px) {
  .read-more.use-coupon {
    max-width: 240px;
  }
}

.read-more.use-coupon a {
  display: block;
}

.read-more.use-coupon.display-none-more-960 {
  display: flex;
}

@media screen and (min-width: 960px) {
  .read-more.use-coupon.display-none-more-960 {
    display: none;
  }
}

.read-more.use-coupon.display-none-less-960 {
  display: none;
}

@media screen and (min-width: 960px) {
  .read-more.use-coupon.display-none-less-960 {
    display: flex;
  }
}

/*-- 取得クーポン詳細 --*/
.coupon-desc {
  margin: 0 auto 40px;
  width: calc(100% - 50px);
  border-top: solid 0.5px #cccccc;
  border-bottom: solid 0.5px #cccccc;
}

@media screen and (min-width: 960px) {
  .coupon-desc {
    display: block !important;
    width: calc(100% - 120px);
  }
}

.coupon-desc .coupon-list li {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: solid 0.5px #cccccc;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 22.5px;
  letter-spacing: 0.28px;
  text-align: left;
  color: #333333;
}

@media screen and (min-width: 960px) {
  .coupon-desc .coupon-list li {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: solid 1px #cccccc;
    font-size: 13px;
    letter-spacing: 0.26px;
    display: flex;
  }
}

.coupon-desc .coupon-list li:last-child {
  border-bottom: none;
}

.coupon-desc .coupon-list li .min-letter {
  font-weight: normal;
  font-size: 11.5px;
  line-height: 23.5px;
  letter-spacing: 0.6px;
}

@media screen and (min-width: 960px) {
  .coupon-desc .coupon-list li .min-letter {
    font-size: 12px;
    line-height: 25px;
    letter-spacing: 0.24px;
  }
}

.coupon-desc .coupon-list li span.coupon-list-heading {
  font-weight: bold;
  display: block;
}

@media screen and (min-width: 960px) {
  .coupon-desc .coupon-list li span.coupon-list-heading {
    min-width: 233px;
    display: inline-block;
    text-align: right;
  }
}

.coupon-desc .coupon-list li span.coupon-list-content {
  font-weight: normal;
}

@media screen and (min-width: 960px) {
  .coupon-desc .coupon-list li span.coupon-list-content {
    margin-left: 40px;
  }
}

.coupon-link {
  margin-top: 30px;
  padding-bottom: 40px;
}

@media screen and (min-width: 960px) {
  .coupon-link {
    display: none;
  }
}

.coupon-link .coupon-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.coupon-link .coupon-item span {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 24px;
  letter-spacing: 0.14px;
  text-align: center;
  color: #333333;
  display: block;
}

.coupon-link .coupon-item img {
  width: 8px;
  height: 5.5px;
  margin-left: 7px;
}

.coupon-item.close img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media screen and (min-width: 960px) {
  .input-coupon-contaier {
    display: none;
  }
}

.input-coupon-contaier h3 {
  margin-top: 45px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.32px;
  text-align: center;
  color: #000000;
}

/*---------------------------------
10-0 ログイン
---------------------------------*/
@media screen and (min-width: 960px) {
  .login-form-pc-wrapper {
    display: flex;
    width: calc(100% - 130px);
    max-width: 1170px;
    margin: 0 auto;
    border-bottom: solid 1px #efefef;
  }
}

@media screen and (min-width: 960px) {
  .login-form-pc-left {
    margin-right: 5px;
    width: 50%;
  }
}

@media screen and (min-width: 960px) {
  .login-form-pc-right {
    margin-left: 5px;
    width: 50%;
  }
}

.regi-form-container.login-form-container {
  width: calc(100% - 20px);
  margin: 0 auto 60px;
}

@media screen and (min-width: 960px) {
  .regi-form-container.login-form-container {
    width: 100%;
    margin: 0 auto;
    height: 450px;
    border-radius: 6px;
  }
}

@media screen and (min-width: 960px) and (min-width: 960px) {
  .regi-form-container.login-form-container .section-heading.password-reset-heading.login-form-heading h3 {
    padding-top: 50px;
    margin-bottom: 44px;
  }
}

.regi-form-item.login-item {
  flex-direction: unset;
  padding: 0 20px;
}

@media screen and (min-width: 960px) {
  .regi-form-item.login-item {
    padding: 0 66px;
  }
}

@media screen and (min-width: 960px) and (max-width: 1245px) {
  .regi-form-item.login-item {
    padding: 0 20px;
  }
}

@media screen and (max-width: 374px) {
  .regi-form-item.login-item {
    padding: 0 10px;
  }
}

.form-label.input-login-heading {
  min-width: 110px;
}

.form-item-list .regi-form-item.login-item span.form-label {
  margin-bottom: 0px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.26px;
  text-align: left;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .form-item-list .regi-form-item.login-item span.form-label {
    left: unset;
  }
}

.form-item-list .regi-form-item.login-item .input-wrapper {
  margin-bottom: 0px;
}

.form-item-list .regi-form-item.login-item .input-wrapper.only-form .input-login {
  min-width: 200px;
  margin-left: auto;
  margin-top: 0px;
  box-shadow: inset 0px 0.5px 2.5px 0 rgba(14, 5, 10, 0.25);
}

@media screen and (min-width: 960px) {
  .form-item-list .regi-form-item.login-item .input-wrapper.only-form .input-login {
    margin-top: 0px;
    width: 100%;
    max-width: 322px;
  }
}

@media screen and (min-width: 960px) and (max-width: 1245px) {
  .form-item-list .regi-form-item.login-item .input-wrapper.only-form .input-login {
    max-width: 260px;
  }
}

@media screen and (max-width: 374px) {
  .form-item-list .regi-form-item.login-item .input-wrapper.only-form .input-login {
    min-width: 170px;
  }
}

/*-- パスワードを記憶する ---*/
.remember-pass-container {
  text-align: center;
  margin-top: 30px;
}

.remember-pass {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 34px;
  position: relative;
  width: auto;
  margin-left: 30px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.24px;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .remember-pass {
    font-size: 14px;
    letter-spacing: 0.28px;
  }
}

.remember-pass:before {
  background: #fff;
  border: 1px solid #000000;
  content: '';
  display: block;
  left: 5px;
  margin-top: -12px;
  position: absolute;
  top: 50%;
  width: 22.5px;
  height: 22.5px;
  border-radius: 3px;
  box-shadow: inset 0px 0.5px 2.5px 0 rgba(14, 5, 10, 0.25);
  border: solid 0.5px #cccccc;
  background-color: #ffffff;
}

@media screen and (min-width: 960px) {
  .remember-pass:before {
    height: 16px;
    width: 16px;
    margin-top: -8px;
    left: 8px;
  }
}

.remember-pass:after {
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  content: '';
  display: block;
  height: 16px;
  left: 13px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}

input[type='checkbox']:checked + .remember-pass::after {
  opacity: 1;
}

.password-reset-link-container {
  margin-top: 30px;
}

@media screen and (min-width: 960px) {
  .password-reset-link-container {
    margin-top: 40px;
  }
}

.password-reset-link-container a {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.26px;
  text-align: center;
  color: #666666;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .password-reset-link-container a {
    font-size: 14px;
    letter-spacing: 0.28px;
  }
}

.password-reset-link-container a img {
  width: 10.5px;
  height: 8px;
  margin-right: 5px;
}

@media screen and (min-width: 960px) {
  .password-reset-link-container a img {
    width: 11px;
    height: 9px;
  }
}

.amazon-login-container {
  width: calc(100% - 45px);
  max-width: 600px;
  margin: 40px auto 0;
}

@media screen and (min-width: 960px) {
  .amazon-login-container {
    width: 100%;
    margin: 50px auto 0;
  }
}

.amazon-login-container p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 21.5px;
  letter-spacing: 0.5px;
  text-align: left;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .amazon-login-container p {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.28px;
    text-align: center;
  }
}

.amazon-login-container .amazon-login-container-img {
  padding-bottom: 20px;
  width: 100%;
  max-width: 295px;
  margin: 16px auto 0;
}

.amazon-login-container .amazon-login-container-img img {
  width: 100%;
}

.line-login-container {
  width: calc(100% - 45px);
  margin: 30px auto 0;
  max-width: 600px;
}

@media screen and (min-width: 960px) {
  .line-login-container {
    width: 100%;
  }
}

.line-login-container p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 21.5px;
  letter-spacing: 0.5px;
  text-align: left;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .line-login-container p {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.28px;
    text-align: center;
  }
}

.line-login-container .line-login-container-img {
  padding-bottom: 20px;
  width: 100%;
  max-width: 206px;
  margin: 16px auto 0;
  padding-bottom: 60px;
}

.line-login-container .line-login-container-img img {
  width: 100%;
}

.new-regi-notice-container {
  margin: 0 auto;
  width: calc(100% - 36px);
  max-width: 600px;
  padding-top: 30px;
}

@media screen and (min-width: 960px) {
  .new-regi-notice-container {
    padding-top: 115px;
  }
}

.new-regi-notice-container p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 21.5px;
  letter-spacing: 0.5px;
  text-align: left;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .new-regi-notice-container p {
    text-align: center;
    letter-spacing: 0.16px;
    line-height: 26px;
  }
}

.login-page-btn {
  display: none;
}

@media screen and (min-width: 960px) {
  .login-page-btn {
    display: block;
  }
}

@media screen and (min-width: 960px) {
  button.read-more.password-reset-submit.new-regi-submit {
    height: 60px;
    border-radius: 30px;
    background-color: #333333;
    max-width: 330px;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.14px;
    margin-top: 70px;
  }
  button.read-more.password-reset-submit.new-regi-submit::after {
    right: 32px;
    top: 25px;
  }
}

@media screen and (min-width: 960px) {
  button.read-more.password-reset-submit.member-login-submit {
    margin-top: 25px;
  }
}

/*---------------------------------
10-8 アドレス帳
---------------------------------*/
.add-address-wrapper {
  width: calc(100% - 40px);
  display: flex;
  flex-wrap: wrap;
  margin: 28px auto 0;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .add-address-wrapper {
    width: 100%;
    margin-left: 31px;
    justify-content: unset;
    align-items: unset;
    margin: 24px auto 0;
  }
}

.add-address-wrapper .add-address-notice h3 {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 21.5px;
  letter-spacing: 0.26px;
  text-align: left;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .add-address-wrapper .add-address-notice h3 {
    line-height: 26px;
  }
}

.add-address-wrapper .add-address-notice-sub {
  margin-top: 20px;
}

@media screen and (min-width: 960px) {
  .add-address-wrapper .add-address-notice-sub {
    margin-left: auto;
    margin-top: 0px;
  }
}

.add-address-wrapper .add-address-notice-sub p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 21.5px;
  letter-spacing: 0.26px;
  text-align: center;
  color: #000000;
}

.add-address-wrapper .add-address-notice-sub p span {
  font-size: 11px;
  letter-spacing: 0.22px;
}

@media screen and (min-width: 960px) {
  .add-address-wrapper .add-address-notice-sub p span {
    font-size: 13px;
    letter-spacing: 0.26px;
  }
}

button.back-to-home.add-address {
  max-width: 300px;
}

@media screen and (min-width: 960px) {
  button.back-to-home.add-address {
    max-width: 180px;
    height: 34px;
    margin: 0;
    margin-top: 30px;
  }
}

button.back-to-home.add-address:before {
  display: none;
}

button.back-to-home.add-address:after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 5.5px;
  background: url("../images/find-from-link-arrow-right.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 20px;
  top: 18px;
}

@media screen and (min-width: 960px) {
  button.back-to-home.add-address:after {
    display: none;
  }
}

button.back-to-home.add-address a {
  display: block;
}

@media screen and (min-width: 960px) {
  button.back-to-home.add-address-entirety-btn {
    max-width: 180px;
    height: 34px;
    min-width: 180px;
    margin: 0;
  }
  button.back-to-home.add-address-entirety-btn:last-child {
    margin-left: 21px;
  }
  button.back-to-home.add-address-entirety-btn a {
    display: block;
  }
  button.back-to-home.add-address-entirety-btn:before {
    display: none;
  }
}

@media screen and (min-width: 960px) {
  .add-address-btn-wrapper {
    display: flex;
    width: 100%;
    align-items: center;
  }
}

.add-address-pc-btn-wrapper {
  display: none;
}

@media screen and (min-width: 960px) {
  .add-address-pc-btn-wrapper {
    display: flex;
    margin-left: auto;
    margin-right: 0px;
    margin-top: 30px;
  }
}

.add-address-list-wrapper {
  border-top: solid 0.5px #efefef;
  margin-top: 40px;
  border-bottom: solid 0.5px #cccccc;
}

.add-address-list-wrapper .add-address-list-container > li {
  border-bottom: solid 0.5px #efefef;
  margin-top: 30.5px;
}

@media screen and (min-width: 960px) {
  .add-address-list-wrapper .add-address-list-container > li {
    margin-top: 39px;
    padding-bottom: 35px;
    display: flex;
  }
}

.add-address-list-wrapper .add-address-list-container > li:last-child {
  border-bottom: none;
}

.add-address-list-wrapper .add-address-list-container .add-address-list-box {
  margin-left: 20px;
  margin-right: 20px;
}

@media screen and (min-width: 960px) {
  .add-address-list-wrapper .add-address-list-container .add-address-list-box {
    width: 70%;
    margin-right: 0px;
  }
}

.add-address-list-wrapper .add-address-list-container .add-address-list-box .address-list li.name {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 15px;
  letter-spacing: 0.28px;
  text-align: left;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .add-address-list-wrapper .add-address-list-container .add-address-list-box .address-list li.name {
    font-size: 16px;
    letter-spacing: 0.32px;
  }
}

.add-address-list-wrapper .add-address-list-container .add-address-list-box .address-list li.post-code, .add-address-list-wrapper .add-address-list-container .add-address-list-box .address-list li.address, .add-address-list-wrapper .add-address-list-container .add-address-list-box .address-list li.tel {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 22.5px;
  letter-spacing: 0.26px;
  text-align: left;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .add-address-list-wrapper .add-address-list-container .add-address-list-box .address-list li.post-code, .add-address-list-wrapper .add-address-list-container .add-address-list-box .address-list li.address, .add-address-list-wrapper .add-address-list-container .add-address-list-box .address-list li.tel {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.28px;
  }
}

.add-address-list-wrapper .add-address-list-container .add-address-list-box .address-list li.post-code {
  margin-top: 5px;
  margin-left: -2px;
}

@media screen and (min-width: 960px) {
  .add-address-list-wrapper .add-address-list-container .add-address-list-box .address-list li.post-code {
    margin-top: 15px;
  }
}

@media screen and (min-width: 960px) {
  .add-address-list-btn-wrapper {
    width: 30%;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }
}

.add-address-list-btn-wrapper .add-address-list-btn-container {
  margin: 22px auto 0;
  padding-bottom: 50px;
  width: calc(100% - 40px);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .add-address-list-btn-wrapper .add-address-list-btn-container {
    margin: 0px;
    padding-bottom: 0px;
    width: 100%;
    justify-content: flex-end;
  }
}

.add-address-list-btn-wrapper .add-address-list-btn-container .add-address-left {
  width: 100%;
  max-width: 160px;
  height: 44px;
  border-radius: 22px;
  font-size: 14px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1;
  letter-spacing: 0.28px;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 7.5px;
}

@media screen and (min-width: 960px) {
  .add-address-list-btn-wrapper .add-address-list-btn-container .add-address-left {
    max-width: 100px;
    height: 34px;
  }
}

.add-address-list-btn-wrapper .add-address-list-btn-container .add-address-right {
  width: 100%;
  max-width: 160px;
  height: 44px;
  border-radius: 22px;
  font-size: 14px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1;
  letter-spacing: 0.28px;
  background-color: #f4f4f4;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 7.5px;
  position: relative;
}

@media screen and (min-width: 960px) {
  .add-address-list-btn-wrapper .add-address-list-btn-container .add-address-right {
    max-width: 100px;
    height: 34px;
  }
}

/*---------------------------------
10-5 お気に入り一覧
---------------------------------*/
.fav-section .fav-container {
  padding-bottom: 40px;
  border-bottom: solid 0.5px #cccccc;
}

@media screen and (min-width: 960px) {
  .fav-section .fav-container {
    margin-top: 30px;
  }
}

.fav-section .fav-container .product-item-container {
  width: calc(100% - 16px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

@media screen and (min-width: 960px) {
  .fav-section .fav-container .product-item-container {
    margin-top: 0px;
    width: 100%;
    margin-bottom: 34px;
  }
}

.fav-section .fav-container .product-item-box {
  width: calc(100% / 3 - 6px);
  margin: 0 4px;
}

.fav-section .fav-container .product-item-box img {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .fav-section .fav-container .product-item-box {
    width: calc(100% / 4 - 24px);
    margin: 0 15px;
  }
}

.fav-section .fav-container .product-item-box:nth-child(3n + 1) {
  margin-left: 0px;
}

@media screen and (min-width: 960px) {
  .fav-section .fav-container .product-item-box:nth-child(3n + 1) {
    margin: 0 15px;
  }
}

.fav-section .fav-container .product-item-box:nth-child(3n) {
  margin-right: 0px;
}

@media screen and (min-width: 960px) {
  .fav-section .fav-container .product-item-box:nth-child(3n) {
    margin: 0 15px;
  }
}

.fav-section .fav-container .product-item-box:nth-child(n + 4) {
  margin-top: 25.5px;
}

@media screen and (min-width: 960px) {
  .fav-section .fav-container .product-item-box:nth-child(n + 4) {
    margin: 0 15px;
  }
}

@media screen and (min-width: 960px) {
  .fav-section .fav-container .product-item-box:nth-child(4n + 1) {
    margin-left: 0px;
  }
}

@media screen and (min-width: 960px) {
  .fav-section .fav-container .product-item-box:nth-child(4n) {
    margin-right: 0px;
  }
}

@media screen and (min-width: 960px) {
  .fav-section .fav-container .product-item-box:nth-child(n + 5) {
    margin-top: 50px;
  }
}

@media screen and (min-width: 960px) {
  .fav-section .fav-container .product-item-box:nth-child(n + 5) {
    display: block;
  }
}

.fav-section .fav-container h4.product-name {
  margin-top: 6px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  line-height: 17.5px;
  letter-spacing: 0.24px;
  text-align: left;
  color: #333333;
  font-weight: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.fav-section .fav-container h4.product-name span {
  font-size: 11px;
  letter-spacing: 0.22px;
  color: #a1a1a1;
  margin-left: 0.25em;
}

@media screen and (min-width: 960px) {
  .fav-section .fav-container h4.product-name {
    margin-top: 14px;
    line-height: 18px;
    letter-spacing: 0.48px;
    text-align: left;
  }
}

.fav-section .fav-container p.product-price {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  letter-spacing: 0.32px;
  color: #cc0000;
  margin-top: 2px;
}

.fav-section .fav-container p.product-price span {
  font-size: 11px;
  letter-spacing: 0.22px;
  color: #a1a1a1;
  margin-left: 0.25em;
  vertical-align: middle;
}

@media screen and (min-width: 960px) {
  .fav-section .fav-container p.product-price span {
    vertical-align: bottom;
  }
}

@media screen and (min-width: 960px) {
  .fav-section .fav-container p.product-price {
    font-size: 16px;
    letter-spacing: 0.64px;
    line-height: 18px;
    margin-top: 4px;
  }
  .fav-section .fav-container p.product-price span {
    font-size: 12px;
    letter-spacing: 0.48px;
  }
}

.remove-fav {
  width: 80%;
  min-width: 100px;
  height: 44px;
  border-radius: 22px;
  background-color: #f4f4f4;
  margin: 14px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .remove-fav {
    min-width: 170px;
    height: 34px;
    border-radius: 17px;
    margin: 24px auto 0;
  }
}

.remove-fav a {
  display: block;
}

.remove-fav span {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 10px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 12.5px;
  letter-spacing: 0.2px;
  text-align: left;
  color: #a1a1a1;
  position: relative;
  padding-left: 29.5px;
  display: inline-block;
}

@media screen and (min-width: 960px) {
  .remove-fav span {
    font-size: 12px;
    letter-spacing: 0.24px;
    text-align: center;
    padding-left: 12.5px;
    color: #666666;
  }
}

.remove-fav span:before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  left: 66px;
  width: 7.5px;
  height: 1px;
  background: #666666;
  transform: rotate(-45deg);
  margin-left: -54px;
}

@media screen and (min-width: 960px) {
  .remove-fav span:before {
    margin-left: -70px;
    width: 7px;
  }
}

.remove-fav span:after {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  left: 66px;
  width: 7.5px;
  height: 1px;
  background: #666666;
  transform: rotate(45deg);
  margin-left: -54px;
}

@media screen and (min-width: 960px) {
  .remove-fav span:after {
    margin-left: -70px;
    width: 7px;
  }
}

/*---------------------------------
10-17 レビュー
---------------------------------*/
.write-review-section {
  background-color: #f4f4f4;
}

.write-review-section .write-review-container {
  padding-top: 26px;
}

.write-review-section .write-review-container .review-banner-container {
  max-width: 355px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  .write-review-section .write-review-container .review-banner-container {
    max-width: 770px;
    width: 80%;
  }
}

.write-review-section .write-review-container .review-banner-container img {
  width: 100%;
}

.review-desc {
  width: calc(100% - 44px);
  margin: 15.5px auto 0;
}

@media screen and (min-width: 960px) {
  .review-desc {
    width: 770px;
  }
}

.review-desc p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 22.5px;
  letter-spacing: 0.26px;
  text-align: left;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .review-desc p {
    font-size: 16px;
    letter-spacing: 0.32px;
  }
}

.review-desc p span {
  font-weight: bold;
  color: #d40000;
}

@media screen and (min-width: 960px) {
  .review-desc p span {
    font-size: 16px;
    color: #cc0000;
    letter-spacing: 0.32px;
  }
}

.review-desc-list {
  padding-top: 6px;
  padding-bottom: 30px;
}

.review-desc-list li {
  position: relative;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 22.5px;
  letter-spacing: 0.26px;
  text-align: left;
  color: #000000;
  margin-left: 15px;
}

.review-desc-list li:before {
  position: absolute;
  content: '※';
  left: -16px;
}

.review-item {
  background-color: #ffffff;
  width: 100%;
  min-width: 305px;
  margin: 0 auto;
  width: calc(100% - 20px);
}

@media screen and (min-width: 960px) {
  .review-item {
    width: 770px;
    border-radius: 6px;
  }
}

.review-item .review-item-info-container {
  padding-top: 30px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-width: 320px;
  width: 90%;
}

@media screen and (min-width: 960px) {
  .review-item .review-item-info-container {
    padding-bottom: 30px;
  }
}

.review-item .review-item-info-container .review-item-image {
  width: 50px;
}

@media screen and (min-width: 960px) {
  .review-item .review-item-info-container .review-item-image {
    min-width: 80px;
  }
}

.review-item .review-item-info-container .review-item-image img {
  width: 100%;
}

.review-item .review-item-info-container .review-item-desc {
  margin-left: 16px;
}

@media screen and (min-width: 960px) {
  .review-item .review-item-info-container .review-item-desc {
    padding-top: 0px;
  }
}

.review-item .review-item-info-container .review-item-desc li {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 21px;
  letter-spacing: 0.26px;
  text-align: left;
  color: #010101;
}

@media screen and (min-width: 960px) {
  .review-item .review-item-info-container .review-item-desc li.item-per-value {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0.32px;
    text-align: left;
    color: #000000;
  }
}

@media screen and (min-width: 960px) {
  .review-item .review-item-info-container .review-item-desc li.review-item-title-pc {
    display: inline;
  }
}

.review-item .review-item-info-container .review-item-desc li.review-item-price {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: left;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .review-item .review-item-info-container .review-item-desc li.review-item-price {
    font-size: 16px;
    letter-spacing: 0.32px;
    margin-top: 6px;
  }
}

.review-item .review-item-info-container .review-item-desc li.review-item-price .revie-item-price-bold {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0.24px;
}

@media screen and (min-width: 960px) {
  .review-item .review-item-info-container .review-item-desc li.review-item-price .revie-item-price-bold {
    font-size: 13px;
    letter-spacing: 0.26px;
  }
}

.review-item .review-item-info-container .review-item-desc li.review-item-price .revie-item-price-intax {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 10px;
  font-weight: normal;
  letter-spacing: 0.2px;
  color: #a1a1a1;
  padding-left: 4px;
  vertical-align: top;
}

@media screen and (min-width: 960px) {
  .review-item .review-item-info-container .review-item-desc li.review-item-price .revie-item-price-intax {
    font-size: 11px;
  }
}

@media screen and (min-width: 960px) {
  .review-item .review-item-info-container .review-item-desc li.pc-flex {
    display: flex;
  }
}

.item-per-revie {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 11px;
  letter-spacing: 0.32px;
  text-align: left;
  color: #000000;
  padding-top: 20px;
  margin: 0 auto;
  min-width: 320px;
  width: 70%;
}

@media screen and (min-width: 960px) {
  .item-per-revie {
    padding-top: 18px;
  }
}

@media screen and (min-width: 960px) {
  .item-per-revie.display-none-less-960 {
    width: fit-content;
    min-width: 160px;
  }
}

.item-per-star {
  padding-top: 10px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  min-width: 320px;
  width: 70%;
  margin: 0 auto;
}

.item-per-star.display-none-more-960 {
  display: flex;
}

@media screen and (min-width: 960px) {
  .item-per-star.display-none-more-960 {
    display: none;
  }
}

.item-per-star.display-none-less-960 {
  display: none;
}

@media screen and (min-width: 960px) {
  .item-per-star.display-none-less-960 {
    display: flex;
    padding-bottom: 0px;
  }
}

.item-per-star li {
  width: 20px;
  height: 20px;
  margin-right: 5.5px;
}

.item-per-star li img {
  width: 100%;
}

.item-per-star li.item-per-value {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.32px;
  text-align: left;
  color: #000000;
  line-height: 22px;
}

@media screen and (min-width: 960px) {
  .item-per-star li.item-per-value {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 22px;
    letter-spacing: 0.32px;
    height: 22px;
  }
}

.review-notcie-warapper {
  width: calc(100% - 44px);
  margin: 0 auto;
  padding-top: 24px;
  padding-bottom: 52px;
}

.review-notcie-warapper p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 22.5px;
  letter-spacing: 0.24px;
  text-align: left;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .review-notcie-warapper p {
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.28px;
  }
}

.review-notcie-warapper p span {
  font-size: 14px;
  line-height: 27px;
  letter-spacing: 0.26px;
  display: block;
}

/*---------------------------------
10-17 review-form
---------------------------------*/
.review-form {
  max-width: 400px;
  width: 100%;
  height: 45px;
  border-radius: 3px;
  border: solid 0.5px #cccccc;
  background-color: #ffffff;
  border-radius: 3px;
  position: relative;
  margin-bottom: 15px;
  box-shadow: inset 0px 0.5px 2.5px 0 rgba(14, 5, 10, 0.25);
}

@media screen and (min-width: 960px) {
  .review-form {
    height: 50px;
    margin-bottom: 20px;
  }
}

.review-form.text {
  height: 130px;
}

@media screen and (min-width: 960px) {
  .review-form.text {
    height: 180px;
  }
}

.review-form .form-input {
  padding-top: 12px;
  margin-left: 16px;
}

.review-form .form-input.date-input {
  padding-top: 12px;
  margin-left: 0px;
}

@media screen and (min-width: 960px) {
  .review-form .form-input.date-input {
    padding-top: 15px;
    margin-left: 10px;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.28px;
    text-align: left;
    color: #333333;
  }
}

@media screen and (min-width: 960px) {
  .region-search-select.review-region-search {
    margin-bottom: 20px;
  }
}

input[type='date'] {
  padding: 10px;
  text-align: center;
}

input[type='date' i]::-webkit-calendar-picker-indicator {
  display: none;
}

.profile-check {
  max-width: 335px;
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  .profile-check {
    position: relative;
  }
}

.profile-check p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: left;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .profile-check p {
    position: absolute;
    left: -203px;
    top: 3px;
  }
}

.profile-check-sub {
  max-width: 335px;
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  .profile-check-sub {
    max-width: 400px;
  }
}

.profile-check-sub p {
  font-size: 11.5px;
  letter-spacing: 0.09px;
  margin-top: 4px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  text-align: left;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .profile-check-sub p {
    font-size: 12px;
    font-weight: 100;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.24px;
  }
}

.profile-check-wrapper {
  padding-top: 10px;
  max-width: 335px;
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  .profile-check-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
    max-width: 400px;
  }
}

.profile-check-wrapper li {
  display: flex;
  height: 45px;
  margin-bottom: 10px;
}

@media screen and (min-width: 960px) {
  .profile-check-wrapper li {
    height: 50px;
  }
}

.profile-check-wrapper li .profile-check-box {
  text-align: left;
}

.form-item-list .review-form-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 335px;
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  .form-item-list .review-form-item {
    max-width: 600px;
    position: relative;
  }
}

.form-item-list .review-form-item .form-label {
  font-size: 14px;
  letter-spacing: 0.28px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  color: #000000;
  margin-bottom: 5.5px;
  margin-left: 0px;
  margin-right: auto;
  position: relative;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .form-item-list .review-form-item .form-label {
    width: 150px;
    text-align: right;
    margin-left: unset;
    margin-right: unset;
    position: absolute;
    left: -72px;
    top: 17px;
    display: inline;
  }
}

.form-item-list .review-form-item .form-label .form-badge {
  width: 26px;
  height: 15px;
  background-color: #ff5555;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 10.25px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.2px;
  color: #ffffff;
  position: relative;
  top: 1px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
  margin-bottom: 2px;
}

@media screen and (min-width: 960px) {
  .form-item-list .review-form-item .form-label .form-badge {
    width: 28px;
    height: 16px;
    font-size: 11px;
    margin-left: 9px;
    top: -1px;
  }
}

.form-item-list .review-form-item .form-label .form-notice {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 11px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.22px;
  color: #000000;
  display: inline-block;
  padding-left: 12.5px;
}

@media screen and (min-width: 960px) {
  .form-item-list .review-form-item .form-label .form-notice {
    font-size: 12px;
    width: 170px;
    text-align: left;
    margin-left: 590px;
    position: relative;
    top: -20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.24px;
    text-align: left;
    color: #000000;
    padding-left: 0;
  }
}

.profile-box-select {
  min-width: 235px;
  width: 100%;
  height: 45px;
  border-radius: 3px;
  border: solid 1px #cccccc;
  background-color: #ffffff;
  border-radius: 3px;
  position: relative;
  box-shadow: inset 0px 0.5px 2.5px 0 rgba(14, 5, 10, 0.25);
}

@media screen and (min-width: 960px) {
  .profile-box-select {
    height: 50px;
    border-radius: 4px;
  }
}

.profile-box-select::before {
  position: absolute;
  content: '';
  top: 20px;
  right: 10px;
  width: 12px;
  height: 6.5px;
  pointer-events: none;
  background: url("../images/regi-form-left-arrow.png") no-repeat;
  background-size: cover;
}

.profile-box-select .review-region-search {
  width: 100%;
  margin-left: 15px;
  font-size: 14px;
  margin-top: 14px;
  color: #333333;
}

@media screen and (min-width: 960px) {
  .profile-box-select .review-region-search {
    margin-top: 15px;
  }
}

.profile-check-box {
  display: flex;
  min-width: 100px;
  height: 45px;
}

@media screen and (min-width: 960px) {
  .profile-check-box {
    height: 50px;
  }
}

.review-check-box {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 14px 0px 14px 32px;
  position: relative;
  width: auto;
  margin-left: 0px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .review-check-box {
    font-size: 14px;
    letter-spacing: 0.28px;
    padding: 17px 0px 14px 25px;
  }
}

.review-check-box:before {
  background: #ffffff;
  border: 1px solid #000000;
  content: '';
  display: block;
  left: 0px;
  margin-top: -12px;
  position: absolute;
  top: 50%;
  width: 22.5px;
  height: 22.5px;
  border-radius: 3px;
  box-shadow: inset 0px 0.5px 2.5px 0 rgba(14, 5, 10, 0.25);
  border: solid 0.5px #cccccc;
  background-color: #ffffff;
}

@media screen and (min-width: 960px) {
  .review-check-box:before {
    height: 16px;
    width: 16px;
    margin-top: -8px;
    left: 0px;
  }
}

.review-check-box:after {
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  content: '';
  display: block;
  height: 16px;
  left: 13px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}

.review-sex-radio {
  display: flex;
  justify-content: center;
  align-items: center;
}

input[type='checkbox']:checked + .review-check-box::after {
  opacity: 1;
}

.review-input-btn-wrapper {
  display: flex;
  width: calc(100% - 45px);
  margin: 30px auto 0;
  padding-bottom: 50px;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 960px) {
  .review-input-btn-wrapper {
    width: 400px;
    padding-bottom: 100px;
    margin: 80px auto 0;
  }
}

.review-input-btn-wrapper .cancell-left {
  background-color: #ffffff;
}

@media screen and (min-width: 960px) {
  .review-input-btn-wrapper .cancell-left {
    height: 44px;
    max-width: 190px;
    font-size: 13px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.26px;
    border-radius: 22px;
  }
}

@media screen and (min-width: 960px) {
  .review-input-btn-wrapper .registration-right {
    height: 44px;
    max-width: 190px;
    font-size: 13px;
    letter-spacing: 0.26px;
    border-radius: 22px;
  }
}

/*---------------------------------
10-18 review confirm
---------------------------------*/
.review-confirm-container {
  border-bottom: none;
}

@media screen and (min-width: 960px) {
  .review-confirm-container .review-confirm-list {
    max-width: 770px;
    margin: 0 auto;
    padding-left: 20px;
  }
}

.review-confirm-container .review-confirm-list li {
  width: 100%;
  display: flex;
  justify-content: center;
  border-top: solid 0.5px #efefef;
  min-height: 43.5px;
}

@media screen and (min-width: 960px) {
  .review-confirm-container .review-confirm-list li {
    border-top: solid 1px #efefef;
  }
}

.review-confirm-container .review-confirm-list li:last-child {
  border-bottom: solid 0.5px #efefef;
}

.review-confirm-container .review-confirm-list li .review-confirm-list-heading {
  width: 43%;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: left;
  color: #000000;
  margin-left: 20px;
  margin-top: 15px;
}

@media screen and (min-width: 960px) {
  .review-confirm-container .review-confirm-list li .review-confirm-list-heading {
    margin-left: 0px;
    margin-right: 50px;
    text-align: right;
    width: 50%;
    margin-right: 20px;
  }
}

.review-confirm-container .review-confirm-list li .review-confirm-list-content {
  width: 57%;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: left;
  line-height: 22.5px;
  color: #000000;
  margin-left: -20px;
  margin-right: 20px;
  margin-top: 12px;
  margin-bottom: 15px;
}

@media screen and (min-width: 960px) {
  .review-confirm-container .review-confirm-list li .review-confirm-list-content {
    width: 50%;
    margin-left: 20px;
  }
}

.review-confirm-container .review-confirm-list li .review-confirm-list-content .item-per-star {
  min-width: unset;
  margin-left: 0px;
  padding-top: unset;
  padding-bottom: unset;
}

.review-confirm-container .review-confirm-list li .review-confirm-list-content .item-per-star li {
  width: 20px;
  min-height: 20px;
}

.review-confirm-container .review-confirm-list li .review-confirm-list-content .item-per-star li img {
  width: 100%;
}

/*---------------------------------
10-18 review confirm
---------------------------------*/
.review-done-container {
  padding-top: 70px;
}

@media screen and (min-width: 960px) {
  .review-done-container {
    padding-top: 120px;
  }
}

.review-done-container h3 {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 17px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.34px;
  text-align: center;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .review-done-container h3 {
    font-size: 20px;
    letter-spacing: 0.4px;
  }
}

.login-page-btn.review-done-page {
  padding-top: 70px;
  padding-bottom: 60px;
  display: block;
}

@media screen and (min-width: 960px) {
  .login-page-btn.review-done-page {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}

.login-page-btn.review-done-page button.back-to-home {
  background-color: #ffffff;
}

/*---------------------------------
10-11
---------------------------------*/
.section-title-headding.orderhistory-sub {
  padding-top: 31px;
}

.section-title-headding.orderhistory-sub h3 {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.32px;
  text-align: center;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .section-title-headding.orderhistory-sub h3 {
    font-size: 20px;
  }
}

/*---------------------------------
order-list-tab
---------------------------------*/
.hide {
  /* 表示の切り替えに使用する */
  display: none;
}

.order-list {
  padding-bottom: 55px;
}

.order-item-heading {
  padding: 30px 0px 30px 22px;
}

.order-item-heading p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 22.5px;
  letter-spacing: 0.26px;
  text-align: left;
  color: #000000;
}

.order-item-heading .order-item-list-info {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 22.5px;
  letter-spacing: 0.28px;
  text-align: left;
  color: #000000;
  margin-top: 5px;
}

.order-item-heading .order-item-list-info span {
  font-weight: normal;
}

.order-list-wrapper {
  width: calc(100% - 20px);
  margin: 0 auto;
  background-color: #f4f4f4;
  padding: 31.5px 45.5px 30px 31px;
  margin-bottom: 10px;
  position: relative;
}

.order-list-wrapper:last-child {
  margin-bottom: 0px;
}

.order-list-wrapper a {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.order-list-wrapper a .order-history-list {
  position: relative;
}

@media screen and (min-width: 960px) {
  .order-list-wrapper a .order-history-list {
    display: flex;
  }
}

@media screen and (min-width: 960px) {
  .order-list-wrapper a .order-history-list li span {
    display: none;
  }
}

.order-list-wrapper a .right-order-list-btn {
  position: absolute;
  right: 12.5px;
}

.order-list-wrapper a li {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 22.5px;
  letter-spacing: 0.26px;
  text-align: left;
  color: #000000;
}

.order-list-wrapper a li span {
  font-size: 12px;
  letter-spacing: 0.24px;
  color: #666666;
}

/*---------------------------------
10-12 購入履歴詳細
---------------------------------*/
.order-history-number {
  margin: 30px auto 0px;
  width: calc(100% - 45px);
  height: 45px;
  border-radius: 3px;
  border: solid 1px #d2d2d2;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .order-history-number {
    max-width: 280px;
  }
}

.order-history-number p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.64px;
  text-align: center;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .order-history-number p {
    font-size: 14px;
    letter-spacing: 0.28px;
  }
}

.order-history-number p span {
  font-family: "Roboto", sans-serif;
}

@media screen and (min-width: 960px) {
  .order-history-number p span {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}

.order-item-info {
  padding: 30px 0;
  width: calc(100% - 45px);
  margin: 0 auto;
}

.order-item-info li {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 22.5px;
  letter-spacing: 0.28px;
  text-align: left;
  color: #000000;
}

.order-history-info-wrapper {
  border-top: solid 1px #cccccc;
}

@media screen and (min-width: 960px) {
  .order-history-info-wrapper {
    display: flex;
  }
}

.order-history-info-wrapper h3 {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.32px;
  text-align: center;
  color: #000000;
  padding-top: 29.5px;
  padding-bottom: 19.5px;
}

@media screen and (min-width: 960px) {
  .order-history-info-wrapper h3 {
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #000000;
    padding-left: 20px;
  }
}

.order-history-info-wrapper .order-history-info-list > li {
  display: flex;
  width: calc(100% - 20px);
  margin: 0 auto;
  padding: 25px 0 20px;
  border-top: solid 1px #ececec;
}

@media screen and (min-width: 960px) {
  .order-history-info-wrapper .order-history-info-list > li {
    border-top: none;
    border-bottom: solid 1px #ececec;
    padding: 20px 0;
    width: 100%;
  }
}

.order-history-info-wrapper .order-history-info-list > li:last-child {
  border-bottom: solid 1px #ececec;
}

.order-history-info-wrapper .order-history-info-list > li img {
  max-width: 83.5px;
  padding-left: 10px;
  height: 100px;
}

@media screen and (min-width: 960px) {
  .order-history-info-wrapper .order-history-info-list > li img {
    max-width: 83px;
    padding-left: 0px;
    height: 100px;
  }
}

.order-history-info-list-detail {
  margin-left: 15.5px;
}

@media screen and (min-width: 960px) {
  .order-history-info-list-detail {
    margin-left: 32px;
    width: 100%;
  }
}

.order-history-info-list-detail li {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 21px;
  letter-spacing: 0.26px;
  text-align: left;
  color: #333333;
}

@media screen and (min-width: 960px) {
  .order-history-info-list-detail li {
    line-height: 23px;
  }
}

.order-history-info-list-detail li.history-item-name {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 21px;
  letter-spacing: 0.26px;
  text-align: left;
  color: #000000;
  margin-bottom: 12px;
}

@media screen and (min-width: 960px) {
  .order-history-info-list-detail li.history-item-name {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.28px;
    margin-bottom: 0px;
    padding-top: 8px;
  }
}

@media screen and (min-width: 960px) {
  .order-history-info-list-detail li.pc-hidden {
    display: block;
    text-align: right;
    padding-right: 19px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.32px;
    color: #000000;
    margin-top: -24px;
  }
  .order-history-info-list-detail li.pc-hidden span.pc-hidden {
    display: none;
  }
  .order-history-info-list-detail li.pc-hidden span.history-item-currency {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
}

.order-history-info-list-detail li.pc-visible {
  display: none;
}

@media screen and (min-width: 960px) {
  .order-history-info-list-detail li.pc-visible {
    margin-left: auto;
    font-size: 13px;
    letter-spacing: 0.26px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color: #666666;
    display: block;
    text-align: right;
    padding-right: 19px;
    margin-bottom: -12px;
  }
  .order-history-info-list-detail li.pc-visible span {
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.2px;
    text-align: left;
  }
}

.order-history-price-list {
  width: calc(100% - 40px);
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 34px;
}

@media screen and (min-width: 960px) {
  .order-history-price-list {
    width: 100%;
    padding-left: 115px;
    padding-top: 25px;
  }
}

.order-history-price-list.order-history-price-list-bottom {
  padding-bottom: 20px;
}

@media screen and (min-width: 960px) {
  .order-history-price-list.order-history-price-list-bottom {
    padding-top: 18px;
    padding-bottom: 34px;
  }
}

.order-history-price-list li {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: left;
  color: #333333;
  line-height: 22.5px;
  padding-bottom: 4px;
}

@media screen and (min-width: 960px) {
  .order-history-price-list li {
    padding-bottom: 10px;
  }
}

.order-history-price-list li:last-child {
  padding-bottom: 0px;
}

@media screen and (min-width: 960px) {
  .order-history-price-list li:last-child {
    padding-bottom: 0px;
  }
}

.order-history-price-list li span.history-in-tax {
  font-size: 10px;
  letter-spacing: 0.2px;
}

@media screen and (min-width: 960px) {
  .order-history-price-list li span.history-in-tax {
    font-size: 14px;
    letter-spacing: 0.28px;
  }
}

.order-history-price-list li span.item-value {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: left;
  color: #000000;
  float: right;
}

@media screen and (min-width: 960px) {
  .order-history-price-list li span.item-value {
    font-size: 16px;
    letter-spacing: 0.32px;
    padding-right: 19px;
  }
}

.order-history-price-list li span.item-value.item-value-currency {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.order-history-price-list li span.total-price {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.36px;
  text-align: left;
  color: #000000;
  line-height: 28px;
}

@media screen and (min-width: 960px) {
  .order-history-price-list li span.total-price {
    font-size: 20px;
    letter-spacing: 0.4px;
  }
}

.order-history-price-list li span.total-price .total-price-in-tax {
  font-size: 11px;
  font-weight: normal;
  line-height: 15.5px;
  letter-spacing: 0.22px;
  color: #a1a1a1;
}

@media screen and (min-width: 960px) {
  .order-history-price-list li span.total-price .total-price-in-tax {
    font-size: 13px;
    letter-spacing: 0.26px;
    vertical-align: middle;
  }
}

.order-history-price-list li span.total-price-item-value {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 15.5px;
  letter-spacing: 0.4px;
  color: #000000;
  float: right;
  line-height: 28px;
}

@media screen and (min-width: 960px) {
  .order-history-price-list li span.total-price-item-value {
    font-size: 22px;
    line-height: 31px;
    letter-spacing: 0.44px;
    padding-right: 19px;
  }
}

.order-history-price-list li span.total-price-item-value .total-price-value-currency {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.32px;
}

.order-history-price-list li span.total-point {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 21px;
  letter-spacing: 0.24px;
  text-align: left;
  color: #666666;
}

@media screen and (min-width: 960px) {
  .order-history-price-list li span.total-point {
    font-size: 13px;
    letter-spacing: 0.26px;
  }
}

.order-history-price-list li span.total-point-item-value {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 15.5px;
  letter-spacing: 0.24px;
  color: #666666;
  float: right;
}

@media screen and (min-width: 960px) {
  .order-history-price-list li span.total-point-item-value {
    font-size: 14px;
    line-height: 31px;
    letter-spacing: 0.28px;
    padding-right: 19px;
  }
}

.order-history-info-detail-wrapper {
  border-top: solid 1px #cccccc;
  padding-top: 30px;
}

.order-history-info-detail-wrapper h3 {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.32px;
  text-align: center;
  color: #000000;
  padding-bottom: 19.5px;
}

@media screen and (min-width: 960px) {
  .order-history-info-detail-wrapper h3 {
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    padding-left: 20px;
  }
}

.order-history-detail-list > li {
  border-top: solid 1px #ececec;
  width: calc(100% - 20px);
  margin: 0 auto;
  padding: 25px 0;
}

@media screen and (min-width: 960px) {
  .order-history-detail-list > li {
    border-top: none;
    border-bottom: solid 1px #ececec;
    padding: 28px 0 16px;
    width: 100%;
  }
}

.order-history-detail-list > li:last-child {
  border-bottom: solid 1px #ececec;
}

.order-history-detail-list > li .order-history-detail-list-info {
  padding-left: 10.5px;
}

@media screen and (min-width: 960px) {
  .order-history-detail-list > li .order-history-detail-list-info {
    padding-left: 0px;
  }
}

.order-history-detail-list > li .order-history-detail-list-info li {
  padding-bottom: 4px;
}

.order-history-detail-list > li .order-history-detail-list-info li.history-item-detail {
  padding-bottom: 20px;
}

.order-history-detail-list > li .order-history-detail-list-info li.history-item-detail:last-child {
  padding-bottom: 0px;
}

.order-history-detail-list > li .order-history-detail-list-info li span.order-history-detail-list-info-heading {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 21px;
  letter-spacing: 0.28px;
  text-align: left;
  color: #333333;
  min-width: 110px;
  display: inline-block;
  position: relative;
  vertical-align: top;
}

.order-history-detail-list > li .order-history-detail-list-info li span.order-history-detail-list-info-heading::after {
  position: absolute;
  content: '：';
  right: 0px;
  padding-right: 5px;
}

.order-history-detail-list > li .order-history-detail-list-info li span.order-history-detail-list-info-bold {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 21px;
  letter-spacing: 0.28px;
  text-align: left;
  color: #333333;
  display: inline-block;
}

@media screen and (min-width: 960px) {
  .order-history-detail-list > li .order-history-detail-list-info li span.order-history-detail-list-info-bold {
    line-height: 25px;
  }
}

.order-history-detail-list > li .order-history-detail-list-info li span.order-history-detail-list-info-content {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 21px;
  letter-spacing: 0.28px;
  text-align: left;
  color: #333333;
  display: inline-block;
}

@media screen and (min-width: 960px) {
  .order-history-detail-list > li .order-history-detail-list-info li span.order-history-detail-list-info-content {
    width: calc(100% - 134px);
  }
}

.order-history-detail-list > li .order-history-detail-list-info li span.order-history-detail-list-info-content.tel-content {
  padding-left: 0.5em;
}

@media screen and (min-width: 960px) {
  .order-history-detail-list > li .order-history-detail-list-info li span.order-history-detail-list-info-content .pc-order-history-item-name {
    margin-bottom: 4px;
  }
}

.order-history-detail-list > li .order-history-detail-list-info li span .order-history-detail-list-info-content li {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 21px;
  letter-spacing: 0.28px;
  text-align: left;
  color: #333333;
  display: block;
  padding-bottom: 0px;
}

@media screen and (min-width: 960px) {
  .order-history-detail-list > li .order-history-detail-list-info li span .order-history-detail-list-info-content li {
    padding-bottom: 4px;
  }
}

@media screen and (min-width: 960px) {
  .order-history-detail-list > li .order-history-detail-list-info li span .order-history-detail-list-info-content li.pc-item-price {
    text-align: right;
  }
}

.order-history-detail-list > li .order-history-detail-list-info li span .order-history-detail-list-info-content li.pc-item-price span.pc-hidden {
  display: inline;
}

@media screen and (min-width: 960px) {
  .order-history-detail-list > li .order-history-detail-list-info li span .order-history-detail-list-info-content li.pc-item-price span.pc-hidden {
    display: none;
  }
}

.order-history-detail-list > li .order-history-detail-list-info li span .order-history-detail-list-info-content li.pc-item-price span.pc-visible {
  display: none;
}

@media screen and (min-width: 960px) {
  .order-history-detail-list > li .order-history-detail-list-info li span .order-history-detail-list-info-content li.pc-item-price span.pc-visible {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 13px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.26px;
    text-align: right;
    color: #666666;
    display: block;
    margin-top: -50px;
  }
  .order-history-detail-list > li .order-history-detail-list-info li span .order-history-detail-list-info-content li.pc-item-price span.pc-visible .pc-visible-intax {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.2px;
  }
}

@media screen and (min-width: 960px) {
  .order-history-detail-list > li .order-history-detail-list-info li span .order-history-detail-list-info-content li.pc-item-price span.item-detail-price-pc {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.32px;
    text-align: right;
    color: #000000;
    display: block;
  }
  .order-history-detail-list > li .order-history-detail-list-info li span .order-history-detail-list-info-content li.pc-item-price span.item-detail-price-pc .item-detail-currency {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
}

.back-to-prev-page {
  width: 100%;
  max-width: 300px;
  height: 44px;
  border-radius: 22px;
  font-size: 14px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.28px;
  background-color: #333333;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

@media screen and (min-width: 960px) {
  .back-to-prev-page {
    max-width: 240px;
  }
}

.back-to-prev-page:before {
  content: '';
  display: inline-block;
  width: 5.5px;
  height: 8px;
  background: url(../images/read-more-arrow-left.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  left: 20px;
  top: 18px;
}

.back-to-prev-page.display-none-more-960 {
  display: flex;
}

@media screen and (min-width: 960px) {
  .back-to-prev-page.display-none-more-960 {
    display: none;
  }
}

@media screen and (min-width: 960px) {
  .back-to-home.display-none-more-960 {
    display: none;
  }
}

/*---------------------------------
10-12 購入履歴詳細 PC
---------------------------------*/
@media screen and (min-width: 960px) {
  .pc-order-history-heading-wrapper {
    display: flex;
    flex-flow: row-reverse;
  }
  .pc-wrapper-order-history-info-wrapper {
    width: 80%;
    max-width: 650px;
    margin-left: auto;
  }
}

/*---------------------------------
10-14 クレジットカード
---------------------------------*/
.credit-card-description {
  width: calc(100% - 47px);
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 30px;
}

.credit-card-description p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 22.5px;
  letter-spacing: 0.28px;
  text-align: left;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .credit-card-description p {
    font-size: 13px;
    line-height: 26px;
    letter-spacing: 0.26px;
  }
}

.credit-card-list .pc-credit-card-detail-heading {
  display: none;
}

@media screen and (min-width: 960px) {
  .credit-card-list .pc-credit-card-detail-heading {
    display: flex;
    padding-bottom: 22px;
  }
  .credit-card-list .pc-credit-card-detail-heading li {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 13px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.26px;
    text-align: left;
    color: #666666;
  }
  .credit-card-list .pc-credit-card-detail-heading li:nth-child(1) {
    width: 310px;
  }
  .credit-card-list .pc-credit-card-detail-heading li:nth-child(2) {
    width: 160px;
  }
  .credit-card-list .pc-credit-card-detail-heading li:nth-child(3) {
    width: 110px;
  }
}

.credit-card-list > li {
  border-radius: 3px;
  background-color: #f4f4f4;
  width: calc(100% - 20px);
  margin: 0 auto;
  margin-bottom: 10px;
}

@media screen and (min-width: 960px) {
  .credit-card-list > li {
    border-radius: 6px;
    width: 100%;
    display: flex;
  }
}

.credit-card-list > li:last-child {
  margin-bottom: 0px;
}

.credit-card-list > li .credit-name {
  padding-top: 27px;
  padding-left: 30px;
}

@media screen and (min-width: 960px) {
  .credit-card-list > li .credit-name {
    padding-left: 40px;
    min-width: 270px;
    padding-top: 30px;
  }
}

.credit-card-list > li .credit-name label {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.24px;
  text-align: left;
  color: #000000;
  padding-left: 26.5px;
}

@media screen and (min-width: 960px) {
  .credit-card-list > li .credit-name label {
    padding-left: 33.5px;
  }
}

.credit-card-list > li .credit-name label span.card-number {
  font-size: 14px;
  letter-spacing: 0.32px;
}

@media screen and (min-width: 960px) {
  .credit-card-list > li .credit-name label span.card-number {
    font-size: 13px;
    letter-spacing: 0.26px;
    font-weight: normal;
  }
}

.credit-card-list > li .credit-name label span.card-info {
  font-size: 12px;
}

@media screen and (min-width: 960px) {
  .credit-card-list > li .credit-name label span.card-info {
    font-size: 14px;
    letter-spacing: 0.28px;
    font-weight: normal;
  }
}

.credit-card-list > li .credit-card-detail-list {
  padding-left: 30px;
  padding-top: 12px;
}

@media screen and (min-width: 960px) {
  .credit-card-list > li .credit-card-detail-list {
    display: flex;
    padding-left: 0px;
    padding-top: 29px;
  }
}

.credit-card-list > li .credit-card-detail-list li {
  font-size: 12px;
  letter-spacing: 0.24px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: left;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 22.5px;
}

.credit-card-list > li .credit-card-detail-list li span.credit-card-detail-heding {
  font-size: 12px;
  color: #666666;
}

@media screen and (min-width: 960px) {
  .credit-card-list > li .credit-card-detail-list li span.credit-card-detail-heding {
    display: none;
  }
}

.credit-card-list > li .credit-card-detail-list li span.credit-card-detail-content {
  font-size: 13px;
  letter-spacing: 0.26px;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .credit-card-list > li .credit-card-detail-list li span.credit-card-detail-content {
    font-size: 14px;
    letter-spacing: 0.28px;
    min-width: 220px;
    display: inline-block;
  }
}

@media screen and (min-width: 960px) {
  .credit-card-list > li .credit-card-detail-list li span.credit-card-detail-content.expiration-date {
    min-width: 80px;
  }
}

.credit-regi-btn-wrapper {
  width: 100%;
  padding-top: 23px;
  padding-bottom: 26.5px;
}

@media screen and (min-width: 960px) {
  .credit-regi-btn-wrapper {
    height: 84px;
    padding-top: 20px;
  }
}

.credit-regi-btn-wrapper .add-card-right {
  min-width: 80px;
  height: 44px;
  border-radius: 22px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
  margin-left: auto;
}

@media screen and (min-width: 960px) {
  .credit-regi-btn-wrapper .add-card-right {
    min-width: 108px;
    margin-right: 20px;
  }
}

.credit-regi-btn-wrapper .add-card-right a {
  display: block;
  color: #000000;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12.55px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.49px;
}

@media screen and (min-width: 960px) {
  .credit-regi-btn-wrapper .add-card-right a {
    font-size: 12px;
    letter-spacing: 0.24px;
  }
}

button.read-more.credit-regi-submit {
  max-width: 300px;
}

@media screen and (min-width: 960px) {
  button.read-more.credit-regi-submit {
    max-width: 240px;
  }
}

/*==============================================================================
11-2 faq
==============================================================================*/
/*---------------------------------
member-rank-content
---------------------------------*/
.section-heading.faq-heading {
  margin: 20px 0 30px;
}

.faq-container {
  border-top: solid 0.5px #cccccc;
}

@media screen and (min-width: 960px) {
  .faq-container {
    width: calc(100% - 130px);
    display: block;
    margin: 0 auto;
  }
}

.accordion-faq {
  margin-top: 17.5px;
  padding-bottom: 15px;
  border-bottom: solid 0.5px #cccccc;
  width: 100%;
  max-width: 770px;
}

@media screen and (min-width: 960px) {
  .accordion-faq {
    margin: 35px auto;
    width: 100%;
    padding-bottom: 35px;
    border-bottom: solid 1px #efefef;
  }
}

.accordion-faq img {
  margin-right: 18px;
}

.faq-check {
  display: none;
}

.faq-label {
  position: relative;
  padding-left: 43px;
}

@media screen and (min-width: 960px) {
  .faq-label {
    padding-left: 25px;
    padding-top: 4px;
    pointer-events: none;
  }
}

.faq-label::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url("../images/faq-heading-question.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  left: 20px;
  top: 1px;
}

@media screen and (min-width: 960px) {
  .faq-label::before {
    width: 20px;
    height: 20px;
    left: 0px;
    top: 0px;
  }
}

.faq-label p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: left;
  color: #333333;
  display: inline-block;
  width: calc(100% - 44px);
}

@media screen and (min-width: 960px) {
  .faq-label p {
    font-size: 22px;
    letter-spacing: 0.44px;
  }
}

.faq-label img.faq-more-arrow {
  margin-left: auto;
  width: 8px;
  height: 5.5px;
  position: absolute;
  top: 5px;
  right: 0px;
}

@media screen and (min-width: 960px) {
  .faq-label img.faq-more-arrow {
    display: none;
  }
}

.faq-content {
  position: relative;
  padding-left: 43px;
  height: 0;
  opacity: 0;
  transition: 0.5s;
  visibility: hidden;
  margin-right: 18px;
}

@media screen and (min-width: 960px) {
  .faq-content {
    padding-left: 50px;
  }
}

.faq-content::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url("../images/faq-heading-answer.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  left: 20px;
  top: 13px;
}

@media screen and (min-width: 960px) {
  .faq-content::before {
    width: 20px;
    height: 20px;
    left: 24px;
    top: 11px;
  }
}

.faq-content p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 22.5px;
  letter-spacing: 0.28px;
  text-align: left;
  color: #333333;
  display: inline-block;
  margin-top: 10px;
}

.faq-check:checked + .faq-label + .faq-content {
  opacity: 1;
  visibility: visible;
  height: max-content;
}

.faq-check:checked + .faq-label img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*==============================================================================
11-4 spinns app
==============================================================================*/
/*---------------------------------
spinns-app-heading
---------------------------------*/
.section-heading.spinns-app-heading {
  margin: 20px 0 0;
  padding-bottom: 33px;
  border-bottom: solid 0.5px #cccccc;
}

@media screen and (min-width: 960px) {
  .section-heading.spinns-app-heading {
    border-bottom: none;
    padding-bottom: 27px;
  }
}

/* sp */
.spinns-app-section .spinns-app-sp-container .app-heading {
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: center;
  color: #000000;
  padding-bottom: 25.5px;
}

.spinns-app-section .spinns-app-sp-container .app-container {
  margin: 40px auto 0;
  padding-bottom: 50px;
  border-bottom: solid 0.5px #efefef;
}

.spinns-app-section .spinns-app-sp-container .app-container:last-child {
  border-bottom: none;
}

@media screen and (min-width: 960px) {
  .spinns-app-section .spinns-app-sp-container {
    display: none;
  }
}

/* LINE */
.app-container.line-app .app-info {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 65px);
  margin: 0 auto;
}

.app-container.line-app .app-info .app-img {
  max-width: 115px;
  max-height: 115px;
  width: 100%;
}

.app-container.line-app .app-info .app-img img {
  width: 100%;
}

.app-container.line-app .app-info .app-text {
  margin-left: 29px;
}

.app-container.line-app .app-info .app-text .app-name {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: left;
  color: #333333;
  margin-top: 6.5px;
  margin-bottom: 6.5px;
}

.app-container.line-app .app-info .app-text .app-name span {
  margin-left: 1.6em;
  margin-right: 1.6em;
}

@media screen and (max-width: 374px) {
  .app-container.line-app .app-info .app-text .app-name span {
    margin-left: 0.5em;
    margin-right: 0.5em;
  }
}

.app-container.line-app .app-info .app-text .app-desc {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 27px;
  letter-spacing: 0.32px;
  text-align: left;
  color: #333333;
  margin-top: 12px;
}

@media screen and (max-width: 374px) {
  .app-container.line-app .app-info .app-text .app-desc {
    font-size: 12px;
  }
}

.app-container.line-app .app-info .app-text .app-desc span {
  font-weight: bold;
}

/* OFFICIAL */
.app-container.official-app .app-info {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 65px);
  margin: 0 auto;
  margin-top: -23px;
}

.app-container.official-app .app-info .app-img {
  max-width: 141px;
  max-height: 141px;
  width: 100%;
  margin-left: -14px;
}

.app-container.official-app .app-info .app-img img {
  width: 100%;
}

.app-container.official-app .app-info .app-text {
  margin-left: 15px;
}

.app-container.official-app .app-info .app-text .app-name {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: left;
  color: #333333;
}

@media screen and (max-width: 374px) {
  .app-container.official-app .app-info .app-text .app-name {
    font-size: 12px;
  }
}

.app-container.official-app .app-info .app-text .app-desc {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 27px;
  letter-spacing: 0.32px;
  text-align: left;
  color: #333333;
  margin-top: 12px;
}

@media screen and (max-width: 374px) {
  .app-container.official-app .app-info .app-text .app-desc {
    font-size: 12px;
  }
}

.app-container.official-app .app-info .app-text .app-desc span {
  font-weight: bold;
}

/* SNS */
.app-container.sns-app .app-info-img-container {
  width: calc(100% - 87px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-container.sns-app .app-info-img-container .app-img {
  max-width: 70px;
  max-height: 70px;
}

.app-container.sns-app .app-info-img-container .app-img:nth-child(2) {
  margin: 0 40px;
}

.app-container.sns-app .app-info-img-container .app-img img {
  width: 100%;
}

.app-container.sns-app .app-info-text-container {
  width: calc(100% - 87px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-container.sns-app .app-info-text-container .app-text:nth-child(2) {
  margin: 0 29px;
}

.app-container.sns-app .app-info-text-container .app-text .app-name {
  margin-top: 14px;
  font-family: "Roboto", sans-serif;
  font-stretch: normal;
  font-style: normal;
  text-align: center;
  color: #000000;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.28px;
}

.app-container.sns-app .app-info-text-container .app-text .app-account {
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.22px;
  text-align: center;
  color: #000000;
  margin-top: 4px;
}

/* pc */
.spinns-app-pc-irregular-line {
  border-bottom: none;
}

@media screen and (min-width: 960px) {
  .spinns-app-pc-irregular-line {
    border-bottom: solid 1px #cccccc;
    width: calc(100% - 50px);
    max-width: 1070px;
    margin-left: 50px;
  }
}

/* LINE PC */
.spinns-app-section .spinns-app-pc-container .app-container.line-app {
  display: none;
}

@media screen and (min-width: 960px) {
  .spinns-app-section .spinns-app-pc-container .app-container.line-app {
    display: block;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.line-app .app-info {
    display: flex;
    width: 770px;
    padding-bottom: 60px;
    border-bottom: solid 1px #a1a1a1;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.line-app .app-info .app-img {
    max-width: 230px;
    width: 100%;
    max-height: unset;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.line-app .app-info .app-img img {
    width: 100%;
    margin-top: 50px;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.line-app .app-info .app-img .app-name {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.28px;
    text-align: center;
    color: #333333;
    margin-top: 20px;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.line-app .app-info .app-img .app-name span {
    margin-left: 1em;
    margin-right: 1em;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.line-app .app-info .app-text {
    margin-left: 50px;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.line-app .app-info .app-text .app-heading {
    font-family: "Roboto", sans-serif;
    font-size: 32px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #000000;
    padding-bottom: 0px;
    margin-top: 70px;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.line-app .app-info .app-text .app-desc {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 32px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 43px;
    letter-spacing: 0.2px;
    text-align: left;
    color: #333333;
    margin-top: 20px;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.line-app .app-info .app-text .app-desc span {
    font-weight: bold;
  }
}

/* OFFICIAL PC */
.spinns-app-section .spinns-app-pc-container .app-container.official-app {
  display: none;
}

@media screen and (min-width: 960px) {
  .spinns-app-section .spinns-app-pc-container .app-container.official-app {
    display: block;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.official-app .app-info {
    display: flex;
    width: 770px;
    padding-bottom: 60px;
    border-bottom: solid 1px #a1a1a1;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.official-app .app-info .app-img {
    max-width: 284px;
    width: 100%;
    max-height: unset;
    margin-left: -15px;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.official-app .app-info .app-img img {
    width: 100%;
    margin-top: 50px;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.official-app .app-info .app-img .app-name {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.28px;
    text-align: center;
    color: #333333;
    margin-top: -8px;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.official-app .app-info .app-img .app-name span {
    margin-left: 1em;
    margin-right: 1em;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.official-app .app-info .app-text {
    margin-left: 20px;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.official-app .app-info .app-text .app-heading {
    font-family: "Roboto", sans-serif;
    font-size: 32px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #000000;
    padding-bottom: 0px;
    margin-top: 70px;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.official-app .app-info .app-text .app-desc {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 32px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 43px;
    letter-spacing: 0.2px;
    text-align: left;
    color: #333333;
    margin-top: 20px;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.official-app .app-info .app-text .app-desc span {
    font-weight: bold;
  }
}

/* SNS PC */
.spinns-app-section .spinns-app-pc-container .app-container.sns-app {
  display: none;
}

@media screen and (min-width: 960px) {
  .spinns-app-section .spinns-app-pc-container .app-container.sns-app {
    display: block;
    padding-bottom: 80px;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.sns-app .app-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: center;
    color: #000000;
    margin-top: 50px;
    padding-bottom: 50px;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.sns-app .app-info-img-container {
    width: 650px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.sns-app .app-info-img-container .app-info-img-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.sns-app .app-info-img-container .app-info-img-box .app-img {
    max-width: 140px;
    max-height: 140px;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.sns-app .app-info-img-container .app-info-img-box .app-img:nth-child(2) {
    margin: 0px 80px;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.sns-app .app-info-img-container .app-info-img-box .app-img img {
    width: 100%;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.sns-app .app-info-img-container .app-info-img-box .app-text .app-name {
    margin-top: 18px;
    font-family: "Roboto", sans-serif;
    font-stretch: normal;
    font-style: normal;
    text-align: center;
    color: #000000;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0.28px;
  }
  .spinns-app-section .spinns-app-pc-container .app-container.sns-app .app-info-img-container .app-info-img-box .app-text .app-account {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.22px;
    text-align: center;
    color: #000000;
    margin-top: 4px;
  }
}

/* view-more-app BTN */
button.read-more.view-more-app {
  max-width: 325px;
  background-color: #f4f4f4;
  color: #000000;
}

@media screen and (max-width: 374px) {
  button.read-more.view-more-app {
    max-width: 320px;
  }
}

@media screen and (min-width: 960px) {
  button.read-more.view-more-app {
    max-width: 446px;
  }
}

button.read-more.view-more-app a {
  display: block;
}

button.read-more.view-more-app::after {
  content: '';
  display: inline-block;
  width: 5.5px;
  height: 8px;
  background: url("../images/find-from-link-arrow-right.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 20px;
  top: 18px;
}

button.read-more.view-more-app.full-width {
  max-width: 770px;
}

/* LINE BTN */
.line-btn-container {
  margin: 30px auto 0;
  width: calc(100% - 50px);
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 960px) {
  .line-btn-container {
    margin: 28px auto 0;
    width: 446px;
    padding-bottom: 0px;
  }
}

.line-btn-container .add-freiends {
  min-width: 115px;
  margin-right: 7.5px;
}

@media screen and (min-width: 960px) {
  .line-btn-container .add-freiends {
    min-width: 216px;
    margin-right: 7px;
  }
}

.line-btn-container .add-freiends img {
  width: 100%;
}

.line-btn-container .link-accounts {
  min-width: 115px;
  margin-left: 7.5px;
}

@media screen and (min-width: 960px) {
  .line-btn-container .link-accounts {
    min-width: 216px;
    margin-left: 7px;
  }
}

.line-btn-container .link-accounts img {
  width: 100%;
}

/* APP BTN */
.app-btn-container {
  margin: 10px auto 0;
  width: calc(100% - 52px);
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 960px) {
  .app-btn-container {
    margin: 38px auto 0;
    width: 446px;
    padding-bottom: 0px;
  }
}

.app-btn-container .google-app {
  min-width: 115.5px;
  margin-right: 10.5px;
}

@media screen and (min-width: 960px) {
  .app-btn-container .google-app {
    min-width: 216px;
    margin-right: 7px;
  }
}

.app-btn-container .google-app img {
  width: 100%;
}

.app-btn-container .apple-app {
  min-width: 115.5px;
  margin-left: 10.5px;
}

@media screen and (min-width: 960px) {
  .app-btn-container .apple-app {
    min-width: 216px;
    margin-left: 7px;
  }
}

.app-btn-container .apple-app img {
  width: 100%;
}

/*==============================================================================
13-5
==============================================================================*/
.section-heading.my-page-section-heading {
  margin: 9px 0 0;
  border-bottom: solid 0.5px #cccccc;
  padding-bottom: 30px;
}

@media screen and (min-width: 960px) {
  .section-heading.my-page-section-heading {
    border-bottom: none;
  }
}

.pass-reset-notice {
  border-top: none;
}

.pass-reset-notice.size-guide-notice {
  width: calc(100% - 44px);
  margin: 0 auto;
}

.pass-reset-notice.size-guide-notice h3 {
  font-size: 14px;
  line-height: 22.5px;
  letter-spacing: 0.28px;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 40px;
}

@media screen and (min-width: 960px) {
  .pass-reset-notice.size-guide-notice h3 {
    line-height: 25px;
    text-align: center;
  }
}

.pass-reset-notice.size-guide-notice h3 span {
  font-size: 13px;
  line-height: 21.5px;
  letter-spacing: 0.26px;
}

.size-guide-sp-section .size-guide-sp-wrapper {
  border-top: solid 0.5px #cccccc;
  border-bottom: solid 0.5px #cccccc;
}

@media screen and (min-width: 960px) {
  .size-guide-sp-section .size-guide-sp-wrapper {
    border-top: none;
  }
}

/* sp size guide tabs */
.accordion-area-2.size-guide-area-2 .accordion-two .additional-accordion-header {
  border-right: 0.5px solid #efefef;
  border-bottom: 0.5px solid #efefef;
}

@media screen and (min-width: 960px) {
  .accordion-area-2.size-guide-area-2 .accordion-two .additional-accordion-header {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.4px;
    color: #000000;
    padding-left: 0px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 78px;
    border-right: none;
    border-bottom: none;
    pointer-events: none;
  }
}

@media screen and (min-width: 960px) {
  .accordion-area-2.size-guide-area-2 .accordion-two .additional-accordion-header .accordion-more-box {
    display: none;
    position: unset;
  }
}

.accordion-area-2.size-guide-area-2 .accordion-two .additional-accordion-header .accordion-more-box .size-guide-open {
  transform: rotate(90deg);
}

.accordion-area-2.size-guide-area-2 .accordion-two .additional-accordion-header img.size-guide-menu-icon {
  width: 13px;
  height: 15px;
  margin-right: 10px;
  margin-left: 5px;
}

@media screen and (min-width: 960px) {
  .accordion-area-2.size-guide-area-2 .accordion-two .additional-accordion-header img.size-guide-menu-icon {
    width: 30px;
    height: 30px;
    margin-left: 0px;
    margin-right: 20px;
  }
}

@media screen and (min-width: 960px) {
  .accordion-area-2.size-guide-area-2 .accordion-two .additional-accordion-inner {
    display: block !important;
  }
}

.size-guide-open {
  display: block;
  width: 8px;
  height: 5.5px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}

.size-guide-open:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 1px #a1a1a1;
  border-right: solid 1px #a1a1a1;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
}

.size-guide-open:after {
  content: none;
}

@media screen and (min-width: 960px) {
  .accordion-one.size-guide-accordion-one {
    margin-bottom: 10px;
    background-color: #f8f8f8;
  }
  .accordion-one.size-guide-accordion-one:last-child {
    margin-bottom: 0px;
  }
}

.accordion-one.size-guide-accordion-one .accordion-header {
  padding-left: 0px;
  border-bottom: 0.5px solid #efefef;
  background-color: #f4f4f4;
}

@media screen and (min-width: 960px) {
  .accordion-one.size-guide-accordion-one .accordion-header {
    height: auto;
    background-color: unset;
    border-bottom: none;
    pointer-events: none;
  }
}

.accordion-one.size-guide-accordion-one .accordion-header.open {
  background-color: #f4f4f4;
}

@media screen and (min-width: 960px) {
  .accordion-one.size-guide-accordion-one .accordion-header.open {
    background-color: #f8f8f8;
  }
}

.accordion-one.size-guide-accordion-one .accordion-header span {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: left;
  color: #000000;
  padding-left: 35px;
}

@media screen and (min-width: 960px) {
  .accordion-one.size-guide-accordion-one .accordion-header span {
    font-size: 20px;
    letter-spacing: 0.4px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0px;
  }
}

@media screen and (max-width: 374px) {
  .accordion-one.size-guide-accordion-one .accordion-header span {
    font-size: 12px;
  }
}

.accordion-one.size-guide-accordion-one .accordion-header.size-guide-box {
  height: auto;
  display: block;
  max-width: 850px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.accordion-one.size-guide-accordion-one .accordion-header.size-guide-box .size-guide-img {
  width: calc(100% - 90px);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 960px) {
  .accordion-one.size-guide-accordion-one .accordion-header.size-guide-box .size-guide-img {
    max-width: 686px;
    width: 100%;
    display: flex;
  }
}

.accordion-one.size-guide-accordion-one .accordion-header.size-guide-box .size-guide-img img {
  width: 100%;
  margin-top: 10px;
}

@media screen and (min-width: 960px) {
  .accordion-one.size-guide-accordion-one .accordion-header.size-guide-box .size-guide-img img {
    margin-top: 0px;
  }
}

.accordion-one.size-guide-accordion-one .accordion-header.size-guide-box .size-guide-img img:first-child {
  margin-top: 0px;
}

@media screen and (min-width: 960px) {
  .accordion-one.size-guide-accordion-one .accordion-header.size-guide-box .size-guide-img.single-img {
    max-width: 250px;
    margin-right: 20px;
  }
  .accordion-one.size-guide-accordion-one .accordion-header.size-guide-box .size-guide-img.single-img img {
    margin-top: -130px;
    width: 100%;
  }
  .accordion-one.size-guide-accordion-one .accordion-header.size-guide-box .size-guide-img.single-img.pc-pants img {
    margin-top: -260px;
  }
  .accordion-one.size-guide-accordion-one .accordion-header.size-guide-box .size-guide-img.single-img.pc-socks img {
    margin-top: -90px;
  }
}

@media screen and (min-width: 961px) and (max-width: 1224px) {
  .accordion-one.size-guide-accordion-one .accordion-header.size-guide-box .size-guide-img.single-img {
    max-width: 100%;
    width: 50%;
    margin-right: auto;
    margin-left: auto;
  }
  .accordion-one.size-guide-accordion-one .accordion-header.size-guide-box .size-guide-img.single-img img {
    margin-top: 0px;
    width: 100%;
  }
  .accordion-one.size-guide-accordion-one .accordion-header.size-guide-box .size-guide-img.single-img.pc-pants img {
    margin-top: 0px;
  }
  .accordion-one.size-guide-accordion-one .accordion-header.size-guide-box .size-guide-img.single-img.pc-socks img {
    margin-top: 0px;
  }
}

@media screen and (min-width: 960px) {
  .accordion-one.size-guide-accordion-one .accordion-header .accordion-more-box {
    display: none;
  }
}

@media screen and (min-width: 960px) {
  .accordion-one.size-guide-accordion-one .accordion-inner {
    display: block !important;
  }
}

.size-guide-desc {
  padding-top: 30px;
  margin-bottom: 40px;
  display: block;
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 960px) {
  .size-guide-desc {
    width: 100%;
    border-top: solid 1px #ebebeb;
    border-bottom: solid 1px #ebebeb;
    padding-bottom: 30px;
    padding-right: 220px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}

.size-guide-desc tr {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.2px;
  text-align: left;
  color: #000000;
  margin-bottom: 19px;
  line-height: 18px;
  display: block;
  margin-left: 12px;
}

.size-guide-desc tr:last-child {
  margin-bottom: 0px;
}

@media screen and (min-width: 960px) {
  .size-guide-desc tr {
    font-size: 13px;
    letter-spacing: 0.26px;
    margin-left: 44px;
    margin-bottom: 16px;
  }
}

.size-guide-desc th {
  min-width: 42px;
  font-weight: bold;
}

.size-guide-desc th.letter-wide {
  display: inline-block;
}

@media screen and (min-width: 960px) {
  .size-guide-desc th {
    min-width: 120px;
  }
}

.size-guide-desc td {
  font-weight: normal;
}

.size-guide-desc td.letter-wide-content {
  font-weight: normal;
  margin-left: 42px;
  display: block;
}

@media screen and (min-width: 960px) {
  .size-guide-desc td.letter-wide-content {
    display: inline-block;
    margin-left: -4px;
  }
}

/* pc-left-size-guide-menu */
.pc-col-wrapper-left.pc-left-size-guide-menu {
  border-top: none;
}

.pc-col-wrapper-left.pc-left-size-guide-menu .pc-left-nav {
  margin-top: 0px;
}

.pc-col-wrapper-left.pc-left-size-guide-menu .pc-left-nav li {
  border-bottom: solid 1px #efefef;
}

.pc-col-wrapper-left.pc-left-size-guide-menu .pc-left-nav li span {
  padding-left: 10px;
}

.pc-col-wrapper-left.pc-left-size-guide-menu .pc-left-nav li.size-guide-pc-mene-heading {
  height: 44px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: left;
  color: #000000;
  border-top: solid 1px #cccccc;
  border-bottom: solid 1px #efefef;
  display: flex;
  align-items: center;
  margin-bottom: 0px;
}

.pc-col-wrapper-left.pc-left-size-guide-menu .pc-left-nav li.size-guide-pc-mene-heading img {
  width: 14px;
  height: 16px;
  margin-left: 10px;
  margin-right: 10px;
}

.pc-col-wrapper-left.pc-left-size-guide-menu .pc-left-nav li.size-guide-pc-mene-content {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  margin-top: 10px;
  padding-bottom: 10px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: left;
  color: #000000;
  display: flex;
  align-items: center;
  margin-bottom: 0px;
  position: relative;
  cursor: pointer;
}

.pc-col-wrapper-left.pc-left-size-guide-menu .pc-left-nav li.size-guide-pc-mene-content a {
  display: block;
}

.pc-col-wrapper-left.pc-left-size-guide-menu .pc-left-nav li.size-guide-pc-mene-content:after {
  position: absolute;
  content: '';
  width: 6px;
  height: 9px;
  background: url(../images/arrow-right.png);
  background-size: contain;
  right: 10px;
  top: 4px;
}

.pc-col-wrapper-left.pc-left-size-guide-menu .pc-left-nav li.two-line:after {
  top: 12px;
}

/*==============================================================================
15 FAQ
==============================================================================*/
.section-heading.faqmain-heading {
  margin: 20px 0 0px;
  padding-bottom: 30.5px;
  border-bottom: solid 0.5px #cccccc;
}

@media screen and (min-width: 960px) {
  .section-heading.faqmain-heading {
    border-bottom: none;
  }
}

.faq-main-container {
  border-top: solid 0.5px #cccccc;
}

@media screen and (min-width: 960px) {
  .faq-main-container {
    display: block;
    margin: 0 auto;
    border-top: none;
  }
}

.faq-top-heading {
  padding-top: 27px;
  padding-bottom: 27px;
  width: calc(100% - 48px);
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  .faq-top-heading {
    width: 100%;
    padding-top: 13px;
    padding-bottom: 59px;
  }
}

.faq-top-heading p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 22.5px;
  letter-spacing: 0.28px;
  text-align: left;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .faq-top-heading p {
    text-align: center;
  }
}

.faq-accordion-one {
  border-bottom: solid 0.5px #cccccc;
}

@media screen and (min-width: 960px) {
  .faq-accordion-one {
    margin-bottom: 10px;
    border-bottom: none;
  }
  .faq-accordion-one:last-child {
    margin-bottom: 0px;
  }
}

.faq-accordion-one .faq-accordion-header {
  padding-left: 0px;
  border-bottom: 0.5px solid #efefef;
  background-color: #ffffff;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: left;
  color: #000000;
  height: 45px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  position: relative;
}

@media screen and (min-width: 960px) {
  .faq-accordion-one .faq-accordion-header {
    height: auto;
    background-color: unset;
    pointer-events: none;
    border-bottom: 1px solid #efefef;
  }
}

@media screen and (min-width: 960px) {
  .faq-accordion-one .faq-accordion-header.open {
    background-color: #f8f8f8;
  }
}

.faq-accordion-one .faq-accordion-header span {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: left;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .faq-accordion-one .faq-accordion-header span {
    text-align: center;
    margin-top: 28px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 20px;
    letter-spacing: 0.4px;
    color: #000000;
  }
}

@media screen and (max-width: 374px) {
  .faq-accordion-one .faq-accordion-header span {
    font-size: 12px;
  }
}

.faq-accordion-one .faq-accordion-header.size-guide-box {
  height: auto;
  display: block;
  padding-bottom: 50px;
}

.faq-accordion-one .faq-accordion-header.size-guide-box .size-guide-img {
  width: calc(100% - 90px);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 960px) {
  .faq-accordion-one .faq-accordion-header.size-guide-box .size-guide-img {
    max-width: 686px;
    width: 100%;
    display: flex;
  }
}

.faq-accordion-one .faq-accordion-header.size-guide-box .size-guide-img img {
  width: 100%;
  margin-top: 10px;
}

@media screen and (min-width: 960px) {
  .faq-accordion-one .faq-accordion-header.size-guide-box .size-guide-img img {
    margin-top: 0px;
  }
}

.faq-accordion-one .faq-accordion-header.size-guide-box .size-guide-img img:first-child {
  margin-top: 0px;
}

@media screen and (min-width: 960px) {
  .faq-accordion-one .faq-accordion-header.size-guide-box .size-guide-img.single-img {
    max-width: 250px;
    margin-right: 20px;
  }
  .faq-accordion-one .faq-accordion-header.size-guide-box .size-guide-img.single-img img {
    margin-top: -130px;
    width: 100%;
  }
  .faq-accordion-one .faq-accordion-header.size-guide-box .size-guide-img.single-img.pc-pants img {
    margin-top: -260px;
  }
  .faq-accordion-one .faq-accordion-header.size-guide-box .size-guide-img.single-img.pc-socks img {
    margin-top: -90px;
  }
}

@media screen and (min-width: 961px) and (max-width: 1224px) {
  .faq-accordion-one .faq-accordion-header.size-guide-box .size-guide-img.single-img {
    max-width: 100%;
    width: 50%;
    margin-right: auto;
    margin-left: auto;
  }
  .faq-accordion-one .faq-accordion-header.size-guide-box .size-guide-img.single-img img {
    margin-top: 0px;
    width: 100%;
  }
  .faq-accordion-one .faq-accordion-header.size-guide-box .size-guide-img.single-img.pc-pants img {
    margin-top: 0px;
  }
  .faq-accordion-one .faq-accordion-header.size-guide-box .size-guide-img.single-img.pc-socks img {
    margin-top: 0px;
  }
}

@media screen and (min-width: 960px) {
  .faq-accordion-one .accordion-inner {
    display: block !important;
  }
}

/* アコーディオン */
.faq-accordion-one .faq-accordion-header .accordion-more-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 20px;
  height: 37px;
  margin-top: -20px;
  box-sizing: border-box;
}

@media screen and (min-width: 960px) {
  .faq-accordion-one .faq-accordion-header .accordion-more-box {
    display: none;
  }
}

.faq-accordion-one .faq-accordion-header .accordion-more-box .more-nav-btn {
  display: block;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}

@media screen and (min-width: 960px) {
  .faq-accordion-one .faq-accordion-header .accordion-more-box .more-nav-btn {
    width: 12px;
    height: 12px;
    right: 12px;
  }
}

.faq-accordion-one .faq-accordion-header.open .accordion-more-box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.faq-accordion-one .faq-accordion-header .accordion-more-box .more-nav-btn:before,
.faq-accordion-one .faq-accordion-header .accordion-more-box .more-nav-btn:after {
  display: flex;
  content: '';
  background-color: #a1a1a1;
  border-radius: 10px;
  width: 9px;
  height: 1px;
  position: absolute;
  top: 4px;
  left: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
}

@media screen and (min-width: 960px) {
  .faq-accordion-one .faq-accordion-header .accordion-more-box .more-nav-btn:before,
  .faq-accordion-one .faq-accordion-header .accordion-more-box .more-nav-btn:after {
    width: 12px;
    height: 2px;
    top: 5px;
  }
}

.faq-accordion-one .faq-accordion-header .accordion-more-box .more-nav-btn:before {
  width: 1px;
  height: 9px;
  top: 0;
  left: 4px;
}

@media screen and (min-width: 960px) {
  .faq-accordion-one .faq-accordion-header .accordion-more-box .more-nav-btn:before {
    width: 2px;
    height: 12px;
    left: 5px;
  }
}

.faq-accordion-one .faq-accordion-header.open .accordion-more-box .more-nav-btn:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.faq-accordion-one .accordion-inner {
  display: none;
  padding: 0;
  box-sizing: border-box;
}

.accordion-faqmain {
  margin-top: 17.5px;
  padding-bottom: 15px;
  border-bottom: solid 0.5px #efefef;
  width: 100%;
}

@media screen and (min-width: 960px) {
  .accordion-faqmain {
    margin: 35px auto;
    width: 100%;
    padding-bottom: 35px;
    border-bottom: solid 1px #efefef;
    max-width: 100%;
  }
}

@media screen and (min-width: 960px) {
  .accordion-faqmain .faq-content {
    opacity: 1;
    height: auto;
    visibility: visible;
    padding-left: 85px;
  }
  .accordion-faqmain .faq-content::before {
    left: 59px;
  }
}

.accordion-faqmain img {
  margin-right: 18px;
}

.faqmain-label {
  position: relative;
  padding-left: 43px;
}

@media screen and (min-width: 960px) {
  .faqmain-label {
    padding-left: 56px;
    padding-top: 4px;
    pointer-events: none;
  }
}

.faqmain-label p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: left;
  color: #333333;
  display: inline-block;
  width: calc(100% - 44px);
}

@media screen and (min-width: 960px) {
  .faqmain-label p {
    font-size: 22px;
    letter-spacing: 0.44px;
  }
}

.faqmain-label p::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url("../images/faq-heading-question.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  left: 20px;
  margin-top: -1px;
}

@media screen and (min-width: 960px) {
  .faqmain-label p::before {
    width: 20px;
    height: 20px;
    left: 27px;
    top: 1px;
  }
}

.faqmain-label img.faq-more-arrow {
  margin-left: auto;
  width: 8px;
  height: 5.5px;
  position: absolute;
  top: 5px;
  right: -8px;
}

@media screen and (min-width: 960px) {
  .faqmain-label img.faq-more-arrow {
    display: none;
  }
}

.faq-check:checked + .faqmain-label + .faq-content {
  opacity: 1;
  visibility: visible;
  height: max-content;
  width: calc(100% - 24px);
}

@media screen and (min-width: 960px) {
  .faq-check:checked + .faqmain-label + .faq-content {
    width: 100%;
  }
}

.faq-check:checked + .faqmain-label img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media screen and (min-width: 960px) {
  .pc-col-wrapper .pc-col-wrapper-left.faqmain-left {
    min-width: 250px;
  }
  .pc-col-wrapper .pc-col-wrapper-right.faqmain-right {
    width: 890px;
    max-width: 100%;
    border-top: solid 1px #cccccc;
  }
}

@media screen and (min-width: 960px) {
  .faq-accordion-one {
    display: none;
  }
  .faq-accordion-one.show {
    display: block;
  }
}

/*---------------------------------
pc info-nav
---------------------------------*/
.pc-col-wrapper-left .pc-left-nav {
  margin-left: 12px;
}

.pc-col-wrapper-left .pc-left-nav li.faq-tab {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.14px;
  text-align: left;
  color: #000000;
  margin-bottom: 18px;
  cursor: pointer;
}

.pc-col-wrapper-left .pc-left-nav li.faq-tab.active {
  font-weight: bold;
  pointer-events: none;
}

/*==============================================================================
17 informatione
==============================================================================*/
/*---------------------------------
info-section
---------------------------------*/
.section-heading.information-section-heading {
  margin: 9px 0 0;
  padding-bottom: 30px;
}

@media screen and (min-width: 960px) {
  .section-heading.information-section-heading {
    border-bottom: none;
  }
}

.info-section .information-list-yaer-heading {
  border-bottom: solid 0.5px #efefef;
  height: 50px;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .info-section .information-list-yaer-heading {
    display: none;
  }
}

.info-section .information-list-yaer-heading p {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: left;
  color: #333333;
  margin-left: 21px;
}

/*---------------------------------
17-1
---------------------------------*/
@media screen and (min-width: 960px) {
  .information-list {
    display: none;
  }
  .information-list.show {
    display: block;
  }
}

.information-list li {
  border-bottom: solid 0.5px #efefef;
}

@media screen and (min-width: 960px) {
  .information-list li {
    border-bottom: solid 1px #efefef;
  }
}

.information-list li:last-child {
  border-bottom: solid 0.5px #cccccc;
}

@media screen and (min-width: 960px) {
  .information-list li:last-child {
    border-bottom: solid 1px #cccccc;
  }
}

.information-list li span.news-date {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: left;
  color: #a1a1a1;
  display: block;
  margin-left: 21px;
  padding-top: 20.5px;
}

@media screen and (min-width: 960px) {
  .information-list li span.news-date {
    padding-top: 30px;
  }
}

.information-list li span.news-heading-title {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 22.5px;
  letter-spacing: 0.28px;
  text-align: left;
  color: #333333;
  margin-left: 21px;
  margin-top: 2px;
  display: inline-block;
  margin-bottom: 18px;
}

@media screen and (min-width: 960px) {
  .information-list li span.news-heading-title {
    margin-top: 9px;
    margin-bottom: 23px;
  }
}

.information-list li span.news-heading-title.fix-left {
  margin-left: calc(21px - 0.5em);
}

/*---------------------------------
17-2
---------------------------------*/
.information-desc-heding {
  border-bottom: solid 0.5px #efefef;
}

.information-desc-heding p.news-date {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: left;
  color: #a1a1a1;
  display: block;
  margin-left: 21px;
  padding-top: 20.5px;
}

@media screen and (min-width: 960px) {
  .information-desc-heding p.news-date {
    padding-top: 30px;
  }
}

.information-desc-heding p.news-heading-title {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 22.5px;
  letter-spacing: 0.28px;
  text-align: left;
  color: #333333;
  margin-left: 21px;
  margin-top: 2px;
  display: inline-block;
  margin-bottom: 18px;
}

@media screen and (min-width: 960px) {
  .information-desc-heding p.news-heading-title {
    margin-top: 9px;
    margin-bottom: 23px;
    font-size: 16px;
    letter-spacing: 0.32px;
  }
}

.information-desc-heding p.news-heading-title.fix-left {
  margin-left: calc(21px - 0.5em);
}

.info-article-wrapper {
  border-bottom: solid 0.5px #cccccc;
}

.info-article-wrapper .info-article {
  width: calc(100% - 44px);
  margin: 0 auto;
  padding-top: 15.5px;
  padding-bottom: 27.5px;
}

@media screen and (min-width: 960px) {
  .info-article-wrapper .info-article {
    padding-top: 20px;
    padding-bottom: 57px;
  }
}

.info-article-wrapper .info-article p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 22.5px;
  letter-spacing: 0.98px;
  text-align: left;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .info-article-wrapper .info-article p {
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.28px;
    color: #333333;
  }
}

/*---------------------------------
pc info-nav
---------------------------------*/
.pc-col-wrapper-left .pc-left-nav.info-nav {
  margin-left: 12px;
}

.pc-col-wrapper-left .pc-left-nav.info-nav li.info-tab {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.14px;
  text-align: left;
  color: #000000;
  margin-bottom: 18px;
  cursor: pointer;
}

.pc-col-wrapper-left .pc-left-nav.info-nav li.info-tab.active {
  font-weight: bold;
  pointer-events: none;
}

/*==============================================================================
CARD
==============================================================================*/

.card-top-heading {
  padding: 27px 24px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background: #f4f4f4;
}

@media screen and (min-width: 960px) {
  .card-top-heading {
    width: 100%;
    padding: 27px 0;
  }
}

.card-top-heading p {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 22.5px;
  letter-spacing: 0.28px;
  text-align: center;
  color: #000000;
}

@media screen and (min-width: 960px) {
  .card-top-heading p {
    text-align: center;
  }
}

.card-main-heading {
  margin: 9px 0 0;
  padding-bottom: 30px;
  border-bottom: 0;
}

@media screen and (min-width: 960px) {
  .card-main-heading {
    width: calc(100% - 130px);
    margin: 9px auto 0;
    padding-bottom: 30px;
  }
}

/*==============================================================================
common
==============================================================================*/
/*---------------------------------
container
---------------------------------*/
.container {
  margin-top: 31px;
}

/*---------------------------------
margin-top
---------------------------------*/
.margin-top-15.margin-top-15 {
  margin-top: 15px;
}

.margin-top-20.margin-top-20 {
  margin-top: 20px;
}

.margin-top-25.margin-top-25 {
  margin-top: 25px;
}

.margin-top-30.margin-top-30 {
  margin-top: 30px;
}

.margin-top-35.margin-top-35 {
  margin-top: 35px;
}

.margin-top-40.margin-top-40 {
  margin-top: 40px;
}

.margin-top-50.margin-top-50 {
  margin-top: 0px;
}

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

@media screen and (min-width: 960px) {
  .pc-margin-top-0.pc-margin-top-0 {
    margin-top: 0px;
  }
}

@media screen and (min-width: 960px) {
  .pc-margin-top-10.pc-margin-top-10 {
    margin-top: 10px;
  }
}

@media screen and (min-width: 960px) {
  .pc-margin-top-20.pc-margin-top-20 {
    margin-top: 20px;
  }
}

@media screen and (min-width: 960px) {
  .pc-margin-top-25.pc-margin-top-25 {
    margin-top: 25px;
  }
}

@media screen and (min-width: 960px) {
  .pc-margin-top-30.pc-margin-top-30 {
    margin-top: 30px;
  }
}

@media screen and (min-width: 960px) {
  .pc-margin-top-50.pc-margin-top-50 {
    margin-top: 50px;
  }
}

@media screen and (min-width: 960px) {
  .pc-margin-top-60.pc-margin-top-60 {
    margin-top: 60px;
  }
}

@media screen and (min-width: 960px) {
  .pc-margin-top-80.pc-margin-top-80 {
    margin-top: 80px;
  }
}

@media screen and (min-width: 960px) {
  .pc-margin-top-100.pc-margin-top-100 {
    margin-top: 100px;
  }
}

@media screen and (min-width: 960px) {
  .pc-margin-top-120.pc-margin-top-120 {
    margin-top: 120px;
  }
}

/*---------------------------------
margin-bottom
---------------------------------*/
.margin-bottom-30.margin-bottom-30 {
  margin-bottom: 30px;
}

.margin-bottom-40.margin-bottom-40 {
  margin-bottom: 50px;
}

.margin-bottom-50.margin-bottom-50 {
  margin-bottom: 50px;
}

.margin-bottom-55.margin-bottom-55 {
  margin-bottom: 55px;
}

.margin-bottom-60.margin-bottom-60 {
  margin-bottom: 60px;
}

@media screen and (min-width: 960px) {
  .pc-margin-bottom-40.pc-margin-bottom-40 {
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 960px) {
  .pc-margin-bottom-50.pc-margin-bottom-50 {
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 960px) {
  .pc-margin-bottom-80.pc-margin-bottom-80 {
    margin-bottom: 80px;
  }
}

@media screen and (min-width: 960px) {
  .pc-margin-bottom-100.pc-margin-bottom-100 {
    margin-bottom: 100px;
  }
}

@media screen and (min-width: 960px) {
  .pc-margin-bottom-120.pc-margin-bottom-120 {
    margin-bottom: 120px;
  }
}

/*---------------------------------
padding-top
---------------------------------*/
.padding-top-30.padding-top-30 {
  padding-top: 30px;
}

@media screen and (min-width: 960px) {
  .pc-padding-top-0.pc-padding-top-0 {
    padding-top: 0px;
  }
}

/*---------------------------------
display-none
---------------------------------*/
.display-none-more-960 {
  display: block;
}

@media screen and (min-width: 960px) {
  .display-none-more-960 {
    display: none;
  }
}

.display-none-less-960 {
  display: none;
}

@media screen and (min-width: 960px) {
  .display-none-less-960 {
    display: block;
  }
}

button.display-none-less-960 {
  display: none;
}

@media screen and (min-width: 960px) {
  button.display-none-less-960 {
    display: flex;
  }
}

/*---------------------------------
line
---------------------------------*/
.line-black-1 {
  border-bottom: solid 0.5px #cccccc;
}

/*# sourceMappingURL=style.css.map */



.section-heading h2 {
    font-size: 26px;
    text-align: center;
    color: #000000;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    line-height: 1;
}
	.section-heading h2 span {
		font-size: 12px;
		font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
		letter-spacing: 0.28px;
		display: block;
		margin-top: 5px;
		color: #a1a1a1;
	}
@media screen and (min-width: 960px) {
	.section-heading h2 {
		font-size: 30px;
		font-weight: 300;
	}
		.section-heading h2 span {
			display: inline-block;
			font-size: 14px;
			line-height: 16px;
			letter-spacing: 0.28px;
			text-align: left;
			margin-top: 0px;
			vertical-align: middle;
			margin-bottom: 4px;
		}
		.section-heading h2 span.sub-heading {
			margin-left: 21px;
		}
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
	display: none !important;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
	display: none !important;
}



/*---------------------------------
SITE MAP
---------------------------------*/
.sitemap-container {
	width: calc(100% - 130px);
    margin: 9px auto 0 auto;
}
	.sitemap-container .cell {
		margin-top: 70px;
	}
		.sitemap-container .cell .h2_tit {
			background: #F7F7F7;
			padding: 14px;
			font-size: 18px;
		}

		.sitemap-container .cell ul.flex-list {
			display: flex;
			-ms-flex-wrap: wrap;
			flex-wrap: wrap;
		}
			.sitemap-container .cell ul.flex-list li {
				width: 23.5%;
				margin-right: 2%;
				border-bottom: solid 1px #ddd;
			}
			.sitemap-container .cell ul.flex-list li:nth-child(4n) {
				margin-right: 0;
			}
				.sitemap-container .cell ul.flex-list li a {
					display: flex;
					justify-content: flex-start;
					align-items: center;
					background: url("https://spinns.itembox.design/item/images/sitemap_icon_arrow.svg?d=20231108202348") no-repeat left 10px center;
					min-height: 60px;
					padding: 5px 0 5px 35px;
					font-size: 14px;
					transition: 0.3s;
					-webkit-transition: 0.3s;
				}
				.sitemap-container .cell ul.flex-list li a:hover {
					background: url("https://spinns.itembox.design/item/images/sitemap_icon_arrow.svg?d=20231108202348") no-repeat left 13px center;
					opacity: 0.7;
				}
@media screen and (max-width: 959px) {
.sitemap-container {
	width: 100%;
	padding: 0 20px;
    margin: 0 0 0 0;
}
	.sitemap-container .cell {
		margin-top: 40px;
	}
		.sitemap-container .cell .h2_tit {
			font-size: 16px;
		}

		.sitemap-container .cell ul.flex-list li {
			width: 49%;
		}
		.sitemap-container .cell ul.flex-list li:nth-child(4n) {
			margin-right: 2%;
		}
		.sitemap-container .cell ul.flex-list li:nth-child(2n) {
			margin-right: 0;
		}
			.sitemap-container .cell ul.flex-list li a {
				background: url("https://spinns.itembox.design/item/images/sitemap_icon_arrow.svg?d=20231108202348") no-repeat left 0 center;
				min-height: 56px;
				padding: 5px 0 5px 23px;
				font-size: 13px;
			}
			.sitemap-container .cell ul.flex-list li a:hover {
				background: url("https://spinns.itembox.design/item/images/sitemap_icon_arrow.svg?d=20231108202348") no-repeat left 3px center;
				opacity: 0.7;
			}
}

























