* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto sans JP", sans-serif;
}
body.active {
  overflow-y: hidden;
}

h1 {
  margin: 0;
}

h2 {
  line-height: 1.5;
  font-weight: normal;
}

h3 {
  font-weight: normal;
}

p {
  line-height: 2.25;
}

a {
  text-decoration: unset;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sp {
  display: none !important;
}

.btn {
  display: block;
  color: #222;
  background-image: url(img/btn.png);
  background-size: cover;
  max-width: 350px;
  width: 90%;
  height: 75px;
  line-height: 75px;
  text-align: center;
  margin: 0 auto;
  font-size: 22px;
  position: relative;
  border-radius: 10px;
  transition: all 0.2s;
}
.btn:hover {
  background-image: url(img/btn-hover.png);
  background-size: cover;
  transition: all 0.2s;
}
.btn .icon-arrow {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translate(0, -50%);
}
.btn__tel {
  font-size: 30px;
}
.btn__tel .icon-tel {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translate(0, -50%);
}
.btn__mail {
  font-size: 20px;
}
.btn__mail .icon-mail {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0, -50%);
}

.section__title {
  font-size: 25px;
  color: #fff;
  margin-bottom: 30px;
  font-weight: bold;
}
.section__title--en {
  font-size: 20px;
  font-weight: normal;
}
.section__title--en img {
  margin-right: 5px;
  position: relative;
  top: -2px;
}

.header {
  position: relative;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  height: 100px;
}
.header__logo {
  z-index: 3;
}
.header__ham {
  width: 50px;
  height: 12px;
  z-index: 3;
  position: relative;
}
.header__ham:hover {
  cursor: pointer;
}
.header__ham span {
  display: block;
  height: 1px;
  background: #fff;
  position: absolute;
  transition: all 0.3s;
}
.header__ham span:first-of-type {
  width: 30px;
  top: 0;
  right: 0;
}
.header__ham span:nth-of-type(2) {
  width: 40px;
  top: 5.5px;
  right: 0;
}
.header__ham span:last-of-type {
  width: 100%;
  bottom: 0;
}
.header__ham.active span {
  transition: all 0.3s;
}
.header__ham.active span:first-of-type {
  width: 100%;
  transform: rotate(-45deg);
  left: 0px;
  top: 5.5px;
}
.header__ham.active span:nth-of-type(2) {
  display: none;
}
.header__ham.active span:last-of-type {
  width: 100%;
  transform: rotate(45deg);
  left: 0px;
  top: 5.5px;
}
.header__nav {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(img/bg-ham.png);
  width: 100%;
  background-size: cover;
  z-index: 2;
  padding: 20px;
  padding-top: 100px;
}
.header__nav.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s;
}
.header__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.header__list-item {
  width: 48%;
  font-size: 18px;
  border-bottom: 1px dashed #fff;
}
.header__list-item:first-of-type, .header__list-item:nth-of-type(2) {
  border-top: 1px dashed #fff;
}
.header__list-item a {
  color: #fff;
  padding: 20px 0;
  display: block;
}
.header__link--en {
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}

.main {
  display: flex;
  position: relative;
}
.main__left {
  width: calc(50% - 195px);
  height: 100vh;
  background-image: url(img/pc-left.png);
  background-size: cover;
  position: fixed;
  left: 0;
}
.main__left--inner {
  position: relative;
  height: 100%;
}
.main__left--btn {
  position: relative;
  display: block;
  color: #222;
}
.main__left--btn-img {
  background-image: url(img/btn-line-img.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  animation: rotate-anime 10s linear infinite;
  width: 180px;
  height: 180px;
  transition: all 0.2s;
}
.main__left--btn:hover .main__left--btn-img {
  background-image: url(img/btn-line-img-2.png);
  transition: all 0.2s;
}
.main__left--btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  line-height: 1.5;
}
.main__left--btn .icon-arrow {
  margin-left: 5px;
}
.main__left--btn--wrap {
  position: absolute;
  bottom: 40px;
  right: 40px;
}
.main__right {
  width: calc(50% - 195px);
  height: 100vh;
  background-image: url(img/pc-right.png);
  background-size: cover;
  position: fixed;
  right: 0;
}
.main__right--content {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 35px;
  color: #fff;
}
.main__right--content a {
  color: #fff;
}
.main__right--list {
  padding-left: 15px;
}
.main__right--list-item {
  margin-bottom: 10px;
  position: relative;
}
.main__right--list-item img {
  position: absolute;
  left: -17px;
  top: 50%;
  transform: translate(0, -50%);
}
.main__right--list-item a:hover {
  text-decoration: underline;
}
.main__right--logo {
  position: absolute;
  bottom: 25px;
  right: 15px;
}
.main__inner {
  max-width: 390px;
  width: 100%;
  background-image: url(img/bg-all.png);
  background-size: cover;
  position: absolute;
  left: calc(50% - 195px);
  overflow: hidden;
}

.index-home-icon,
.index-concept-icon,
.index-point-icon,
.index-support-icon,
.index-flow-icon,
.index-voice-icon,
.index-faq-icon,
.index-contact-icon {
  opacity: 0;
  visibility: hidden;
}
.index-home-icon.fadein,
.index-concept-icon.fadein,
.index-point-icon.fadein,
.index-support-icon.fadein,
.index-flow-icon.fadein,
.index-voice-icon.fadein,
.index-faq-icon.fadein,
.index-contact-icon.fadein {
  opacity: 1;
  visibility: visible;
}

.index-home-link,
.index-concept-link,
.index-point-link,
.index-support-link,
.index-flow-link,
.index-voice-link,
.index-faq-link,
.index-contact-link {
  text-decoration: unset;
}
.index-home-link.fadein,
.index-concept-link.fadein,
.index-point-link.fadein,
.index-support-link.fadein,
.index-flow-link.fadein,
.index-voice-link.fadein,
.index-faq-link.fadein,
.index-contact-link.fadein {
  text-decoration: underline;
}

.content__inner {
  padding: 0 20px;
}

.mv {
  margin-top: -100px;
  position: relative;
  height: 100vh;
}
.mv__img {
  z-index: -1;
}
.mv__title {
  margin-bottom: 25px;
  text-align: center;
}
.mv__inner {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
}
.mv__scroll {
  color: #fff;
  text-align: center;
  position: relative;
}
.mv__scroll p {
  margin-bottom: 0;
}
.mv__scroll--icon {
  position: relative;
}
.mv__scroll--icon img {
  animation: move 2s linear infinite;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.mv__scroll--icon::after {
  content: "";
  width: 1px;
  height: 45px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #fff;
}

.mv__img--wrap {
  position: relative;
}
.mv__bg {
  position: absolute;
  top: 0;
  left: 0;
}
.mv__bg img {
  width: 100%;
}
.mv .t-50 {
  position: relative;
  top: 50px;
}

.mv__img img {
  min-height: 580px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img__slider {
  display: flex;
  animation: loop-list 20s linear infinite;
}
.img__slider--wrap {
  display: flex;
  overflow: hidden;
}
.img__slider li {
  margin-right: 10px;
  width: 97.5px;
}
.img__slider--2 {
  animation: loop-list-2 20s linear infinite;
  margin-top: 10px;
}
.img__slider--2 li {
  margin-right: 10px;
}

@keyframes loop-list {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-list-2 {
  from {
    transform: translateX(-7%);
  }
  to {
    transform: translateX(-107%);
  }
}
.about {
  background-image: url(img/bg-about.png);
  background-size: cover;
  padding-top: 150px;
  margin-top: -50px;
  height: 860px;
  position: relative;
}
.about__logo {
  text-align: center;
}
.about__title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 5px;
}
.about__title--en {
  margin-top: 0;
  color: #005BAE;
  text-align: center;
  margin-bottom: 30px;
}
.about__text {
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}
.about .concept__roop--area {
  position: absolute;
  bottom: -30px;
}

.concept {
  margin-top: 110px;
}
.concept__block {
  color: #fff;
  margin-bottom: 60px;
}
.concept__block:nth-of-type(2) .concept__block--img {
  text-align: end;
}
.concept__block--img {
  margin-bottom: 40px;
}
.concept__block--title {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.concept__block--en {
  font-size: 16px;
  margin-bottom: 30px;
  margin-top: 0;
  line-height: 1.3;
}

.concept__roop {
  margin-bottom: 10px;
  display: flex;
}
.concept__roop img {
  display: block;
  max-width: unset;
}
.concept__roop img:first-child {
  animation: loop1 30s -15s linear infinite;
  padding: 0 10px;
}
.concept__roop img:last-child {
  animation: loop2 30s linear infinite;
  padding: 0 10px;
}
.concept__roop--area {
  overflow: hidden;
}
.concept__roop--2 {
  position: relative;
  right: 200px;
}
.concept__roop--2 img:first-child {
  animation: loop3 30s -15s linear infinite;
  padding: 0 10px;
}
.concept__roop--2 img:last-child {
  animation: loop4 30s linear infinite;
  padding: 0 10px;
}

.line {
  color: #fff;
  text-align: center;
  height: 850px;
  background-position: bottom;
  position: relative;
  background-image: url(img/bg-line-3.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: linear-gradient(rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.5) 21.67%, rgba(34, 34, 34, 0.8) 47.78%, rgba(34, 34, 34, 0.5) 73.4%, rgba(34, 34, 34, 0) 100%);
}
.line__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.line__title {
  font-size: 22px;
}
.line__title--l {
  font-size: 30px;
}
.line__title--en {
  font-size: 16px;
}
.line__text {
  margin-bottom: 50px;
}

.point {
  color: #fff;
  margin-bottom: 100px;
}
.point__top--text {
  margin-bottom: 30px;
}
.point__block {
  background: #B4B7E5;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 0 50px 0 0;
}
.point__block--img {
  margin-bottom: 20px;
}
.point__block--img img {
  width: 100%;
}
.point__block--title {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: dashed 1px #fff;
}
.point__block--title span {
  color: #F9FD8C;
  font-size: 16px;
  margin-bottom: 10px;
  display: inline-block;
}
.point__block--text {
  font-size: 14px;
  line-height: 2;
}
.point__img--area {
  overflow: hidden;
  position: relative;
  height: 550px;
}
.point__img--area img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: unset;
}
.point__ranking {
  margin-top: 75px;
}
.point__ranking img {
  width: 100%;
}
.point__manage--title {
  font-size: 22px;
  margin-bottom: 50px;
  text-align: center;
  line-height: 1.5;
}
.point__manage--title span {
  font-size: 30px;
}
.point__manage--area {
  display: flex;
  justify-content: space-between;
}
.point__manage--block {
  width: 49%;
}
.point__manage--img {
  margin-bottom: 10px;
}
.point__manage--img img {
  width: 100%;
}
.point__manage--name {
  margin-bottom: 10px;
  line-height: 1.1;
}
.point__manage--name span {
  color: #F9FD8C;
  font-size: 12px;
}
.point__manage--text {
  margin-top: 0;
  font-size: 13px;
  line-height: 1.3;
}
.point__media--title {
  text-align: center;
  line-height: 2;
}
.point__media--area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.point__media--area img {
  margin-bottom: 20px;
  width: 48%;
}

.support {
  overflow: hidden;
}
.support__block {
  margin-bottom: 40px;
  max-width: 306px;
  color: #fff;
}
.support__block:nth-of-type(2) {
  margin-left: auto;
}
.support__block--img {
  margin-bottom: 20px;
}
.support__block--title {
  margin-bottom: 15px;
  font-size: 20px;
}
.support__block--text {
  font-size: 14px;
  line-height: 1.7;
}
.support__chance {
  background: linear-gradient(#f9fd8c 0%, #c9cbf7 100%);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  margin: 170px 0;
  position: relative;
}
.support__chance--content {
  text-align: center;
}
.support__chance--text {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.5;
}
.support__chance--en {
  color: #005BAE;
}

.support__slider--top {
  position: relative;
  top: -70px;
}
.support__slider--bottom {
  position: relative;
  bottom: -70px;
}

.support__slider {
  display: flex;
  animation: loop-list 20s linear infinite;
}
.support__slider--wrap {
  display: flex;
  overflow: hidden;
}
.support__slider li {
  margin-right: 10px;
  width: 240px;
}
.support__slider li.img-l {
  width: 350px;
}
.support__slider--2 {
  animation: loop-list-3 20s linear infinite;
  margin-top: 10px;
}
.support__slider--2 li {
  margin-right: 10px;
}

@keyframes loop-list {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-list-3 {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
.flow .section__title {
  text-align: center;
}
.flow__block {
  padding-bottom: 30px;
  margin-bottom: 35px;
  border-bottom: dashed 1px #fff;
}
.flow__block--img {
  margin-bottom: 10px;
  text-align: center;
}
.flow__block--title {
  margin-bottom: 20px;
  text-align: center;
}
.flow__block--title span {
  background: #F9FD8C;
  padding: 10px;
  border-radius: 5px;
}
.flow__block--text {
  line-height: 1.5;
  color: #fff;
  font-size: 14px;
}
.flow__block--text a {
  text-decoration: underline;
  color: #fff;
}

.voice {
  margin-bottom: 150px;
}
.voice__inner {
  background: #F9FD8C;
  border-radius: 160px;
  padding: 75px 20px;
}
.voice .section__title {
  text-align: center;
  color: #222;
}
.voice__block {
  margin-bottom: 40px;
}
.voice__block--movie img {
  width: 100%;
}
.voice__block--movie video,
.voice__block--movie source {
  width: 100%;
  height: 215px;
  border-radius: 0 30px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.voice__block--name {
  font-size: 22px;
  line-height: 1.1;
}
.voice__block--name span {
  color: #4DBCEE;
  font-size: 14px;
}
.voice__block--sns {
  display: flex;
}
.voice__block--sns img {
  margin-right: 10px;
}

.profile_image {
  height: 215px;
  overflow: hidden;
  border-radius: 0 30px 0 0;
}
.profile_image img {
  object-fit: cover;
  object-position: center;
  display: block;
  width: 100%;
  height: 215px;
}

.faq__block {
  color: #fff;
  border-radius: 70px;
  background: rgba(34, 34, 34, 0.3);
  margin-bottom: 5px;
  padding: 30px 25px;
}
.faq__block--question {
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.faq__block--answer {
  display: flex;
  align-items: center;
  line-height: 1.5;
  margin: 0;
}
.faq__block--answer--wrap {
  display: none;
}
.faq__block--q {
  font-size: 22px;
  margin-right: 15px;
  display: block;
}
.faq__block--a {
  font-size: 22px;
  color: #F9FD8C;
  margin-right: 15px;
  display: block;
}
.faq__block--icon {
  display: block;
  margin-left: 15px;
}
.faq__block--icon img {
  max-width: unset;
}

.icon-plus.none {
  display: none;
}

.icon-minus {
  display: none;
}
.icon-minus.active {
  display: block;
}

.contact {
  background-image: url(img/bg-line-3.png);
  background-size: cover;
  height: 650px;
  padding-top: 200px;
  position: relative;
}
.contact .section__title {
  text-align: center;
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: linear-gradient(rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.5) 21.67%, rgba(34, 34, 34, 0.8) 47.78%, rgba(34, 34, 34, 0.5) 73.4%, rgba(34, 34, 34, 0) 100%);
}
.contact__block--title {
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}
.contact .section__title,
.contact .contact__block {
  position: relative;
  z-index: 2;
}

.footer__inner {
  padding: 50px 0;
  background: #fff;
}
.footer__logo {
  text-align: center;
  margin-bottom: 30px;
}
.footer__list {
  text-align: center;
  margin-bottom: 35px;
}
.footer__list li {
  margin-bottom: 15px;
  font-size: 14px;
}
.footer__list a {
  color: #444444;
  text-decoration: underline;
}
.footer__sns {
  display: flex;
  justify-content: center;
  margin-bottom: 0px;
}
.footer__sns li {
  margin-right: 20px;
}
.footer__sns li:last-of-type {
  margin-right: 0;
}
.footer__copyright {
  padding: 10px 0;
  text-align: center;
  color: #fff;
  background: #222222;
  font-size: 10px;
}

@keyframes loop1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop3 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop4 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop5 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop6 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop7 {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes loop8 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes move {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: 55px;
    opacity: 0;
  }
}
@keyframes rotate-anime {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 500px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .main__left {
    display: none;
  }
  .main__inner {
    position: unset;
    max-width: 500px;
    overflow: hidden;
  }
  .main__right {
    display: none;
  }
  .mv__img img {
    min-height: 580px;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}/*# sourceMappingURL=style.css.map */


.main__left--btn--wrap span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  line-height: 1.5;
}
.voice__block--movie.link {
  position: relative;
}
.voice__block--movie.link > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.voice__block--movie.link video {
  pointer-events: none;
}
.header__logo img {
  width: 56px;
}