@charset "utf-8";

main {
  background-color: #F0F0F0;
  padding-bottom: 90px;
}

@media all and (max-width: 768px) {
  main {
    padding-top: 65px;
    padding-bottom: 60px;
  }
}

/* .kv
------------------------------*/
.kv {
  width: 100%;
  /* height: 100vh; */
  position: relative;
}

@media all and (max-height: 650px) {
  .is-pc .kv {
    height: 650px !important;
  }
}

@media all and (max-width: 576px) {
  .kv {
    min-height: auto;
  }
}

.kv-header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

/* @media all and (max-width: 360px) {
  .kv-header {
    transform: translate(-50%, -65%);
  }
} */
.kv-heading {
  color: #051532;
  font-size: 8.2rem;
  font-weight: 200;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0 0 20px;
}

@media all and (max-width: 768px) {
  .kv-heading {
    font-size: 4.8rem;
    margin-bottom: 30px;
  }
}

@media all and (max-width: 360px) {
  .kv-heading {
    font-size: 3.6rem;
    margin-bottom: 10px;
  }
}

.kv-movie {
  margin-bottom: 40px;
  width: 100%;
  max-width: 550px;
  margin: 0 auto 40px;
  cursor: pointer;
  position: relative;
  /* タップ時のハイライト非表示 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media all and (max-height: 750px) {
  .kv-movie {
    max-width: 415px;
  }
}

@media all and (max-width: 576px) {
  .kv-movie {
    max-width: 160px;
    margin-bottom: 30px;
  }
}

@media all and (max-width: 360px) {
  .kv-movie {
    margin-bottom: 15px;
  }
}

.kv-movie::after {
  content: "";
  display: block;
  width: 67px;
  height: 67px;
  background: url(../../assets/img/common/icon_play.svg) no-repeat center center / 100% auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .2s ease-out;
}

@media all and (max-width: 576px) {
  .kv-movie::after {
    width: 40px;
    height: 40px;
  }
}

.kv-movie:hover::after {
  background-image: url(../../assets/img/common/icon_play_hover.svg);
}

.kv-txt {
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 1.5rem;
  line-height: 2.0;
}

@media all and (max-width: 576px) {
  .kv-txt {
    font-size: 1.0rem;
    letter-spacing: 0;
    text-align: left;
    width: 300px;
    margin: 0 auto;
  }
}

@media all and (max-width: 360px) {
  .kv-txt br {
    display: none;
  }
}

.kv-scroll {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: 20px;
  right: 20px;
  /* bottom: 30px;
  left: 50%;
  transform: translate(-50%, 0); */
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  z-index: 6;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media all and (max-width: 576px) {
  .kv-scroll {
    width: 40px;
    height: 40px;
  }
}

@media all and (max-width: 320px) {
  .kv-scroll {
display:none;
  }
}

.kv-scroll a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.kv-scroll::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 12px;
  background: url(../../assets/img/common/icon_arrow_bottom.svg) no-repeat center center / 100% auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  pointer-events: none;
  /* z-index: 1; */
}

@media all and (max-width: 576px) {
  .kv-scroll::before {
    width: 14px;
    height: 8px;
  }
}

.kv-scroll:hover::before {
  animation: down_animation .3s ease 0s 1;
}

.kv-scroll span {
  font-family: 'Poppins', sans-serif;
  color: #051532;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  line-height: 1;
  top: -30px;
  left: 50%;
  transform: translate(-50%, 0);
  position: absolute;
  pointer-events: none;
}

@media all and (max-width: 576px) {
  .kv-scroll span {
    font-size: 1.2rem;
    top: -20px;
  }
}

@media all and (max-width: 360px) {
  .kv-scroll span {
    display: none;
  }
}


.kv-end {
  /* font-size: 3.0rem; */
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 40px;
}

@media all and (max-width: 576px) {
  .kv-end {
    /* font-size: 1.6rem; */
    font-size: 1.4rem;
    margin-top: 20px;
  }
}

@media all and (max-width: 320px) {
  .kv-end {
    margin-top: 10px;
    font-size: 1.1rem;
  }
}




/* .modal
------------------------------*/
.modal-works {
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.modal-works .modal-bg {
  background-color: #051532;
  height: 100%;
  position: absolute;
  width: 100%;
  opacity: 0.95;
  top: 0;
  left: 0;
}

.modal-works .modal-close {
  width: 60px;
  height: 60px;
  background: url(../../assets/img/common/icon_close.svg) no-repeat center center / 100% auto;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  transition: all .2s ease-out;
  /* タップ時のハイライト非表示 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media all and (max-width: 768px) {
  .modal-works .modal-close {
    width: 54px;
    height: 54px;
    background-color: rgba(255, 255, 255, 0.1);
    background-image: none;
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
  }

  .modal-works .modal-close::before {
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    background: url(../../assets/img/common/icon_close.svg) no-repeat center center / 100% auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.modal-works .modal-close:hover {
  opacity: 0.6;
}

.modal-works .modal-content {
  width: 100%;
  max-width: 790px;
  padding: 0 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.modal-works .modal-content .works-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  width: 100%;
}

.modal-works .modal-content .works-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* .section
------------------------------*/
@media all and (max-width: 768px) {
  .section-ankerlink {
    padding-top: 65px;
    margin-top: -65px;
  }
}

.section {
  padding: 60px 20px 0;
}

@media all and (max-width: 576px) {
  .section {
    padding-top: 30px;
  }
}

.section-inner {
  width: 100%;
  max-width: 580px;
  margin: 0 auto 100px;
}

@media all and (max-width: 576px) {
  .section-inner {
    margin: 0 auto 50px;
  }
}

.section-content {
  width: 100%;
  margin-bottom: 80px;
}

@media all and (max-width: 576px) {
  .section-content {
    margin-bottom: 60px;
  }
}

.section-content-img {
  margin-bottom: 60px;
}

@media all and (max-width: 576px) {
  .section-content-img {
    margin-bottom: 40px;
  }
}

.section-content-heading {
  font-size: 3.0rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 40px;
}

@media all and (max-width: 576px) {
  .section-content-heading {
    font-size: 8vw;
  }
}

.section-content-sub-heading {
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}

.section-content-txt {
  margin-bottom: 60px;
  font-size: 1.5rem;
  line-height: 2.0;
}

@media all and (max-width: 576px) {
  .section-content-txt {
    margin-bottom: 40px;
  }
}

.section-content-txt-border {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: solid 1px #D2D3D6;
}

.section-content-txt p {
  margin: 0 0 10px;
}

@media all and (max-width: 576px) {
  .section-content-txt p {
    margin: 0 0 20px;
    line-height: 1.6;
  }
}

.section-content-txt ul {
  margin: 0 0 10px;
  list-style: none;
  padding-left: 0;
}

.section-content-txt ul li {
  margin: 0 0 10px;
  line-height: 1.6;
  letter-spacing: -0.02em;
  position: relative;
  padding-left: 1.5em;
}

.section-content-txt ul li::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0.5em;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #051532;
}

.section-content-txt a {
  color: #051532;
  text-decoration: underline;
}

.section-content-period {
  padding: 30px 20px;
  border: solid 1px #D2D3D6;
  margin-bottom: 60px;
}

@media all and (max-width: 576px) {
  .section-content-period {
    padding: 20px 16px;
  }
}

.section-content-period dl {
  margin: 0 0 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media all and (max-width: 576px) {
  .section-content-period dl {
    margin-bottom: 20px;
  }
}

.section-content-period dl dt {
  font-size: 1.5rem;
  line-height: 1.5;
  /* width: 150px; */
  width: 100%;
  margin-bottom: 5px;
}

@media all and (max-width: 576px) {
  .section-content-period dl dt {
    /* width: 100%; */
    letter-spacing: -0.045em;
    /* margin-bottom:5px; */
  }
}

.section-content-period dl dd {
  /* width: calc(100% - 150px); */
  width: 100%;
  line-height: 1.5;
  margin: 0;
}

@media all and (max-width: 576px) {
  .section-content-period dl dd {
    /* width: 100%; */
  }
}

.section-content-product {
  margin-bottom: 60px;
}

.section-content-product dl {
  margin: 0 0 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media all and (max-width: 576px) {
  .section-content-product dl {
    margin-bottom: 20px;
  }
}

.section-content-product dl dt {
  font-size: 1.5rem;
  line-height: 1.5;
  /* width: 120px; */
  width: 100%;
  margin-bottom: 5px;
}

@media all and (max-width: 576px) {
  .section-content-product dl dt {
    /* width: 100%; */
    /* margin-bottom:5px; */
    letter-spacing: -0.045em;
  }
}

.section-content-product dl dd {
  /* width: calc(100% - 150px); */
  width: 100%;
  line-height: 1.5;
  margin: 0;
}

@media all and (max-width: 576px) {
  .section-content-product dl dd {
    /* width: 100%; */
  }
}

.period {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.notice {
  font-size: 1.1rem;
  line-height: 1.5;
  display: inline-block;
  margin-top: 0.5em;
}

.purchase-period {
  background-color: #fff;
  text-align: center;
  padding: 16px 10px;
  line-height: 1.5;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.purchase-period br {
  display: none;
}

@media all and (max-width: 576px) {
  .purchase-period {
    text-align: left;
    font-size: 1.6rem;
  }

  .purchase-period br {
    display: inline;
  }
}

.user-policy {
  width: 100%;
  height: 200px;
  border: solid 1px #D2D3D6;
  overflow: auto;
  margin: 0 0 70px;
}

@media all and (max-width: 576px) {
  .user-policy {
    margin-bottom: 60px;
  }
}

.user-policy-inner {
  padding: 25px 25px;
}

.user-policy-heading {
  font-size: 1.8rem;
  line-height: 1.0;
  font-weight: 500;
  margin: 0 0 15px;
  text-align: center;
}

.user-policy-txt {
  font-size: 1.4rem;
  line-height: 1.75;
}

.user-policy-txt p {
  margin-bottom: 20px;
}

.user-policy-txt ul,
.user-policy-txt ol {
  margin: 0 0 20px;
  padding-left: 1.0em;
}

.user-policy-txt a {
  text-decoration: underline;
  color: #051532;
}

/* .consent-area
------------------------------*/
.consent-area {}

.consent-area .consent-check {
  text-align: center;
  margin: 0 0 60px;
}

.consent-area .consent-check label {
  line-height: 1.0;
  /* タップ時のハイライト非表示 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media all and (max-width: 576px) {
  .consent-area .consent-check label {
    margin-bottom: 12px;
  }
}

.consent-area .consent-check label .check-box {
  display: none;
}

.consent-area .consent-check label .check-box+span {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  padding: 0 0 0 30px;
  position: relative;
  color: #051532;
  font-size: 1.6rem;
}

@media all and (max-width: 576px) {
  .consent-area .consent-check label .check-box+span {
    font-size: 1.4rem;
    margin: 0 7vw 0 0;
    padding: 0 0 0 30px;
  }
}

@media all and (max-width: 360px) {
  .consent-area .consent-check label .check-box+span {
    font-size: 1.2rem;
  }
}

.consent-area .consent-check label:last-child .check-box+span {
  margin-right: 0;
}

.consent-area .consent-check label .check-box+span::before {
  content: "";
  /* background: #A8A8A8; */
  background: #fff;
  display: block;
  height: 18px;
  left: 0;
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  width: 18px;
  transition: all 0.2s ease-out;
}

.consent-area .consent-check label .check-box+span::after {
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  display: block;
  height: 0.3em;
  left: 0;
  margin-top: -0.3em;
  margin-left: 0.3em;
  opacity: 0;
  position: absolute;
  top: 58%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.2s ease-out;
  width: 1em;
}

.consent-area .consent-check label .check-box:checked+span::after {
  opacity: 1;
}

.consent-area .consent-check label .check-box:checked+span::before {
  background: #051532;
}

.consent-btn {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

@media all and (max-width: 576px) {
  .consent-btn a {
    font-size: 1.2rem;
  }
}

.consent-btn a.disabled {
  pointer-events: none;
  background-color: #A8A8A8;
}

.consent-area .consent-end {
  font-size: 3.0rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

@media all and (max-width: 576px) {
  .consent-area .consent-end {
    font-size: 1.6rem;
  }
}

/* .footer-link
------------------------------*/
.footer-link {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.footer-link ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  justify-content: center;
}

.footer-link ul li {
  line-height: 1.2;
}

@media all and (max-width: 768px) {
  .footer-link ul li {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer-link ul li a {
  font-size: 1.3rem;
  text-decoration: none;
  color: #051532;
  position: relative;
  padding-right: 1em;
}

.footer-link ul li a::after {
  content: "";
  display: inline-block;
  width: 6.85px;
  height: 12px;
  background: url(../../assets/img/common/icon_arrow_right.svg) no-repeat center center / 100% auto;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  position: absolute;
}

.footer-link ul li a:hover::after {
  animation: next_animation .3s ease 0s 1;
}

.footer-link ul li a span {
  position: relative;
}

.footer-link ul li a span::before {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  background-color: #051532;
  animation: underline_animation_off .3s ease 0s 1 backwards;
}

.footer-link ul li a:hover span::before {
  animation: underline_animation_on .3s ease 0s 1 forwards;
}

/**/
