@charset "UTF-8";
/********************
KV
********************/
#kv {
  height: 100vh;
  background-image: url(../images/kv-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
#kv .is-active span {
  animation: titleAnim 1s ease-out forwards;
}
#kv .kv-title {
  position: absolute;
  font-size: 15.277vw;
  line-height: 1;
}
#kv .kv-title.kv-title--left .row01 span:nth-child(1) {
  animation-delay: 0s;
}
#kv .kv-title.kv-title--left .row01 span:nth-child(2) {
  animation-delay: 0.075s;
}
#kv .kv-title.kv-title--left .row02 span:nth-child(1) {
  animation-delay: 0.15s;
}
#kv .kv-title.kv-title--left .row02 span:nth-child(2) {
  animation-delay: 0.225s;
}
#kv .kv-title.kv-title--left .row02 span:nth-child(3) {
  animation-delay: 0.3s;
}
#kv .kv-title.kv-title--right .row01 span:nth-child(1) {
  animation-delay: 0s;
}
#kv .kv-title.kv-title--right .row01 span:nth-child(2) {
  animation-delay: 0.075s;
}
#kv .kv-title.kv-title--right .row01 span:nth-child(3) {
  font-size: 6.944vw;
  animation-delay: 0.15s;
}
#kv .kv-title.kv-title--right .row02 span:nth-child(1) {
  animation-delay: 0.225s;
}
#kv .kv-title.kv-title--right .row02 span:nth-child(2) {
  animation-delay: 0.3s;
}
#kv .kv-title .title-text span {
  opacity: 0;
  display: inline-block;
  transform: scale(2);
  font-family: "Dela Gothic One", sans-serif;
  -webkit-text-stroke-width: 5px;
  -webkit-text-stroke-color: var(--black);
  text-shadow: 4px 5px 0px var(--black);
}
@keyframes titleAnim {
  0% {
    transform: perspective(7em) rotateX(90deg) scale(3.7);
    opacity: 0;
  }
  10% {
    transform: perspective(7em) rotateX(0) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: perspective(7em) rotateX(0) scale(1);
    opacity: 1;
  }
}
#kv .kv-title--left {
  top: 15%;
  left: 5%;
}
#kv .kv-title--left .row01 {
  font-size: 13.277vw;
  color: var(--orange);
}
#kv .kv-title--left .row02 {
  font-size: 4.944vw;
  color: #FFCE00;
}
#kv .kv-title--right {
  bottom: 15%;
  right: 3%;
}
#kv .kv-title--right .row01 {
  font-size: 13.277vw;
  color: var(--blue);
}
#kv .kv-title--right .row02 {
  text-align: end;
  font-size: 4.944vw;
  color: #FFCE00;
}
#kv .subtitle {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  width: 10.8vw;
  height: 45vw;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}
#kv .kv-girl {
  width: 60vw;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  bottom: 0;
  left: 55%;
  transform: translateX(-50%);
}
#kv .cta {
  width: 30vw;
  position: absolute;
  bottom: 5vw;
  left: 5.5vw;
  opacity: 0;
  transition: all 1s;
}
#kv .cta.is-show {
  opacity: 1;
}
#kv .cta img {
  width: 100%;
}
@keyframes sequence-bounce {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translateY(-3px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 767px) {
  #kv {
    overflow: hidden;
  }
  #kv .kv-title {
    display: none;
  }
  #kv .kv-girl {
    max-width: none;
    width: 210vw;
    left: 75%;
  }
  #kv .cta {
    width: 81.5vw;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
  }
  #kv .subtitle {
    width: 32.7vw;
    height: 124.5vw;
    top: 10%;
    bottom: auto;
  }
}
/********************
news
********************/
#news {
  position: relative;
  margin-top: -50px;
  margin-bottom: 150px;
  opacity: 0;
}
#news.is-show {
  opacity: 1;
  transform: translateY(0);
}
#news .heading-wrap {
  position: absolute;
  top: -11%;
  left: 5%;
}
#news h2.heading span {
  font-size: 3.2vw;
}
#news h2.heading.is-active span {
  top: 15%;
  left: 7%;
}
#news .news-content {
  width: 80%;
  margin: auto;
  background-color: #FFF;
  border: 2px solid #202020;
  border-radius: 2rem;
  padding: 48px 32px;
  box-shadow: 8px 8px 0 var(--blue);
  position: relative;
}
#news .news-content ul {
  display: flex;
  justify-content: start;
}
#news .news-content ul li {
  max-width: 25%;
  padding: 0 32px;
  border-right: 1px solid #bdbdbd;
}
#news .news-content ul li:last-child {
  border: none;
}
#news .news-content ul li a:hover h3 {
  color: var(--orange);
}
#news .news-content ul li a:hover .thumbnail img {
  transform: scale(1.3);
}
#news .news-content ul li a .thumbnail {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 24px;
  overflow: hidden;
  display: flex;
}
#news .news-content ul li a .thumbnail img {
  transition: all 0.3s;
}
#news .news-content ul li a h3 {
  margin-bottom: 8px;
  font-size: 1.25vw;
  transition: all 0.3s;
}
#news .news-content .btn {
  width: 25%;
  position: absolute;
  bottom: -9%;
  right: 0;
  z-index: 1;
}

@media (max-width: 767px) {
  #news {
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 3;
  }
  #news::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 27%;
    height: 3px;
    background-color: #000;
    z-index: 1;
  }
  #news::after {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    display: block;
    width: 27%;
    height: 3px;
    background-color: #000;
    z-index: 1;
  }
  #news .heading-wrap {
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
  #news .news-content {
    width: 100%;
    border: none;
    border-radius: 0;
    padding: 48px 0;
    padding-bottom: 0;
    border-bottom: 3px solid #000;
    box-shadow: none;
  }
  #news .news-content ul {
    width: 100%;
    flex-direction: column;
    padding-bottom: 32px;
  }
  #news .news-content ul li {
    max-width: none;
    border-right: none;
    border-bottom: 1px solid #bdbdbd;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #news .news-content ul li a {
    display: flex;
    gap: 5.4vw;
  }
  #news .news-content ul li a .thumbnail {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 95px;
    max-height: 95px;
  }
  #news .news-content ul li a .thumbnail img {
    max-inline-size: none;
  }
  #news .news-content ul li a h3 {
    font-size: 3.4vw;
  }
  #news .news-content .btn {
    width: 65vw;
    bottom: -5%;
    right: 50%;
    transform: translateX(50%);
    position: absolute;
  }
}
/********************
concept
********************/
#concept {
  display: flex;
  justify-content: center;
  padding-bottom: 15px;
  position: relative;
  z-index: 2;
}
#concept .concept-text {
  width: 50%;
  margin-right: -2vw;
}
#concept .concept-text.is-show {
  opacity: 1;
  transform: translateY(0);
}
#concept .concept-text .heading-wrap {
  margin-bottom: 30px;
}
#concept .concept-image {
  width: 40%;
  margin-left: -2vw;
}
#concept .concept-image.fuwafuwa {
  animation-delay: 2s;
  animation: 3s anime_fuwafuwa infinite;
}
#concept .concept-text .memo {
  font-size: 1.3vw;
  background-image: url(../images/concept-memo-bg.png);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 6vw;
  margin-bottom: 50px;
}
#concept .concept-text .memo h3 {
  font-size: 2.2vw;
  width: 90%;
  margin: auto;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 500;
  overflow: hidden;
}
#concept .concept-text .memo h3:first-child {
  padding-top: 6vw;
}
#concept .concept-text .memo h3:nth-child(2) {
  margin-bottom: 24px;
}
#concept .concept-text .memo h3 .slide-up {
  display: block;
}
#concept .concept-text .memo h3 .orange {
  color: var(--orange);
}
#concept .concept-text .memo h3 .blue {
  color: var(--blue);
}
#concept .concept-text .memo .text--sp {
  display: none;
}
#concept .concept-text .memo p {
  width: 90%;
  margin: auto;
  font-size: 1.38vw;
  line-height: 2;
  font-weight: 600;
  overflow: hidden;
}
#concept .concept-text .memo p .slide-up {
  display: block;
}
#concept .concept-text .memo p .bg-orange {
  background-color: var(--orange);
  color: #FFF;
  margin-right: 5px;
  padding: 0 5px;
}
#concept .concept-text .memo .btn {
  display: none;
}

@keyframes anime_fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2rem);
  }
}
@media (max-width: 767px) {
  #concept {
    background-image: url(../images/lattice--blue--sp.png);
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
    padding-top: 61vw;
    margin-top: 0;
    flex-direction: column;
  }
  #concept .concept-text {
    width: 98%;
    margin: auto;
  }
  #concept .concept-text > .btn {
    display: none;
  }
  #concept .concept-text .heading {
    margin-bottom: 40px;
  }
  #concept .concept-text .memo {
    padding-top: 10.2vw;
    background-image: none;
    position: relative;
  }
  #concept .concept-text .memo .btn {
    display: block;
  }
  #concept .concept-text .memo::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 133.8vw;
    background-image: url(../images/concept-memo-bg--sp.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
  }
  #concept .concept-text .memo .text--sp {
    display: block;
  }
  #concept .concept-text .memo .text--pc {
    display: none;
  }
  #concept .concept-text .memo h3 {
    font-size: 6.8vw;
    width: 95%;
    text-align: center;
    padding-top: 0;
  }
  #concept .concept-text .memo p {
    font-size: 3.4vw;
    width: 95%;
  }
  #concept .concept-image {
    width: 81vw;
    z-index: 1;
    margin: 9vw auto 0;
  }
}
/********************
about
********************/
#about {
  background-image: url(../images/about-bg.png);
  background-position: top;
  background-size: contain;
  background-attachment: fixed;
  position: relative;
  padding-bottom: 80px;
  padding-top: 50px;
  z-index: 1;
}
#about::before {
  position: absolute;
  top: -5vw;
  left: 0;
  content: "";
  display: block;
  background-image: url(../images/about-bg--cloud02.png);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 43vw;
}
#about::after {
  position: absolute;
  bottom: -28vw;
  right: 0;
  content: "";
  display: block;
  background-image: url(../images/about-cloud--blue.png);
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
  width: 54vw;
  height: 62.5vw;
  z-index: -1;
}

.loop-wrap {
  position: absolute;
  bottom: 20%;
  left: 0%;
  z-index: -2;
}
.loop-wrap.loop-wrap--left {
  transform: rotate(-33deg);
}
.loop-wrap.loop-wrap--right {
  transform: rotate(30deg);
}
.loop-wrap ul {
  display: flex;
  background-image: url(../images/about-bg--tape-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  /* animation: infinity-scroll-left 80s infinite linear 0.5s both; */
}
.loop-wrap ul li {
  font-family: "Anton", sans-serif;
  font-size: 2.5vw;
  background-color: var(--yellow);
  background-image: url(../images/about-bg--tape-bg.png);
  background-size: cover;
  background-position: center;
  padding: 12px 60px;
  flex: 0 0 auto;
  white-space: nowrap;
}
.loop-wrap ul li:nth-child(odd) {
  animation: loop 10s -5s linear infinite;
}
.loop-wrap ul li:nth-child(even) {
  animation: loop2 10s linear infinite;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes flow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
#about .flower {
  position: absolute;
  top: 30%;
  right: 0;
  content: "";
  display: block;
  width: 45vw;
  height: 45vw;
  background-image: url(../images/about-bg-－flower.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#about .cloud--sp {
  display: none;
}
#about h2.heading {
  text-align: center;
  margin-bottom: 20px;
  padding-top: 53px;
}
#about h2.heading.is-show {
  transform: translateY(0);
}
#about .heading-wrap span {
  color: var(--orange);
  -webkit-text-stroke-color: var(--orange);
}
#about .about-list {
  display: flex;
  justify-content: space-between;
  width: 70%;
  min-height: 43.4vw;
  margin: auto;
  margin-bottom: 30px;
  gap: 1vw;
}
#about .about-list li {
  border: 3px solid #202020;
  border-radius: 1vw;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  background-color: var(--orange);
  /* transform: translateY(100px); */
  /* transition: all 1s ease-in-out; */
  /* transition-delay: 1s; */
}
#about .about-list li.is-show {
  opacity: 1;
}
#about .about-list li.members-only::before {
  content: "";
  display: block;
  width: 7vw;
  height: 7vw;
  background-image: url(../images/about--batch.png);
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -4vw;
  right: -4vw;
  /* animation: rotate 3s ease-in-out infinite; */
}
#about .about-list li:nth-child(1), #about .about-list li:nth-child(2) {
  margin-top: 78px;
}
#about .about-list.inview li:nth-child(2) {
  margin-top: 156px;
}
#about .about-list li:nth-child(3) {
  margin-top: 78px;
}
#about .about-list.inview li:nth-child(3) {
  margin-top: 234px;
}
#about .about-list li:nth-child(4) {
  margin-top: 78px;
}
#about .about-list.inview li:nth-child(4) {
  margin-top: 312px;
}
#about .about-list li .list-image {
  background-color: #FFEED7;
  padding: 30px 0;
  border-radius: 0.7vw 0.7vw 0 0;
  border: 1px solid #FFEED7;
  border-bottom: none;
}
#about .about-list li .list-image img {
  display: block;
  width: 50%;
  margin: auto;
  border-radius: 1vw 1vw 0 0;
}
#about .about-list li:nth-child(1) img {
  width: 40%;
}
#about .about-list li p {
  color: #fff;
  background-color: var(--orange);
  text-align: center;
  height: 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25vw;
  border-radius: 0 0 1vw 1vw;
}
#about .btn {
  margin-right: 5%;
}

@keyframes rotate {
  0%, 100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}
@media (max-width: 767px) {
  #about {
    background-image: url(../images/about-bg--sp.png);
    background-color: var(--blue);
    padding-bottom: 70vw;
    padding-top: 0;
  }
  #about::before {
    display: none;
  }
  #about .cloud--sp {
    display: block;
    background-color: var(--blue);
  }
  #about .cloud--sp img {
    width: 60%;
  }
  #about .heading-wrap {
    margin-top: -20%;
    margin-bottom: 10%;
  }
  #about .about-list {
    margin-top: 17px !important;
    width: 98%;
    flex-wrap: wrap;
    justify-content: space-around;
    row-gap: 8vw;
  }
  #about .about-list li {
    width: 48%;
    border-radius: 3.6vw;
    margin-top: 0 !important;
  }
  #about .about-list li .list-image {
    height: 35.45vw;
    padding: 0;
    display: flex;
    align-items: center;
    border-radius: 2.7vw 2.7vw 0 0;
  }
  #about .about-list li p {
    font-size: 4vw;
    height: 19.5vw;
    border-radius: 0 0 2.7vw 2.7vw;
  }
  #about .about-list li.members-only::before {
    left: -1vw;
    right: auto;
    width: 14vw;
    height: 14vw;
  }
  #about .btn {
    margin-right: auto;
  }
  #about::after {
    display: none;
  }
  #about .tape::before {
    width: 100%;
    height: 85.6vw;
    background-image: url(../images/about-bg--tape--sp.png);
    bottom: 0;
    right: 0;
  }
  #about .flower {
    background-image: url(../images/about-bg-flower--sp.png);
    background-size: cover;
    background-position: top;
    width: 100%;
    height: 85.6vw;
    top: auto;
    bottom: 0;
    right: 0;
  }
  .loop-wrap.loop-wrap--left {
    transform: rotate(-33deg) translateX(-50%);
    bottom: 53%;
  }
  .loop-wrap.loop-wrap--right {
    transform: rotate(30deg) translateX(-50%);
    bottom: 53%;
  }
  .loop-wrap ul li {
    font-size: 9vw;
  }
  .btn {
    margin: 12px auto 0;
  }
}
/********************
contents
********************/
#contents {
  text-align: center;
  background-color: #95DAFF;
  background-image: url(../images/contents-bg.png);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
}
#contents::before {
  position: absolute;
  top: -17vw;
  left: 0;
  content: "";
  display: block;
  background-image: url(../images/contents-cloud--yellow.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  width: 62vw;
  height: 71vw;
}
#contents::after {
  position: absolute;
  bottom: -20vw;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 33vw;
  background-image: url(../images/contents-bg--bottom.png);
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
}
#contents .contents-list {
  width: 80%;
  margin: auto;
  border: 3px solid var(--black);
  border-radius: 2vw;
  background-image: url(../images/contents-list-bg.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding-bottom: 64px;
  margin-bottom: 485px;
  position: relative;
}
#contents .contents-list.is-show {
  opacity: 1;
  transform: translateY(0);
}
#contents .contents-list::before {
  position: absolute;
  bottom: 92%;
  left: 5%;
  content: "";
  display: block;
  background-image: url(../images/contents-girl.png);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 30vw;
  height: 22vw;
  z-index: 2;
  transform-origin: bottom;
  animation: 3s rotate infinite;
}
#contents .contents-list h2 {
  margin: 30px 0;
}
#contents .contents-list ul {
  display: flex;
  justify-content: space-evenly;
}
#contents .contents-list ul li {
  width: 30%;
  position: relative;
}
#contents .contents-list ul li img {
  margin-bottom: 16px;
}
#contents .contents-list ul li .list-text {
  color: #FFF;
  background-color: rgba(32, 32, 32, 0.4);
  border-radius: 0.8vw;
  padding: 16px;
}
#contents .contents-list ul li .list-text h4 {
  text-align: left;
  font-size: 1.25vw;
  margin-bottom: 8px;
}
#contents .chatroom {
  width: 80%;
  margin: auto;
  padding-bottom: 26vw;
  position: relative;
  transition: all 0.5s ease-in-out;
}
#contents .chatroom-bg {
  position: absolute;
}
#contents .chatroom-bg.chatroom-bg--tv {
  /* top: -10.83vw;
  left: 41.6vw; */
  bottom: -23.83vw;
  left: 29.6vw;
  width: 19.83vw;
  /* transform: translateX(-50%) translateY(-100%); */
  animation: 3s anime_fuwafuwa infinite;
}
#contents .chatroom-bg.chatroom-bg--sakura {
  /* bottom: -7.5vw;
  left: 15.55vw; */
  bottom: -23.5vw;
  left: 2.55vw;
  width: 23.26vw;
  /* transform: translateX(-50%) translateY(-100%); */
  animation: 5s anime_fuwafuwa infinite;
}
#contents .chatroom-bg.chatroom-bg--bike {
  bottom: -40.72vw;
  /* left: 29.16vw; */
  left: 20.16vw;
  width: 22.75vw;
  /* transform: translateX(-50%); */
  z-index: -1;
  /* animation-delay: 2.5s;
  animation: 2.5s anime_fuwafuwa infinite; */
}
#contents .chatroom-bg.chatroom-bg--doll {
  /* bottom: -5.972vw;
  right: 16.94vw; */
  bottom: -42.028vw;
  right: 5.94vw;
  width: 10.9vw;
  /* transform: translateX(100%) translateY(50%); */
  /* animation: 4s anime_fuwafuwa infinite; */
}
#contents .chatroom .loop-wrap.loop-wrap--right {
  display: none;
}
#contents .chatroom .loop-wrap.loop-wrap--left {
  transform: rotate(-20deg) translateX(-30%);
  bottom: 150%;
}
#contents .chatroom .loop-wrap.loop-wrap--left ul li {
  font-size: 3.5vw;
  padding: 0.8vw 6.59vw;
  background-size: contain;
  background-repeat: no-repeat;
}
#contents .chatroom.is-show {
  opacity: 1;
  transform: translateY(0);
}
#contents .chatroom-heading {
  display: block;
  width: 60%;
}
#contents .chatroom .chatroom__list {
  display: flex;
  justify-content: space-evenly;
}
#contents .chatroom .chatroom__list > li {
  border: 3px solid var(--black);
  border-radius: 1vw;
  background-color: #FFF;
  padding: 24px 32px;
  text-align: left;
  width: 30%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
}
#contents .chatroom .chatroom__list > li:nth-child(2) {
  margin-top: 90px;
}
#contents .chatroom .chatroom__list > li:nth-child(3) {
  margin-top: 180px;
}
#contents .chatroom .chatroom__list > li::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #127DFF;
  position: absolute;
  top: 8px;
  left: 8px;
  border-radius: 1vw;
  z-index: -1;
}
#contents .chatroom .chatroom__list li h4 {
  font-size: 1.5vw;
  background-color: #95DAFF;
  padding: 16px 30px;
  border-radius: 0.8vw;
  margin-bottom: 24px;
}
#contents .chatroom .chatroom__list li .chat {
  display: flex;
  justify-content: space-between;
}
#contents .chatroom .chatroom__list li .chat img {
  width: 4.5vw;
  height: 4.5vw;
  margin-right: 1.6vw;
}
#contents .chatroom .chatroom__list li .chat h5 {
  font-size: 1.25vw;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  margin-bottom: 8px;
}
#contents .chatroom .chatroom__list li .chat p {
  text-align: left;
}
#contents .chatroom .chatroom__list .btn--sp {
  display: none;
}
#contents .contents-list .btn {
  position: absolute;
  bottom: -6%;
  left: 50%;
  transform: translateX(-50%);
}
#contents .chatroom .chatroom__list .btn {
  position: absolute;
  bottom: -10vw;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  #contents {
    background-image: none;
  }
  #contents::after {
    /* display: none; */
  }
  #contents .contents-list {
    width: 100%;
    border: none;
    border-radius: 0;
    padding-top: 7.2vw;
    padding-bottom: 18.1vw;
    background-image: url(../images/contents-list-bg--sp.png);
    background-size: cover;
    margin-bottom: 0;
    border-bottom: 3px solid #000;
    z-index: 1;
  }
  #contents::before {
    display: none;
  }
  #contents .contents-list .heading {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 9.0909vw;
  }
  #contents .contents-list::before {
    width: 93.1vw;
    height: 52vw;
    bottom: 97%;
    left: 50%;
    transform-origin: left;
    animation: 3s rotate--center infinite;
  }
  #contents .contents-list ul {
    flex-wrap: wrap;
  }
  #contents .contents-list ul li {
    width: 80%;
    margin: 0 auto 16px;
  }
  #contents .contents-list ul li .list-text {
    border-radius: 3.63vw;
    text-align: left;
  }
  #contents .contents-list ul li .list-text h4 {
    font-size: 4vw;
  }
  #contents .contents-list .btn {
    bottom: 0;
    transform: translateX(-50%) translateY(50%);
  }
  #contents .chatroom--pc {
    /* display: none; */
  }
  #contents .chatroom-bg {
    display: none;
  }
  #contents .chatroom {
    padding-top: 47.2vw;
    padding-bottom: 109vw;
    background-image: url(../images/contents-bg--sp.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    width: 100%;
  }
  #contents .chatroom .loop-wrap.loop-wrap--right {
    display: block;
  }
  #contents .chatroom .loop-wrap ul li {
    font-size: 7rem;
    padding: 10px 22px;
  }
  #contents .chatroom .loop-wrap.loop-wrap--right {
    top: 15%;
    bottom: auto;
    transform: rotate(30deg) translateX(-20%);
    z-index: 1;
  }
  #contents .chatroom .loop-wrap.loop-wrap--left {
    transform: rotate(-20deg) translateX(-20%);
    bottom: 60%;
    z-index: 0;
  }
  #contents .chatroom .loop-wrap.loop-wrap--left ul li {
    font-size: 8.5rem;
    padding: 1.8vw 12.59vw;
  }
  #contents .chatroom-heading {
    width: 98%;
    margin: auto;
    position: relative;
    z-index: 2;
  }
  #contents .chatroom .chatroom__list {
    flex-wrap: wrap;
    row-gap: 20px;
    position: relative;
    z-index: 0;
  }
  #contents .chatroom .chatroom__list > li {
    width: 90%;
    margin: auto;
    border-radius: 5.45vw;
  }
  #contents .chatroom .chatroom__list li:last-child {
    z-index: 1;
  }
  #contents .chatroom .chatroom__list li:nth-child(2), #contents .chatroom .chatroom__list li:nth-child(3) {
    margin-top: 0;
  }
  #contents .chatroom .chatroom__list li::before {
    border-radius: 5.45vw;
  }
  #contents .chatroom .chatroom__list li::before:last-child {
    z-index: 1;
  }
  #contents .chatroom .chatroom__list li h4 {
    font-size: 5vw;
    border-radius: 1.8vw;
  }
  #contents .chatroom .chatroom__list li .chat h5 {
    font-size: 4vw;
  }
  #contents .chatroom .chatroom__list li .chat img {
    width: 15vw;
    height: 15vw;
  }
  #contents .chatroom .chatroom__list .btn--pc {
    display: none;
  }
  #contents .chatroom .chatroom__list .btn--sp {
    display: block;
    transform: translateX(-50%);
    bottom: -21vw;
  }
  @keyframes rotate--center {
    0%, 100% {
      transform: rotate(-5deg) translateX(-50%);
    }
    50% {
      transform: rotate(5deg) translateX(-50%);
    }
  }
}
/********************
can
********************/
#can {
  background-image: url(../images/can-bg.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding-top: 20vw;
  padding-bottom: 49vw;
  position: relative;
  z-index: 1;
}
#can h2.heading {
  margin-bottom: 50px;
}
#can ul {
  position: relative;
  width: 50%;
  margin: 50px auto 0;
}
#can ul li {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.5s ease-in-out;
}
#can ul li .item-wrap {
  margin-bottom: 40px;
  border: 3px solid var(--black);
  border-radius: 1vw;
  background-color: #FFF;
  padding: 16px 30px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  position: relative;
}
#can ul li.is-show {
  opacity: 1;
  transform: translateY(0);
}
#can ul li .item-wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #127DFF;
  position: absolute;
  top: 8px;
  left: 8px;
  border-radius: 1vw;
  z-index: -1;
}
#can ul li::after {
  content: "";
  display: block;
  width: 4vw;
  height: 4vw;
  position: absolute;
  top: -1vw;
  left: -1vw;
  background-image: url(../images/can-checkbox.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#can ul li p {
  font-size: 1.8vw;
  font-weight: bold;
  background-image: linear-gradient(to right, rgb(189, 189, 189), rgb(189, 189, 189) 4px, transparent 2px, transparent 5px);
  background-size: 8px 2px;
  background-position: bottom;
  background-repeat: repeat-x;
  padding-left: 2vw;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
#can ul li .can-list__link {
  font-size: 1.6vw;
  color: var(--orange);
  font-weight: bold;
  text-align: right;
}
#can ul li .can-list__link a {
  position: relative;
  padding-right: 3vw;
}
#can ul li .can-list__link a::after {
  content: "";
  display: block;
  width: 1.8vw;
  height: 1.6vw;
  position: absolute;
  top: 50%;
  right: 0vw;
  transform: translateY(-50%);
  background-image: url(../images/arrow--orange.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.5s;
}

@media (max-width: 767px) {
  #can {
    background-image: url(../images/can-bg--sp.png);
    padding-bottom: 161vw;
  }
  #can ul {
    width: 90%;
  }
  #can ul li .item-wrap {
    border-radius: 5.45vw;
  }
  #can ul li .item-wrap::before {
    border-radius: 5.45vw;
  }
  #can ul li p {
    font-size: 5.45vw;
  }
  #can ul li .can-list__link a {
    font-size: 3.63vw;
  }
  #can ul li .can-list__link a::after {
    width: 6.13vw;
    height: 5.45vw;
    right: -4.63vw;
  }
  #can ul li::after {
    width: 13vw;
    height: 13vw;
    top: -3vw;
    left: -4vw;
  }
}
/********************
help
********************/
#help {
  text-align: center;
  position: relative;
  padding-bottom: 230px;
}
#help::before {
  content: "";
  position: absolute;
  top: -38vw;
  left: 50%;
  transform: translateX(-50%);
  width: 55.5vw;
  height: 70vw;
  background-image: url(../images/help-cloud--yellow.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
#help .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -1;
  max-inline-size: none;
  max-block-size: none;
}
#help .heading-wrap {
  margin-bottom: 20px;
}
#help .subtitle {
  text-align: center;
  font-weight: bold;
  font-size: 1.6vw;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}
#help .subtitle::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -2.5vw;
  width: 1.6vw;
  height: 1px;
  background-color: var(--black);
}
#help .subtitle::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -2.5vw;
  width: 1.6vw;
  height: 1px;
  background-color: var(--black);
}

.faq-list {
  width: 50%;
  margin: 0 auto;
}

#help .faq-list.faq-list--sp {
  display: none;
}

.faq-list h3 {
  font-size: 1.1vw;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: var(--black);
  margin-bottom: 13px;
  position: relative;
}
.faq-list h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14vw;
  height: 1px;
  background-color: var(--black);
}
.faq-list h3::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 14vw;
  height: 1px;
  background-color: var(--black);
}
.faq-list .cp_actab {
  background-color: #FFF;
  padding: 15px 0;
  border: 2px solid var(--blue);
  border-radius: 1em;
  margin-bottom: 10px;
  transition: all 0.3s;
}
.faq-list .cp_actab input[type=checkbox] {
  display: none;
}
.faq-list .cp_actab:hover {
  border: 2px solid var(--orange);
}
.faq-list label {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--blue);
  width: 100%;
  cursor: pointer;
  padding-left: 25px;
}
.faq-list label h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1vw;
  font-weight: bold;
  transition: all 0.3s;
}
.faq-list label h4:hover {
  color: var(--orange);
}
.faq-list label span {
  position: relative;
  width: 2.08vw;
  height: 2.08vw;
  background-color: var(--blue);
  border-radius: 100vw;
  margin-right: 20px;
  transition: all 0.5s;
}
.faq-list label span::before {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate3d(50%, -50%, 0);
  content: "";
  width: 1.04vw;
  height: 0.27vw;
  border-radius: 2em;
  background-color: #FFF;
}
.faq-list label span::after {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate3d(50%, -50%, 0) rotate(90deg);
  content: "";
  width: 1.04vw;
  height: 0.27vw;
  border-radius: 2em;
  background-color: #FFF;
  transition: all 0.5s;
}
.faq-list .cp_actab input[type=checkbox]:checked ~ label span {
  background-color: var(--orange);
}
.faq-list .cp_actab input[type=checkbox]:checked ~ label span::after {
  transform: translate3d(50%, -50%, 0) rotate(0deg);
}
.faq-list label h4::before {
  content: "Q.";
}
.faq-list .cp_actab-content {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1vw;
  font-weight: bold;
  color: var(--orange);
  text-align: left;
  position: relative;
  overflow: hidden;
  height: 0;
  padding: 0 20px;
  transition: 0.4s ease;
  opacity: 0;
}
.faq-list .cp_actab-content::before {
  content: "A.";
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1vw;
  font-weight: bold;
  color: var(--orange);
}
.faq-list .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
  height: auto;
  padding: 25px 20px;
  opacity: 1;
}

.faq-ttl::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4%;
  width: 12px;
  height: 1px;
  margin: auto;
  background-color: #000;
}
.faq-ttl::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4%;
  width: 12px;
  height: 1px;
  margin: auto;
  background-color: #000;
  transform: rotate(90deg);
  transition: 0.3s;
}
.faq-ttl.is-active::after {
  transform: rotate(180deg);
}

#help .btn {
  margin-top: 4.65vw;
}

@media (max-width: 767px) {
  #help {
    background-image: url(../images/help-bg--sp.png);
    background-position: top;
    background-color: #ffe529;
  }
  #help h2.heading {
    margin-bottom: 13px;
  }
  #help .subtitle {
    font-size: 4.54vw;
    margin-bottom: 30px;
  }
  #help .subtitle::before {
    width: 4.6vw;
    left: -5.5vw;
  }
  #help .subtitle::after {
    width: 4.6vw;
    right: -5.5vw;
  }
  #help .faq-list {
    width: 90%;
  }
  #help .faq-list.faq-list--pc {
    display: none;
  }
  #help .faq-list.faq-list--sp {
    display: block;
  }
  .faq-list h3 {
    display: none;
  }
  .faq-list .cp_actab {
    border-radius: 4em;
  }
  .faq-list label.sp-label h4 {
    color: var(--black);
  }
  .faq-list label h4 {
    font-size: 3.63vw;
    text-align: left;
  }
  .faq-list .cp_actab-content {
    font-size: 3.63vw;
  }
  .faq-list label span {
    width: 6.8vw;
    height: 6.8vw;
  }
  .faq-list label span::before, .faq-list label span::after {
    width: 3.63vw;
    height: 0.9vw;
  }
  .faq-list .cp_actab-content label {
    padding: 0;
    margin-bottom: 15px;
  }
  .faq-list .cp_actab-content::before {
    display: none;
  }
  .faq-list .cp_actab-content p::before {
    font-size: 3.63vw;
    content: "A.";
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    color: var(--orange);
  }
  #help .btn {
    margin-top: 75px;
  }
}/*# sourceMappingURL=front-page.css.map */