@charset "UTF-8";
:root {
  --padding-container: clamp(40px, 5.556vw - 26.672px, 80px);
}

body {
  width: 100%;
  color: #514D4D;
}
body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow-y: scroll;
}

*,
*:after,
*:before {
  box-sizing: border-box;
  font-size: inherit;
}

button {
  border: none;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  cursor: pointer;
}

.c-backtop {
  position: -webkit-sticky;
  position: sticky;
  bottom: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: -33px;
  margin-left: auto;
  padding-right: 1rem;
  cursor: pointer;
}
.c-backtop img {
  width: 66px;
  height: 66px;
}

.c-button.-more {
  display: inline-block;
  position: relative;
  width: 210px;
  margin-top: 48px;
  padding: 22px 44px 22px 22px;
  border-bottom: 1px solid #151B65;
  color: #151B65;
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}
.c-button.-more::after {
  width: 10px;
  height: 12px;
  content: "";
  -webkit-clip-path: polygon(0 100%, 0 0, 100% 50%);
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  background-color: #151B65;
          clip-path: polygon(0 100%, 0 0, 100% 50%);
}
.c-button.-fill {
  display: inline-grid;
  place-content: center;
  width: 250px;
  height: 45px;
  background-color: #112641;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-align: center;
}
.c-button.-fill:hover {
  color: #fff;
}

.c-card__link {
  display: block;
  width: 100%;
}
.c-card__image {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-card__image.-large {
  aspect-ratio: 263/335;
}
.c-card__name {
  display: -webkit-box;
  margin: 1em 0;
  overflow: hidden;
  font-size: 1.4rem;
  line-height: 1.29;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.c-card__price {
  display: flex;
  align-items: baseline;
  margin: 0;
  font-weight: bold;
  font-size: 1.5rem;
}
.c-card__tax {
  margin-left: 0.5em;
  font-size: 1.5rem;
}

.c-gnav {
  display: flex;
  align-items: center;
  height: 100%;
  gap: clamp(15px, 6.25vw - 60px, 60px);
}
.c-gnav li {
  text-transform: uppercase;
}
.c-gnav li a {
  padding: 1em 0;
  font-size: clamp(1.15rem, 0.83vw, 1.5rem);
  letter-spacing: 0.35em;
}

.c-heading {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.5em;
       column-gap: 1.5em;
  margin-top: 13.6rem;
  margin-bottom: 2em;
}
.c-heading__en {
  font-weight: 400;
  font-size: 4.5rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.c-heading__jp {
  font-weight: 300;
  font-size: 1.5rem;
}
.c-heading::after {
  flex-grow: 1;
  height: 1px;
  background-color: #F0F0F0;
  content: "";
}
.c-heading.-plain {
  display: block;
  font-weight: 600;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.c-heading.-plain::after {
  content: none;
}

.c-keywords {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  max-width: 1050px;
  margin-inline: auto;
  gap: 35px 20px;
}

.c-keyword {
  text-align: center;
}
.c-keyword p {
  margin-bottom: 0;
  font-size: 1.4rem;
}
.c-keyword span {
  color: #828282;
  font-weight: bold;
  font-size: 1.5rem;
}

.c-scroll-wrap {
  margin-right: calc(-1 * var(--padding-container));
  margin-left: calc(-1 * var(--padding-container));
  overflow-x: auto;
}

.c-search-box form {
  position: relative;
}
.c-search-box__input {
  width: 100%;
  height: clamp(38px, 2.44vw, 44px);
  min-height: unset;
  padding: 0 1em;
  border: 0;
  border-radius: 0;
  background-color: #E8E8E8;
  line-height: 1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
}
.c-search-box__input::-moz-placeholder {
  font-size: 1.2rem;
}
.c-search-box__input::placeholder {
  font-size: 1.2rem;
}
.c-search-box__button {
  position: absolute;
  top: 50%;
  right: 1em;
  translate: 0 -50%;
  line-height: 1;
}
.c-search-box__button img {
  width: clamp(16px, 1.02vw, 18.36px);
}

.c-section {
  max-width: calc(1124px + 2 * var(--padding-container));
  margin: 96px auto;
  padding-right: var(--padding-container);
  padding-left: var(--padding-container);
  background-color: var(--bg-color, transparent);
}
.c-section.-alignfull {
  max-width: 100%;
  padding: 80px var(--padding-container) 56px;
}
.c-section.-alignfull .c-section__inner {
  max-width: 1124px;
  margin-inline: auto;
}
.c-section:last-child {
  margin-bottom: 0;
}

.c-tab__buttons {
  display: flex;
  margin-bottom: 20px;
  gap: 8px;
}
.c-tab__button {
  display: grid;
  place-content: center;
  width: 228px;
  height: 58px;
  background-color: #E1E0E5;
  color: #514D4D;
  font-weight: bold;
  font-size: 1.3rem;
  cursor: pointer;
}
.c-tab__button.is-active {
  background-color: #514D4D;
  color: #fff;
}
.c-tab__content {
  display: none;
}
.c-tab__content.is-active {
  display: block;
}

.p-brandlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 923px;
  margin-inline: auto;
  -moz-column-gap: 28px;
       column-gap: 28px;
  margin-top: 64px;
}
.p-brandlist__item {
  flex-basis: 158px;
  margin-top: 18px;
  text-align: center;
}
.p-brandlist__item.-large {
  flex-basis: calc((100% - 56px) / 3);
  margin-bottom: 64px;
}
.p-brandlist__item span {
  display: block;
  margin-top: 0.75em;
  font-size: 1.7rem;
  letter-spacing: 0.01em;
}

.p-top-news__heading {
  margin-bottom: 1em;
  font-size: 4.4rem;
  text-align: center;
  text-transform: uppercase;
}

.p-footer {
  background-color: #112641;
}
.p-footer .container {
  max-width: calc(1500px + 2 * var(--padding-container));
  padding-right: var(--padding-container);
  padding-left: var(--padding-container);
}
.p-footer address {
  background-color: #112641;
}

.p-header {
  display: flex;
  align-items: center;
  height: clamp(66.67px, 5.56vw, 100px);
  gap: clamp(10px, 2.083vw - 15px, 25px);
  border-bottom: 1px solid #ECEEED;
  background-color: #fff;
}
.p-header__logo {
  width: clamp(148px, 12.33vw, 222px);
  margin: 0 clamp(15px, 6.25vw - 60px, 60px) 0 20px;
}
.p-header__logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6.67px, 0.56vw, 10px);
  line-height: 1;
}
.p-header__logo span {
  margin-bottom: 0;
  font-weight: bold;
  font-size: clamp(0.8rem, 0.67vw, 1.2rem);
}
.p-header__gnav {
  margin-right: auto;
}
.p-header__announce {
  color: #5D83C2;
  font-weight: 700;
  font-size: clamp(1.15rem, 0.83vw, 1.5rem);
  letter-spacing: 0.25em;
}
.p-header__announce p {
  margin: 0;
}
.p-header__search {
  width: clamp(224.67px, 18.72vw, 337px);
}
.p-header__search.is-fixed {
  z-index: 100;
  position: fixed;
  top: 0;
}
.p-header__cart {
  display: grid;
  place-content: center;
  width: clamp(75px, 6.25vw, 100px);
  height: 100%;
  border-left: 1px solid #ECEEED;
}
.p-header__cart img {
  width: clamp(25.67px, 2.14vw, 38.5px);
}

.p-itemlist {
  display: flex;
  -moz-column-gap: 24px;
       column-gap: 24px;
  padding-right: var(--padding-container);
  padding-left: var(--padding-container);
}
.p-itemlist li {
  flex: 1;
}
.p-itemlist.-col3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 68px;
  max-width: 922px;
  margin-inline: auto;
  padding-right: 0;
  padding-left: 0;
}
.p-itemlist.-col3 li {
  width: auto;
  min-width: unset;
  max-width: 289px;
}
.p-itemlist.-ranking {
  counter-reset: rank;
}
.p-itemlist.-ranking .c-card {
  position: relative;
}
.p-itemlist.-ranking .c-card:nth-child(1) .c-card__link::before, .p-itemlist.-ranking .c-card:nth-child(2) .c-card__link::before, .p-itemlist.-ranking .c-card:nth-child(3) .c-card__link::before {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  content: counter(rank);
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1;
  counter-increment: rank;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
  padding: 0.4em 0.6em;
          clip-path: polygon(0 0, 0% 100%, 100% 0);
  pointer-events: none;
}
.p-itemlist.-ranking .c-card:nth-child(1) .c-card__link::before {
  background: #A27F2C;
}
.p-itemlist.-ranking .c-card:nth-child(2) .c-card__link::before {
  background: #545661;
}
.p-itemlist.-ranking .c-card:nth-child(3) .c-card__link::before {
  background: #61494F;
}

.p-mainvisual {
  margin-top: clamp(15px, 1.25vw, 22.5px);
}
.p-mainvisual__slide {
  aspect-ratio: 690/863;
}
.p-mainvisual__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-mainvisual .slick-slide {
  margin-right: clamp(8.33px, 0.69vw, 12.5px);
  margin-left: clamp(8.33px, 0.69vw, 12.5px);
}
.p-mainvisual .slick-dots {
  position: static;
  margin-top: 30px;
  font-size: 0;
  line-height: 1;
}
.p-mainvisual .slick-dots li {
  width: auto;
  height: 4px;
  margin: 0 2px;
}
.p-mainvisual .slick-dots li button {
  width: 10px;
  height: 4px;
  padding: 0;
}
.p-mainvisual .slick-dots li button::before {
  width: 100%;
  height: 100%;
  background-color: #DCDCDC;
  content: "";
  opacity: 1;
}
.p-mainvisual .slick-dots li.slick-active button::before {
  background-color: #151B65;
  content: "";
}

.p-newslist {
  display: grid;
  max-width: 530px;
  margin-inline: auto;
  gap: 1.5em;
}
.p-newslist li a {
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 1em;
  font-size: 1.3rem;
}
.p-newslist li a p {
  margin: 0;
}

.p-sns-area {
  max-width: 100%;
  padding: 80px var(--padding-container) 100px;
  border-top: 1px solid #C9C8C8;
}
.p-sns-area__inner {
  max-width: 1124px;
  margin-inline: auto;
  text-align: center;
}
.p-sns-area__heading {
  margin-top: 2em;
  margin-bottom: 1em;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
}
.p-sns-area__heading:first-child {
  margin-top: 0;
}
.p-sns-area__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.p-sns-area__icons li {
  width: 45px;
}

.p-top-links__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 940px;
  margin-inline: auto;
  gap: 8px;
}
.p-top-links__list li {
  height: 105px;
}
.p-top-links__list li a {
  display: grid;
  grid-template-rows: 36.52px auto;
  place-content: center;
  place-items: center;
  height: 100%;
  gap: 10.8px;
  border: 1px solid #CFCFCF;
  border-radius: 5px;
}
.p-top-links__brand {
  margin: 0;
  color: #7E7E81;
  font-size: 2.6rem;
  line-height: 1.25;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  text-align: center;
}
.p-top-links__text {
  margin: 0;
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1;
  text-align: center;
}

.p-top-bnr--polo-new-life {
  max-width: 782px;
  margin: 80px auto;
}
.p-top-bnr--naigai-original {
  margin: 80px auto;
}

.p-top-keyword-bnrs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 924px;
  margin-top: 80px;
  margin-inline: auto;
  gap: 25px;
}

.p-top-special-bnrs {
  display: flex;
  justify-content: space-around;
  margin-inline: auto;
  gap: 1.7rem;
}
.p-top-special-bnrs li {
  flex: 1;
}
.p-top-special-bnrs li img {
  width: 100%;
}

.p-top-category .c-heading {
  margin-top: 4rem;
}
.p-top-category__tab-buttons {
  margin-bottom: 0;
  gap: 5px;
}
.p-top-category__tab-buttons li {
  width: 174px;
  height: 46px;
  background-color: #828282;
  color: #fff;
  font-size: 1.5rem;
}
.p-top-category__tab-buttons li.is-active {
  background-color: #151B65;
}
.p-top-category__tab-contents {
  padding: 64px;
  background-color: #F9F5F1;
}
.p-top-category__tab-contents .c-keywords {
  grid-template-columns: repeat(6, 1fr);
}
.p-top-category__tab-contents .c-keywords a {
  text-align: center;
}
.p-top-category__tab-contents .c-keywords img {
  max-width: 136px;
}
.p-top-category__tab-contents .c-keywords p {
  font-weight: bold;
  font-size: 1.5rem;
  white-space: nowrap;
}
.p-top-category__tab-contents .c-keywords span {
  display: block;
  text-align: center;
}

.review-list2 .slick-slide {
  box-sizing: border-box;
  margin-right: 15px;
  margin-left: 15px;
  padding: 2rem;
  border: 1px solid #CFC8C8 !important;
}
.review-list2 .slick-slide > div {
  height: 100%;
}
.review-list2 .fs-c-reviewList__item {
  margin: 0;
  padding: 0;
  padding-left: 180px;
  border: 0;
}
.review-list2 .fs-c-reviewProduct__image {
  top: 0;
  left: 0;
  width: 160px;
}
.review-list2 .fs-c-reviewList__item__body {
  font-size: 1.4rem;
}
.review-list2 .fs-c-reviewInfo__reviewer {
  align-items: flex-start;
}
.review-list2 .fs-c-reviewerStatus {
  width: 94px;
  background-color: #828282;
}
.review-list2 .fs-c-reviewInfo__date dd {
  left: 101px;
  font-weight: normal;
  font-size: 1.2rem;
}
.review-list2 .fs-c-productName__name {
  font-weight: normal;
  font-size: 1.2rem;
}
.review-list2 .slick-arrow {
  background-color: #151B65;
}

.p-top-column .column-list__item .image {
  margin-bottom: 10px;
  border: 0;
}
.p-top-column .column-list__item .title {
  font-size: 1.4rem;
}

.p-top-values {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.8rem;
}

.p-top-bottom-bnr {
  display: grid;
  place-items: center;
  gap: 6rem;
}
.p-top-bottom-bnr .membership > a {
  display: block;
  max-width: 685px;
  margin-bottom: 36px;
  margin-inline: auto;
}
.p-top-bottom-bnr .appli > a {
  display: block;
  max-width: 1080px;
  margin-inline: auto;
}
.p-top-bottom-bnr .users-guide > a {
  display: block;
  max-width: 476px;
  margin-inline: auto;
}
.p-top-bottom-bnr__3col {
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.p-top-bottom-bnr__3col li {
  flex: 1;
  border: 1px solid #D5D4D4;
}

.u-display--ib {
  display: inline-block;
}

.u-text--left {
  text-align: left;
}
.u-text--center {
  text-align: center;
}
.u-text--right {
  text-align: right;
}
.u-text--uppercase {
  text-transform: uppercase;
}
@media (max-width: 768px){
  :root {
    --padding-container: 15px;
  }
  html {
    font-size: min(2.667vw, 10px);
  }
  .c-backtop {
    margin-bottom: -65px;
  }
  .c-backtop img {
    width: 5rem;
    height: 5rem;
  }
  .c-button.-more {
    width: 17.6rem;
    margin-top: 3rem;
    padding: 1.7rem 3.4rem 1.7rem 1.7rem;
    font-size: 1.3rem;
  }
  .c-button.-more::after {
    width: 7px;
    height: 8.3px;
  }
  .c-button.-fill {
    width: 20.8rem;
    height: 3.5rem;
    font-size: 1.4rem;
  }
  .c-card__name {
    font-size: 1.4rem;
  }
  .c-card__price {
    font-size: 1.4rem;
  }
  .c-card__tax {
    font-size: 1.1rem;
  }
  .c-heading {
    display: grid;
    grid-template-columns: auto 1fr;
    margin-top: 9rem;
    gap: 1.5rem;
  }
  .c-heading__en {
    grid-row: 1/2;
    grid-column: 1/2;
    font-size: 3.6rem;
  }
  .c-heading__jp {
    grid-row: 2/3;
    grid-column: 1/3;
    font-size: 1.4rem;
  }
  .c-heading::after {
    grid-row: 1/2;
    grid-column: 2/3;
  }
  .c-keywords {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 95%;
    gap: 3.5rem 0.7rem;
  }
  .c-keyword span {
    margin-top: 0.2em;
    font-size: 1.2rem;
  }
  .c-search-box__input {
    height: 4.4rem;
  }
  .c-search-box__button img {
    width: min(4.9vw, 18.36px);
  }
  .c-section {
    margin: 6rem auto;
  }
  .c-section.-alignfull {
    padding: 3.6rem var(--padding-container);
  }
  .c-tab__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 3.2rem;
    gap: 6px;
  }
  .c-tab__button {
    width: auto;
    height: 4.9rem;
    font-size: 1.4rem;
  }
  .p-brandlist {
    -moz-column-gap: 1.2rem;
         column-gap: 1.2rem;
    margin-top: 2rem;
  }
  .p-brandlist__item {
    flex-basis: calc((100% - 2.4rem) / 3);
    margin-top: 1.1rem;
  }
  .p-brandlist__item.-large {
    flex-basis: calc((100% - 1.2rem) / 2);
    margin-bottom: 2.6rem;
  }
  .p-brandlist__item span {
    font-size: 1.2rem;
  }
  .p-top-news__heading {
    font-size: 2.5rem;
  }
  .p-header {
    display: grid;
    grid-template-rows: 5.6rem 3.75rem 7.5rem;
    grid-template-columns: 1fr 5.6rem;
    height: auto;
    gap: 0;
    border-bottom: 0;
  }
  .p-header__logo {
    display: flex;
    grid-row: 1/1;
    grid-column: 1/1;
    align-items: center;
    width: auto;
    height: 100%;
    margin-right: 0;
    margin-left: 1.3rem;
  }
  .p-header__logo a {
    flex-direction: row;
    justify-content: flex-start;
  }
  .p-header__logo img {
    width: 10.6rem;
  }
  .p-header__logo span {
    font-size: 0.9rem;
  }
  .p-header__gnav {
    display: none;
  }
  .p-header__announce {
    display: flex;
    grid-row: 2/3;
    grid-column: 1/3;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 15px;
    background-color: #151B65;
    color: #F5FCB6;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
  .p-header__search {
    display: flex;
    grid-row: 3/4;
    grid-column: 1/3;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 7.5rem;
    padding: 0 15px;
    background-color: #fff;
  }
  .p-header__cart {
    grid-row: 1/2;
    grid-column: 2/3;
    width: 100%;
  }
  .p-header__cart img {
    width: 2.018rem;
  }
  .p-itemlist {
    padding-bottom: 15px;
    gap: 8px;
  }
  .p-itemlist li {
    flex-grow: unset;
    width: min(38.67vw, 268px);
    min-width: min(38.67vw, 268px);
  }
  .p-itemlist.-col3 {
    row-gap: 40px;
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
  .p-itemlist.-col3 li {
    flex: 1;
  }
  .p-mainvisual {
    margin-top: 0;
  }
  .p-mainvisual .slick-slide {
    margin-right: 4px;
    margin-left: 4px;
  }
  .p-mainvisual .slick-dots {
    margin-top: 15px;
  }
  .p-newslist {
    gap: 1em;
  }
  .p-sns-area {
    padding: 3.6rem var(--padding-container);
  }
  .p-sns-area__heading {
    margin-bottom: 0.75em;
    font-size: 2.8rem;
  }
  .p-top-links__list li {
    height: 10.8rem;
  }
  .p-top-links__list li a {
    grid-template-rows: 3.7rem auto;
  }
  .p-top-links__list li img {
    width: min(1px * var(--sp-width, auto), var(--sp-width, auto) / 375 * 100vw);
  }
  .p-top-links__brand {
    font-size: 1.9rem;
    line-height: 1;
  }
  .p-top-links__text {
    font-size: 1.2rem;
    line-height: 1.33;
  }
  .p-top-bnr--polo-new-life {
    max-width: 89%;
  }
  .p-top-bnr--naigai-original {
    padding: 0;
  }
  .p-top-keywords .c-keywords {
    margin-top: 5.4rem;
  }
  .p-top-keyword-bnrs {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 8rem;
    gap: 1.5rem;
  }
  .p-top-special-bnrs {
    flex-direction: column;
  }
  .p-top-category .c-heading {
    margin-top: 3rem;
  }
  .p-top-category__tab-buttons {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem;
  }
  .p-top-category__tab-buttons li {
    width: auto;
    height: clamp(3rem, 7.8vw, 3.75rem);
    font-size: clamp(1rem, 2.6vw, 1.25rem);
  }
  .p-top-category__tab-contents {
    padding: 2.4rem 1.2rem;
  }
  .p-top-category__tab-contents .c-keywords {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem 1.6rem;
  }
  .p-top-category__tab-contents .c-keywords img {
    max-width: 100%;
  }
  .p-top-category__tab-contents .c-keywords p {
    font-size: 1.2rem;
    white-space: normal;
  }
  .review-list2 .slick-slide {
    padding: 0 1.5rem;
    border: 0 !important;
  }
  .review-list2 .fs-c-reviewList__item {
    padding-top: 20rem;
    padding-left: 0;
  }
  .review-list2 .fs-c-reviewProduct__image {
    left: 50%;
    width: 17.3rem;
  }
  .review-list2 .fs-c-reviewList__item__body {
    font-size: 1.2rem;
  }
  .review-list2 .fs-c-reviewInfo__date dd {
    font-size: 1rem;
  }
  .review-list2 .slick-arrow {
    width: 1.3rem;
    height: 5.1rem;
  }
  .review-list2 .slick-prev {
    left: 0;
  }
  .review-list2 .slick-prev::after {
    left: 0.5rem;
    width: 1rem;
    height: 1rem;
  }
  .review-list2 .slick-next {
    right: 0;
  }
  .review-list2 .slick-next::after {
    right: 0.5rem;
    width: 1rem;
    height: 1rem;
  }
  .p-top-column .column-list__item .title {
    font-size: 1.2rem;
  }
  .p-top-values {
    flex-wrap: wrap;
  }
  .p-top-values__item {
    width: calc(50% - 4px);
  }
  .p-top-bottom-bnr {
    gap: 4.8rem;
  }
  .p-top-bottom-bnr .membership > a {
    margin-bottom: 2rem;
  }
  .p-top-bottom-bnr .users-guide > a {
    max-width: 80%;
  }
  .p-top-bottom-bnr__3col {
    row-gap: 1.5rem;
    flex-direction: column;
  }
}
@media (hover: hover){
  #newbridge a:hover {
    opacity: 0.75;
  }
  .c-backtop:hover {
    opacity: 0.7;
  }
  .c-tab__button:hover {
    background-color: #514D4D;
    color: #fff;
  }
  .p-header__logo a:hover {
    opacity: 0.7;
  }
  .p-mainvisual .slick-dots li button:hover::before {
    background-color: #151B65;
  }
  .p-top-category__tab-buttons li:hover {
    background-color: #151B65;
  }
}

.o-category {
  margin-top: 1.1rem;
  display: flex;
  justify-content: space-between;
}
.o-category__item {
  width: 32.65%;
  background-color: #F9F5F1;
  padding: 3.0rem 2.0rem;
}
.o-category__item__ttl {
  text-align: center;
  font-size: 2.1rem;
  font-weight: bold;
}
.o-category__item__list {
  display: flex;
  flex-wrap: wrap;
}
.o-category__item__list.color {
  margin-top: 3.9rem;
  padding-left: 3.2rem;
}
.o-category__item__list.color li {
  width: 4.2rem;
  margin-right: 1.4rem;
  margin-bottom: 1.6rem;
}
.o-category__item__list.color li a {
  display: block;
  height: 4.2rem;
  border-radius: 5.0rem;
}
.o-category__item__list.color li:nth-child(5n) {
  margin-right: 0;
}
.o-category__item__list.color li:nth-child(1) a {
  border: 1px solid #A5A2A2;
  background-color: #fff;
}
.o-category__item__list.color li:nth-child(2) a {
  border: 1px solid #A5A2A2;
  background-color: #E4DBA2;
}
.o-category__item__list.color li:nth-child(3) a {
  background-color: #6D4314;
}
.o-category__item__list.color li:nth-child(4) a {
  background-color: #F9DB18;
}
.o-category__item__list.color li:nth-child(5) a {
  background-color: #288A32;
}
.o-category__item__list.color li:nth-child(6) a {
  background-color: #FC714D;
}
.o-category__item__list.color li:nth-child(7) a {
  background-color: #F0B9E1;
}
.o-category__item__list.color li:nth-child(8) a {
  background-color: #960910;
}
.o-category__item__list.color li:nth-child(9) a {
  background-color: #8A52BB;
}
.o-category__item__list.color li:nth-child(10) a {
  background-color: #487CE3;
}
.o-category__item__list.color li:nth-child(11) a {
  background-color: #0E2967;
}
.o-category__item__list.color li:nth-child(12) a {
  background-color: #5E5C5F;
}
.o-category__item__list.color li:nth-child(13) a {
  background-color: #010100;
}
.o-category__item__list.height {
  margin-top: 2.2rem;
  justify-content: center;
}
.o-category__item__list.height li {
  width: 7.4rem;
  margin: 0 .9rem 1.0rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
}
.o-category__item__list.height li img {
  width: 100%;
  display: block;
  margin-bottom: .3rem;
}
.o-category__item__list.function {
  margin-top: 2.2rem;
}
.o-category__item__list.function li {
  margin-right: .5rem;
  margin-bottom: .6rem;
  font-size: 1.6rem;
}
.o-category__item__list.function li a {
  display: block;
  background-color: #fff;
  border: 1px solid #DEDEDE;
  border-radius: 5.0rem;
  padding: .7rem 1.5rem;
}
.o-accordion-toggle {
    display: none;
  }
.o-accordion-label {
  display: none;
}
@media (max-width: 768px) {
  .o-category {
    margin-top: 1.1rem;
    display: block;
  }
  .o-category__item {
    width: 100%;
    padding: 3.0rem 1.5rem;
  }
  .o-category__item + .o-category__item {
    margin-top: 1.1rem;
  }
  .o-category__item__ttl {
    font-size: 1.6rem;
  }
  .o-category__item__list {
    display: flex;
    flex-wrap: wrap;
  }
  .o-category__item__list.color {
    margin-top: 1.7rem;
    padding-left: 0;
  }
  .o-category__item__list.color li {
    width: 9.066666666666666vw;
    margin-right: 2.933333333333333vw;
  }
  .o-category__item__list.color li a {
    display: block;
    height: 9.066666666666666vw;
  }
  .o-category__item__list.color li:nth-child(5n) {
    margin-right: 2.933333333333333vw;
  }
  .o-category__item__list.color li:nth-child(7n) {
    margin-right: 0;
  }
  .o-category__item__list.height {
    margin-top: 1.6rem;
  }
  .o-category__item__list.height li {
    width: 19.466666666666665vw;
    margin: 0 2.1333333333333333vw 1.0rem;
  }
  .o-category__item__list.function {
    margin-top: 1.6rem;
  }
  .o-category__item__list.function li a {
    font-size: 1.3rem;
  }
  .o-accordion-label {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    background-color: #828282;
    padding: 1.5rem 0;
    margin-top: 1.1rem;
  }
  .o-accordion-label img {
    width: .9rem;
    margin-left: .8rem;
  }
  .o-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
  }
  .o-accordion-toggle:checked + .o-accordion-label + .o-accordion-content {
    max-height: 1000px;
  }
}