/* ---------------------------------------------------
	common
------------------------------------------------------ */
.section__wrap {
  width: 94%;
  max-width: 1324px;
  margin: 0 auto;
  background: #fff;
  border-radius: 30px;
  box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.3);
}

.section__title {
  margin-bottom: 80px;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
}
.section__title .en {
  display: inline-block;
  margin-right: 48px;
  color: #e42f7f;
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  vertical-align: middle;
}
.section__title .en + span {
  font-weight: 900;
}

.section__title02 {
  margin-bottom: 120px;
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
}
.section__title02 .en {
  display: block;
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .1em;
}
.section__title02 .en:after {
  content: "";
  display: block;
  width: 158px;
  max-width: 100%;
  margin: 20px auto;
  border-bottom: 1px solid #000;
}
.section__title02 .main {
  display: block;
}

@media screen and (max-width: 768px) {
  .section__wrap {
    width: calc(100% - 20px);
    border-radius: 20px;
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.3);
  }

  .section__title {
    margin-bottom: 50px;
    font-size: 1.75rem;
    text-align: center;
  }
  .section__title::after {
    content: "";
    display: block;
    width: 70px;
    height: 0;
    margin: 20px auto 0;
    border-bottom: 1px solid currentColor;
  }
  .section__title .en {
    display: block;
    margin-right: 0;
    margin-bottom: 24px;
    font-size: 4rem;
  }
}
/* ---------------------------------------------------
	main
------------------------------------------------------ */
#mainvisual {
  display: flex;
  align-items: center;
  position: relative;
  width: 96%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 0 200px;
}
#mainvisual .mv__body {
  position: relative;
  width: 50%;
  padding: 80px 1% 60px 4%;
  text-align: center;
}
#mainvisual .mv__body::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% + 38vw);
  height: 100%;
  background: #fff;
  box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.3);
}
#mainvisual .mv__body > * {
  position: relative;
}
#mainvisual .mv__en01 {
  position: absolute;
  left: 8%;
  bottom: calc(100% + 10px);
}
#mainvisual .mv__en02 {
  position: absolute;
  right: -8%;
  top: calc(100% + 10px);
}
#mainvisual .mv__title {
  transition-delay: 300ms;
}
#mainvisual .mv__text {
  margin-top: 15px;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  transition-delay: 600ms;
}
#mainvisual .mv__text p {
  line-height: 1.6;
}
#mainvisual .mv__text .color {
  color: #e52f7f;
  font-weight: bold;
}
#mainvisual .mv__text .icon01 {
  margin-right: 24px;
}
#mainvisual .mv__text .icon02 {
  margin-left: 10px;
}
#mainvisual .mv__img {
  position: relative;
  width: 48%;
  max-width: max-content;
  margin-left: auto;
  z-index: 1;
  transition-delay: 900ms;
}
#mainvisual .mv__scroll {
  position: absolute;
  left: 10%;
  top: 100%;
  animation: scrollAnime 2s infinite;
  transition-delay: 1200ms;
  z-index: 1;
}

@keyframes scrollAnime {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@media screen and (max-width: 1420px) {
  #mainvisual .mv__body {
    padding-top: 60px;
    padding-bottom: 50px;
  }
  #mainvisual .mv__en02 {
    right: -2%;
  }
}
@media screen and (max-width: 1100px) {
  #mainvisual .mv__text .icon01 {
    width: 20px;
    margin-right: 15px;
  }
  #mainvisual .mv__text .icon02 {
    width: 30px;
  }
}
@media screen and (max-width: 768px) {
  #mainvisual {
    position: relative;
    width: 100%;
    margin: 0 0 60px;
    padding: 30px 0 4vw;
    flex-wrap: wrap;
  }
  #mainvisual .mv__body {
    position: static;
    width: calc(100% - 10px);
    margin-left: auto;
    padding: 40px 10px 33vw 0;
    background: #fff;
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.3);
  }
  #mainvisual .mv__body::before {
    content: none;
    width: 100%;
    height: 80%;
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.3);
  }
  #mainvisual .mv__en01 {
    display: none;
  }
  #mainvisual .mv__en02 {
    position: absolute;
    right: 0;
    top: calc(100% - 10vw);
    width: 100%;
    z-index: 10;
  }
  #mainvisual .mv__en02 img {
    width: 100%;
    height: auto;
  }
  #mainvisual .mv__title img {
    max-width: 80%;
    height: auto;
  }
  #mainvisual .mv__text {
    width: max-content;
    max-width: 100%;
    margin: 25px auto 0;
    font-size: 1.75rem;
    letter-spacing: 0.05em;
  }
  #mainvisual .mv__text p {
    line-height: 1.6;
  }
  #mainvisual .mv__text .icon01 {
    position: absolute;
    left: 0;
    top: -15px;
    width: 15px;
    height: auto;
    margin-right: 0;
  }
  #mainvisual .mv__text .icon02 {
    position: absolute;
    top: -10px;
    right: -3px;
    margin-left: 0;
    width: 23px;
    height: auto;
  }
  #mainvisual .mv__slide__wrap {
    width: 100%;
    margin-top: -24vw;
    overflow: hidden;
  }
  #mainvisual .mv__slide .slick-list {
    width: 86%;
    margin: 0 auto;
    overflow: visible;
  }
  #mainvisual .mv__slide .slide__item {
    padding: 0 5px;
  }
  #mainvisual .mv__scroll {
    left: 50%;
    top: 100%;
  }
  #mainvisual .mv__scroll img {
    width: 10px;
    height: auto;
  }
}
/* ---------------------------------------------------
		about
------------------------------------------------------ */
#about {
  padding: 50px 0 50px;
}
#about .section__title {
  margin-bottom: 50px;
}
#about .about__text {
  font-size: 1.8rem;
  line-height: 2.2;
}
#about .about__text .color {
  color: #e52f7f;
  font-size: 2.3rem;
}
#about .about__img {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin-top: -120px;
  margin-left: auto;
}
#about .about__img .img__en {
  position: absolute;
  right: 2%;
  bottom: calc(100% - 16px);
}

@media screen and (max-width: 1420px) {
  #about .about__img {
    margin-top: -50px;
  }
}
@media screen and (max-width: 1180px) {
  #about .about__img {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  #about {
    padding: 40px 0 0;
  }
  #about .section__title {
    margin-bottom: 40px;
  }
  #about .section__title::after {
    content: none;
  }
  #about .section__title img {
    display: inline-block;
    width: 145px;
    height: auto;
    margin-top: 10px;
  }
  #about .about__text {
    font-size: 1.75rem;
    line-height: 2.2;
  }
  #about .about__text .color {
    font-size: 1em;
  }
  #about .about__img {
    position: relative;
    width: 80%;
    margin: 30px auto 0;
  }
  #about .about__img .img__en {
    position: static;
    display: block;
    width: 80%;
    margin: 20px auto 0;
  }
}
/* ---------------------------------------------------
		trial
------------------------------------------------------ */
#trial {
  padding: 75px 0;
  text-align: center;
}
#trial .trial__title {
  max-width: 424px;
  margin: 30px auto 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
#trial .trial__title .color {
  color: #e52f7f;
  font-weight: bold;
}
#trial .trial__block {
  gap: 10px;
  line-height: 1.2;
}
#trial .trial__block .block__text {
  font-weight: bold;
  font-size: 2rem;
}
#trial .trial__block .block__text .num {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
}
#trial .trial__block .block__text .small {
  font-size: 1.6rem;
  font-weight: bold;
}
#trial .trial__block .block__text02 {
  color: #e52f7f;
  font-size: 5.2rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  #trial {
    padding: 50px 0 50px;
  }
  #trial .trial__logo img {
    width: 217px;
    height: auto;
  }
  #trial .trial__title {
    max-width: 265px;
    margin: 25px auto 8px;
    font-size: 1.9rem;
  }
  #trial .trial__block {
    display: block;
    gap: 10px;
    line-height: 1.2;
  }
  #trial .trial__block .block__text {
    font-size: 1.8rem;
  }
  #trial .trial__block .block__text .num {
    font-size: 3.1rem;
  }
  #trial .trial__block .block__text .small {
    font-size: 1.5rem;
  }
  #trial .trial__block .block__arrow {
    margin: 5px 0 0;
    text-align: center;
  }
  #trial .trial__block .block__arrow img {
    transform: rotate(90deg);
  }
  #trial .trial__block .block__text02 {
    font-size: 5.4rem;
  }
}
/* ---------------------------------------------------
		point
------------------------------------------------------ */
#point {
  padding: 75px 0 120px;
}
#point .point__block {
  align-items: flex-start;
}
#point .point__block .block__list {
  width: 34%;
  gap: 16px 0;
  line-height: 1;
}
#point .point__block .block__list .list__item {
  width: 48%;
  max-width: 178px;
}
#point .point__block .block__body {
  width: 63%;
}
#point .point__block .block__body .body__list {
  font-size: 1.8rem;
  line-height: 1.5;
}
#point .point__block .block__body .body__list li {
  padding-left: 1em;
  text-indent: -1em;
}
#point .point__block .block__body .body__list li + li {
  margin-top: 18px;
}
#point .point__block .block__body .body__list .color {
  color: #e42f7f;
}
#point .point__block02 {
  margin-top: 60px;
  justify-content: flex-start;
}
#point .point__block02 .block__img {
  margin-right: 15px;
}
#point .point__block02 .block__text .text__big {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.5;
}
#point .point__block02 .block__text .text__big .color {
  color: #e42f7f;
  font-weight: inherit;
}

@media screen and (max-width: 768px) {
  #point {
    padding: 40px 0 100px;
  }
  #point .point__block .block__list {
    width: 100%;
    gap: 16px;
  }
  #point .point__block .block__list .list__item {
    width: calc(50% - 8px);
    max-width: 100%;
  }
  #point .point__block .block__list .list__item img {
    width: 100%;
    height: auto;
  }
  #point .point__block .block__body {
    width: 100%;
    margin-top: 30px;
  }
  #point .point__block .block__body .body__list {
    font-size: 1.7rem;
    line-height: 2;
  }
  #point .point__block .block__body .body__list li + li {
    margin-top: 0;
  }
  #point .point__block02 {
    margin-top: 40px;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
  }
  #point .point__block02 .block__img {
    width: 75px;
    margin-right: 15px;
  }
  #point .point__block02 .block__text .text__big {
    font-size: 2.1rem;
    line-height: 1.2;
  }
  #point .point__block02 .block__text .text__note {
    margin-top: 5px;
    font-size: 1rem;
  }
}
/* ---------------------------------------------------
		rental
------------------------------------------------------ */
#rental {
  margin-bottom: 120px;
  padding: 75px 0 300px;
  background: url(../images/top/rental_bg01.png) no-repeat center bottom;
}
#rental .section__title {
  margin-bottom: 50px;
}
#rental .section__title + p {
  font-size: 2rem;
}
#rental .rental__slide {
  position: relative;
  margin-top: 40px;
  padding: 0 50px;
}
#rental .rental__slide .slick-prev,
#rental .rental__slide .slick-next {
  top: calc(50% - 40px);
}
#rental .rental__slide .slide__item {
  padding: 0 12px;
}
#rental .rental__slide .slide__item .item__box {
  padding: 13px;
  background: #fff;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
#rental .rental__slide .slide__item .item__text {
  margin-top: 15px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  #rental {
    margin-bottom: 70px;
    padding: 40px 0 20vw;
    background-size: 100%;
  }
  #rental .section__title {
    margin-bottom: 50px;
  }
  #rental .section__title + p {
    font-size: 1.7rem;
    line-height: 1.7;
    text-align: center;
  }
  #rental .rental__slide {
    margin-top: 30px;
    padding: 0 50px;
  }
  #rental .rental__slide .slick-prev,
  #rental .rental__slide .slick-next {
    top: calc(50% - 40px);
  }
  #rental .rental__slide .slick-list {
    overflow: visible;
  }
  #rental .rental__slide .slide__item {
    padding: 0 4px;
  }
  #rental .rental__slide .slide__item .item__box {
    padding: 13px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }
  #rental .rental__slide .slide__item .item__box img {
    width: 100%;
  }
  #rental .rental__slide .slide__item .item__text {
    margin-top: 15px;
    padding: 0 10px;
    font-size: 1.7rem;
  }
}
/* ---------------------------------------------------
		campaign
------------------------------------------------------ */
#campaign {
  padding: 75px 0 120px;
}
#campaign .section__title {
  margin-bottom: 60px;
}
#campaign .campaign__box {
  max-width: 726px;
  margin: 0 auto;
  padding: 30px 55px 20px;
  background: #e52f7f;
  border-radius: 20px;
  color: #e52f7f;
}
#campaign .campaign__box .box__head {
  margin-bottom: 25px;
  gap: 30px;
  color: #fff;
}
#campaign .campaign__box .box__head .head__text01 {
  margin-top: 5px;
  font-size: 2.5rem;
  line-height: 1.3;
}
#campaign .campaign__box .box__head .head__text02 {
  margin-top: 5px;
  font-size: 4.9rem;
  font-weight: 900;
  line-height: 1;
}
#campaign .campaign__box .box__body {
  position: relative;
  padding: 18px 25px;
  background: #fff;
  border-radius: 15px;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
}
#campaign .campaign__box .box__body .text01 {
  display: inline-block;
  margin-left: 12px;
  font-size: 3.4rem;
  font-weight: bold;
}
#campaign .campaign__box .box__body .text02 {
  font-size: 4.1rem;
  font-weight: 900;
}
#campaign .campaign__box .box__body .num {
  font-size: 4.9rem;
  font-weight: inherit;
}
#campaign .campaign__box .box__body .body__img {
  position: absolute;
  right: 10px;
  top: 5px;
}
#campaign .campaign__box02 {
  max-width: 726px;
  margin: 30px auto 0;
  padding: 20px;
  border: 1px solid #e52f7f;
  border-radius: 10px;
  color: #e52f7f;
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: center;
}
#campaign .campaign__note {
  margin-top: 8px;
  line-height: 1.5;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #campaign {
    padding: 40px 0 60px;
  }
  #campaign .section__title {
    margin-bottom: 40px;
  }
  #campaign .campaign__box {
    padding: 15px 10px 10px;
    border-radius: 10px;
  }
  #campaign .campaign__box .box__head {
    margin-bottom: 10px;
    gap: 10px;
  }
  #campaign .campaign__box .box__head .head__img img {
    width: 37px;
  }
  #campaign .campaign__box .box__head .head__text01 {
    margin-top: 5px;
    font-size: 1.5rem;
    line-height: 1.3;
  }
  #campaign .campaign__box .box__head .head__text02 {
    margin-top: 5px;
    font-size: 2.8rem;
  }
  #campaign .campaign__box .box__body {
    position: relative;
    padding: 10px 10px;
    border-radius: 8px;
    font-size: 1.35rem;
    text-align: center;
  }
  #campaign .campaign__box .box__body .text01 {
    margin-left: 5px;
    font-size: 1.8rem;
  }
  #campaign .campaign__box .box__body .text02 {
    font-size: 2.2rem;
    line-height: 1;
  }
  #campaign .campaign__box .box__body .num {
    font-size: 2.6rem;
  }
  #campaign .campaign__box .box__body .body__img {
    position: static;
    float: right;
    width: 160px;
    max-width: 42%;
    margin: -10px -4% 0 -10%;
  }
  #campaign .campaign__box02 {
    padding: 20px 10px;
    font-size: 1.9rem;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
  #campaign .campaign__note {
    font-size: 1rem;
    text-align: left;
  }
}
@media screen and (max-width: 440px) {
  #campaign .campaign__box .box__body {
    text-align: left;
  }
}
/* ---------------------------------------------------
		howto
------------------------------------------------------ */
#howto {
  padding: 75px 0;
}
#howto .howto__list {
  gap: 120px;
  font-size: 1.8rem;
  color: #e42f7f;
  line-height: 1.5;
  justify-content: center;
  text-align: center;
}
#howto .howto__list > li {
  position: relative;
}
#howto .howto__list > li .list__num {
  position: relative;
  width: 1em;
  margin: 0 auto 30px;
  padding: 0 10px 10px 0;
  font-size: 4.5rem;
  font-weight: bold;
  line-height: 0.8;
  text-align: center;
}
#howto .howto__list > li .list__num::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  width: 37px;
  height: 37px;
  bottom: 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}
#howto .howto__list > li .list__text {
  margin-top: 20px;
  font-weight: bold;
}
#howto .howto__list > li .list__arrow {
  position: absolute;
  right: -80px;
  top: calc(50% - 60px);
}

@media screen and (max-width: 768px) {
  #howto {
    padding: 75px 0;
  }
  #howto .section__title {
    margin-bottom: 70px;
  }
  #howto .howto__list {
    max-width: 420px;
    margin: 0 auto;
    gap: 40px;
    font-size: 2.2rem;
    color: #e42f7f;
    line-height: 1.5;
    justify-content: center;
    text-align: center;
  }
  #howto .howto__list > li {
    position: relative;
    width: 100%;
    padding-top: 30px;
  }
  #howto .howto__list > li .list__num {
    position: absolute;
    left: 0;
    top: 0;
    width: 1em;
    margin: 0 auto 30px;
    padding: 0 10px 10px 0;
    font-size: 5.4rem;
  }
  #howto .howto__list > li .list__num::after {
    width: 44px;
    height: 44px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
  }
  #howto .howto__list > li .list__img img {
    max-width: 40%;
    height: auto;
  }
  #howto .howto__list > li .list__text {
    margin-top: 30px;
  }
  #howto .howto__list > li .list__arrow {
    position: static;
    margin-top: 40px;
    text-align: center;
  }
  #howto .howto__list > li .list__arrow img {
    transform: rotate(90deg);
  }
}
/* ---------------------------------------------------
	shop
------------------------------------------------------ */
#shop {
  padding: 75px 0 100px;
}
#shop .shop__title {
  margin-bottom: 50px;
  font-size: 2.7rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
#shop .shop__title::after {
  content: "";
  display: block;
  width: 70px;
  height: 0;
  margin: 20px auto 0;
  border-bottom: 1px solid currentColor;
}
#shop .shop__title + p {
  text-align: center;
}
#shop .shop__list {
  margin-top: 40px;
  gap: 60px 0;
  justify-content: flex-start;
}
#shop .shop__list > li {
  width: 30.82%;
  max-width: 339px;
  margin-right: 3.7%;
  line-height: 1.7;
}
#shop .shop__list > li:nth-of-type(3n) {
  margin-right: 0;
}
#shop .shop__list > li .list__text {
  margin-top: 10px;
}
#shop .shop__list > li .list__text .name {
  font-size: 1.8rem;
}
#shop .shop__button {
  margin-top: 80px;
  line-height: 1;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #shop {
    padding: 75px 0 100px;
  }
  #shop .shop__title {
    margin-bottom: 50px;
    font-size: 3rem;
    letter-spacing: 0.1em;
  }
  #shop .shop__title::after {
    margin-top: 15px;
  }
  #shop .shop__title + p {
    font-size: 1.8rem;
    text-align: center;
  }
  #shop .shop__list {
    margin-top: 40px;
    gap: 15px 10px;
    justify-content: space-between;
  }
  #shop .shop__list > li {
    width: calc(50% - 5px);
    max-width: 100%;
    margin-right: 0;
    line-height: 1.7;
  }
  #shop .shop__list > li .list__img img {
    width: 100%;
    height: auto;
  }
  #shop .shop__list > li .list__text {
    margin-top: 5px;
    font-size: 1.25rem;
    line-height: 1.4;
  }
  #shop .shop__list > li .list__text .name {
    font-size: 1.05em;
  }
  #shop .shop__button {
    margin-top: 40px;
  }
}
