@charset "UTF-8";

/* -----------------------------------------------

index

----------------------------------------------- */
#index .topbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 10px 0px;
  text-align: center;
  background-color: #D2145A;
}
#index .topbar .emphasis {
  display: inline-block;
  width: 200px;
  font-size: 16px;
  line-height: 32px;
  color: #D2145A;
  background-color: #ffffff;
  border-radius: 100px;
}
#index .topbar .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
#index .topbar .wrap .price {
  display: inline-block;
  font-family: "urbane", sans-serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #ffffff;
}
#index .topbar .wrap .let {
  margin-top: 10px;
  font-size: 16px;
  color: #ffffff;
}
#index .topbar .wrap .postage {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 35px;
  color: #FFFF00;
  margin-top: -5px;
}
@media all and (max-width: 750px) {
  #index .topbar {
    flex-direction: column;
    padding: 17px 0px 10px;
    gap: 4px;
  }
  #index .topbar .emphasis {
    width: 160px;
    font-size: 12.5px;
    line-height: 25px;
  }
  #index .topbar .wrap .price {
    font-size: 30px;
  }
  #index .topbar .wrap .let {
    margin-top: 6px;
    font-size: 13.5px;
  }
  #index .topbar .wrap .postage {
    font-size: 25px;
  }
}
/* -------------------------------------------- */
#index .fv img {
  width: 100%;
  max-width: none;
}
/* -------------------------------------------- */
#index .search {
  padding: 22px 0px;
  background-color: #000000;
}
#index .search form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#index .search form .ruby {
  font-family: "urbane", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #ffffff;
}
#index .search form .wrap {
  width: 100%;
  max-width: 350px;
  height: 35px;
  position: relative;
}
#index .search form .wrap input[type=text] {
  width: 100%;
  height: 100%;
  padding: 0px 40px 0px 15px;
  border: none;
  border-radius: 100px;
  box-sizing: border-box;
}
#index .search form .wrap input[type=submit] {
  position: absolute;
  top: 0px;
  right: 0px;
  width: auto;
  height: 100%;
  padding: 0px;
  aspect-ratio: 1.2 / 1;
  background: url("https://andosports.itembox.design/item/image/common/search-icon.svg") center center / 13px no-repeat;
  border: none;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  #index .search form .wrap input[type=submit]:hover {
    opacity: 0.6;
  }
}
@media all and (max-width: 750px) {
  #index .search {
    padding: 17.5px 20px;
  }
  #index .search form {
    flex-direction: column;
  }
  #index .search form .ruby {
    font-size: 12.5px;
  }
  #index .search form .wrap {
    max-width: 550px;
  }
}
/* -------------------------------------------- */
#index section .inner {
  max-width: 1200px;
  margin: auto;
  padding: 0px 20px;
}
/* -------------------------------------------- */
#index .benefit {
  padding: 80px 0px 120px;
  background-color: #EBEBE1;
}
#index .benefit h2 {
  margin: 0px;
  text-align: center;
  font-family: "urbane", sans-serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
#index .benefit h2::first-letter {
  color: #D2145A;
}
#index .benefit .catchcopy {
  margin: 70px 0px 0px;
  text-align: center;
  font-size: 17px;
}
#index .benefit ul {
  margin: 55px 0px 0px;
  padding: 0px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}
#index .benefit ul li {
  padding-bottom: 20px;
  position: relative;
  border: 1px solid #000000;
}
#index .benefit ul li h3 {
  position: absolute;
  inset: -11px 0px auto;
  width: max-content;
  margin: auto;
  padding: 0px 10px;
  text-align: center;
  font-family: "urbane", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  background-color: #EBEBE1;
}
#index .benefit ul li .icon {
  height: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#index .benefit ul li:nth-of-type(2) .icon {
  padding: 0 10px;
}
#index .benefit ul li p {
  margin: 0px;
  text-align: center;
  font-size: 15px;
  line-height: 2.4em;
}
#index .benefit ul li p strong {
  line-height: 1em;
  color: #D2145A;
}
#index .benefit ul li.point1 p strong {
  font-size: 40px;
}
#index .benefit ul li.point2 p strong {
  font-size: 30px;
}
#index .benefit ul li.point3 p strong:nth-of-type(1) {
  font-family: "urbane", sans-serif;
  font-size: 40px;
  font-weight: 600;
}
#index .benefit ul li.point3 p strong:nth-of-type(2) {
  font-size: 30px;
}
#index .benefit ul li.point4 p strong {
  font-size: 40px;
}
#index .benefit ul li p .anotation {
  display: inline-block;
  font-size: 12px;
  line-height: 1.6em;
  transform: translateY(-10px);
}
#index .benefit ul li.point4 p .anotation {
  font-size: 10px;
  transform: translateY(0px);
}
@media all and (max-width: 918px) {
  #index .benefit ul li.point1 p strong {
    font-size: 34px;
  }
  #index .benefit ul li.point2 p strong {
    font-size: 23px;
  }
  #index .benefit ul li.point3 p strong:nth-of-type(2) {
    font-size: 27px;
  }
  #index .benefit ul li.point4 p strong {
    font-size: 34px;
  }
  #index .benefit ul li p .anotation {
    font-size: 10px;
  }
}
@media all and (max-width: 750px) {
  #index .benefit {
    padding: 57px 0px 73.5px;
  }
  #index .benefit .catchcopy {
    margin: 53.5px 0px 0px;
    font-size: 12.5px;
  }
  #index .benefit ul {
    margin: 31px 0px 0px;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  #index .benefit ul li {
    padding-bottom: 15px;
  }
  #index .benefit ul li h3 {
    inset: -6px 0px auto;
    padding: 0px 5px;
    font-size: 8.5px;
  }
  #index .benefit ul li .icon {
    height: 110px;
  }
  #index .benefit ul li p {
    font-size: 10px;
  }
  #index .benefit ul li p strong {
    line-height: 1em;
  }
  #index .benefit ul li.point1 p strong {
    font-size: 25px;
  }
  #index .benefit ul li.point2 p strong {
    font-size: 20px;
  }
  #index .benefit ul li.point3 p strong:nth-of-type(1) {
    font-size: 30px;
  }
  #index .benefit ul li.point3 p strong:nth-of-type(2) {
    font-size: 20px;
  }
  #index .benefit ul li.point4 p strong {
    font-size: 25px;
  }
  #index .benefit ul li p .anotation {
    font-size: 8px;
  }
  #index .benefit ul li.point4 p .anotation {
    font-size: 7.5px;
  }
}
/* -------------------------------------------- */
#index .new_items {
  padding: 130px 0px 120px;
}
#index .new_items .inner {
  position: relative;
}
#index .new_items h2 {
  margin: 0px;
  font-family: "urbane", sans-serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
#index .new_items h2::first-letter {
  color: #D2145A;
}
#index .new_items .scroll {
  position: absolute;
  top: 8px;
  right: 20px;
  font-family: "urbane", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  pointer-events: none;
}
#index .new_items .scroll::after {
  content: "";
  display: inline-block;
  width: 72px;
  height: 6px;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  transform: skew(30deg, 0deg);
}
#index .new_items ul {
  margin: 0px;
  padding: 20px 0px;
  list-style: none;
  display: flex;
  gap: 22px;
  overflow: auto;
}
#index .new_items ul li {
  min-width: 350px;
}
#index .new_items ul li a {
  display: block;
  color: #000000;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  #index .new_items ul li a:hover {
    opacity: 0.6;
  }
}
#index .new_items ul li a .tag {
  display: inline-block;
  padding: 1px 5px;
  font-size: 10px;
  background-color: #FAF01E;
}
#index .new_items ul li a .name {
  margin-top: 5px;
  text-align: justify;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 400;
}
#index .new_items ul li a .price .currency {
  font-size: 15px;
  font-weight: 500;
}
#index .new_items ul li a .price .price {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.07em;
}
#index .new_items ul li a .price .tax {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
}
@media all and (max-width: 750px) {
  #index .new_items {
    padding: 65px 0px 52px;
  }
  #index .new_items h2 {
    font-size: 20px;
  }
  #index .new_items ul {
    padding: 30px 0px;
    gap: 28px;
  }
  #index .new_items ul li {
    min-width: 225px;
  }
  #index .new_items ul li a .tag {
    font-size: 9px;
  }
  #index .new_items ul li a .price .currency {
    font-size: 13.5px;
  }
  #index .new_items ul li a .price .price {
    font-size: 13.5px;
  }
  #index .new_items ul li a .price .tax {
    font-size: 10.8px;
  }
}
/* -------------------------------------------- */
#index .ranking {
  padding: 130px 0px 100px;
  background-color: #000000;
  position: relative;
}
#index .ranking::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 75%;
  width: 25%;
  height: 100%;
  background-color: #D2145A;
}
#index .ranking .inner {
  position: relative;
  z-index: 1;
}
#index .ranking h2 {
  margin: 0px;
  font-family: "urbane", sans-serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #ffffff;
}
#index .ranking h2::first-letter {
  color: #D2145A;
}
#index .ranking .scroll {
  position: absolute;
  top: 8px;
  right: 20px;
  font-family: "urbane", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #ffffff;
  display: none;
  pointer-events: none;
}
#index .ranking .scroll::after {
  content: "";
  display: inline-block;
  width: 72px;
  height: 6px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  transform: skew(30deg, 0deg);
}
#index .ranking ul {
  margin: 0px;
  padding: 20px 0px 0px;
  list-style: none;
  display: flex;
  gap: 12.5px;
}
#index .ranking ul li a {
  display: block;
  color: #ffffff;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  #index .ranking ul li a:hover {
    opacity: 0.6;
  }
}
#index .ranking ul li a .img {
  position: relative;
}
#index .ranking ul li a .img::after {
  content: "";
  display: block;
  position: absolute;
}
#index .ranking ul li:nth-child(1) a .img::after {
  top: 0px;
  right: 2px;
  width: 24.782%;
  height: auto;
  aspect-ratio: 114 / 163;
  background: url("https://andosports.itembox.design/item/image/top/ranking-no1.png") center center / contain no-repeat;
}
#index .ranking ul li:nth-child(2) a .img::after {
  top: 0px;
  right: 2px;
  width: 24.782%;
  height: auto;
  aspect-ratio: 114 / 163;
  background: url("https://andosports.itembox.design/item/image/top/ranking-no2.png") center center / contain no-repeat;
}
#index .ranking ul li:nth-child(3) a .img::after {
  top: 0px;
  right: 2px;
  width: 24.782%;
  height: auto;
  aspect-ratio: 114 / 163;
  background: url("https://andosports.itembox.design/item/image/top/ranking-no3.png") center center / contain no-repeat;
}
#index .ranking ul li:nth-child(4) a .img::after {
  content: "4";
  top: 5%;
  right: 5%;
  width: 14%;
  height: auto;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-size: min(1.1vw, 17px);
  font-weight: 500;
  color: #ffffff;
  background-color: #000000;
  border-radius: 50%;
}
#index .ranking ul li:nth-child(5) a .img::after {
  content: "5";
  top: 5%;
  right: 5%;
  width: 14%;
  height: auto;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-size: min(1.1vw, 17px);
  font-weight: 500;
  color: #ffffff;
  background-color: #000000;
  border-radius: 50%;
}
#index .ranking ul li a .tag {
  display: inline-block;
  padding: 1px 5px;
  font-size: 10px;
  color: #000000;
  background-color: #FAF01E;
}
#index .ranking ul li a .name {
  margin-top: 5px;
  text-align: justify;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 400;
}
#index .ranking ul li a .price .currency {
  font-size: 15px;
  font-weight: 500;
}
#index .ranking ul li a .price .price {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.07em;
}
#index .ranking ul li a .price .tax {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
}
@media all and (max-width: 750px) {
  #index .ranking {
    padding: 54px 0px 55px;
  }
  #index .ranking h2 {
    font-size: 20px;
  }
  #index .ranking .scroll {
    display: block;
  }
  #index .ranking ul {
    padding: 30px 0px;
    gap: 28px;
    overflow: auto;
  }
  #index .ranking ul li {
    min-width: 225px;
  }
  #index .ranking ul li:nth-child(1) a .img::after,
  #index .ranking ul li:nth-child(2) a .img::after,
  #index .ranking ul li:nth-child(3) a .img::after {
    width: 24.888%;
  }
  #index .ranking ul li:nth-child(4) a .img::after,
  #index .ranking ul li:nth-child(5) a .img::after {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 17px;
  }
  #index .ranking ul li a .tag {
    font-size: 9px;
  }
  #index .ranking ul li a .price .currency {
    font-size: 13.5px;
  }
  #index .ranking ul li a .price .price {
    font-size: 13.5px;
  }
  #index .ranking ul li a .price .tax {
    font-size: 10.8px;
  }
}
/* -------------------------------------------- */
#index .category {
  padding: 140px 0px 150px;
}
#index .category .inner {
  position: relative;
}
#index .category h2 {
  margin: 0px;
  font-family: "urbane", sans-serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
#index .category h2::first-letter {
  color: #D2145A;
}
#index .category .scroll {
  position: absolute;
  top: 8px;
  right: 20px;
  font-family: "urbane", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  pointer-events: none;
}
#index .category .scroll::after {
  content: "";
  display: inline-block;
  width: 72px;
  height: 6px;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  transform: skew(30deg, 0deg);
}
#index .category .sports {
  margin: 0px;
  padding: 20px 0px;
  list-style: none;
  display: flex;
  gap: 10px;
  overflow: auto;
}
#index .category .sports li {
  min-width: 400px;
}
@media (hover: hover) and (pointer: fine) {
  #index .category .sports li a:hover {
    opacity: 0.6;
  }
}
#index .category .gender {
  margin: 0px;
  padding: 70px 0px 0px;
  list-style: none;
  display: flex;
  gap: 10.5px;
}
#index .category .gender li {
  overflow: hidden;
}
#index .category .gender li a img {
  transition: 0.6s;
}
#index .category .staff {
  display: block;
  max-width: 600px;
  margin: 65px auto 0px;
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 100px;
  color: #ffffff;
  text-decoration: none;
  background-color: #D2145A;
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  #index .category .gender li a:hover img {
    transform: scale(1.3);
  }
  #index .category .staff:hover {
    transform: translateY(5px);
  }
}
@media all and (max-width: 750px) {
  #index .category {
    padding: 78px 0px 82px;
  }
  #index .category h2 {
    font-size: 20px;
  }
  #index .category .sports {
    padding: 30px 0px;
    gap: 10px;
  }
  #index .category .sports li {
    min-width: 245px;
  }
  #index .category .gender {
    padding: 12px 0px 0px;
    flex-wrap: wrap;
    gap: 10px;
  }
  #index .category .gender li {
    width: calc(50% - 5px);
  }
  #index .category .staff {
    max-width: 300px;
    margin: 45px auto 0px;
    font-size: 12.5px;
    line-height: 75px;
  }
}
@media all and (max-width: 450px) {
  #index .category .gender li {
    width: 100%;
  }
}
/* -------------------------------------------- */
#index .instagram {
  padding: 95px 0px 170px;
  background-color: #000000;
}
#index .instagram .icon {
  text-align: center;
}
#index .instagram h2 {
  margin: 17px 0px 0px;
  font-family: "urbane", sans-serif;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #ffffff;
}
#index .instagram .tab {
  margin: 0px;
  padding: 120px 0px 0px;
  list-style: none;
  display: flex;
}
#index .instagram .tab li {
  width: 100%;
  padding: 7px 0px;
  text-align: center;
  border: 1px solid #ffffff;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  #index .instagram .tab li:hover {
    background-color: #1F1F1F;
  }
}
#index .instagram .tab li.active {
  color: #000000;
  background-color: #ffffff;
}
#index .instagram .tab li span {
  padding: 0em 0.25em;
  font-family: "urbane", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #ffffff;
}
#index .instagram .tab li.active span {
  color: #000000;
}
#index .instagram .cont {
  margin: 0px;
  padding: 90px 95px 95px;
  list-style: none;
  background-color: #ffffff;
}
#index .instagram .cont h3 {
  margin: 0px;
  text-align: center;
  font-family: "urbane", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
#index .instagram .cont > li {
  display: none;
}
#index .instagram .cont > li.active {
  display: block;
}
#index .instagram .cont > li iframe {
  margin-top: 40px;
}
@media all and (max-width: 750px) {
  #index .instagram {
    padding: 65px 0px 68px;
  }
  #index .instagram .icon img {
    width: 34px;
  }
  #index .instagram h2 {
    margin: 14px 0px 0px;
    font-size: 17.5px;
  }
  #index .instagram .tab {
    padding: 78px 0px 0px;
  }
  #index .instagram .tab li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #index .instagram .tab li span {
    font-size: 10px;
  }
  #index .instagram .cont {
    padding: 37px 12.5px 12.5px;
  }
  #index .instagram .cont h3 {
    font-size: 9px;
  }
  #index .instagram .cont > li iframe {
    margin-top: 20px;
  }
}
/* -------------------------------------------- */
#index .i_love img {
  width: 100%;
  max-width: none;
}

/* -----------------------------------------------

category

----------------------------------------------- */
article.category .fv {
  background: #000;
}
article.category .fv .header img {
  width: 100%;
}
article.category .fv form {
  color: #fff;
  display: flex;
  justify-content: space-between;
  width: 560px;
  margin: auto;
  padding: 22.5px 0;
  align-items: center;
}
article.category .fv .search .ruby {
  font-family: "urbane", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #ffffff;
}
article.category .fv form .wrap {
  width: 100%;
  max-width: 350px;
  height: 35px;
  position: relative;
}
article.category .fv input[type=text] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0px 40px 0px 15px;
  border: none;
  border-radius: 100px;
  box-sizing: border-box;
}
article.category .fv input[type=submit] {
  position: absolute;
  top: 0px;
  right: 0px;
  width: auto;
  height: 100%;
  padding: 0px;
  aspect-ratio: 1.2 / 1;
  background: url("https://andosports.itembox.design/item/image/common/search-icon.svg") center center / 13px no-repeat;
  border: none;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  article.category .fv input[type=submit]:hover {
    opacity: 0.6;
  }
}
.group_wrap_w {
  width: calc(100% - 100px);
}
.group_wrap {
  display: grid;
  grid-template-columns: 20% 75%;
  gap: 0 5%;
  max-width: 1200px;
  margin: 60px auto 100px;
  padding: 0 20px;
}
article.category .item_wrap {
}
.group_wrap .fs-c-productList {
  margin: 0;
}
.group_wrap .fs-c-listControl {
  display: none;
}
.fs-c-productList__list {
  grid-template-columns: calc(25% - 0px) calc(25% - 0px) calc(25% - 0px) calc(25% - 0px);
}
.fs-c-productList .tit_p_nation {
  display: grid;
  grid-template-columns: 50% 50%;
  justify-content: space-between;
  width: 100%;
}
.fs-c-sortItems {
  font-size: 10px;
}
.fs-c-sortItems__label {
  display: none;
}
.fs-c-productList__controller, .fs-c-staffList__controller, .fs-c-coordinationList__controller {
  display: inherit;
  margin: 0;
  justify-content: flex-end;
}
.fs-c-sortItems__list__item.is-active {
  background: #000;
}
.fs-c-productName__copy, .fs-c-productName__name, .fs-c-productName__variation {
  font-size: 10px;
  line-height: 2em;
  color: #000;
}
.fs-c-productPrice:not(.fs-c-productPrice--listed) .fs-c-productPrice__main__price,
.fs-c-productPrice__addon:where(:not([class*="--listed"])), .fs-c-productPrice__main__addon:where(:not([class*="--listed"])) {
  color: #000;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5em;
  letter-spacing: 0.07em;
}
.fs-c-productPrice:not(.fs-c-productPrice--listed) .fs-c-productPrice__main__price .fs-c-price__value {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5em;
  letter-spacing: 0.07em;
}
.fs-c-productPrice__main__label {
  display: none;
}
.fs-c-productListItem__control {
  display: none;
}
.fs-c-button--plain.fs-c-button--viewMoreImage::before {
  content: "";
}
.fs-c-productList__list__item {
  border-bottom: none;
}
article.category .item_wrap h2 {
  margin: 0;
  font-family: "urbane", sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.75em;
}
article.category .s_nav h2 {
  margin: 0;
  font-family: "urbane", sans-serif;
  font-size: 15px;
  letter-spacing: 0.05em;
}
article.category .item_wrap h2 span,
article.category .s_nav h2 span {
  color: #D2145A;
  font-family: "urbane", sans-serif;
}
article.category .item_wrap dl {
  margin: 20px 0 0;
}
article.category .s_nav dl.cont_wrap {
  max-width: 550px;
  width: 73.4%;
  margin: auto;
  border: 2px solid #000;
  padding: 3% 0;
}
article.category .s_nav dl.cont_wrap > dt {
  text-align: center;
  position: relative;
  border: none;
}
article.category .item_wrap dt {
  position: relative;
  display: grid;
  align-items: center;
  cursor: pointer;
  background-image: linear-gradient(to right, #B3B3B3 2px, transparent 2px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
article.category .s_nav dt {
  position: relative;
  display: grid;
  align-items: center;
  cursor: pointer;
}
article.category .item_wrap dt {
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  padding: 22.5px 25px 22.5px 1px;
}
article.category .s_nav dl.cont dt {
  font-size: 15px;
  line-height: 1.66em;
  letter-spacing: 0.1em;
  padding: 5% 0;
  background-image: linear-gradient(to right, #B3B3B3 2px, transparent 2px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
article.category .item_wrap dt:nth-of-type(1) {
  background-image: linear-gradient(to right, #B3B3B3 2px, transparent 2px), linear-gradient(to right, #B3B3B3 2px, transparent 2px);
  background-size: 4px 1px, 4px 1px;
  background-repeat: repeat-x, repeat-x;
  background-position: left top, left bottom;
}
article.category .item_wrap dt.open,
article.category .s_nav dt.open {
  background: none !important;
}
article.category .item_wrap dt:nth-of-type(1).open,
article.category .s_nav dl.cont dt:nth-of-type(1).open {
  background-image: linear-gradient(to right, #B3B3B3 2px, transparent 2px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  background-position: left top;
}
article.category .item_wrap dt::after,
article.category .s_nav dt::after {
  content: "";
  display: block;
  position: absolute;
  top: 0%;
  right: 6%;
  width: 14px;
  height: 100%;
  background: url("https://andosports.itembox.design/item/image/category/left-arrow.png") center center/100% no-repeat;
  transition-duration: 0.3s;
}
article.category .s_nav dl.cont_wrap > dt::after {
  right: 11.3%;
}
article.category .item_wrap dt.open::after,
article.category .s_nav dt.open::after {
  transform: rotate(-90deg);
}
article.category .s_nav dl.cont_wrap > dt.open::after {
  transform: rotate(-180deg);
}
article.category .item_wrap dt p,
article.category .s_nav dt p {
  margin: 0;
}
article.category .item_wrap dd,
article.category .s_nav dd {
  display: none;
  width: 100%;
  margin: auto;
  background-image: linear-gradient(to right, #B3B3B3 2px, transparent 2px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
article.category .item_wrap dd {
  font-size: 12px;
  line-height: 2.0833em;
  letter-spacing: 0.02em;
}
article.category .s_nav dl.cont_wrap > dd {
  position: absolute;
  max-width: 480px;
  width: 63.1%;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0 4.7%;
  background: #fff;
  border-left: 2px solid #000;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  box-sizing: content-box;
  z-index: 1;
}
article.category .item_wrap dl ul,
article.category .s_nav dl.cont ul {
  list-style: none;
  padding: 0 0 40px;
  margin: 0;
}
article.category .s_nav dl.cont ul {
  padding: 0 0 20px;
}
article.category .item_wrap dl ul li::before,
article.category .s_nav dl.cont ul li::before {
  content: "－";
  color: #999;
  display: inline-block;
  padding-right: 1.5%;
}
article.category .item_wrap dl ul li a,
article.category .s_nav dl.cont ul li a {
  text-decoration: none;
  color: #000;
  font-size: 12px;
}
article.category .s_nav dl.cont ul li a {
  font-size: 12px;
  line-height: 2.0833em;
  letter-spacing: 0.02em;
}
article.category .item_wrap .staff {
  display: block;
  max-width: 240px;
  margin: 65px auto 0px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 70px;
  color: #ffffff;
  text-decoration: none;
  background-color: #D2145A;
  transition: 0.4s;
}
article.category .s_nav .staff {
  display: block;
  max-width: 480px;
  margin: 10% auto;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 4.7;
  color: #ffffff;
  text-decoration: none;
  background-color: #D2145A;
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  article.category .item_wrap .staff:hover {
    transform: translateY(5px);
  }
}
article.category .center_list .top {
  display: flex;
  justify-content: space-between;
}
article.category .center_list select {
  background: #000;
  color: #fff;
  max-width: 210px;
  width: 100%;
  border: none;
  padding: 9px 10px;
  font-size: 15px;
  font-weight: 500;
}
article.category .center_list select option {
  font-weight: 500;
}
article.category .center_list ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px 10px;
  padding: 0;
}
article.category .center_list ul li a {
  text-decoration: none;
  color: #000;
  font-size: 12px;
}
article.category .center_list ul li a p.name {
  font-size: 10px;
  line-height: 2em;
}
article.category .center_list ul li a p.price {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5em;
  letter-spacing: 0.07em;
}
article.category .center_list ul li a p.price span {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5em;
  letter-spacing: 0.07em;
}
article.category .center_list ul.page_navi {
  display: flex;
  margin: 50px auto;
  justify-content: center;
  cursor: pointer;
}
article.category .center_list ul.page_navi li {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  padding: 0 6.9px 0;
  line-height: 1.5em;
  font-weight: 500;
}
article.category .center_list ul.page_navi li.active {
  background: #000;
  color: #fff;
}
@media all and (max-width: 882px) {
  article.category .item_wrap .staff {
    font-size: 12px;
  }
}
@media all and (max-width: 835px) {
  article.category .center_list ul li a p.price,
  article.category .center_list ul li a p.price span {
    font-size: 13px;
  }
}
@media all and (max-width: 750px) {
  article.category .fv {
    background: #fff;
  }
  article.category .fv .search_wrap {
    margin: 6% auto;
    max-width: 670px;
    width: 89.4%;
  }
  article.category .fv form {
    background: #000;
    padding: 0 0 0 2%;
    width: 100%;
  }
  article.category .fv form .wrap {
    max-width: 370px;
    width: 55.3%;
    height: min(60px, 8vw);
  }
  article.category .fv .search .ruby {
    font-size: 10px;
  }
  article.category .fv input[type=text] {
    border: 1px solid #000;
    border-radius: 0;
  }
  article.category .fv input[type=submit] {
    background: url(https://andosports.itembox.design/item/image/common/search-icon.svg) center center / 32% no-repeat;
  }
  .group_wrap_w {
    width: 100%;
  }
  .group_wrap {
    display: block;
    margin: 7% auto 15%;
    padding: 0;
    max-width: 670px;
    width: 90%;
  }
  article.category .item_wrap {
  }
  .fs-c-productList__controller, .fs-c-staffList__controller, .fs-c-coordinationList__controller {
    display: flex;
  }
  .fs-c-productList__list {
    grid-template-columns: calc(50% - 0px) calc(50% - 0px);
  }
  .fs-c-productList .tit_p_nation {
    display: block;
  }
  .fs-c-productListItem__image__image {
    border: 1px solid #000;
  }
  .fs-c-productName__copy, .fs-c-productName__name, .fs-c-productName__variation {
    font-size: 9px;
    line-height: 1.3888em;
    font-weight: normal;
  }
  .fs-c-productPrice:not(.fs-c-productPrice--listed) .fs-c-productPrice__main__price, .fs-c-productPrice__addon:where(:not([class*="--listed"])), .fs-c-productPrice__main__addon:where(:not([class*="--listed"])) {
    font-size: 13.5px;
    line-height: 1.111em;
    font-weight: normal;
  }
  .fs-c-productPrice__addon__label {
    letter-spacing: 0.07em;
    font-size: 13.5px;
    line-height: 1.111em;
    font-weight: normal;
  }
  .fs-c-price__currencyMark {
    font-weight: normal;
  }
  .fs-c-productPrice:not(.fs-c-productPrice--listed) .fs-c-productPrice__main__price .fs-c-price__value {
    font-size: 13.5px;
    line-height: 1.111em;
    font-weight: 500;
  }
  article.category .item_wrap .left_nav {
    display: none;
  }
  article.category .item_wrap h2 {
    font-size: 25px;
    line-height: 1.2;
  }
  article.category .center_list select {
    max-width: 100px;
    padding: 0% 2%;
    font-size: 11px;
    font-weight: 500;
  }
  article.category .center_list option {
    font-size: 11px;
    font-weight: 500;
  }
  article.category .center_list ul {
    grid-template-columns: 1fr 1fr;
    gap: 5px 4%;
  }
  article.category .center_list ul li a img {
    border: 1px solid #000;
  }
  article.category .center_list ul li a p.name {
    font-size: 9px;
    font-weight: 500;
    line-height: 1.3888em;
  }
  article.category .center_list ul li a p.price,
  article.category .center_list ul li a p.price span {
    font-size: 13.5px;
    line-height: 1.111em;
    font-weight: 500;
  }
  article.category .center_list ul.page_navi li {
    font-size: 15px;
  }
}

article.category .item_wrap dl ul ul,
article.category .s_nav dl.cont ul ul {
  display: none;
  margin-left: 20px;
  padding: 0 0 20px;
}
article.category .item_wrap dl .menu-item,
article.category .s_nav dl.cont .menu-item {
  display: flex;
  align-items: center;
  margin: 5px 0;
}
article.category .item_wrap dl .toggle-btn,
article.category .s_nav dl.cont .toggle-btn {
  width: 20px;
  cursor: pointer;
  font-weight: bold;
  user-select: none;
  color: #999;
}
article.category .item_wrap dl .toggle-btn::after,
article.category .s_nav dl.cont .toggle-btn::after {
  content: "+";
}
article.category .item_wrap dl .toggle-btn.open::after,
article.category .s_nav dl.cont .toggle-btn.open::after {
  content: "−";
}
article.category .item_wrap dl a,
article.category .s_nav dl.cont a {
  text-decoration: none;
}
article.category .item_wrap dl dt,
article.category .s_nav dl.cont dt {
  font-weight: bold;
  margin-top: 10px;
}
article.category .item_wrap dl ul li.plus::before,
article.category .s_nav dl.cont ul li.plus::before {
  content: "";
  display: none;
}
article.category .item_wrap dl ul li::before,
article.category .s_nav dl.cont ul li::before {
  content: "−";
  padding-right: 4.5%;
}
/* -----------------------------------------------

about

----------------------------------------------- */
#about .fv,
#about .biography,
#about .philosophy {
  padding: 0 20px;
}
#about h2 {
  text-align: center;
  font-size: 40px;
  line-height: 1.75em;
  letter-spacing: 0.05em;
  margin: 60px 0 0;
  font-family: "urbane", sans-serif;
  font-weight: bold;
}
#about h2 span {
  color: #d2145a;
  font-family: "urbane", sans-serif;
}
#about h3 {
  text-align: center;
  font-size: 14px;
  line-height: 1.3571em;
  letter-spacing: 0.3em;
  font-weight: 500;
  margin: 0;
}
#about .fv {
  margin: 0 0 80px;
}
#about h4 {
  font-size: 25px;
  letter-spacing: 0.1em;
  font-weight: 900;
}
#about .biography {
  max-width: 960px;
  margin: auto;
}
#about .biography dl {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px 0;
}
#about .biography dl dt,
#about .biography dl dd {
  font-size: 14px;
  line-height: 1.357em;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin: 0;
}
#about .biography dl.data dt::before {;
  content: "";
  display: inline-block;
  margin: 0 3px 0 8px;
  width: 10px;
  height: 10px;
  background: #d2145a;
}
#about .biography .access_wrap {
  display: flex;
  justify-content: space-between;
  margin: 50px 0 100px;
}
#about .biography .access_wrap .left {
  width: 40.625%;
}
#about .biography .access_wrap .right {
  width: 56.666%;
}
#about .biography .access_wrap .shop_map {
  aspect-ratio: 544 / 280;
  max-width: 544px;
  width: 100%;
  height: auto;
  border: 0;
}
#about .biography dl.history {
  grid-template-columns: 108px 1fr;
  gap: 18px 0;
  margin: 20px 0 100px;
}
#about .biography dl.history dt {
  font-family: "urbane", sans-serif;
  font-size: 15px;
  color: #d2145a;
  font-weight: bold;
}
#about .message {
  padding: 80px 20px 100px;
  background-color: #000000;
  position: relative;
}
#about .message::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 75%;
  width: 25%;
  height: 100%;
  background-color: #D2145A;
}
#about .message h2,
#about .message h3,
#about .message p {
  color: #fff;
}
#about .message h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 37px;
}
#about .message h3 {
  font-weight: normal;
  font-size: 14px;
  margin: 0 0 50px;
}
#about .message p {
  font-weight: normal;
  font-size: 14px;
  line-height: 1.857em;
  letter-spacing: 0.03em;
  margin: 0;
}
#about .message p.name {
  font-size: 18px;
  line-height: 1.4444em;
  letter-spacing: 0.2em;
}
#about .message .history_wrap {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: auto;
  display: grid;
  grid-template-columns: 57% 40%;
  justify-content: space-between;
  align-items: center;
}
#about .philosophy ol {
  max-width: 600px;
  margin: 40px auto 100px;
  padding: 0;
  list-style: none;
  counter-reset: number;
}
#about .philosophy ol li {
  position: relative;
  padding-left: 3.1em;
  font-size: 14px;
  line-height: 1.47em;
  letter-spacing: 0.05em;
  margin: 30px 0 0;
  text-align: justify;
}
#about .philosophy ol li::before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  top: 2px;
  left: 0;
  width: 35px;
  height: 35px;
  font-family: "urbane", sans-serif;
  font-size: 25px;
  text-align: center;
  line-height: 1.5;
  color: #fff;
  background-color: #D2145A;
}
@media all and (max-width: 750px) {
  #about .fv, #about .biography, #about .philosophy {
    padding: 0;
  }
  #about .fv {
    margin: 90px 0 50px;
  }
  #about h2 {
    font-size: 25px;
    margin: 20% 0 0;
  }
  #about h3 {
    font-size: 12.5px;
  }
  #about h4 {
    font-size: 17.5px;
  }
  #about .biography {
    max-width: 670px;
    padding: 0 20px;
  }
  #about .biography dl {
    grid-template-columns: 1fr;
    gap: 0;
  }
  #about .biography dl dt,
  #about .biography dl dd {
    font-size: 11px;
    line-height: 1.5909em;
  }
  #about .biography dl.data dt::before {
    margin: 0 3px 0 0px;
  }
  #about .biography dl.data dd {
    margin: 0 0 6%;
  }
  #about .biography .access_wrap {
    margin: 5% 0 20%;
  }
  #about .biography .access_wrap .left {
    margin: 0 0 4%;
  }
  #about .biography dl.history {
    grid-template-columns: 16% 1fr;
    gap: 14px 0;
    margin: 20px 0 70px;
    text-align: justify;
  }
  #about .biography dl.history dt {
    font-size: 11px;
    line-height: 1.5909em;
  }
  #about .message {
    padding: 80px 0;
  }
  #about .message h2 {
    margin: 0 0 10px;
    font-size: 25px;
    line-height: 1.4em;
  }
  #about .message h3 {
    font-size: 12.5px;
  }
  #about .message .history_wrap {
    max-width: 670px;
    padding: 0 20px;
    display: block;
  }
  #about .message p {
    font-size: 11px;
    line-height: 1.5909em;
    letter-spacing: 0.05em;
    text-align: justify;
  }
  #about .message p.name {
    font-size: 14px;
  }
  #about .message .history_wrap .right {
    margin: 12% 0 0;
  }
  #about .philosophy {
    max-width: 670px;
    padding: 0 20px;
    margin: auto;
  }
  #about .philosophy .sp_only {
    display: none;
  }
  #about .philosophy ol {
    max-width: 670px;
    width: 100%;
    margin: 0 auto 20%;
    padding: 0;
  }
  #about .philosophy ol li {
    padding-left: 50px;
    font-size: 11px;
    margin: 8% 0 0;
  }
  #about .philosophy ol li::before {
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 1.6;
  }
}
@media all and (max-width: 500px) {
  #about .biography .access_wrap {
    display: block;
  }
  #about .biography .access_wrap .left,
  #about .biography .access_wrap .right {
    width: 100%;
  }
  #about .biography .access_wrap .shop_map {
    aspect-ratio: 670 / 480;
    max-width: 670px;
    width: 100%;
  }
  #about .philosophy .sp_only {
    display: block;
  }
}
/* -----------------------------------------------

law

----------------------------------------------- */
#law {
  padding: 0 20px;
  width: calc(100% - 140px);
}
#law h2 {
  text-align: center;
  font-size: 40px;
  line-height: 1.75em;
  letter-spacing: 0.05em;
  margin: 60px 0 0;
  font-family: "urbane", sans-serif;
  font-weight: bold;
}
#law h2 span {
  color: #d2145a;
  font-family: "urbane", sans-serif;
}
#law h3 {
  text-align: center;
  font-size: 14px;
  line-height: 1.3571em;
  letter-spacing: 0.3em;
  font-weight: 500;
  margin: 0;
}
#law .inner {
  max-width: 960px;
  margin: auto;
}
#law .inner dl.data {
  display: grid;
  grid-template-columns: 188px 1fr;
  margin: 80px auto 120px;
  align-items: center;
}
#law .inner dl.data dt {
  background: #f0f0f0;
  padding: 16px 30px;
  height: -webkit-fill-available;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7857em;
  letter-spacing: 0.03em;
}
#law .inner dl.data dd {
  padding: 16px 0;
  font-size: 14px;
  line-height: 1.7857em;
  letter-spacing: 0.03em;
  font-weight: 500;
  text-align: justify;
}
#law .inner dl.data dd span {
  color: #D2145A;
}
@media all and (max-width: 750px) {
  #law {
    padding: 0;
    width: 100%;
  }
  #law h2 {
    font-size: 25px;
    margin: 20% 0 0;
    line-height: 1.2em;
  }
  #law h3 {
    font-size: 11px;
    line-height: 0.76em;
    margin: 15px 0 0;
  }
  #law .inner dl.data {
    display: block;
    margin: 15% auto 20%;
    max-width: 670px;
    padding: 0 20px;
  }
  #law .inner dl.data dt {
    padding: 0 15px;
    font-size: 12px;
    line-height: 3.4em;
  }
  #law .inner dl.data dd {
    padding: 5% 0;
    margin: 0 0 0 2%;
    font-size: 12px;
    line-height: 1.666em;
  }
}
@media all and (max-width: 324px) {
  #law .inner dl.data dd:nth-of-type(4) {
    word-break: break-all;
  }
}
/* -----------------------------------------------

guide

----------------------------------------------- */
#guide {
  padding: 0 20px;
  width: 82%;
}
#guide h2 {
  text-align: center;
  font-family: "urbane", sans-serif;
  font-size: 40px;
  line-height: 1.75em;
  letter-spacing: 0.05em;
  margin: 60px 0 0;
  font-weight: bold;
}
#guide h2 span {
  color: #d2145a;
  font-family: "urbane", sans-serif;
}
#guide h3 {
  text-align: center;
  font-size: 14px;
  line-height: 1.3571em;
  letter-spacing: 0.3em;
  margin: 0;
}
#guide h4 {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
#guide section {
  max-width: 960px;
  margin: auto;
}
#guide .menu ul {
  list-style: none;
  display: flex;
  width: 580px;
  margin: 60px auto;
  justify-content: space-around;
  padding: 0;
}
#guide .menu ul li a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  line-height: 1.3571em;
  letter-spacing: 0.15em;
  position: relative;
  display: inline-block;
}
#guide .menu ul li a::after{
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: -20px;
}
#guide ol {
  margin: 40px auto 100px;
  padding: 0;
  list-style: none;
  counter-reset: number;
}
#guide ol li {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  margin: 30px 0 40px;
  text-align: justify;
}
#guide ol li h6 {
  padding-left: 26px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
}
#guide ol li span {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5833em;
  letter-spacing: 0.05em;
}
#guide ol li::before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background: #000;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  line-height: 1.5;
  text-align: center;
}
#guide #pay .credit {
  max-width: 459px;
  width: 100%;
  margin: 20px 0;
}
#guide #pay dl.commission {
  max-width: 180px;
  width: 100%;
}
#guide #pay dl.commission div {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 1% 0;
  padding: 1% 0;
}
#guide #pay dl.commission div * {
  box-sizing: initial;
}
#guide #pay dl.commission div::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 100%;
  border-bottom: dotted 1px #000;
}
#guide #pay dl.commission dt {
  margin:0;
  padding: 0 1% 0 0;
  background-color: #ffffff;
  z-index: 2;
  text-align: left;
  font-weight: 500;
  font-size: 14px;
  line-height: 2.1428em;
  letter-spacing: 0.03em;
}
#guide #pay dl.commission dd {
  margin:0;
  padding: 0 0 0 1%;
  background-color: #ffffff;
  z-index: 2;
  font-weight: 500;
  font-size: 14px;
  line-height: 2.1428em;
  letter-spacing: 0.03em;
  width: 55px;
}
#guide #pay .r_pay {
  max-width: 270px;
  width: 100%;
  margin: 10px 0;
}
#guide #pay .important {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 0 10px;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 50px;
}
#guide #pay .important .left {
  background: #D2145A;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 6px 0;
  font-weight: 500;
  letter-spacing: 0.05em;
}
#guide #pay .important .right {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5833em;
  letter-spacing: 0.03em;
}
#guide #pay .important .right a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}
#guide #pay .a_pay {
  max-width: 222px;
  width: 100%;
  margin: 10px 0;
}
#guide #pay .paypay {
  max-width: 214px;
  width: 100%;
  margin: 10px 0;
}
#guide #post h5 {
  font-size: 14px;
  line-height: 1.35714em;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin: 40px 0 0;
}
#guide #post h5 span {
  font-size: 16px;
  line-height: 1.1875em;
  letter-spacing: 0.02em;
  font-weight: 700;
}
#guide #post p {
  font-size: 12px;
  line-height: 1.5833em;
  letter-spacing: 0.03em;
  margin: 5px 0 0 7px;
  font-weight: 500;
}
#guide #post dl {
  padding: 0;
}
#guide #post dt {
  font-size: 12px;
  line-height: 1.5833em;
  letter-spacing: 0.03em;
  font-weight: 500;
}
#guide #post dt::before {;
  content: "";
  display: inline-block;
  margin: 0 3px 0 8px;
  width: 10px;
  height: 10px;
  background: #d2145a;
}
#guide #post p.p_time {
  font-size: 14px;
  font-weight: 500;
  margin: 15px 0 15px 7px;
}
#guide #post span.big {
  color: #d2145a;
  font-size: 25px;
  line-height: 0.76em;
  letter-spacing: 0.03em;
  font-weight: 900;
  display: inline-block;
  padding-left: 0.8em;
  vertical-align: sub;
}
#guide #repost li p {
  font-size: 12px;
  line-height: 1.833em;
  letter-spacing: 0.03em;
  font-weight: 500;
}
#guide #repost dt {
  font-size: 12px;
  line-height: 1.833em;
  letter-spacing: 0.03em;
  font-weight: 500;
}
#guide #repost dt::before {;
  content: "";
  display: inline-block;
  margin: 0 3px 0 8px;
  width: 10px;
  height: 10px;
  background: #d2145a;
}
#guide #repost span.limit {
  color: #d2145a;
  text-decoration: underline;
}
#guide #repost a {
  color: #000;
  text-decoration: underline;
}
@media all and (max-width: 750px) {
  #guide {
    padding: 0;
    width: 100%;
  }
  #guide h2 {
    font-size: 25px;
    margin: 20% 0 0;
  }
  #guide h3 {
    font-size: 11px;
  }
  #guide h4 {
    font-size: 20px;
    margin-top: -80px;
    padding-top: 80px;
  }
  #guide #repost h4 {
    font-size: 20px;
    margin-top: -10px;
    padding-top: 90px;
  }
  #guide section {
    max-width: 670px;
    padding: 0 20px;
  }
  #guide .menu ul {
    width: 280px;
    padding: 0;
    margin: 10% auto;
    flex-wrap: wrap;
  }
  #guide .menu ul li {
    width: 50%;
    margin: 12px 0;
  }
  #guide .menu ul li a {
    display: block;
    font-size: 10px;
  }
  #guide .menu ul li a::after {
    top: 52%;
    right: 45px;
    width: 4px;
    height: 4px;
    margin: 0;
  }
  #guide .menu ul li:nth-of-type(2n) a::after {
    right: 25px;
  }
  #guide ol {
    margin: 10px auto 60px;
  }
  #guide ol li {
    font-size: 15px;
    margin: 0 0 50px;
  }
  #guide ol li h6 {
    font-size: 15px;
    line-height: 1.5em;
    padding-left: 26px;
  }
  #guide ol li::before {
    font-size: 12.5px;
    top: 4px;
    width: 17.5px;
    height: 17.5px;
  }
  #guide ol li span {
    font-size: 11px;
    line-height: 1.727em;
    margin: 3% 0 0;
  }
  #guide #pay .credit {
    max-width: 350px;
  }
  #guide #pay dl.commission {
    max-width: 670px;
  }
  #guide #pay .r_pay {
    max-width: 240px;
    width: 71.2%;
  }
  #guide #pay .important {
    display: block;
    margin: 10px 0 30px;
  }
  #guide #pay .important .left {
    font-size: 15px;
    padding: 0.9% 0;
    margin: 5% 0;
  }
  #guide #pay .important .right {
    font-feature-settings: "palt" 1;
    line-height: 1.8;
    font-size: 11px;
    line-height: 1.727em;
    word-break: break-all;
  }
  #guide #pay .a_pay {
    max-width: 245px;
    width: 72.6%;
  }
  #guide #pay .paypay {
    max-width: 204px;
    width: 60.5%;
  }
  #guide #post h5,
  #guide #post h5 span {
    font-size: 15px;
    margin: 30px 0 0;
  }
  #guide #post dt,
  #guide #post p {
    font-size: 11px;
    line-height: 1.72727em;
  }
  #guide #post dt::before,
  #guide #repost dt::before {
    margin: 0 0.9% 0 0;
    width: 8px;
    height: 8px;
  }
  #guide #post p.p_time {
    font-size: 13.5px;
    margin: 15px 0;
    letter-spacing: 0.015em;
  }
  #guide #post span.big {
    font-size: 25px;
    line-height: 1.4em;
    display: block;
    padding-left: 0;
  }
  #guide #repost dt,
  #guide #repost li p {
    font-size: 11px;
    line-height: 1.727em;
  }
}
@media all and (max-width: 500px) {
  #guide .menu ul {
    width: 260px;
  }
}
/* -----------------------------------------------

privacy

----------------------------------------------- */
#privacy {
  padding: 0 20px;
  width: calc(100% - 140px);
}
#privacy h2 {
  text-align: center;
  font-size: 40px;
  line-height: 1.75em;
  letter-spacing: 0.05em;
  margin: 60px 0 0;
  font-family: "urbane", sans-serif;
  font-weight: bold;
}
#privacy h2 span {
  color: #d2145a;
  font-family: "urbane", sans-serif;
}
#privacy h3 {
  text-align: center;
  font-size: 14px;
  line-height: 1.3571em;
  letter-spacing: 0.3em;
  margin: 0;
}
#privacy h4 {
  font-size: 25px;
}
#privacy p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7857em;
  letter-spacing: 0.03em;
  text-align: justify;
  margin: 50px 0;
}
#privacy section {
  max-width: 960px;
  margin: auto;
}
#privacy dl {
  margin: 60px 0 150px;
}
#privacy dl dt {
  font-size: 25px;
  font-weight: 900;
  line-height: 1em;
  letter-spacing: 0.1em;
}
#privacy dl dd {
  margin: 16px 0 50px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7857em;
  letter-spacing: 0.03em;
  text-align: justify;
}
@media all and (max-width: 750px) {
  #privacy {
    padding: 0;
    width: 100%;
  }
  #privacy h2 {
    font-size: 25px;
    margin: 20% 0 0;
  }
  #privacy h3 {
    font-size: 11px;
    line-height: 0.76em;
    font-weight: 500;
  }
  #privacy p {
    font-size: 12px;
    line-height: 1.6666em;
    margin: 15% 0;
  }
  #privacy section {
    max-width: 670px;
    padding: 0 20px;
  }
  #privacy dl dt {
    font-size: 20px;
    line-height: 1.5em;
  }
  #privacy dl dd {
    margin: 10px 0 35px;
    font-size: 12px;
    line-height: 1.6666em;
  }
}