/* animation
=================================================*/
.fadeInUp {
  opacity: 0;
  transform: translateY(20px);
  transition-property: all;
  transition-duration: 0.6s;
  transition-timing-function: ease;
  transition-delay: 0.2s;
}
.fadeInUp.is__show {
  opacity: 1;
  transform: translateY(0);
}

.fadeInLeft {
  opacity: 0;
  transform: translateX(-20px);
  transition-property: all;
  transition-duration: 0.6s;
  transition-timing-function: ease;
  transition-delay: 0.2s;
}
.fadeInLeft.is__show {
  opacity: 1;
  transform: translateX(0);
}

.fadeInRight {
  opacity: 0;
  transform: translateX(20px);
  transition-property: all;
  transition-duration: 0.6s;
  transition-timing-function: ease;
  transition-delay: 0.2s;
}
.fadeInRight.is__show {
  opacity: 1;
  transform: translateX(0);
}

/* common
=================================================*/
body {
  line-height: 1.3;
  font-size: 10px;
  color: #333;
  overflow-x: hidden;
  padding-bottom: 100px;
}
@media screen and (max-width: 599px) {
  body {
    font-size: 3.75vw;
    padding-bottom: 60px;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 599px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 599px) {
  .sp {
    display: block;
  }
}

@media screen and (max-width: 599px) {
  br.pc {
    display: none;
  }
}

br.sp {
  display: none;
}
@media screen and (max-width: 599px) {
  br.sp {
    display: inline;
  }
}

a {
  color: #1c6db0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: all 0.5s ease;
  word-wrap: break-word;
}

a:hover {
  opacity: 0.75;
}

section:not(.mv):not(.link) {
  padding: 100px 0 0 0;
}
@media screen and (max-width: 599px) {
  section:not(.mv):not(.link) {
    padding: 40px 0 0 0;
  }
}

video {
  width: 100%;
}

.mt_20 {
  margin-top: 20px;
}

.mt_40 {
  margin-top: 40px;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.ttl {
  color: #1c6db0;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 24px;
  padding: 10px;
  border-left: 3px solid #1c6db0;
  border-bottom: 3px solid #1c6db0;
  position: relative;
}
@media screen and (max-width: 599px) {
  .ttl {
    font-size: 5.4vw;
  }
}
.ttl::before, .ttl::after {
  content: "";
  height: 0;
  width: 0;
  border: solid transparent;
  position: absolute;
  left: 30px;
}
.ttl::before {
  border-color: transparent;
  border-top-color: #1c6db0;
  border-width: 15px;
  top: 100%;
  left: 26px;
}
.ttl::after {
  border-color: transparent;
  border-width: 11px;
  top: 99%;
  border-top-color: #fff;
}

.read {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 599px) {
  .read {
    font-size: 14px;
    line-height: 1.6;
  }
}

iframe {
  width: 100%;
  height: 560px;
}

.img-wrap {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.img-wrap__inner {
  width: calc((100% - 24px) / 2);
}
@media screen and (max-width: 599px) {
  .img-wrap__inner {
    width: 100%;
  }
}
.img-wrap__inner img {
  width: 100%;
  height: auto;
  box-shadow: 0 0 10px #ebebeb;
}
.img-wrap__inner span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #959595;
}
@media screen and (max-width: 599px) {
  .img-wrap__inner span {
    margin-top: 4px;
    font-size: 12px;
  }
}
.img-wrap.one .img-wrap__inner {
  width: 100%;
}

.box {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  border: 2px solid #1c6db0;
}
@media screen and (max-width: 599px) {
  .box {
    padding: 24px 12px;
  }
}
.box__img {
  width: 200px;
  height: auto;
}
@media screen and (max-width: 599px) {
  .box__img {
    width: 50%;
  }
}
.box__txt {
  width: calc(100% - 224px);
}
@media screen and (max-width: 599px) {
  .box__txt {
    width: 100%;
  }
}
.box__txt h2 {
  font-size: 20px;
  color: #1c6db0;
  margin-bottom: 8px;
}
@media screen and (max-width: 599px) {
  .box__txt h2 {
    font-size: 4.8vw;
    text-align: center;
  }
}

.toTop {
  display: block;
  width: 90%;
  max-width: 320px;
  margin: 40px auto 0 auto;
  text-align: center;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background-color: #1c6db0;
}

.linkBnr {
  display: block;
  margin: 50px auto;
  width: 90%;
  max-width: 500px;
}
.linkBnr img {
  width: 100%;
  height: auto;
}

.mv {
  position: relative;
  width: 100vw;
}
.mv__bg {
  width: 100%;
  height: auto;
}
.mv__txt {
  position: absolute;
  top: 10%;
  left: 5vw;
}
@media screen and (max-width: 599px) {
  .mv__txt {
    position: relative;
    top: auto;
    left: auto;
    transform: translateY(0);
    padding: 16px 2.5vw;
    background-color: #1c6db0;
  }
}
.mv .txt01 {
  font-size: clamp(10px, 1.3vw, 20px);
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 20px;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .mv .txt01 {
    font-size: 14px;
    margin-bottom: 0;
  }
}
.mv .txt01 strong {
  font-size: 260%;
  letter-spacing: 0.1em;
  margin-left: 40px;
}
@media screen and (max-width: 599px) {
  .mv .txt01 strong {
    font-size: 210%;
    letter-spacing: 0.1em;
    margin-left: 20px;
  }
}
.mv .txt01 div {
  display: inline-block;
  padding: 4px 16px;
}
.mv .txt02 {
  font-size: clamp(20px, 2.5vw, 48px);
  letter-spacing: 0.04em;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .mv .txt02 {
    font-size: 7.1vw;
  }
}
.mv .txt02 div {
  display: inline-block;
  padding: 4px 16px;
  color: #1c6db0;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  .mv .txt02 div {
    display: inline;
    color: #fff;
    padding: 0;
    background-color: transparent;
  }
}
.mv .txt02 div:not(:last-child) {
  margin-bottom: 8px;
}
@media screen and (max-width: 599px) {
  .mv .txt02 div:not(:last-child) {
    margin-bottom: 0;
  }
}
.mv .img01 {
  position: absolute;
  left: 5vw;
  bottom: 60px;
  width: 250px;
  height: auto;
}
@media screen and (max-width: 599px) {
  .mv .img01 {
    left: 2.5vw;
    top: 230px;
    width: 130px;
  }
}
.mv.sub-mv .mv__txt {
  top: 10%;
  transform: translateY(0);
}
.mv.sub-mv .mv__txt .txt02 {
  font-size: clamp(20px, 2.4vw, 48px);
}
@media screen and (max-width: 599px) {
  .mv.sub-mv .mv__txt .txt02 {
    font-size: 6.6vw;
    line-height: 1.4;
  }
}

.about .profile {
  position: relative;
  margin-top: 60px;
  border: 1px solid #c6c6c6;
}
@media screen and (max-width: 599px) {
  .about .profile {
    margin-top: 40px;
    padding: 24px 12px;
  }
}
.about .profile__img {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 180px;
  height: 250px;
  transform: translate(-20px, -20px);
  box-shadow: 0 0 10px #ebebeb;
}
@media screen and (max-width: 599px) {
  .about .profile__img {
    position: relative;
    top: auto;
    left: auto;
    width: 50%;
    height: auto;
    transform: translate(0, 0);
    margin: 0 auto 20px auto;
  }
}
.about .profile__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 599px) {
  .about .profile__img img {
    height: auto;
  }
}
.about .profile__txt {
  padding: 0 24px 24px 130px;
}
@media screen and (max-width: 599px) {
  .about .profile__txt {
    width: 100%;
    padding: 0;
  }
}
.about .profile__txt h2 {
  display: inline-block;
  padding: 8px 24px;
  color: #1c6db0;
  background-color: #fff;
  font-size: 22px;
  margin-top: -20px;
}
@media screen and (max-width: 599px) {
  .about .profile__txt h2 {
    display: block;
    background-color: transparent;
    margin-bottom: 12px;
    padding: 0;
    margin-top: 0;
    text-align: center;
  }
}
.about .profile__txt .read {
  padding-left: 24px;
}
@media screen and (max-width: 599px) {
  .about .profile__txt .read {
    padding-left: 0;
  }
}
.about .profile__link {
  padding-left: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .about .profile__link {
    margin-top: 20px;
    padding-left: 0;
  }
}
.about .profile__link a {
  display: block;
  width: 85px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.about .profile__link a:nth-child(2) .img-wrap {
  margin: 0 auto 7px;
  width: 50px;
  height: 50px;
  background-color: #000;
  padding: 7px;
  border-radius: 50%;
}
.about .profile__link a:nth-child(2) .img-wrap img {
  width: 100%;
}
.about .profile__link a:nth-child(3) p {
  transform: translateY(7px);
}
.about .profile__link a img {
  width: 60%;
  height: auto;
}
.about .fanClub {
  margin-top: 60px;
}
.about .fanClub .flex {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.about .fanClub .flex .flex-img {
  display: block;
  width: 40%;
}
@media screen and (max-width: 599px) {
  .about .fanClub .flex .flex-img {
    width: 100%;
  }
}
.about .fanClub .flex .flex-img img {
  width: 100%;
  height: auto;
}
.about .fanClub .flex .flex-txt {
  width: calc(60% - 24px);
}
@media screen and (max-width: 599px) {
  .about .fanClub .flex .flex-txt {
    width: 100%;
  }
}
.about .fanClub .flex .flex-txt h2 {
  font-size: 23px;
  line-height: 1.4;
  color: #1c6db0;
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (max-width: 599px) {
  .about .fanClub .flex .flex-txt h2 {
    font-size: 6vw;
  }
}
.about .fanClub .flex .flex-txt .btn {
  margin-top: 16px;
  display: block;
  width: 100%;
  padding: 16px 0;
  text-align: center;
  background-color: #1c6db0;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  transition: all 0.6s;
}
.about .fanClub .flex .flex-txt .btn:hover {
  opacity: 0.6;
}

.link {
  padding-top: 30px;
}
.link__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.link__wrap a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 16px) / 2);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
  padding: 1rem 4rem;
  font-weight: bold;
  border-radius: 0.3rem;
  background-color: #e9f6fb;
  border-image-source: repeating-linear-gradient(45deg, #1c6db0 0, #1c6db0 6px, rgba(0, 0, 0, 0) 6px, rgba(0, 0, 0, 0) 8px);
  border-image-slice: 4;
  border-width: 4px;
  border-image-repeat: round;
  border-style: solid;
  color: #1c6db0;
}
@media screen and (max-width: 599px) {
  .link__wrap a {
    width: 100%;
    padding: 35px 20px 10px 20px;
    font-size: 4.7vw;
  }
}
.link__wrap a span {
  position: absolute;
  top: -4px;
  left: -4px;
  padding: 4px 8px;
  display: inline-block;
  background-color: #1c6db0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}