@charset "UTF-8";
/* -----------------------------------------------
common
----------------------------------------------- */
main {
  font-weight: 500;
}
.online__top__heading {
  display: flex;
  justify-content: center;
  background-color: #6A1684;
  overflow: hidden;
}
.online__top__heading h2 {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #6A1684;
  position: relative;
  z-index: 1;
}
.online__top__heading h2::before {
  content: '';
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
}
.online__top__heading h2 strong {
  font-weight: 600;
}
.online__top__heading h2 span {
  font-weight: 600;
}
.link__wrap a {
  background-color: #975CA9;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-inline: auto;
  border-radius: 50vh;
}

@media (max-width: 767px) {
  .online__top__heading {
    margin-bottom: 24px;
  }
  .online__top__heading h2 {
    min-height: 50px;
    gap: 2px 0;
  }
  .online__top__heading h2 strong {
    font-size: 16px;
  }
  .online__top__heading h2 span {
    font-size: 8px;
  }
  .online__top__heading h2::before {
    width: calc(100% + 77px);
  }
  .link__wrap {
    margin-top: 30px;
  }
  .link__wrap a {
    width: 120px;
    height: 24px;
    font-size: 10px;
  }
}

@media (min-width: 768px) {
  .online__top__heading {
    margin-bottom: 50px;
  }
  .online__top__heading h2 {
    min-height: 99px;
  }
  .online__top__heading h2 strong {
    font-size: 32px;
  }
  .online__top__heading h2 span {
    font-size: 16px;
  }
  .online__top__heading h2::before {
    width: calc(100% + 84px);
  }
  .link__wrap {
    margin-top: 70px;
  }
  .link__wrap a {
    width: 240px;
    height: 48px;
    font-size: 20px;
  }
}

/* -----------------------------------------------
information__wrap
----------------------------------------------- */
.information__wrap {
  background-color: #6A1684;
  color: #fff;
}
.information__wrap .heading {
  text-align: center;
}

@media (max-width: 767px) {
  .information__wrap .fx__wrap {
    display: flex;
    align-items: center;
    gap: 0 22px;
    min-height: 40px;
  }
  .information__wrap .heading {
    width: 86px;
  }
  .information__wrap .heading h2 {
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
  }
  .information__wrap .heading h2 strong {
    font-size: 9px;
  }
  .information__wrap .heading h2 span {
    font-size: 13px;
  }
  .information__wrap .content__wrap {
    flex: 1;
    display: flex;
    align-items: center;
    font-size: 14px;
    padding: 0.5em 0;
  }
  /* .information__wrap .content__wrap li + li {
    margin-top: 0.3em;
  } */
  .information__wrap .content__wrap li:nth-child(n + 2) {
    display: none;
  }
}

@media (min-width: 768px) {
  .information__wrap {
    margin-top: 17px;
  }
  .information__wrap .fx__wrap {
    display: flex;
    align-items: center;
    min-height: 80px;
  }
  .information__wrap .heading {
    width: 195px;
  }
  .information__wrap .heading h2 {
    font-size: 19px;
    line-height: 1.2;
  }
  .information__wrap .content__wrap {
    flex: 1;
    display: flex;
    align-items: center;
    font-size: 13px;
    padding: 1em 0;
  }
  .information__wrap .content__wrap li + li {
    margin-top: 0.3em;
  }
}

/* -----------------------------------------------
mv__wrap
----------------------------------------------- */
.mv__wrap .fs-c-slick :is(.slick-prev, .slick-next) {
  right: auto;
  background: none;
}
.mv__wrap .fs-c-slick :is(.slick-prev, .slick-next)::before {
  content: '';
  aspect-ratio: 1/1;
  opacity: 1;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
}
.mv__wrap .fs-c-slick .slick-prev::before {
  rotate: -45deg;
}
.mv__wrap .fs-c-slick .slick-next::before {
  rotate: 45deg;
}
.mv__wrap .fs-c-slick .slick-dots {
  padding: 0;
}
.mv__wrap .fs-c-slick .slick-dots li {
  aspect-ratio: 1/1;
  height: auto;
  margin: 0;
}
.mv__wrap .fs-c-slick .slick-dots li button {
  background: url(../images/online_top/icon_slider_dot.svg) center / contain no-repeat;
  width: 100%;
  height: 100%;
  padding: 0;
}
.mv__wrap .fs-c-slick .slick-dots li.slick-active button {
  background: url(../images/online_top/icon_slider_dot-active.svg) center / contain no-repeat;
}
.mv__wrap .fs-c-slick .slick-dots li button::before {
  content: none;
}

@media (max-width: 767px) {
  .mv__wrap {
    padding: 0 0 8px;
  }
  .mv__wrap .fs-c-slick :is(.slick-prev, .slick-next) {
    width: 12px;
    height: 34px;
  }
  .mv__wrap .fs-c-slick .slick-prev {
    left: 13px;
  }
  .mv__wrap .fs-c-slick .slick-next {
    right: 13px;
  }
  .mv__wrap .fs-c-slick :is(.slick-prev, .slick-next)::before {
    border-top: 1px solid #fff;
    width: 13px;
  }
  .mv__wrap .fs-c-slick .slick-prev::before {
    border-left: 1px solid #fff;
    left: calc(50% + 5px);
  }
  .mv__wrap .fs-c-slick .slick-next::before {
    border-right: 1px solid #fff;
    left: calc(50% - 5px);
  }
  .mv__wrap .fs-c-slick .slick-dots {
    margin-top: 2px;
    gap: 0 10px;
  }
  .mv__wrap .fs-c-slick .slick-dots li {
    width: 12px;
  }
}

@media (min-width: 768px) {
  .mv__wrap {
    padding: 37px 0 23px;
    background-color: #F3F3F3;
  }
  .mv__wrap .fs-c-slick .slick-slide {
    margin-inline: 33px !important;
  }
  .mv__wrap .fs-c-slick :is(.slick-prev, .slick-next) {
    width: 18px;
    height: 34px;
  }
  .mv__wrap .fs-c-slick .slick-prev {
    left: calc(50% - 280px);
    translate: -50% 0;
  }
  .mv__wrap .fs-c-slick .slick-next {
    left: calc(50% + 280px);
    translate: -50% 0;
  }
  .mv__wrap .fs-c-slick :is(.slick-prev, .slick-next)::before {
    border-top: 2px solid #000;
    width: 20px;
  }
  .mv__wrap .fs-c-slick .slick-prev::before {
    border-left: 2px solid #000;
    left: calc(50% + 5px);
  }
  .mv__wrap .fs-c-slick .slick-next::before {
    border-right: 2px solid #000;
    left: calc(50% - 5px);
  }
  .mv__wrap .fs-c-slick .slick-dots {
    margin-top: 12px;
    gap: 0 36px;
  }
  .mv__wrap .fs-c-slick .slick-dots li {
    width: 24px;
  }
}

/* -----------------------------------------------
welcome__wrap
----------------------------------------------- */
.welcome__wrap {
  background-color: rgba(106, 22, 132, .1);
  position: relative;
}
.welcome__wrap::before {
  content: '';
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
}
.welcome__wrap .inner__wrap {
  position: relative;
}
.welcome__wrap .welcome__inner {
  margin-inline: auto;
}
.welcome__heading {
  text-align: center;
}
.welcome__heading h2 {
  font-weight: 600;
  position: relative;
}
.welcome__heading h2::after {
  content: '';
  background-color: #6A1684;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% -50%;
}
.welcome__wrap p {
  font-weight: 600;
  text-align: center;
}

@media (max-width: 767px) {
  .welcome__wrap {
    padding: 22px 0 21px;
  }
  .welcome__wrap::before {
    width: 100%;
    background: url(../images/online_top/welcome_deco_sp.png) top right / min(14.13vw, 106px) auto repeat-y,
    url(../images/online_top/welcome_deco_sp.png) top left / min(14.13vw, 106px) auto repeat-y;
  }
  .welcome__wrap .welcome__inner {
    width: 71.73vw;
    padding: 0 2vw;
  }
  .welcome__heading {
    margin-bottom: 26px;
  }
  .welcome__heading h2 {
    font-size: 16px;
    line-height: 1.47;
    padding-bottom: 5px;
  }
  .welcome__heading h2::after {
    height: 1px;
    width: 100%;
  }
  .welcome__wrap p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 14px;
  }
}

@media (min-width: 768px) {
  .welcome__wrap {
    padding: 62px 0 42px;
    max-width: 1440px;
    margin-inline: auto;
  }
  .welcome__wrap::before {
    width: 1440px;
    background: url(../images/online_top/welcome_deco_pc.png) top right / 212px auto repeat-y,
    url(../images/online_top/welcome_deco_pc.png) top left / 212px auto repeat-y;
  }
  .welcome__wrap .welcome__inner {
    width: 924px;
    max-width: 100%;
  }
  .welcome__heading {
    margin-bottom: 10px;
  }
  .welcome__heading h2 {
    font-size: 32px;
    padding-bottom: 20px;
    display: inline-block;
  }
  .welcome__heading h2::after {
    height: 2px;
    width: calc(100% + 40px);
  }
  .welcome__wrap p {
    font-size: 24px;
    line-height: 1.7;
    margin-bottom: 2px;
  }
}

/* -----------------------------------------------
feature__wrap
----------------------------------------------- */
.feature__wrap .content__wrap h3 {
  font-weight: 600;
}
.feature__wrap .content__wrap p {
  font-weight: 500;
}

@media (max-width: 767px) {
  .feature__wrap {
    padding: 15px 0 30px;
  }
  .feature__wrap .inner__wrap {
    width: 74.62%;
  }
  .feature__wrap .content__wrap.col2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 23px 0;
    margin-bottom: 30px;
  }
  .feature__wrap .content__wrap.col2:last-child {
    margin-bottom: 0;
  }
  .feature__wrap .content__wrap picture {
    margin-bottom: 10px;
  }
  .feature__wrap .content__wrap h3 {
    font-size: 12px;
    margin-bottom: 6px;
  }
  .feature__wrap .content__wrap p {
    font-size: 11px;
    line-height: 1.5;
  }
}

@media (min-width: 768px) {
  .feature__wrap {
    padding: 51px 0 58px;
  }
  .feature__wrap .content__wrap.col2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 58px 5.18%;
    margin-bottom: 58px;
  }
  .feature__wrap .content__wrap.col2:last-child {
    margin-bottom: 0;
  }
  .feature__wrap .content__wrap.col3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 58px 3.66%;
  }
  .feature__wrap .content__wrap picture {
    margin-bottom: 21px;
  }
  .feature__wrap .content__wrap h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .feature__wrap .content__wrap p {
    font-size: 16px;
    line-height: 1.5;
  }
  .feature__wrap .content__wrap.col3 p {
    font-size: 14px;
    line-height: 1.43;
  }
}

/* -----------------------------------------------
category__wrap
----------------------------------------------- */
.category__wrap {
  background-color: rgba(106, 22, 132, .1);
}
.category__heading h2 {
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #6A1684;
  font-weight: 600;
  position: relative;
}
.category__content {
  background-color: #fff;
}
.category__list li {
  position: relative;
}
.category__list li a {
  display: block;
}
.category__list li p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(106, 22, 132, .7);
  color: #fff;
  text-align: center;
}
.category__con__heading strong {
  display: inline-flex;
  align-items: center;
  background-color: #6A1684;
  color: #fff;
  font-weight: 600;
  overflow: hidden;
}
.category__con__heading strong span {
  color: #6A1684;
  font-weight: 600;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.category__con__heading strong span::before {
  content: '';
  aspect-ratio: 1/1;
  width: 100%;
  background-color: #FFFF00;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
}
.category__con__heading h3 {
  font-weight: 600;
}
.category__con__heading .heading__fx a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50vh;
  border: 1px solid #707070;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .category__wrap {
    padding: 24px 0 36px;
  }
  .category__wrap .inner__wrap {
    width: 84.53%;
  }
  .category__heading {
    margin-bottom: 8px;
  }
  .category__content + .category__heading {
    margin-top: 25px;
  }
  .category__heading h2 {
    display: flex;
    border: 1px solid #6A1684;
    border-radius: 3px;
    width: 100%;
    min-height: 43px;
    padding: 0.3em 0;
    font-size: 16px;
  }
  .category__content {
    border: 1px solid #6A1684;
    border-radius: 3px;
    padding: 10px 18px 14px 10px;
  }
  .category__content + .category__content {
    margin-top: 15px;
  }
  .category__con__heading {
    margin-bottom:20px;
  }
  .category__con__heading strong {
    max-width: 100%;
    min-height: 23px;
    font-size: 12px;
    padding: 2px 8px 2px 10px;
    gap: 0 5px;
    margin-bottom: 9px;
    margin-left: -10px;
  }
  .category__con__heading strong em {
    flex: 1;
  }
  .category__con__heading strong span {
    font-size: 16px;
    line-height: 1;
    width: 31px;
  }
  .category__con__heading h3 {
    font-size: 12px;
    position: relative;
  }
  .category__con__heading .heading__fx {
    padding-left: 15px;
    margin-top: -12px;
    display: flex;
    align-items: center;
    gap: 0 8.83%;
  }
  .category__con__heading .heading__fx .img {
    width: 40.72%;
  }
  .category__con__heading .heading__fx .text {
    flex: 1;
  }
  .category__con__heading .heading__fx p {
    font-size: 11px;
    line-height: 1.61;
    margin-bottom: 9px;
  }
  .category__con__heading .heading__fx a {
    font-size: 10px;
    width: 112px;
    max-width: 100%;
    min-height: 18px;
  }
  .category__content .category__list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 8px;
  }
  .category__list li p {
    font-size: min(2.4vw, 9px);
    line-height: 1.5;
    padding: 0.36em 0.05em;
    font-weight: normal;
  }
}

@media (min-width: 768px) {
  .category__wrap {
    padding: 82px 0 92px;
  }
  .category__content + .category__heading {
    margin-top: 113px;
  }
  .category__heading {
    margin-bottom: 36px;
  }
  .category__heading h2 {
    display: inline-flex;
    border: 2px solid #6A1684;
    border-radius: 5px;
    min-width: 634px;
    min-height: 85px;
    padding: 0.3em 1em;
    font-size: 32px;
  }
  .category__heading h2::after {
    content: '';
    width: 100vw;
    height: 2px;
    background-color: #6A1684;
    position: absolute;
    top: 50%;
    left: 100%;
    translate: 0 -50%;
  }
  .category__content {
    border: 2px solid #6A1684;
    border-radius: 5px;
    display: flex;
    gap: 0 4.2%;
    padding: 24px 26px 27px 0
  }
  .category__content + .category__content {
    margin-top: 31px;
  }
  .category__content .category__con__heading {
    flex: 1;
  }
  .category__con__heading strong {
    max-width: 100%;
    min-height: 35px;
    font-size: 18px;
    padding: 4px 18px 4px 12px;
    gap: 0 5px;
    margin-bottom: 14px;
  }
  .category__con__heading strong em {
    flex: 1;
  }
  .category__con__heading strong span {
    font-size: 25px;
    line-height: 1;
    width: 48px;
  }
  .category__con__heading h3 {
    padding-left: 26px;
    font-size: min(2.07vw, 24px);
    position: relative;
  }
  .category__con__heading .heading__fx {
    padding-left: 26px;
    margin-top: -11%;
  }
  .category__con__heading .heading__fx .img {
    width: 89.9%;
    margin-left: auto;
  }
  .category__con__heading .heading__fx p {
    font-size: 14px;
    line-height: 1.43;
    margin-bottom: 18px;
  }
  .category__con__heading .heading__fx a {
    font-size: 14px;
    width: 224px;
    max-width: 100%;
    min-height: 36px;
  }
  .category__content .category__list {
    width: 59.23%;
  }
  .category__content .category__list ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .category__list li p {
    font-size: min(1.03vw, 12px);
    line-height: 1.5;
    padding: 0.1em 1em;
  }
}

/* -----------------------------------------------
product__wrap
----------------------------------------------- */
.product__wrap .tab__btn__wrap ul {
  display: flex;
}
.product__wrap .tab__btn__wrap li button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  background-color: #F3F3F3;
  color: inherit;
}
.product__wrap .tab__btn__wrap li button.active {
  background-color: #6A1684;
  color: #fff;
}
.product__wrap .content {
  display: none;
}
.product__wrap .content.active {
  display: block;
}

@media (max-width: 767px) {
  .product__wrap.pickup__wrap {
    padding-bottom: 81px;
  }
  .product__wrap .tab__btn__wrap {
    margin-bottom: 14px;
  }
  .product__wrap .tab__btn__wrap ul {
    flex-wrap: wrap;
    gap: 8px 3.28%;
  }
  .product__wrap .tab__btn__wrap li {
    width: 48.36%;
  }
  .product__wrap .tab__btn__wrap li button {
    font-size: 14px;
    line-height: 1.1;
    min-height: 36px;
  }
}

@media (min-width: 768px) {
  .product__wrap.pickup__wrap {
    padding-bottom: 81px;
  }
  .product__wrap .online__top__heading {
    margin-bottom: 10px;
  }
  .product__wrap .tab__btn__wrap {
    margin-bottom: 63px;
    position: relative;
    z-index: 1;
  }
  .product__wrap .tab__btn__wrap::before {
    content: '';
    width: 100vw;
    height: calc(100% + 1px);
    background-color: #F3F3F3;
    border-bottom: 1px solid #6A1684;
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
    z-index: -1;
  }
  .product__wrap .tab__btn__wrap ul {
    justify-content: center;
    gap: 0 8px;
  }
  .product__wrap .tab__btn__wrap li {
    width: 10%;
    min-width: 94px;
  }
  .product__wrap .tab__btn__wrap li button {
    min-height: 48px;
    border-radius: 10px 10px 0 0;
    font-size: 13px;
    line-height: 1.1;
    border-left: 1px solid #6A1684;
    border-top: 1px solid #6A1684;
    border-right: 1px solid #6A1684;
  }
}