@charset "UTF-8";
/*clear fix*/
/*
 * Mixin for placeholder
 * @include placeholderColor(#00ff00);
 */
.c-section {
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .c-section {
    padding: 0;
    overflow: hidden;
  }
}
.c-section h2 {
  color: #525252;
  font-family: "Aldrich", sans-serif;
  font-weight: normal;
  font-size: 2.4rem;
}
.c-section span {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.c-section svg {
  width: 30px;
  height: 30px;
}
.c-section svg.svg-bg path {
  fill: #525252;
}

.c-tabArea .c-tabList {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.c-tabArea .c-tabList li a {
  display: block;
  min-width: 80px;
  padding: 5px 10px;
  font-weight: 600;
  font-size: 10px;
  text-align: center;
}
.c-tabArea .c-tabList li a.is-active {
  border-radius: 20px;
  border: solid 1px #000000;
  background: #FFFFFF;
}
.c-tabArea .c-tabSection {
  display: none;
  padding: 0 20px;
}
.c-tabArea .c-tabSection.is-active {
  display: block;
}

.c-fixedArea {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.w10 {
  width: 10%;
}

.w15 {
  width: 15%;
}

.w20 {
  width: 20%;
}

.w25 {
  width: 25%;
}

.w30 {
  width: 30%;
}

.w35 {
  width: 35%;
}

.w40 {
  width: 40%;
}

.w45 {
  width: 45%;
}

.w50 {
  width: 50%;
}

.w55 {
  width: 55%;
}

.w60 {
  width: 60%;
}

.w65 {
  width: 65%;
}

.w70 {
  width: 70%;
}

.w75 {
  width: 75%;
}

.w80 {
  width: 80%;
}

.w85 {
  width: 85%;
}

.w90 {
  width: 90%;
}

.w95 {
  width: 95%;
}

.w100 {
  width: 100%;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.pc-br {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-br {
    display: inline;
  }
}

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

.pc-img {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-img {
    display: inline;
  }
}

.sp-img {
  width: 60%;
}
@media screen and (min-width: 768px) {
  .sp-img {
    display: none;
  }
}

.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .pager {
    padding: 0;
  }
}
.pager li {
  width: 70px;
  margin: 0;
  font-size: 1.4rem;
  text-align: center;
  overflow: hidden;
}
.pager li:nth-of-type(2n + 2) {
  margin: 0 10px;
}
.pager li a {
  display: block;
  width: 100%;
  height: 100%;
}
.pager li span {
  display: block;
  width: 100%;
  height: 100%;
  border-bottom: solid 2px #000000;
  color: #FFFFFF;
}

.c-moreBtn {
  overflow: hidden;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  border-radius: 35px;
  border: solid 1px #707070;
  font-weight: 600;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-moreBtn {
    max-width: 300px;
    font-size: 2.4rem;
  }
}
.c-moreBtn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
}
@media screen and (min-width: 768px) {
  .c-moreBtn a {
    height: 70px;
    padding: 0 30px;
  }
}
.c-moreBtn a:hover {
  background: #ffc247;
}

.howtoplay-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
}
.howtoplay-popup.is-active {
  display: block;
}
.howtoplay-popup .howtoplay-popup__inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 62rem;
  margin: 0 auto;
  border-radius: 2rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .howtoplay-popup .howtoplay-popup__inner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 70rem;
    height: 64rem;
    margin: auto !important;
  }
}
.howtoplay-popup .howtoplay-popup__inner .popup-arrow {
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .howtoplay-popup .howtoplay-popup__inner .popup-arrow {
    bottom: 0;
  }
}
.howtoplay-popup .howtoplay-popup__inner .popup-arrow.next-arrow, .howtoplay-popup .howtoplay-popup__inner .popup-arrow.prev-arrow {
  display: block;
  width: 6rem;
  padding: 0.5rem 0;
  border-radius: 2rem;
  background: #FFFFFF;
  color: #000000;
  font-weight: 600;
  cursor: pointer;
  z-index: 10;
}
.howtoplay-popup .howtoplay-popup__inner .popup-arrow.next-arrow.slick-disabled, .howtoplay-popup .howtoplay-popup__inner .popup-arrow.prev-arrow.slick-disabled {
  opacity: 0.2;
}
.howtoplay-popup .howtoplay-popup__inner .popup-arrow.next-arrow {
  right: 30%;
}
@media screen and (min-width: 768px) {
  .howtoplay-popup .howtoplay-popup__inner .popup-arrow.next-arrow {
    right: 40%;
  }
}
.howtoplay-popup .howtoplay-popup__inner .popup-arrow.prev-arrow {
  left: 30%;
  background: #BCBCBC;
}
@media screen and (min-width: 768px) {
  .howtoplay-popup .howtoplay-popup__inner .popup-arrow.prev-arrow {
    left: 40%;
  }
}
.howtoplay-popup .howtoplay-popup__inner .howtoplay-box {
  position: relative;
  max-width: 34rem;
  height: 55rem;
  margin: 5rem 1.5rem;
  padding: 0 1rem 1.5rem;
  border-radius: 0.5rem;
  box-sizing: border-box;
  color: #000000;
  background: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .howtoplay-popup .howtoplay-popup__inner .howtoplay-box {
    max-width: 60rem;
    width: 100%;
    margin: 5rem;
    padding: 0 2rem 3rem;
    border-radius: 2rem;
  }
}
.howtoplay-popup .howtoplay-popup__inner .howtoplay-box .howtoplay-box__inner {
  height: 100%;
  overflow: auto;
}
.howtoplay-popup .howtoplay-popup__inner .howtoplay-box h3 {
  display: block;
  padding: 2rem 0;
  color: #BCA138;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 2.4rem;
  text-align: center;
}
.howtoplay-popup .howtoplay-popup__inner .howtoplay-box h3 span {
  display: block;
  max-width: 12rem;
  margin: 1rem auto 0;
  padding: 0.7rem 0;
  font-weight: 500;
  border-radius: 3rem;
  background: #000;
  color: #FFFFFF;
  font-size: 1.8rem;
}
.howtoplay-popup .howtoplay-popup__inner .howtoplay-box h4 {
  display: block;
  margin: 0 0 2rem;
  color: #000000;
  font-weight: 600;
  font-size: 1.8rem;
  text-align: center;
}
.howtoplay-popup .howtoplay-popup__inner .howtoplay-box .howtoplay-photo {
  max-width: 27rem;
  margin: 0 auto;
}
.howtoplay-popup .howtoplay-popup__inner .howtoplay-box .howtoplay-text {
  max-width: 100%;
  margin: 2rem auto 0;
  font-size: 1.4rem;
  overflow: auto;
}
.howtoplay-popup .howtoplay-popup__inner .howtoplay-box .howtoplay-text p {
  color: #000000;
}
.howtoplay-popup .howtoplay-popup__inner .howtoplay-box .howtoplay-text iframe {
  display: block;
  width: 100%;
  margin: 2rem 0 0;
}
.howtoplay-popup .howtoplay-popup__inner .howtoplay-box .howtoplay-text .howtoplay-list {
  width: 27rem;
  margin: 0 auto 3rem;
  font-weight: 600;
  font-size: 1.4rem;
}
.howtoplay-popup .howtoplay-popup__inner .howtoplay-box .howtoplay-text .howtoplay-sheet {
  margin: 3rem 0 0;
}
.howtoplay-popup .howtoplay-popup__inner .howtoplay-box .howtoplay-text .howtoplay-sheet dt {
  margin: 0 0 1rem;
}
.howtoplay-popup .howtoplay-popup__inner .howtoplay-box .howtoplay-close {
  position: absolute;
  top: -1rem;
  right: -1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: solid 0.2rem #FFFFFF;
  background: #000000;
  color: #FFFFFF;
  font-size: 1.5rem;
  line-height: 0;
  cursor: pointer;
}

.girlSearch-area {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
}
.girlSearch-area.is-active {
  display: flex !important;
}
.girlSearch-area .girlSearch-area__inner {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 2rem 0 0;
  background: #FFFFFF;
  overflow: auto;
}
@media screen and (min-width: 768px) {
  .girlSearch-area .girlSearch-area__inner {
    max-width: 80rem;
    max-height: 95rem;
    width: 90%;
    height: 60rem;
    border-radius: 1rem;
    overflow: hidden;
  }
}
.girlSearch-area .girlSearch-area__inner h4 {
  display: block;
  margin: 0 0 3rem;
  color: #000000;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}
.girlSearch-area .girlSearch-area__inner .girlSearch-close {
  position: absolute;
  top: 2rem;
  left: 2rem;
  color: #000000;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
}
.girlSearch-area .girlSearch-area__inner .girlSearch-reset {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #BCA138;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
}
.girlSearch-area .girlSearch-area__inner .girlSearch-contArea {
  max-height: 100%;
  overflow: auto;
  padding: 0 0 11rem;
}
@media screen and (min-width: 768px) {
  .girlSearch-area .girlSearch-area__inner .girlSearch-contArea {
    max-height: 44rem;
    padding: 0;
  }
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont {
  margin: 0 0 2rem;
  padding: 0 2rem;
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont dt {
  margin: 0 0 0.5rem;
  color: #000000;
  font-weight: 600;
  font-size: 1.6rem;
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox {
    justify-content: flex-start;
  }
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox li {
  position: relative;
  width: 49%;
}
@media screen and (min-width: 768px) {
  .girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox li {
    width: 25%;
    margin: 0 0.3% 0.6%;
  }
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox li input[type=checkbox],
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox li input[type=radio] {
  display: none;
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox li input[type=checkbox]:checked + label,
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox li input[type=radio]:checked + label {
  border: solid 0.1rem #BCA138;
  background: #FFF8FC;
  color: #BCA138;
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox li input[type=checkbox]:checked + label:before,
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox li input[type=radio]:checked + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 1.5rem;
  height: 0.8rem;
  margin: auto;
  border-left: 2px solid #BCA138;
  border-bottom: 2px solid #BCA138;
  transform: rotate(-45deg);
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox li label {
  display: block;
  padding: 1rem;
  color: #000000;
  font-size: 1.4rem;
  border-radius: 0.5rem;
  border: solid 0.1rem #CCCCCC;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-review {
  flex-direction: row-reverse;
  justify-content: flex-end;
  color: #000000;
  font-weight: 600;
  font-size: 1.2rem;
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-review input[type=radio]:checked ~ label {
  color: #F8C601;
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-review label {
  color: #D2D2D2;
  font-size: 3rem;
  padding: 0 0.5rem;
  cursor: pointer;
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-review label:hover, .girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-review label:hover ~ label {
  color: #F8C601;
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox--btn {
  display: flex;
  flex-wrap: wrap;
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox--btn li {
  position: relative;
  width: 32.3%;
  margin: 0 0.5% 1%;
}
@media screen and (min-width: 768px) {
  .girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox--btn li {
    width: 16%;
    margin: 0 0.3% 0.6%;
  }
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox--btn li input[type=checkbox],
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox--btn li input[type=radio] {
  display: none;
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox--btn li input[type=checkbox]:checked + label,
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox--btn li input[type=radio]:checked + label {
  border: solid 0.1rem #BCA138;
  background: #FFF8FC;
  color: #BCA138;
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox--btn li label {
  display: block;
  padding: 1rem;
  color: #000000;
  font-size: 1.2rem;
  border-radius: 0.5rem;
  border: solid 0.1rem #CCCCCC;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox--box {
  display: flex;
  flex-wrap: wrap;
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox--box li {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 3rem 0 0;
  padding: 0;
  font-weight: 600;
  font-size: 1.4rem;
  cursor: pointer;
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox--box li input[type=checkbox],
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox--box li input[type=radio] {
  display: none;
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox--box li input[type=checkbox]:checked + label:after,
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox--box li input[type=radio]:checked + label:after {
  border: solid 0.1rem #BCA138;
  background: #FFF8FC;
  color: #BCA138;
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox--box li input[type=checkbox]:checked + label:before,
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox--box li input[type=radio]:checked + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.5rem;
  height: 0.8rem;
  margin: auto;
  border-left: 2px solid #BCA138;
  border-bottom: 2px solid #BCA138;
  transform: rotate(-45deg);
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox--box li label {
  display: flex;
  align-items: center;
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox--box li label:after {
  content: "";
  display: block;
  margin: 0 0 0 0.5rem;
  border-radius: 0.3rem;
  border: solid 0.1rem #CCCCCC;
  width: 2.4rem;
  height: 2.4rem;
}
.girlSearch-area .girlSearch-area__inner .girlSearch-cont .search-checkbox--box li:last-of-type {
  margin: 0;
}
.girlSearch-area .girlSearch-area__inner input[type=checkbox],
.girlSearch-area .girlSearch-area__inner input[type=radio] {
  display: none;
}
.girlSearch-area .girlSearch-area__inner .search-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2rem;
  margin: 2rem 0 0;
  background: #FFFFFF;
  box-shadow: 0 -1rem 3rem rgba(0, 0, 0, 0.09);
}
@media screen and (min-width: 768px) {
  .girlSearch-area .girlSearch-area__inner .search-bottom {
    position: absolute;
  }
}
.girlSearch-area .girlSearch-area__inner .search-bottom p {
  color: #000000;
  font-weight: 600;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .girlSearch-area .girlSearch-area__inner .search-bottom p {
    font-size: 1.8rem;
  }
}
.girlSearch-area .girlSearch-area__inner .search-bottom button {
  width: 17rem;
  padding: 1.5rem 0;
  border-radius: 0.5rem;
  background: #BCA138;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .girlSearch-area .girlSearch-area__inner .search-bottom button {
    width: 20rem;
    font-size: 1.8rem;
  }
}

.review-popup {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
}
.review-popup.is-active {
  display: flex;
}
.review-popup .review-popup__inner {
  max-width: 40rem;
  width: 90%;
  height: 90%;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .review-popup .review-popup__inner {
    height: 80%;
  }
}
.review-popup .review-popup__inner .review-form {
  width: 100%;
  height: auto;
  padding: 2rem;
  border-radius: 1rem;
  background: #FFFFFF;
  overflow: auto;
}
@media screen and (min-width: 768px) {
  .review-popup .review-popup__inner .review-form {
    padding: 3rem;
  }
}
.review-popup .review-popup__inner .review-form p {
  font-weight: 600;
  color: #000000;
  font-size: 1.4rem;
  text-align: center;
}
.review-popup .review-popup__inner .review-form .review-form__dl {
  margin: 2rem 0 0;
}
.review-popup .review-popup__inner .review-form .review-form__dl dt {
  margin: 0 0 0.5rem;
  color: #0F0E0E;
  font-size: 1.4rem;
}
.review-popup .review-popup__inner .review-form .review-form__dl dd {
  margin: 0 0 2rem;
}
.review-popup .review-popup__inner .review-form .review-form__dl dd .review-star {
  display: flex;
  flex-flow: row-reverse;
  justify-content: flex-end;
  color: #000000;
  font-weight: 600;
  font-size: 1.2rem;
}
.review-popup .review-popup__inner .review-form .review-form__dl dd .review-star input[type=radio] {
  display: none;
}
.review-popup .review-popup__inner .review-form .review-form__dl dd .review-star input[type=radio]:checked ~ label {
  color: #F8C601;
}
.review-popup .review-popup__inner .review-form .review-form__dl dd .review-star label {
  color: #D2D2D2;
  font-size: 2rem;
  padding: 0 0.2rem;
  cursor: pointer;
}
.review-popup .review-popup__inner .review-form .review-form__dl dd .review-star label:hover, .review-popup .review-popup__inner .review-form .review-form__dl dd .review-star label:hover ~ label {
  color: #F8C601;
}
.review-popup .review-popup__inner .review-form .review-form__dl dd select,
.review-popup .review-popup__inner .review-form .review-form__dl dd input[type=text] {
  width: 100%;
  padding: 1rem;
  border-radius: 0.5rem;
  border: solid 0.1rem #D8D8D8;
  color: #0F0E0E;
  font-weight: 600;
  font-size: 1.6rem;
}
.review-popup .review-popup__inner .review-form .review-form__dl dd textarea {
  width: 100%;
  min-height: 15rem;
  padding: 1rem;
  border: solid 0.1rem #D8D8D8;
  color: #000000;
  font-size: 1.4rem;
}
.review-popup .review-popup__inner .review-form button {
  display: block;
  width: 100%;
  padding: 1rem 0;
  border-radius: 0.5rem;
  background: #000000;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.6rem;
}
.review-popup .review-popup__inner .review-form button:hover {
  background: #ff9600;
}
.review-popup .review-popup__inner .review-close {
  display: block;
  width: 10rem;
  margin: 3rem auto 2rem;
  padding: 0.5rem 0;
  border: solid 0.1rem #707070;
  border-radius: 3rem;
  background: #FFFFFF;
  color: #000000;
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
  cursor: pointer;
}
.review-popup .review-popup__inner .review-close:hover {
  border: solid 0.1rem #ff9600;
  background: #ff9600;
  color: #FFFFFF;
}
.review-popup .review-popup__inner .review-close.is-active {
  background: #FFFFFF;
  color: #000000;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

.c-form-select,
.c-form-text,
.c-form-search,
.c-form-mail,
.c-form-tel,
.c-form-textarea {
  border-radius: 5px;
  font-size: 1.4rem;
}

.c-form-text,
.c-form-search,
.c-form-mail,
.c-form-tel,
.c-form-textarea {
  padding: 5px;
}

.c-form-text {
  background: #FFFFFF;
}

.c-form-search {
  background: #EFEFEF;
}
.c-form-search::placeholder {
  padding-left: 20px;
  background: url(../images/search-icon.svg) no-repeat 3px center;
}

.c-form-select {
  position: relative;
  /*
  &::before {
    content: '';
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    width: 10px;
    height: 10px;
    margin: auto;
    border: solid 2px #707070;
    border-top: 0;
    border-right: 0;
    transform: rotate(-45deg);
    transform-origin: bottom left;
    box-sizing: border-box;
  }
  */
}
.c-form-select select {
  width: 100%;
  padding: 15px;
  text-align-last: center;
}

.c-form-textarea {
  min-height: 300px;
}

.c-form-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-form-checkbox:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border-radius: 3px;
  border: solid 1px #707070;
}

input[type=checkbox]:checked + .c-form-checkbox::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 3px;
  width: 15px;
  height: 8px;
  margin: auto;
  border-left: 3px solid #096FCA;
  border-bottom: 3px solid #096FCA;
  transform: rotate(-45deg);
}

.c-switch {
  display: block;
  width: 100px;
  border: solid 1px #656565;
  border-radius: 30px;
  overflow: hidden;
}
.c-switch label {
  position: relative;
  cursor: pointer;
}
.c-switch label::before {
  content: "OFF";
  position: absolute;
  top: 0;
  left: 50px;
  display: block;
  width: 50px;
  padding: 5px 0;
  border-radius: 30px;
  background: #D9D9D9;
  text-align: center;
  transition: all 0.3s ease;
  z-index: 1;
}
.c-switch label.is-active::before {
  content: "ON";
  left: 0px;
}
.c-switch label .c-switchList {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-switch label .c-switchList li {
  width: 50%;
  padding: 5px 0;
  color: #656565;
  text-align: center;
}

.column-btnList {
  margin: 0 20px;
  padding: 20px 0;
}
.column-btnList .c-form-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 5px;
  background: #45B9A3;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.6rem;
}
.column-btnList .c-form-submit:last-of-type {
  margin: 0 auto;
}
.column-btnList .c-form-submit svg {
  margin-right: 5px;
}
.column-btnList .c-form-submit svg path {
  fill: #FFFFFF;
}

/*!
 * ress.css • v1.2.2
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  box-sizing: border-box;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

*, :after, :before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden], template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

b, strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

input {
  border-radius: 0;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

[type=number] {
  width: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, select {
  text-transform: none;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
}

audio, canvas, progress, video {
  display: inline-block;
}

@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

html,
body {
  margin: 0;
  padding: 0;
}
html.is-noScroll,
body.is-noScroll {
  overflow-y: hidden;
}

body {
  box-sizing: border-box;
  background: #F6F6F6;
  background-size: 100%;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  word-break: break-all;
  webkit-appearance: none;
}
@media screen and (min-width: 768px) {
  body {
    background-size: auto;
  }
}

html {
  font-size: 62.5%;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul li {
  color: #000000;
}

a {
  text-decoration: none;
  color: #000000;
  transition: all 0.1s ease;
}
a:hover {
  text-decoration: none;
}
a img {
  transition: all 0.8s ease;
}
a img:hover {
  opacity: 0.9;
}
a:focus {
  outline: none;
}

a[href^=tel] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^=tel] {
    pointer-events: auto;
  }
}

img {
  max-width: 100%;
  margin: auto;
  vertical-align: top;
}

h1, h2, h3, h4, h5 {
  color: #000000;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  color: #000000;
}

span {
  word-break: break-word;
}

th, td {
  word-break: break-all;
}

input,
textarea {
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
input:placeholder-shown,
textarea:placeholder-shown {
  color: #A3A3A3 !important;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #A3A3A3 !important;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #A3A3A3 !important;
  opacity: 1;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #A3A3A3 !important;
  opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #A3A3A3 !important;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #A3A3A3 !important;
}

header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #FCFCFC;
  z-index: 10;
}
header h1 {
  width: 250px;
}
@media screen and (max-width: 768px) {
  header h1 {
    width: 130px;
  }
}
header h1 img {
  max-width: 100%;
}
header .l-headerMenu {
  display: flex;
}
header .l-headerMenu li {
  width: 300px;
  margin: 0 0;
}
@media screen and (max-width: 768px) {
  header .l-headerMenu li {
    width: 180px;
  }
}
header .l-headerMenu li a {
  display: block;
  padding: 20px 0;
  border-radius: 5px;
  color: #FFFFFF;
  background-image: linear-gradient(to right, #fc6076, #ff9a44, #ef9d43, #e75516);
  box-shadow: 0 4px 15px 0 rgba(252, 104, 110, 0.75);
  background-size: 300% 100%;
  border-radius: 50px;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 768px) {
  header .l-headerMenu li a {
    padding: 10px 0;
    font-size: 1.3rem;
  }
}
header .l-headerMenu li a :hover {
  background-position: 100% 0;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

main {
  display: flex;
  flex-direction: column;
  min-height: 1000px;
}
@media screen and (max-width: 768px) {
  main {
    min-height: auto;
  }
}
main.fixed {
  position: fixed;
}

footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  background: #FCFCFC;
  padding: 40px;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  footer {
    display: block;
    padding: 20px 20px 100px;
  }
}
footer .l-footerInfo {
  display: flex;
  flex-wrap: wrap;
  width: 1000px;
}
@media screen and (max-width: 768px) {
  footer .l-footerInfo {
    width: 100%;
    justify-content: space-between;
  }
}
footer .l-footerInfo .l-footerLogo {
  width: 283px;
}
@media screen and (max-width: 768px) {
  footer .l-footerInfo .l-footerLogo {
    width: 120px;
  }
}
footer .l-footerInfo .l-footerMenu {
  display: flex;
  align-items: center;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  footer .l-footerInfo .l-footerMenu {
    margin-left: 0;
  }
}
footer .l-footerInfo .l-footerMenu li {
  margin: 0 15px;
}
@media screen and (max-width: 768px) {
  footer .l-footerInfo .l-footerMenu li {
    margin: 5px;
  }
}
footer .l-footerInfo .l-footerMenu li img {
  width: 80px;
}
@media screen and (max-width: 768px) {
  footer .l-footerInfo .l-footerMenu li img {
    width: 30px;
  }
}
footer .l-footerInfo .l-footerMenuText {
  position: relative;
  width: 200px;
  margin: 10px 0;
  padding: 10px;
  border-radius: 50px;
  background: #FFFFFF;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  footer .l-footerInfo .l-footerMenuText {
    width: 85px;
    padding: 0;
    font-size: 1.4rem;
  }
}
footer .l-footerInfo .l-footerMenuText a {
  display: inline-block;
  background: linear-gradient(90deg, #ff7a00 -24.77%, #f00679 41.3%, #d300c5 111.8%);
  background: -webkit-linear-gradient(0deg, #ff7a00 -24.77%, #f00679 41.3%, #d300c5 111.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
footer .l-footerInfo .l-footerMenuText::after {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  right: -2px;
  left: -2px;
  border-radius: 50px;
  background: linear-gradient(to right, #ff7a00 -24.77%, #f00679 41.3%, #d300c5 111.8%);
  z-index: -1;
}
footer .l-footerInfo .l-footerAddress {
  display: none;
  padding: 10px 15px;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  footer .l-footerInfo .l-footerAddress {
    display: none;
  }
}
footer .l-footerInfo small {
  padding: 15px;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  footer .l-footerInfo small {
    width: 100%;
    padding: 10px 0;
    text-align: center;
  }
}
footer .footer-lineBtn {
  margin-right: 80px;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 30;
}
@media screen and (max-width: 768px) {
  footer .footer-lineBtn {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    margin-right: 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
  }
}
footer .footer-lineBtn button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  padding: 10px 0 10px 20px;
  border-radius: 15px;
  background: #00b900;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  footer .footer-lineBtn button {
    margin: 0 auto;
  }
}
footer .footer-lineBtn button img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  width: 30px;
}
footer .top-arrow {
  position: fixed;
  bottom: 30px;
  right: 40px;
  z-index: 30;
}
@media screen and (max-width: 768px) {
  footer .top-arrow {
    bottom: 80px;
    right: 10px;
  }
}

#logo_loader {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 101;
  background-color: #FCFCFC;
}

#logo_loader .f_logo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 220px;
  height: 73px;
  text-align: center;
  color: #fff;
  font-size: 30px;
  animation: loadLogo 1s;
}

#logo_loader .f_logo img {
  width: 100%;
  height: auto;
}

/* モーダル */
.modal-overlay {
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

.modal-container {
  background-color: #fff;
  max-height: 80vh;
  max-width: 500px;
  overflow-y: auto;
  padding: 30px;
  width: 80%;
}

.modal-close {
  background: transparent;
  border: 0;
}

.modal-header {
  position: relative;
  text-align: center;
}
.modal-header .modal-close::before {
  content: "✕";
  position: absolute;
  top: 2px;
  right: 0;
  font-size: 2rem;
}
.modal-header h2 {
  font-size: 2.2rem;
}

.modal-content {
  line-height: 1.5;
}
.modal-content .lineQr {
  display: block;
  margin-bottom: 10px;
  text-align: center;
}
.modal-content .lineLinkbtn {
  text-align: center;
}

/* モーダルアニメーション */
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal-overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal-container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal-overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal-container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal-container,
.micromodal-slide .modal-overlay {
  will-change: transform;
}

@keyframes loadLogo {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#logo_loader.open {
  animation-name: slideOut;
  animation-fill-mode: forwards;
  animation-duration: 2.5s;
  animation-delay: 1.5s;
}

@keyframes slideOut {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.c-section:first-of-type {
  padding: 0;
}
.c-section:last-of-type {
  padding: 0;
}

.index-hero {
  position: relative;
}
@media screen and (max-width: 768px) {
  .index-hero {
    width: 100%;
    overflow: hidden;
  }
}
.index-hero p {
  font-family: "Aldrich", sans-serif;
}
.index-hero .index-hero-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 1000px;
  background: rgb(63, 50, 141);
  background: linear-gradient(90deg, rgb(63, 50, 141) 0%, rgb(136, 58, 117) 50%, rgb(208, 69, 96) 100%);
  background-size: 200% 200%;
  animation: bggradient 5s ease infinite;
  font-size: 100px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .index-hero .index-hero-before {
    min-height: 620px;
    font-size: 3.5rem;
  }
}
.index-hero .index-hero-before .index-hero-beforeInner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.index-hero .index-hero-before .index-hero-beforeInner .index-hero-bg {
  position: absolute;
  opacity: 0.3;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .index-hero .index-hero-before .index-hero-beforeInner .index-hero-bg {
    width: 60%;
  }
}
.index-hero .index-hero-before .index-hero-beforeInner p {
  color: #FFFFFF;
}
.index-hero .index-hero-after {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 50px;
  height: 60vw;
  max-height: 1000px;
  background: #FFFFFF;
  font-size: 8.5rem;
  overflow: hidden;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  .index-hero .index-hero-after {
    min-height: 620px;
    padding: 0;
    font-size: 2.2rem;
  }
  .index-hero .index-hero-after::before {
    position: absolute;
    top: -200%;
    left: -200%;
    content: "";
    display: block;
    width: 400%;
    height: 400%;
    background: linear-gradient(90deg, rgb(0, 123, 255) 0%, rgb(144, 39, 127) 30%);
    background-size: 200% 200%;
    animation: xrotate 15s linear infinite, assist-opacity 2s 1s both;
    z-index: -1;
  }
  @keyframes bggradient {
    0% {
      background-position: 0% 77%;
    }
    50% {
      background-position: 100% 24%;
    }
    100% {
      background-position: 0% 77%;
    }
  }
}
.index-hero .index-hero-after .index-hero-text {
  position: relative;
  width: calc(80% - 500px);
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .index-hero .index-hero-after .index-hero-text {
    width: 100%;
    background: none;
  }
}
.index-hero .index-hero-after .index-hero-text .index-hero-textList {
  position: relative;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .index-hero .index-hero-after .index-hero-text .index-hero-textList {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.index-hero .index-hero-after .index-hero-text .index-hero-textList.is-active li {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .index-hero .index-hero-after .index-hero-text .index-hero-textList.is-active li {
    background: linear-gradient(90deg, rgb(248, 57, 127), rgb(141, 13, 60));
    background: -webkit-linear-gradient(0deg, rgb(248, 57, 127), rgb(141, 13, 60));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media screen and (max-width: 768px) {
  .index-hero .index-hero-after .index-hero-text .index-hero-textList.is-active li {
    color: #FFFFFF;
  }
}
.index-hero .index-hero-after .index-hero-text .index-hero-textList.is-active li:first-of-type {
  animation-name: opacity-heroText;
  animation-duration: 5s;
}
@media screen and (max-width: 768px) {
  .index-hero .index-hero-after .index-hero-text .index-hero-textList.is-active li:first-of-type {
    background: url(../images/other_girl5.png) no-repeat right center;
    background-size: 70%;
  }
}
.index-hero .index-hero-after .index-hero-text .index-hero-textList.is-active li:nth-of-type(2) {
  animation-name: opacity-heroText;
  animation-duration: 5s;
  animation-delay: 5s;
}
@media screen and (max-width: 768px) {
  .index-hero .index-hero-after .index-hero-text .index-hero-textList.is-active li:nth-of-type(2) {
    background: url(../images/other_girl3.png) no-repeat right center;
    background-size: 70%;
  }
}
.index-hero .index-hero-after .index-hero-text .index-hero-textList.is-active li:last-of-type {
  animation-name: opacity-heroTextLast;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  animation-delay: 10s;
}
@media screen and (max-width: 768px) {
  .index-hero .index-hero-after .index-hero-text .index-hero-textList.is-active li:last-of-type {
    background: url(../images/other_girl4.png) no-repeat right center;
    background-size: 70%;
  }
}
.index-hero .index-hero-after .index-hero-text .index-hero-textList li {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .index-hero .index-hero-after .index-hero-text .index-hero-textList li {
    width: 100%;
    padding: 0 20px;
  }
}
.index-hero .index-hero-after .index-hero-slick {
  width: 500px;
  height: 500px;
  opacity: 0;
  transition: 2s;
  transition-delay: 0.5s;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .index-hero .index-hero-after .index-hero-slick {
    display: none;
  }
}
.index-hero .index-hero-after .index-hero-slick.is-active {
  opacity: 1;
}
.index-hero .index-hero-after .index-hero-slick .slick-list {
  position: relative;
  padding: 20px;
  border-radius: 50%;
}
.index-hero .index-hero-after .index-hero-slick .slick-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, tomato, blue);
  animation: xrotate 3s linear infinite, assist-opacity 2s 1s both;
}
.index-hero .index-hero-after .index-hero-slick img {
  object-fit: cover;
  border-radius: 50%;
  width: 500px;
  height: 460px;
}
.index-hero .index-hero-after .index-hero-bgLines {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: rotate(30deg);
  opacity: 0;
  animation-name: opacity-loop;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}
.index-hero .index-hero-after .index-hero-bgLines span {
  position: absolute;
  width: 137px;
  background: linear-gradient(135deg, tomato, blue);
  opacity: 0.4;
}
@media screen and (max-width: 768px) {
  .index-hero .index-hero-after .index-hero-bgLines span {
    width: 40px;
  }
}
.index-hero .index-hero-after .index-hero-bgLines span:nth-child(1) {
  left: 5%;
  top: -70%;
  animation: rain-anim 7s infinite;
  height: 400px;
}
.index-hero .index-hero-after .index-hero-bgLines span:nth-child(2) {
  left: 10%;
  top: -65%;
  animation: rain-anim 4s infinite;
  height: 300px;
}
.index-hero .index-hero-after .index-hero-bgLines span:nth-child(3) {
  left: 15%;
  top: -60%;
  animation: rain-anim 5s infinite;
  height: 500px;
}
.index-hero .index-hero-after .index-hero-bgLines span:nth-child(4) {
  left: 20%;
  top: -55%;
  animation: rain-anim 6s infinite;
  height: 600px;
}
.index-hero .index-hero-after .index-hero-bgLines span:nth-child(5) {
  left: 25%;
  top: -50%;
  animation: rain-anim 3s infinite;
  height: 700px;
}
.index-hero .index-hero-after .index-hero-bgLines span:nth-child(6) {
  left: 30%;
  top: -50%;
  animation: rain-anim 4s infinite;
  height: 300px;
}
.index-hero .index-hero-after .index-hero-bgLines span:nth-child(7) {
  left: 35%;
  top: -55%;
  animation: rain-anim 7s infinite;
  height: 600px;
}
.index-hero .index-hero-after .index-hero-bgLines span:nth-child(8) {
  left: 40%;
  top: -60%;
  animation: rain-anim 6s infinite;
  height: 800px;
}
.index-hero .index-hero-after .index-hero-bgLines span:nth-child(9) {
  left: 45%;
  top: -65%;
  animation: rain-anim 3s infinite;
  height: 350px;
}
.index-hero .index-hero-after .index-hero-bgLines span:nth-child(10) {
  left: 50%;
  top: -70%;
  animation: rain-anim 5s infinite;
  height: 500px;
}
.index-hero .index-hero-after .index-hero-bgLines span:nth-child(11) {
  left: 55%;
  top: -50%;
  animation: rain-anim 7s infinite;
  height: 700px;
}
.index-hero .index-hero-after .index-hero-bgLines span:nth-child(12) {
  left: 60%;
  top: -55%;
  animation: rain-anim 5s infinite;
  height: 350px;
}
.index-hero .index-hero-after .index-hero-bgLines span:nth-child(13) {
  left: 65%;
  top: -60%;
  animation: rain-anim 3s infinite;
  height: 500px;
}
.index-hero .index-hero-after .index-hero-bgLines span:nth-child(14) {
  left: 70%;
  top: -65%;
  animation: rain-anim 4s infinite;
  height: 650px;
}
.index-hero .index-hero-after .index-hero-bgLines span:nth-child(15) {
  left: 75%;
  top: -70%;
  animation: rain-anim 6s infinite;
  height: 300px;
}

.index-hero-bgLines {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: rotate(30deg);
  opacity: 0;
  animation-name: opacity-loop;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}
.index-hero-bgLines span {
  position: absolute;
  width: 137px;
  background: linear-gradient(135deg, tomato, blue);
  opacity: 0.4;
}
@media screen and (max-width: 768px) {
  .index-hero-bgLines span {
    width: 40px;
  }
}
.index-hero-bgLines span:nth-child(1) {
  left: 5%;
  top: -70%;
  animation: rain-anim 7s infinite;
  height: 400px;
}
.index-hero-bgLines span:nth-child(2) {
  left: 10%;
  top: -65%;
  animation: rain-anim 4s infinite;
  height: 300px;
}
.index-hero-bgLines span:nth-child(3) {
  left: 15%;
  top: -60%;
  animation: rain-anim 5s infinite;
  height: 500px;
}
.index-hero-bgLines span:nth-child(4) {
  left: 20%;
  top: -55%;
  animation: rain-anim 6s infinite;
  height: 600px;
}
.index-hero-bgLines span:nth-child(5) {
  left: 25%;
  top: -50%;
  animation: rain-anim 3s infinite;
  height: 700px;
}
.index-hero-bgLines span:nth-child(6) {
  left: 30%;
  top: -50%;
  animation: rain-anim 4s infinite;
  height: 300px;
}
.index-hero-bgLines span:nth-child(7) {
  left: 35%;
  top: -55%;
  animation: rain-anim 7s infinite;
  height: 600px;
}
.index-hero-bgLines span:nth-child(8) {
  left: 40%;
  top: -60%;
  animation: rain-anim 6s infinite;
  height: 800px;
}
.index-hero-bgLines span:nth-child(9) {
  left: 45%;
  top: -65%;
  animation: rain-anim 3s infinite;
  height: 350px;
}
.index-hero-bgLines span:nth-child(10) {
  left: 50%;
  top: -70%;
  animation: rain-anim 5s infinite;
  height: 500px;
}
.index-hero-bgLines span:nth-child(11) {
  left: 55%;
  top: -50%;
  animation: rain-anim 7s infinite;
  height: 700px;
}
.index-hero-bgLines span:nth-child(12) {
  left: 60%;
  top: -55%;
  animation: rain-anim 5s infinite;
  height: 350px;
}
.index-hero-bgLines span:nth-child(13) {
  left: 65%;
  top: -60%;
  animation: rain-anim 3s infinite;
  height: 500px;
}
.index-hero-bgLines span:nth-child(14) {
  left: 70%;
  top: -65%;
  animation: rain-anim 4s infinite;
  height: 650px;
}
.index-hero-bgLines span:nth-child(15) {
  left: 75%;
  top: -70%;
  animation: rain-anim 6s infinite;
  height: 300px;
}

@keyframes rain-anim {
  0% {
    transform: translate(0px, 0px);
    opacity: 0.5;
  }
  100% {
    transform: translate(-300%, 300%);
    opacity: 0;
  }
}
.index-otherCotent {
  position: relative;
  overflow: hidden;
}

.index-about {
  position: relative;
  overflow: hidden;
  padding: 60px 0 !important;
}
@media screen and (max-width: 768px) {
  .index-about {
    padding: 0 !important;
  }
}

.index-aboutIconList {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .index-aboutIconList {
    padding: 10px 0 0;
  }
}
.index-aboutIconList li {
  margin-right: 10px;
  padding: 5px 25px;
  border-radius: 30px;
  background: #D04560;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .index-aboutIconList li {
    margin: 1.5px;
    padding: 1px 15px;
    font-size: 1.5rem;
  }
}

.index-aboutList {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 10;
}
.index-aboutList .index-aboutBox {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .index-aboutList .index-aboutBox {
    display: block;
    margin-bottom: 30px;
  }
  .index-aboutList .index-aboutBox:last-of-type {
    margin-bottom: 0;
  }
}
.index-aboutList .index-aboutBox:last-of-type {
  margin-bottom: 0;
}
.index-aboutList .index-aboutBox:nth-of-type(2n + 1) {
  flex-direction: row;
}
.index-aboutList .index-aboutBox:nth-of-type(2n + 1) .index-aboutDetail {
  position: relative;
  padding: 50px 50px 50px 0;
  margin-right: 0;
  margin-left: 5%;
}
@media screen and (max-width: 768px) {
  .index-aboutList .index-aboutBox:nth-of-type(2n + 1) .index-aboutDetail {
    padding: 50px 30px 50px 20px;
    margin-left: 0;
  }
}
.index-aboutList .index-aboutBox:nth-of-type(2n + 1) .index-aboutDetail .index-aboutDetail--heading {
  position: relative;
  z-index: 10;
}
.index-aboutList .index-aboutBox:nth-of-type(2n + 1) .index-aboutDetail .index-aboutDetail--heading.animated::before {
  content: "R";
  position: absolute;
  top: -23px;
  left: 25px;
  color: #D04560;
  font-size: 60rem;
  font-family: "Aldrich", sans-serif;
  font-weight: normal;
  animation-name: zoom-textLeft;
  animation-duration: 3s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.index-aboutList .index-aboutBox:nth-of-type(2n + 1) .index-aboutDetail .index-aboutDetail--heading h2 {
  position: relative;
}
.index-aboutList .index-aboutBox:nth-of-type(2n + 1) .index-aboutDetail .index-aboutDetail--heading h2:first-letter {
  color: #D04560;
}
.index-aboutList .index-aboutBox:nth-of-type(2n + 1) .index-aboutDetail .index-aboutDetail--heading span {
  opacity: 0;
  animation-name: assist-opacity;
  animation-duration: 1s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}
.index-aboutList .index-aboutBox:nth-of-type(2n + 1) .index-aboutDetail span.line {
  position: absolute;
  margin: 0 !important;
  transition: 1s;
}
.index-aboutList .index-aboutBox:nth-of-type(2n + 1) .index-aboutDetail span.line:nth-of-type(1) {
  top: 0;
  left: 0;
  right: 0;
  width: 0%;
  height: 1px;
  background: rgb(255, 54, 54);
  background: linear-gradient(90deg, rgb(163, 8, 39) 0%, rgb(255, 54, 54) 100%);
  animation-name: width-border;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.index-aboutList .index-aboutBox:nth-of-type(2n + 1) .index-aboutDetail span.line:nth-of-type(2) {
  top: 0;
  right: 0;
  left: auto;
  width: 1px;
  height: 0%;
  background: #ff3636;
  animation-name: height-border;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.index-aboutList .index-aboutBox:nth-of-type(2n + 1) .index-aboutDetail span.line:nth-of-type(3) {
  bottom: 0;
  right: 0;
  left: auto;
  width: 0%;
  height: 1px;
  background: rgb(255, 54, 54);
  background: linear-gradient(90deg, rgb(163, 8, 39) 0%, rgb(255, 54, 54) 100%);
  animation-name: width-border;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.index-aboutList .index-aboutImage {
  width: 50%;
  background: #CCCCCC;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .index-aboutList .index-aboutImage {
    width: auto;
    height: auto;
  }
}
.index-aboutList .index-aboutImage .cover1,
.index-aboutList .index-aboutImage .cover2,
.index-aboutList .index-aboutImage .cover3 {
  animation: about-cover 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #F6F6F6;
  height: 33.3333333333%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 1;
}
.index-aboutList .index-aboutImage .cover1 {
  top: 0;
}
.index-aboutList .index-aboutImage .cover2 {
  animation-delay: 0.2s;
  top: 33.3333333333%;
}
.index-aboutList .index-aboutImage .cover3 {
  animation-delay: 0.4s;
  top: 66.6666666667%;
}
.index-aboutList .index-aboutImage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.index-aboutList .index-aboutDetail {
  position: relative;
  width: 45%;
  margin-right: 5%;
  padding: 50px 0 50px 50px;
}
@media screen and (max-width: 768px) {
  .index-aboutList .index-aboutDetail {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    padding: 50px 10px 50px 40px;
  }
}
.index-aboutList .index-aboutDetail .index-aboutCmnt {
  opacity: 0;
  animation-name: assist-opacity;
  animation-duration: 1s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}
.index-aboutList .index-aboutDetail .index-aboutDetail--heading {
  position: relative;
  margin-bottom: 30px;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .index-aboutList .index-aboutDetail .index-aboutDetail--heading {
    margin-bottom: 15px;
  }
}
.index-aboutList .index-aboutDetail .index-aboutDetail--heading.animated::before {
  content: "A";
  position: absolute;
  top: -30px;
  left: 25px;
  color: #3F328D;
  font-size: 60rem;
  font-family: "Aldrich", sans-serif;
  font-weight: normal;
  animation-name: zoom-textLeft;
  animation-duration: 3s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.index-aboutList .index-aboutDetail .index-aboutDetail--heading h2 {
  margin: 0;
  font-size: 7rem;
  opacity: 0;
  animation-name: assist-opacity;
  animation-duration: 1s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 768px) {
  .index-aboutList .index-aboutDetail .index-aboutDetail--heading h2 {
    font-size: 5rem;
  }
}
.index-aboutList .index-aboutDetail .index-aboutDetail--heading h2:first-letter {
  color: #3F328D;
}
.index-aboutList .index-aboutDetail .index-aboutDetail--heading span {
  font-size: 2.3rem;
  opacity: 0;
  animation-name: assist-opacity;
  animation-duration: 1s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
  background: linear-gradient(90deg, #4158D0, #C850C0 30%, #FFCC70);
  background: -webkit-linear-gradient(0deg, #4158D0, #C850C0 30%, #FFCC70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .index-aboutList .index-aboutDetail .index-aboutDetail--heading span {
    font-size: 2rem;
  }
}
.index-aboutList .index-aboutDetail .index-aboutDetail--heading span.animated {
  animation-name: assist-opacity;
  animation-duration: 1s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}
.index-aboutList .index-aboutDetail .index-aboutCmnt {
  line-height: 2;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .index-aboutList .index-aboutDetail .index-aboutCmnt {
    font-size: 1.6rem;
  }
}
.index-aboutList .index-aboutDetail .index-aboutCmnt h3 {
  margin-bottom: 5px;
  line-height: 1.5;
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .index-aboutList .index-aboutDetail .index-aboutCmnt h3 {
    margin-bottom: 0;
    font-size: 2rem;
  }
}
.index-aboutList .index-aboutDetail span.line {
  position: absolute;
  background-color: #3F328D;
  margin: 0 !important;
  transition: 1s;
}
.index-aboutList .index-aboutDetail span.line:nth-of-type(1) {
  top: 0;
  left: auto;
  right: 0;
  width: 0%;
  height: 1px;
  background: rgb(35, 2, 236);
  background: linear-gradient(90deg, rgb(35, 2, 236) 0%, rgb(63, 50, 141) 100%);
  animation-name: width-border;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.index-aboutList .index-aboutDetail span.line:nth-of-type(2) {
  top: 0;
  left: 0;
  width: 1px;
  height: 0%;
  background: #2302ec;
  animation-name: height-border;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.index-aboutList .index-aboutDetail span.line:nth-of-type(3) {
  bottom: 0;
  right: auto;
  left: 0;
  width: 0%;
  height: 1px;
  background: rgb(35, 2, 236);
  background: linear-gradient(90deg, rgb(35, 2, 236) 0%, rgb(63, 50, 141) 100%);
  animation-name: width-border;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}

.index-about-bgLines {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: rotate(30deg);
  opacity: 0;
  animation-name: opacity-loop;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}
.index-about-bgLines span {
  position: absolute;
  width: 137px;
  background: linear-gradient(135deg, tomato, blue);
  opacity: 0.4;
}
@media screen and (max-width: 768px) {
  .index-about-bgLines span {
    width: 40px;
  }
}
.index-about-bgLines span:nth-child(1) {
  left: 5%;
  top: -70%;
  animation: rain-anim 7s infinite;
  height: 400px;
}
.index-about-bgLines span:nth-child(2) {
  left: 10%;
  top: -65%;
  animation: rain-anim 4s infinite;
  height: 300px;
}
.index-about-bgLines span:nth-child(3) {
  left: 15%;
  top: -60%;
  animation: rain-anim 5s infinite;
  height: 500px;
}
.index-about-bgLines span:nth-child(4) {
  left: 20%;
  top: -55%;
  animation: rain-anim 6s infinite;
  height: 600px;
}
.index-about-bgLines span:nth-child(5) {
  left: 25%;
  top: -50%;
  animation: rain-anim 3s infinite;
  height: 700px;
}
.index-about-bgLines span:nth-child(6) {
  left: 30%;
  top: -50%;
  animation: rain-anim 4s infinite;
  height: 300px;
}
.index-about-bgLines span:nth-child(7) {
  left: 35%;
  top: -55%;
  animation: rain-anim 7s infinite;
  height: 600px;
}
.index-about-bgLines span:nth-child(8) {
  left: 40%;
  top: -60%;
  animation: rain-anim 6s infinite;
  height: 800px;
}
.index-about-bgLines span:nth-child(9) {
  left: 45%;
  top: -65%;
  animation: rain-anim 3s infinite;
  height: 350px;
}
.index-about-bgLines span:nth-child(10) {
  left: 50%;
  top: -70%;
  animation: rain-anim 5s infinite;
  height: 500px;
}
.index-about-bgLines span:nth-child(11) {
  left: 55%;
  top: -50%;
  animation: rain-anim 7s infinite;
  height: 700px;
}
.index-about-bgLines span:nth-child(12) {
  left: 60%;
  top: -55%;
  animation: rain-anim 5s infinite;
  height: 350px;
}
.index-about-bgLines span:nth-child(13) {
  left: 65%;
  top: -60%;
  animation: rain-anim 3s infinite;
  height: 500px;
}
.index-about-bgLines span:nth-child(14) {
  left: 70%;
  top: -65%;
  animation: rain-anim 4s infinite;
  height: 650px;
}
.index-about-bgLines span:nth-child(15) {
  left: 75%;
  top: -70%;
  animation: rain-anim 6s infinite;
  height: 300px;
}

.index-assist {
  position: relative;
  min-height: 908px;
  padding: 60px 0;
  background: #ffc6e2;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .index-assist {
    min-height: auto;
    padding: 0;
  }
}
.index-assist.is-active {
  background: linear-gradient(-45deg, #ffffff, #d3f1fc, #ffc6e2);
  background-size: 400% 400%;
  animation: gradient 15s 5s ease infinite;
}
.index-assist .index-assistInner {
  opacity: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0 0;
  transition: all 1.5s ease;
}
.index-assist .index-assistInner.is-active {
  opacity: 1;
  transition: all 1.5s ease;
}
.index-assist .index-assistInner.is-active .index-assist--header {
  position: relative;
}
.index-assist .index-assistInner.is-active .index-assist--header .index-assist--headerInner {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .index-assist .index-assistInner.is-active .index-assist--header .index-assist--headerInner {
    max-width: 216px;
  }
}
.index-assist .index-assistInner.is-active .index-assist--header .index-assist--headerInner::before {
  content: "S";
  position: absolute;
  top: -23px;
  left: 25px;
  background: linear-gradient(90deg, rgb(194, 57, 248), rgb(145, 26, 192));
  background: -webkit-linear-gradient(0deg, rgb(194, 57, 248), rgb(145, 26, 192));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 60rem;
  font-family: "Aldrich", sans-serif;
  font-weight: normal;
  animation-name: zoom-textLeft;
  animation-duration: 3s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  z-index: 20;
}
.index-assist .index-assistInner.is-active .index-assist--header .index-assist--headerInner h2 {
  opacity: 0;
  animation-name: assist-opacity;
  animation-duration: 1s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}
.index-assist .index-assistInner.is-active .index-assist--header .index-assist--headerInner span {
  opacity: 0;
  animation-name: assist-opacity;
  animation-duration: 1s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}
.index-assist .index-assistInner .index-assist--header {
  position: relative;
  margin-bottom: 10px;
  max-width: 700px;
  margin: 0 auto 30px;
  padding: 0;
  color: #FFFFFF;
  text-align: center;
  /*
  background: url(../images/crown-icon.png) no-repeat center top;
  background-size: 100px;
  */
  animation-name: assist-opacity;
  animation-duration: 1s;
  animation-delay: 2s;
  animation-fill-mode: forwards;
  /*
  &::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 130px;
    height: 100%;
    background: url(../images/frame-left.png) no-repeat left top;
    background-size: 100%;
    @include g.mq(md, max) {
      width: 70px;
      background: url(../images/frame-left.png) no-repeat left 50px;
      background-size: 100%;
    }
  }
  &::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    width: 130px;
    height: 100%;
    background: url(../images/frame-right.png) no-repeat right top;
    background-size: 100%;
    @include g.mq(md, max) {
      width: 70px;
      background: url(../images/frame-right.png) no-repeat right 50px;
      background-size: 100%;
    }
  }
  */
}
@media screen and (max-width: 768px) {
  .index-assist .index-assistInner .index-assist--header {
    padding: 30px 0 0;
    margin: 0 10px;
    /*
    background: url(../images/crown-icon.png) no-repeat center 30px;
    background-size: 60px;
    */
  }
}
.index-assist .index-assistInner .index-assist--header h2 {
  position: relative;
  margin-bottom: 10px;
  font-size: 7rem;
}
@media screen and (max-width: 768px) {
  .index-assist .index-assistInner .index-assist--header h2 {
    font-size: 5rem;
  }
}
.index-assist .index-assistInner .index-assist--header h2::first-letter {
  font-size: 7rem;
}
@media screen and (max-width: 768px) {
  .index-assist .index-assistInner .index-assist--header h2::first-letter {
    font-size: 5rem;
  }
}
.index-assist .index-assistInner .index-assist--header h2:after {
  position: absolute;
  top: 0;
  left: 2px;
  content: "S";
  background: linear-gradient(90deg, rgb(194, 57, 248), rgb(145, 26, 192));
  background: -webkit-linear-gradient(0deg, rgb(194, 57, 248), rgb(145, 26, 192));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 7rem;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .index-assist .index-assistInner .index-assist--header h2:after {
    font-size: 5rem;
  }
}
.index-assist .index-assistInner .index-assist--header span {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #4158D0, #C850C0 30%, #FFCC70);
  background: -webkit-linear-gradient(0deg, #4158D0, #C850C0 30%, #FFCC70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3rem;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .index-assist .index-assistInner .index-assist--header span {
    font-size: 1.8rem;
  }
}
.index-assist .index-assistInner .index-assist--header span::after {
  content: "";
  display: block;
  max-width: 350px;
  height: 3px;
  margin: 5px auto 0;
  background: linear-gradient(90deg, #4158D0, #C850C0 30%, #FFCC70);
  background: -webkit-linear-gradient(0deg, #4158D0, #C850C0 30%, #FFCC70);
}
@media screen and (max-width: 768px) {
  .index-assist .index-assistInner .index-assist--header span::after {
    max-width: 200px;
  }
}
.index-assist .index-assistInner .index-assistBoxList {
  position: relative;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .index-assist .index-assistInner .index-assistBoxList {
    display: block;
    padding: 20px 0;
  }
}
.index-assist .index-assistInner .index-assistBoxList .index-assistBox {
  position: relative;
  width: 31%;
  margin: 20px 1%;
  padding: 10px;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .index-assist .index-assistInner .index-assistBoxList .index-assistBox {
    width: 92%;
    margin: 20px auto;
  }
}
.index-assist .index-assistInner .index-assistBoxList .index-assistBox .index-assistBoxInner {
  padding: 10px;
}
.index-assist .index-assistInner .index-assistBoxList .index-assistBox .index-assistImage,
.index-assist .index-assistInner .index-assistBoxList .index-assistBox .index-assistCmnt,
.index-assist .index-assistInner .index-assistBoxList .index-assistBox h3 {
  opacity: 0;
}
.index-assist .index-assistInner .index-assistBoxList .index-assistBox.animated.assistBox1::after {
  content: "";
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, tomato, blue);
  animation: xrotate 3s linear infinite, assist-opacity 2s 1s both;
  z-index: -1;
}
.index-assist .index-assistInner .index-assistBoxList .index-assistBox.animated.assistBox1 .index-assistBoxInner {
  animation-name: bg-assistBox;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 768px) {
  .index-assist .index-assistInner .index-assistBoxList .index-assistBox.animated.assistBox1 .index-assistBoxInner {
    margin: 0 auto 0;
  }
}
.index-assist .index-assistInner .index-assistBoxList .index-assistBox.animated.assistBox2::after {
  content: "";
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, tomato, blue);
  animation: xrotate 3s linear infinite, assist-opacity 2s 1s both;
  z-index: -1;
}
.index-assist .index-assistInner .index-assistBoxList .index-assistBox.animated.assistBox2 .index-assistBoxInner {
  animation-name: bg-assistBox2;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
.index-assist .index-assistInner .index-assistBoxList .index-assistBox.animated.assistBox3::after {
  content: "";
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, tomato, blue);
  animation: xrotate 3s linear infinite, assist-opacity 2s 1s both;
  z-index: -1;
}
.index-assist .index-assistInner .index-assistBoxList .index-assistBox.animated.assistBox3 .index-assistBoxInner {
  animation-name: bg-assistBox3;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 768px) {
  .index-assist .index-assistInner .index-assistBoxList .index-assistBox.animated.assistBox3 .index-assistBoxInner {
    margin: 0 auto 0;
  }
}
.index-assist .index-assistInner .index-assistBoxList .index-assistBox.animated span.line {
  position: absolute;
  margin: 0 !important;
  transition: 1s;
}
.index-assist .index-assistInner .index-assistBoxList .index-assistBox.animated span.line:nth-of-type(1) {
  top: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: linear-gradient(135deg, tomato, blue);
  animation-name: width-border-sp;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.index-assist .index-assistInner .index-assistBoxList .index-assistBox.animated span.line:nth-of-type(2) {
  top: 0;
  right: 0;
  width: 1px;
  height: 0%;
  animation-name: height-border-sp;
  background: blue;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.index-assist .index-assistInner .index-assistBoxList .index-assistBox.animated span.line:nth-of-type(3) {
  bottom: 0;
  right: 0;
  width: 0%;
  height: 1px;
  background: linear-gradient(135deg, tomato, blue);
  animation-name: width-border-sp;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.index-assist .index-assistInner .index-assistBoxList .index-assistBox.animated span.line:nth-of-type(4) {
  bottom: 0;
  left: 0;
  width: 1px;
  height: 0%;
  background: tomato;
  animation-name: height-border-sp;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.index-assist .index-assistInner .index-assistBoxList .index-assistBox.animated .index-assistImage,
.index-assist .index-assistInner .index-assistBoxList .index-assistBox.animated .index-assistCmnt,
.index-assist .index-assistInner .index-assistBoxList .index-assistBox.animated h3 {
  animation-name: assist-opacity;
  animation-duration: 1s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}
.index-assist .index-assistInner .index-assistBoxList .index-assistBox.assistBox1 .index-assistCmnt p,
.index-assist .index-assistInner .index-assistBoxList .index-assistBox.assistBox1 h3, .index-assist .index-assistInner .index-assistBoxList .index-assistBox.assistBox2 .index-assistCmnt p,
.index-assist .index-assistInner .index-assistBoxList .index-assistBox.assistBox2 h3, .index-assist .index-assistInner .index-assistBoxList .index-assistBox.assistBox3 .index-assistCmnt p,
.index-assist .index-assistInner .index-assistBoxList .index-assistBox.assistBox3 h3 {
  color: #FFFFFF;
}
.index-assist .index-assistInner .index-assistBoxList .index-assistBox .index-assistImage {
  text-align: center;
}
.index-assist .index-assistInner .index-assistBoxList .index-assistBox .index-assistImage img {
  height: 130px;
  margin: 10px 0;
}
.index-assist .index-assistInner .index-assistBoxList .index-assistBox h3 {
  position: relative;
  font-size: 4rem;
  text-align: center;
}
.index-assist .index-assistInner .index-assistBoxList .index-assistBox .index-assistCmnt {
  transition: 0.5s;
  padding: 10px 0;
}
.index-assist .index-assistInner .index-assistBoxList .index-assistBox .index-assistCmnt p {
  font-size: 2.1rem;
}
@media screen and (max-width: 768px) {
  .index-assist .index-assistInner .index-assistBoxList .index-assistBox .index-assistCmnt p {
    font-size: 1.9rem;
  }
}
.index-assist .index-assistInner .index-assistBoxList .index-assistBox .index-assistCmnt .index-assistSapportList {
  display: none;
}

.index-assistSapport {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
  animation-name: assist-opacity;
  animation-duration: 1s;
  animation-delay: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
  transition: all 1.5s ease;
}
@media screen and (max-width: 768px) {
  .index-assistSapport {
    display: none;
    padding: 20px 0 0;
  }
}
.index-assistSapport.is-active {
  opacity: 1;
  transition: all 1.5s ease;
}
.index-assistSapport h2 {
  margin-bottom: 15px;
  background: linear-gradient(90deg, #4158D0, #C850C0 30%, #FFCC70);
  background: -webkit-linear-gradient(0deg, #4158D0, #C850C0 30%, #FFCC70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .index-assistSapport h2 {
    font-weight: 600;
    font-size: 2.4rem;
  }
}
.index-assistSapport .index-assistSapportList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  animation-duration: 3s;
}
@media screen and (max-width: 768px) {
  .index-assistSapport .index-assistSapportList {
    display: block;
    padding: 10px;
  }
}
.index-assistSapport .index-assistSapportList li {
  position: relative;
  display: block;
  width: 23.8095238095%;
  margin: 10px 0;
  padding: 5px 0;
  padding: 10px;
  border-radius: 50px;
  background: #FFFFFF;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .index-assistSapport .index-assistSapportList li {
    width: 100%;
    font-size: 2rem;
  }
}
.index-assistSapport .index-assistSapportList li::after {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  right: -2px;
  left: -2px;
  border-radius: 50px;
  background: linear-gradient(to right, #ff7a00 -24.77%, #f00679 41.3%, #d300c5 111.8%);
  z-index: -1;
}
.index-assistSapport .index-assistSapportList li span {
  display: inline-block;
  background: linear-gradient(90deg, #ff7a00 -24.77%, #f00679 41.3%, #d300c5 111.8%);
  background: -webkit-linear-gradient(0deg, #ff7a00 -24.77%, #f00679 41.3%, #d300c5 111.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.index-assistSapportBottom {
  display: none;
}
@media screen and (max-width: 768px) {
  .index-assistSapportBottom {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    animation-name: assist-opacity;
    animation-duration: 3ås;
    animation-delay: 2s;
    animation-fill-mode: forwards;
  }
}
.index-assistSapportBottom h2 {
  margin-bottom: 15px;
  color: #FFFFFF;
  font-size: 3.6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .index-assistSapportBottom h2 {
    font-weight: 600;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .index-assistSapportBottom .index-assistSapportList {
    display: block;
    padding: 0 10px;
  }
}
.index-assistSapportBottom .index-assistSapportList li {
  position: relative;
  display: block;
  width: 23.8095238095%;
  margin: 10px 0;
  padding: 5px 0;
  padding: 10px;
  border-radius: 50px;
  background: #FFFFFF;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .index-assistSapportBottom .index-assistSapportList li {
    width: 100%;
    font-size: 2rem;
  }
}
.index-assistSapportBottom .index-assistSapportList li::after {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  right: -2px;
  left: -2px;
  border-radius: 50px;
  background: linear-gradient(to right, #ff7a00 -24.77%, #f00679 41.3%, #d300c5 111.8%);
  z-index: -1;
}
.index-assistSapportBottom .index-assistSapportList li span {
  display: inline-block;
  background: linear-gradient(90deg, #ff7a00 -24.77%, #f00679 41.3%, #d300c5 111.8%);
  background: -webkit-linear-gradient(0deg, #ff7a00 -24.77%, #f00679 41.3%, #d300c5 111.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.index-assistBg-animation {
  display: none;
}
.index-assistBg-animation.is-active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100;
}
.index-assistBg-animation.is-active .index-assistBox {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 650px;
  height: 650px;
  margin: auto;
  padding: 10px;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .index-assistBg-animation.is-active .index-assistBox {
    width: 320px;
    height: 320px;
  }
}
.index-assistBg-animation.is-active .index-assistBox .index-assistBoxInner {
  width: 100%;
  height: 100%;
  padding: 10px;
  opacity: 0;
}
.index-assistBg-animation.is-active .index-assistBox .index-assistImage img {
  height: 300px;
}
@media screen and (max-width: 768px) {
  .index-assistBg-animation.is-active .index-assistBox .index-assistImage img {
    height: 120px;
    margin-bottom: 10px;
  }
}
.index-assistBg-animation.is-active .index-assistBox.is-active span.line {
  position: absolute;
  margin: 0 !important;
  transition: 1s;
}
.index-assistBg-animation.is-active .index-assistBox.is-active span.line:nth-of-type(1) {
  top: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: linear-gradient(135deg, tomato, blue);
  animation-name: width-border-sp;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.index-assistBg-animation.is-active .index-assistBox.is-active span.line:nth-of-type(2) {
  top: 0;
  right: 0;
  width: 1px;
  height: 0%;
  animation-name: height-border-sp;
  background: blue;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.index-assistBg-animation.is-active .index-assistBox.is-active span.line:nth-of-type(3) {
  bottom: 0;
  right: 0;
  width: 0%;
  height: 1px;
  background: linear-gradient(135deg, tomato, blue);
  animation-name: width-border-sp;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.index-assistBg-animation.is-active .index-assistBox.is-active span.line:nth-of-type(4) {
  bottom: 0;
  left: 0;
  width: 1px;
  height: 0%;
  background: tomato;
  animation-name: height-border-sp;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.index-assistBg-animation.is-active .index-assistBox .index-assistImage,
.index-assistBg-animation.is-active .index-assistBox .index-assistCmnt,
.index-assistBg-animation.is-active .index-assistBox h3 {
  animation-name: assist-opacity;
  animation-duration: 1s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}
.index-assistBg-animation.is-active .index-assistBox .index-assistImage {
  text-align: center;
}
.index-assistBg-animation.is-active .index-assistBox h3 {
  position: relative;
  margin-bottom: 20px;
  font-size: 8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .index-assistBg-animation.is-active .index-assistBox h3 {
    font-size: 4rem;
  }
}
.index-assistBg-animation.is-active .index-assistBox .index-assistCmnt {
  transition: 0.5s;
}
.index-assistBg-animation.is-active .index-assistBox .index-assistCmnt p {
  font-size: 3.3rem;
}
@media screen and (max-width: 768px) {
  .index-assistBg-animation.is-active .index-assistBox .index-assistCmnt p {
    font-size: 1.7rem;
  }
}
.index-assistBg-animation.is-active .index-assistBox .index-assistCmnt .index-assistSapportList {
  display: none;
}
.index-assistBg-animation.is-active .index-assistBox {
  overflow: hidden;
}
.index-assistBg-animation.is-active .index-assistBox.assistBox1.is-active::after {
  content: "";
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, tomato, blue);
  animation: xrotate 2s linear infinite, assist-opacity 2s 2s both;
  opacity: 0;
  z-index: -1;
}
.index-assistBg-animation.is-active .index-assistBox.assistBox1.is-active .index-assistBoxInner {
  opacity: 0;
  animation-name: assist-opacity-assist1;
  animation-duration: 4s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
.index-assistBg-animation.is-active .index-assistBox.assistBox1.is-active .index-assistBoxInner span.line:nth-of-type(1),
.index-assistBg-animation.is-active .index-assistBox.assistBox1.is-active .index-assistBoxInner span.line:nth-of-type(2),
.index-assistBg-animation.is-active .index-assistBox.assistBox1.is-active .index-assistBoxInner span.line:nth-of-type(3),
.index-assistBg-animation.is-active .index-assistBox.assistBox1.is-active .index-assistBoxInner span.line:nth-of-type(4) {
  animation-duration: 1.5s;
  animation-delay: 1s;
}
.index-assistBg-animation.is-active .index-assistBox.assistBox1.is-active .index-assistBoxInner h3,
.index-assistBg-animation.is-active .index-assistBox.assistBox1.is-active .index-assistBoxInner .index-assistImage,
.index-assistBg-animation.is-active .index-assistBox.assistBox1.is-active .index-assistBoxInner .index-assistCmnt {
  opacity: 0;
  animation-name: assist-opacity;
  animation-duration: 1s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}
.index-assistBg-animation.is-active .index-assistBox.assistBox1.is-active .index-assistBoxInner h3,
.index-assistBg-animation.is-active .index-assistBox.assistBox1.is-active .index-assistBoxInner .index-assistCmnt p {
  color: #FFFFFF;
}
.index-assistBg-animation.is-active .index-assistBox.assistBox2.is-active::after {
  content: "";
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, tomato, blue);
  animation: xrotate 2s linear infinite, assist-opacity 2s 2s both;
  opacity: 0;
  z-index: -1;
}
.index-assistBg-animation.is-active .index-assistBox.assistBox2.is-active .index-assistBoxInner {
  opacity: 0;
  animation-name: assist-opacity-assist2;
  animation-duration: 4s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
.index-assistBg-animation.is-active .index-assistBox.assistBox2.is-active .index-assistBoxInner span.line:nth-of-type(1),
.index-assistBg-animation.is-active .index-assistBox.assistBox2.is-active .index-assistBoxInner span.line:nth-of-type(2),
.index-assistBg-animation.is-active .index-assistBox.assistBox2.is-active .index-assistBoxInner span.line:nth-of-type(3),
.index-assistBg-animation.is-active .index-assistBox.assistBox2.is-active .index-assistBoxInner span.line:nth-of-type(4) {
  animation-duration: 1.5s;
  animation-delay: 1.5s;
}
.index-assistBg-animation.is-active .index-assistBox.assistBox2.is-active .index-assistBoxInner h3,
.index-assistBg-animation.is-active .index-assistBox.assistBox2.is-active .index-assistBoxInner .index-assistImage,
.index-assistBg-animation.is-active .index-assistBox.assistBox2.is-active .index-assistBoxInner .index-assistCmnt {
  opacity: 0;
  animation-name: assist-opacity;
  animation-duration: 1s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}
.index-assistBg-animation.is-active .index-assistBox.assistBox2.is-active .index-assistBoxInner h3,
.index-assistBg-animation.is-active .index-assistBox.assistBox2.is-active .index-assistBoxInner .index-assistCmnt p {
  color: #FFFFFF;
}
.index-assistBg-animation.is-active .index-assistBox.assistBox3.is-active::after {
  content: "";
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, tomato, blue);
  animation: xrotate 2s linear infinite, assist-opacity 2s 2s both;
  opacity: 0;
  z-index: -1;
}
.index-assistBg-animation.is-active .index-assistBox.assistBox3.is-active .index-assistBoxInner {
  opacity: 0;
  animation-name: assist-opacity-assist3;
  animation-duration: 4s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
.index-assistBg-animation.is-active .index-assistBox.assistBox3.is-active .index-assistBoxInner span.line:nth-of-type(1),
.index-assistBg-animation.is-active .index-assistBox.assistBox3.is-active .index-assistBoxInner span.line:nth-of-type(2),
.index-assistBg-animation.is-active .index-assistBox.assistBox3.is-active .index-assistBoxInner span.line:nth-of-type(3),
.index-assistBg-animation.is-active .index-assistBox.assistBox3.is-active .index-assistBoxInner span.line:nth-of-type(4) {
  animation-duration: 1.5s;
  animation-delay: 1.5s;
}
.index-assistBg-animation.is-active .index-assistBox.assistBox3.is-active .index-assistBoxInner h3,
.index-assistBg-animation.is-active .index-assistBox.assistBox3.is-active .index-assistBoxInner .index-assistImage,
.index-assistBg-animation.is-active .index-assistBox.assistBox3.is-active .index-assistBoxInner .index-assistCmnt {
  opacity: 0;
  animation-name: assist-opacity;
  animation-duration: 1s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}
.index-assistBg-animation.is-active .index-assistBox.assistBox3.is-active .index-assistBoxInner h3,
.index-assistBg-animation.is-active .index-assistBox.assistBox3.is-active .index-assistBoxInner .index-assistCmnt p {
  color: #FFFFFF;
}
.index-assistBg-animation.is-active .assistNextBtn {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 13%;
  opacity: 0;
  z-index: 1001;
}
@media screen and (max-width: 768px) {
  .index-assistBg-animation.is-active .assistNextBtn {
    bottom: 15%;
  }
}
.index-assistBg-animation.is-active .assistNextBtn.is-active {
  display: block;
  animation-name: assist-opacity;
  animation-duration: 1s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}
.index-assistBg-animation.is-active .assistNextBtn input {
  display: block;
  margin: 0 auto;
  padding: 5px 50px;
  border-radius: 5px;
  background: #D04560;
  color: #FFFFFF;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}
.index-assistBg-animation.is-active .assistCloseBtn {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 13%;
  opacity: 0;
  z-index: 1001;
}
@media screen and (max-width: 768px) {
  .index-assistBg-animation.is-active .assistCloseBtn {
    bottom: 15%;
  }
}
.index-assistBg-animation.is-active .assistCloseBtn.is-active {
  display: block;
  animation-name: assist-opacity;
  animation-duration: 1s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}
.index-assistBg-animation.is-active .assistCloseBtn input {
  display: block;
  margin: 0 auto;
  padding: 5px 50px;
  border-radius: 5px;
  background: #D04560;
  color: #FFFFFF;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}

.index-campaign {
  position: relative;
  display: block;
  max-width: 1200px;
  margin: 60px auto;
  padding: 10px 30px;
  background: linear-gradient(135deg, tomato, blue);
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 5rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .index-campaign {
    max-width: 90%;
    padding: 10px;
    font-size: 2rem;
    line-height: 1.2;
  }
}
.index-campaign span {
  display: block;
  margin: 0;
  font-size: 1.2rem;
  font-weight: normal;
  text-align: left;
}
.index-campaign.animated {
  animation-duration: 1.5s; /* アニメーションの時間 */
  animation-delay: 1s; /* アニメーション開始時間 */
  animation-iteration-count: 4; /* アニメーションの繰り返し回数 */
}

.index-faqText {
  position: relative;
  max-width: 1200px;
  margin: 100px auto 100px;
  padding: 20px 20px 60px;
  z-index: 10;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .index-faqText {
    margin: 80px 15px;
    padding: 20px;
  }
}
.index-faqText h2 {
  margin: -70px auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(227deg, #B900B4, #F50000);
  -webkit-background-clip: text;
  color: transparent;
  -webkit-box-decoration-break: clone;
  font-size: 7rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .index-faqText h2 {
    margin: -40px auto 20px;
    font-size: 3rem;
  }
}
.index-faqText h2 img {
  max-width: 380px;
  margin: 0 20px 0 0;
}
@media screen and (max-width: 768px) {
  .index-faqText h2 img {
    width: 150px;
    margin: 0 5px 0 0;
  }
}
.index-faqText .index-faqUl li {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 960px;
  margin: 15px auto;
  padding: 10px 0;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .index-faqText .index-faqUl li {
    margin: 0 auto 15px;
    font-size: 1.7rem;
    margin: 0px 10px;
    line-height: 1.5;
  }
}
.index-faqText .index-faqUl li .faqNum {
  display: flex;
  align-items: center;
  margin-right: 10px;
  background: linear-gradient(0deg, #3f328d 60%, #573fdd 100%);
  background: -webkit-linear-gradient(0deg, #3f328d 60%, #573fdd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 5rem;
}
@media screen and (max-width: 768px) {
  .index-faqText .index-faqUl li .faqNum {
    font-size: 3rem;
  }
}
.index-faqText .index-faqUl li .faqNum::before {
  content: "";
  width: 50px;
  height: 56px;
  margin-right: 5px;
  background: url(../images/logoIcon.png) no-repeat center;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .index-faqText .index-faqUl li .faqNum::before {
    width: 25px;
    height: 31px;
  }
}
.index-faqText .index-faqUl li .faqText {
  background: linear-gradient(0deg, #573fdd 0%, #ff3636 50%, #B900B4 100%);
  background: -webkit-linear-gradient(0deg, #573fdd 0%, #ff3636 50%, #B900B4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.index-faqText .faqLine1 {
  position: absolute;
  top: 0;
  left: 1000px;
  width: 0px;
  height: 4px;
  background: #d99900;
}
@media screen and (max-width: 768px) {
  .index-faqText .faqLine1 {
    left: 91%;
  }
}
.index-faqText .faqLine2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 0%;
  background: rgb(217, 153, 0);
  background: linear-gradient(180deg, rgb(217, 153, 0) 0%, rgb(236, 205, 0) 100%);
}
.index-faqText .faqLine3 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 4px;
  background: #eccd00;
}
.index-faqText .faqLine4 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 0%;
  background: rgb(217, 153, 0);
  background: linear-gradient(180deg, rgb(217, 153, 0) 0%, rgb(236, 205, 0) 100%);
}
.index-faqText .faqLine5 {
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 4px;
  background: #d99900;
}
.index-faqText.animated .faqLine1 {
  width: 200px;
  transition: all 0.4s ease;
}
@media screen and (max-width: 768px) {
  .index-faqText.animated .faqLine1 {
    width: 30px;
  }
}
.index-faqText.animated .faqLine2 {
  transition: all 0.4s ease;
  transition-delay: 0.4s;
  height: 100%;
}
.index-faqText.animated .faqLine3 {
  transition: all 0.4s ease;
  transition-delay: 0.8s;
  width: 100%;
}
.index-faqText.animated .faqLine4 {
  transition: all 0.4s ease;
  transition-delay: 1.2s;
  height: 100%;
}
.index-faqText.animated .faqLine5 {
  transition: all 0.4s ease;
  transition-delay: 1.6s;
  width: 200px;
}
@media screen and (max-width: 768px) {
  .index-faqText.animated .faqLine5 {
    width: 30px;
  }
}

.index-flow {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 100px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .index-flow {
    margin-bottom: 40px;
  }
}
.index-flow .index-flow--heading h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 80px;
  background: linear-gradient(227deg, #B900B4, #F50000);
  -webkit-background-clip: text;
  color: transparent;
  -webkit-box-decoration-break: clone;
  font-size: 6rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .index-flow .index-flow--heading h2 {
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 2.8rem;
  }
}
.index-flow .index-flow--heading h2 img {
  margin: 0 20px 0 0;
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .index-flow .index-flow--heading h2 img {
    display: block;
    margin: 0 10px 10px 0;
    width: 200px;
  }
}
.index-flow .index-flowDl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .index-flow .index-flowDl {
    display: block;
  }
}
.index-flow .index-flowDl dt {
  width: 18%;
  margin-bottom: 50px;
  background: linear-gradient(135deg, tomato 0%, blue 100%);
  background: -webkit-linear-gradient(-45deg, tomato 0%, blue 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .index-flow .index-flowDl dt {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 5px 0;
    background: linear-gradient(135deg, tomato 0%, blue 100%);
    background: -webkit-linear-gradient(-45deg, tomato 0%, blue 100%);
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: inherit;
    color: #FFFFFF;
    font-size: 2.5rem;
    text-align: center;
  }
}
.index-flow .index-flowDl dd {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 82%;
  margin-bottom: 50px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 2;
  z-index: 1;
}
.index-flow .index-flowDl dd .index-flowDl-ddInner {
  display: block;
  width: 100%;
  padding: 10px 20px;
  border-radius: 5px;
  background: #FFFFFF;
}
.index-flow .index-flowDl dd::after {
  display: block;
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  border-radius: 5px;
  background: rgb(178, 224, 104);
  background: linear-gradient(37deg, rgb(178, 224, 104) 0%, rgb(7, 172, 7) 100%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .index-flow .index-flowDl dd {
    display: block;
    width: 95%;
    margin: 0 auto 20px;
    font-size: 1.6rem;
  }
}

.index-faq {
  position: relative;
  background: linear-gradient(-45deg, #ffd3c6, #fff0f6, #a5ddf1, #a0f8e3);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  padding: 50px 0;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .index-faq {
    padding: 20px;
  }
}
.index-faq .index-faq--heading {
  position: relative;
  max-width: 330px;
  margin: 0 auto;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .index-faq .index-faq--heading {
    max-width: 230px;
  }
}
.index-faq .index-faq--heading.animated::before {
  content: "Q";
  position: absolute;
  top: -23px;
  left: 25px;
  color: #0291ce;
  font-size: 60rem;
  font-family: "Aldrich", sans-serif;
  font-weight: normal;
  animation-name: zoom-textLeft;
  animation-duration: 3s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.index-faq .index-faq--heading.animated h2 {
  opacity: 0;
  animation-name: assist-opacity;
  animation-duration: 1s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}
.index-faq h2 {
  margin: 0 0 40px;
  font-size: 7rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .index-faq h2 {
    margin-bottom: 20px;
    font-size: 5rem;
  }
}
.index-faq h2:first-letter {
  color: #0291ce;
}
.index-faq h2 span {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
}
.index-faq .index-faqList {
  max-width: 775px;
  margin: 0 auto;
}
.index-faq .index-faqList.animated {
  opacity: 0;
  animation-name: assist-opacity;
  animation-duration: 1s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}
.index-faq .index-faqList .index-faqBox {
  position: relative;
  margin-bottom: 40px;
  padding: 40px;
  background: #F9F9F9;
  border-radius: 10px;
  border: solid 1px #D9D9D9;
  font-size: 1.8rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .index-faq .index-faqList .index-faqBox {
    margin-bottom: 15px;
    padding: 15px;
  }
}
.index-faq .index-faqList .index-faqBox:last-of-type {
  margin-bottom: 0;
}
.index-faq .index-faqList .index-faqBox dt, .index-faq .index-faqList .index-faqBox dd {
  position: relative;
  padding-left: 40px;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .index-faq .index-faqList .index-faqBox dt, .index-faq .index-faqList .index-faqBox dd {
    padding-left: 30px;
    font-size: 1.6rem;
  }
}
.index-faq .index-faqList .index-faqBox dt::before, .index-faq .index-faqList .index-faqBox dd::before {
  position: absolute;
  left: 0;
  font-family: "Aldrich", sans-serif;
  font-weight: normal;
  font-size: 3.5rem;
}
@media screen and (max-width: 768px) {
  .index-faq .index-faqList .index-faqBox dt::before, .index-faq .index-faqList .index-faqBox dd::before {
    font-size: 2.7rem;
  }
}
.index-faq .index-faqList .index-faqBox dt {
  position: relative;
  padding-bottom: 0;
  transition: all 1.5s ease;
  cursor: pointer;
  z-index: 10;
}
.index-faq .index-faqList .index-faqBox dt.is-active {
  transition: all 1.5s ease;
  padding-bottom: 20px;
}
.index-faq .index-faqList .index-faqBox dt::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "▼";
  color: #333333;
}
.index-faq .index-faqList .index-faqBox dt.open::after {
  content: "▲";
}
@media screen and (max-width: 768px) {
  .index-faq .index-faqList .index-faqBox dt {
    padding-top: 5px;
  }
}
.index-faq .index-faqList .index-faqBox dt::before {
  content: "Q";
  color: #45A6D0;
}
@media screen and (max-width: 768px) {
  .index-faq .index-faqList .index-faqBox dt::before {
    top: 3px;
  }
}
.index-faq .index-faqList .index-faqBox dd {
  display: none;
  overflow: hidden;
  margin-top: 20px;
  padding-top: 20px;
  border-top: solid 1px #D9D9D9;
}
.index-faq .index-faqList .index-faqBox dd::before {
  content: "A";
  color: #FF3D00;
}
.index-faq .index-faqList .index-faqBox .index-faqBox-bgLines {
  display: block !important;
  border: none;
  position: absolute;
  left: -150px;
  top: -150px;
  width: 1000px;
  height: 1000px;
  z-index: 1;
  opacity: 0.4;
  transform: rotate(30deg);
  opacity: 0;
  animation-name: opacity-loop;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}
@media screen and (max-width: 768px) {
  .index-faq .index-faqList .index-faqBox .index-faqBox-bgLines {
    width: 500px;
  }
}
.index-faq .index-faqList .index-faqBox .index-faqBox-bgLines span {
  position: absolute;
  width: 77px;
  background: linear-gradient(135deg, tomato, blue);
  opacity: 0.4;
}
@media screen and (max-width: 768px) {
  .index-faq .index-faqList .index-faqBox .index-faqBox-bgLines span {
    width: 40px;
  }
}
.index-faq .index-faqList .index-faqBox .index-faqBox-bgLines span:nth-child(1) {
  left: 5%;
  top: -70%;
  animation: rain-anim 7s infinite;
  height: 400px;
}
.index-faq .index-faqList .index-faqBox .index-faqBox-bgLines span:nth-child(2) {
  left: 10%;
  top: -65%;
  animation: rain-anim 4s infinite;
  height: 300px;
}
.index-faq .index-faqList .index-faqBox .index-faqBox-bgLines span:nth-child(3) {
  left: 15%;
  top: -60%;
  animation: rain-anim 5s infinite;
  height: 500px;
}
.index-faq .index-faqList .index-faqBox .index-faqBox-bgLines span:nth-child(4) {
  left: 20%;
  top: -55%;
  animation: rain-anim 6s infinite;
  height: 600px;
}
.index-faq .index-faqList .index-faqBox .index-faqBox-bgLines span:nth-child(5) {
  left: 25%;
  top: -50%;
  animation: rain-anim 3s infinite;
  height: 700px;
}
.index-faq .index-faqList .index-faqBox .index-faqBox-bgLines span:nth-child(6) {
  left: 30%;
  top: -50%;
  animation: rain-anim 4s infinite;
  height: 300px;
}
.index-faq .index-faqList .index-faqBox .index-faqBox-bgLines span:nth-child(7) {
  left: 35%;
  top: -55%;
  animation: rain-anim 7s infinite;
  height: 600px;
}
.index-faq .index-faqList .index-faqBox .index-faqBox-bgLines span:nth-child(8) {
  left: 40%;
  top: -60%;
  animation: rain-anim 6s infinite;
  height: 800px;
}
.index-faq .index-faqList .index-faqBox .index-faqBox-bgLines span:nth-child(9) {
  left: 45%;
  top: -65%;
  animation: rain-anim 3s infinite;
  height: 350px;
}
.index-faq .index-faqList .index-faqBox .index-faqBox-bgLines span:nth-child(10) {
  left: 50%;
  top: -70%;
  animation: rain-anim 5s infinite;
  height: 500px;
}
.index-faq .index-faqList .index-faqBox .index-faqBox-bgLines span:nth-child(11) {
  left: 55%;
  top: -50%;
  animation: rain-anim 7s infinite;
  height: 700px;
}
.index-faq .index-faqList .index-faqBox .index-faqBox-bgLines span:nth-child(12) {
  left: 60%;
  top: -55%;
  animation: rain-anim 5s infinite;
  height: 350px;
}
.index-faq .index-faqList .index-faqBox .index-faqBox-bgLines span:nth-child(13) {
  left: 65%;
  top: -60%;
  animation: rain-anim 3s infinite;
  height: 500px;
}
.index-faq .index-faqList .index-faqBox .index-faqBox-bgLines span:nth-child(14) {
  left: 70%;
  top: -65%;
  animation: rain-anim 4s infinite;
  height: 650px;
}
.index-faq .index-faqList .index-faqBox .index-faqBox-bgLines span:nth-child(15) {
  left: 75%;
  top: -70%;
  animation: rain-anim 6s infinite;
  height: 300px;
}

/*
.hero-slickItem {
  position: relative;
  width: 550px;
  height: 550px;
  margin: 0 40px;
  padding: 5px;
  transition: 1s; // スライド透過率と拡大のアニメーション時間を0.5秒に設定
  @include g.mq(md, max) {
    width: 270px;
    height: 270px;
  }
  &::after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background: linear-gradient(135deg, tomato, blue);
    transform: scale(1); // スライドのサイズを80%にする
    transition: 1s; // スライド透過率と拡大のアニメーション時間を0.5秒に設定
    animation:xrotate 2s linear infinite;
    border-radius: 50%;
    opacity: 1;
    z-index: -1;
  }
  img {
    height: 100%;
    border-top: solid 0px #FFFFFF;
    border-bottom: solid 0px #FFFFFF;
    border-right: solid 0px #FFFFFF;
    border-left: solid 0px #FFFFFF;
    object-fit: cover;
    border-radius: 50%;
  }
  &.slick-center{
    padding: 10px;
    opacity: 1; // 中央のスライドは透過しない
    transform: scale(1); // 中央のスライドは小さくしない
    transition: 1.5s; // スライド透過率と拡大のアニメーション時間を0.5秒に設定
  }
}
*/
@keyframes gradient {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 0%;
  }
}
@keyframes xrotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes about-cover {
  100% {
    transform: translateX(100%);
  }
}
@keyframes width-border {
  0% {
    width: 0%;
    height: 20px;
  }
  100% {
    width: 100%;
    height: 20px;
  }
}
@keyframes width-border-sp {
  0% {
    width: 0%;
    height: 10px;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  90% {
    width: 100%;
    height: 10px;
    opacity: 1;
  }
  100% {
    width: 100%;
    height: 10px;
    opacity: 0;
  }
}
@keyframes height-border {
  0% {
    height: 0%;
    width: 20px;
  }
  100% {
    height: 100%;
    width: 20px;
  }
}
@keyframes height-border-sp {
  0% {
    height: 0%;
    width: 10px;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  90% {
    height: 100%;
    width: 10px;
    opacity: 1;
  }
  100% {
    height: 100%;
    width: 10px;
    opacity: 0;
  }
}
@keyframes bg-assist {
  0% {
    background: #F6F6F6;
  }
  100% {
    background: #ff9b9b;
  }
}
@keyframes bg-assistBox {
  0% {
    background: none;
  }
  100% {
    background: rgb(252, 3, 25);
    background: linear-gradient(37deg, rgb(252, 3, 25) 0%, rgb(188, 20, 179) 100%);
  }
}
@keyframes bg-assistBox2 {
  0% {
    background: none;
  }
  100% {
    background: rgb(16, 183, 255);
    background: linear-gradient(37deg, rgb(16, 183, 255) 0%, rgb(22, 14, 204) 100%);
  }
}
@keyframes bg-assistBox3 {
  0% {
    background: none;
  }
  100% {
    background: rgb(17, 190, 239);
    background: linear-gradient(37deg, rgb(17, 190, 239) 0%, rgb(37, 221, 37) 100%);
  }
}
@keyframes assist-opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opacity-loop {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes opacity-heroText {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes opacity-heroTextLast {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoom-textLeft {
  0% {
    top: -43px;
    left: 25px;
    opacity: 1;
    font-size: 60rem;
    font-weight: 600;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: -5px;
    left: 0px;
    opacity: 0;
    font-size: 7rem;
    font-weight: 400;
  }
}
@keyframes assist-opacity-return {
  0% {
    opacity: 0;
    background: none;
  }
  10% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    background: rgb(252, 3, 25);
    background: linear-gradient(37deg, rgb(252, 3, 25) 0%, rgb(188, 20, 179) 100%);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes assist-opacity-return2 {
  0% {
    opacity: 0;
    background: none;
  }
  10% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    background: rgb(16, 183, 255);
    background: linear-gradient(37deg, rgb(16, 183, 255) 0%, rgb(22, 14, 204) 100%);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes assist-opacity-return3 {
  0% {
    opacity: 0;
    background: none;
  }
  10% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    background: rgb(17, 190, 239);
    background: linear-gradient(37deg, rgb(17, 190, 239) 0%, rgb(37, 221, 37) 100%);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes assist-opacity-assist1 {
  0% {
    opacity: 0;
    background: none;
  }
  10% {
    opacity: 1;
    background: none;
  }
  70% {
    opacity: 1;
    background: rgb(252, 3, 25);
    background: linear-gradient(37deg, rgb(252, 3, 25) 0%, rgb(188, 20, 179) 100%);
  }
  100% {
    opacity: 1;
    background: rgb(252, 3, 25);
    background: linear-gradient(37deg, rgb(252, 3, 25) 0%, rgb(188, 20, 179) 100%);
  }
}
@keyframes assist-opacity-assist2 {
  0% {
    opacity: 0;
    background: none;
  }
  10% {
    opacity: 1;
    background: none;
  }
  70% {
    opacity: 1;
    background: rgb(16, 183, 255);
    background: linear-gradient(37deg, rgb(16, 183, 255) 0%, rgb(22, 14, 204) 100%);
  }
  100% {
    opacity: 1;
    background: rgb(16, 183, 255);
    background: linear-gradient(37deg, rgb(16, 183, 255) 0%, rgb(22, 14, 204) 100%);
  }
}
@keyframes assist-opacity-assist3 {
  0% {
    opacity: 0;
    background: none;
  }
  10% {
    opacity: 1;
    background: none;
  }
  70% {
    opacity: 1;
    background: rgb(17, 190, 239);
    background: linear-gradient(37deg, rgb(17, 190, 239) 0%, rgb(37, 221, 37) 100%);
  }
  100% {
    opacity: 1;
    background: rgb(17, 190, 239);
    background: linear-gradient(37deg, rgb(17, 190, 239) 0%, rgb(37, 221, 37) 100%);
  }
}
@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.about {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .about {
    padding: 40px 0;
    display: block;
  }
}
.about .aboutInner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
}
@media screen and (max-width: 768px) {
  .about .aboutInner {
    display: block;
  }
}
.about .aboutInner .about--heading {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .about .aboutInner .about--heading {
    width: 100%;
  }
}
.about .aboutInner .about--heading h2 {
  display: flex;
  align-items: center;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .about .aboutInner .about--heading h2 {
    justify-content: center;
    font-size: 2.4rem;
  }
}
.about .aboutInner .about--heading h2 span {
  margin-right: 5px;
  background: linear-gradient(227deg, #B900B4, #F50000);
  -webkit-background-clip: text;
  color: transparent;
  -webkit-box-decoration-break: clone;
  font-weight: normal;
  font-size: 3rem;
  font-family: "Aldrich", sans-serif;
}
.about .aboutInner .aboutInfo {
  border-left: solid 1px #000000;
  width: calc(100% - 200px);
  padding: 40px 0 40px 80px;
}
@media screen and (max-width: 768px) {
  .about .aboutInner .aboutInfo {
    width: auto;
    padding: 20px;
    border: none;
  }
}
.about .aboutInner .aboutInfo dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .about .aboutInner .aboutInfo dl {
    display: block;
  }
}
.about .aboutInner .aboutInfo dl dt {
  width: 30%;
  margin-bottom: 50px;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .about .aboutInner .aboutInfo dl dt {
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
}
.about .aboutInner .aboutInfo dl dt:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .about .aboutInner .aboutInfo dl dt:last-of-type {
    margin-bottom: 10px;
  }
}
.about .aboutInner .aboutInfo dl dd {
  width: 70%;
  margin-bottom: 50px;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .about .aboutInner .aboutInfo dl dd {
    width: 100%;
    padding: 0 0 20px;
    margin-bottom: 20px;
    border-bottom: solid 1px #CCCCCC;
    font-size: 1.4rem;
  }
}
.about .aboutInner .aboutInfo dl dd:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .about .aboutInner .aboutInfo dl dd:last-of-type {
    margin-bottom: 10px;
  }
}

.consultation {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .consultation {
    padding: 40px 0;
    display: block;
  }
}
.consultation .consultationInner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .consultation .consultationInner {
    display: block;
  }
}
.consultation .consultationInner .consultation--heading {
  width: 300px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .consultation .consultationInner .consultation--heading {
    width: 100%;
  }
}
.consultation .consultationInner .consultation--heading h2 {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .consultation .consultationInner .consultation--heading h2 {
    justify-content: center;
    font-size: 2.4rem;
  }
}
.consultation .consultationInner .consultationInfo {
  margin: 20px auto;
}
.consultation .consultationInner .consultationInfo .lineQr {
  margin-bottom: 20px;
}
.consultation .consultationInner .consultationInfo .lineText {
  margin: 20px 0;
  padding: 0 20px;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .consultation .consultationInner .consultationInfo .lineText {
    font-size: 1.4rem;
  }
}

.contact {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 40px 0;
    display: block;
  }
}
.contact .contactInner {
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contact .contactInner {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .contact .contactInner .contact--heading {
    width: 100%;
  }
}
.contact .contactInner .contact--heading h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .contact .contactInner .contact--heading h2 {
    justify-content: center;
    font-size: 2.4rem;
  }
}
.contact .contactInner .contact--heading h2 span {
  margin-right: 5px;
  background: linear-gradient(227deg, #B900B4, #F50000);
  -webkit-background-clip: text;
  color: transparent;
  -webkit-box-decoration-break: clone;
  font-weight: normal;
  font-size: 3rem;
  font-family: "Aldrich", sans-serif;
}
.contact .contactInner .contactForm .contactText {
  display: block;
  margin-bottom: 30px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 10px;
  border: solid 1px #CCCCCC;
  font-size: 1.6rem;
  line-height: 2;
}
.contact .contactInner .contactForm .contactText .contactMessageText {
  margin-bottom: 20px;
  color: #FF0000;
  font-weight: bold;
  font-size: 1.6rem;
}
.contact .contactInner .contactForm .contactText .contactCheckText {
  margin-top: 10px;
  padding-top: 10px;
  border-top: solid 1px #CCCCCC;
  color: #FF0000;
  font-size: 1.4rem;
}
.contact .contactInner .contactForm .contactFotmList .contactFotmListBlock {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 10px;
  border: solid 1px #CCCCCC;
}
.contact .contactInner .contactForm .contactFotmList .contactFotmListBlock dt {
  width: 30%;
  padding: 10px;
  font-size: 1.6rem;
}
.contact .contactInner .contactForm .contactFotmList .contactFotmListBlock dt span {
  color: #FF0000;
}
.contact .contactInner .contactForm .contactFotmList .contactFotmListBlock dd {
  width: 70%;
}
.contact .contactInner .contactForm .contactFotmList .contactFotmListBlock dd input {
  display: block;
  width: 100%;
  padding: 10px;
  border: solid 1px #CCCCCC;
  font-size: 1.4rem;
}
.contact .contactInner .contactForm .contactFotmList .contactFotmListBlock dd textarea {
  display: block;
  width: 100%;
  min-height: 500px;
  padding: 10px;
  border: solid 1px #CCCCCC;
  font-size: 1.4rem;
}
.contact .contactInner .contactForm .contactFotmList .contactSubmit {
  display: block;
  width: 200px;
  margin: 30px auto 0;
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 1.6rem;
  background: linear-gradient(90deg, #ff7a00 -24.77%, #f00679 41.3%, #d300c5 111.8%);
  background: -webkit-linear-gradient(0deg, #ff7a00 -24.77%, #f00679 41.3%, #d300c5 111.8%);
  color: #FFFFFF;
  text-align: center;
}