@charset "utf-8";

/*--調整--*/
html {
	background-color: transparent !important;
}

.h_bar, 
#beltbnr {
	display: none;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clearfix:before {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  display: block;
}

#specialty {
  text-align: center;
}

#specialty a {
  text-decoration: none;
}

#specialty figure {
  margin: 0;
}


@media only screen and (max-width: 767px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none;
  }

  .pc {
    display: block;
  }
}

/*--フォント--*/
:root {
  --leading-trim: calc((1em - 1lh) / 2);
}

@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
  }
}

.fontJp400 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.fontJp700 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.fontEn400 {
  font-family: "indivisible", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.fontEn900 {
  font-family: "indivisible", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.fontEn900It {
  font-family: "indivisible", sans-serif;
  font-weight: 900;
  font-style: italic;
}


/*----------
KV
----------*/
.kv__wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.kv__img {
  width: 100%;
  height: 100%;
  display: block;
}

.kv__logo-netplus {
  width: 35.55%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
  opacity: 0;
  animation: kvFadeIn 1.5s ease-in-out 0.5s forwards;
}

.kv__title {
  width: 100%;
  position: absolute;
  top: 74.72%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
  opacity: 0;
  animation: kvFadeIn 1s ease-in-out 2s forwards;
}

.kv__title img {
  width: 76.94%;
}

.kv__logo-ships {
  width: 12.03%;
  position: absolute;
  top: 93.33%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
  opacity: 0;
  animation: kvFadeIn 0.5s ease-in-out 3s forwards;
}

@media only screen and (min-width: 768px) {
  .kv__logo-netplus {
    width: 16%;
  }

  .kv__title img {
    width: 34.62%;
  }

  .kv__logo-ships {
    width: 5.41%;
  }
}

@keyframes kvFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/*----------
LEAD
----------*/
.lead__wrapper {
  width: calc(100% - 20px * 2);
  margin: 40px auto 0;
}

.lead__wrapper p {
  font-size: min(3.2558139534vw, 14px);
  line-height: 2;
  color: #000000;
  text-align: left;
  margin-block: var(--leading-trim);
}

@media only screen and (min-width: 768px) {
  .lead__wrapper {
    width: 900px;
    margin: 60px auto 0;
  }

  .lead__wrapper p {
    text-align: center;
  }
}


/*----------
MOVIE
----------*/
.movie {
  width: 100%;
  margin: 60px auto 0;
  padding: 40px 0;
  background: #000000;
}

.movie__wrapper {
  width: 100%;
  margin: 0 auto;
}

.movie__title {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0 20px;
  font-size: min(8.3720930232vw, 36px);
  line-height: 2;
  color: #ffffff;
  text-align: left;
  margin-block: var(--leading-trim);
}

#movie__container {
  position: relative;
  margin: 30px 0 0 0;
  padding: 56.25% 0 0 0;
}

#movie__thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

#movie__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.movie__accordion {
  width: calc(100% - 20px * 2);
  margin: 40px auto 0;
  background: #ffffff;
  border-radius: 20px 20px 20px 0;
}

summary.accordion__title {
  display: block;
}

summary.accordion__title::-webkit-details-marker {
  display: none;
}

.accordion__title--inner {
  position: relative;
  background: #ffffff;
  padding: 20px;
  font-size: min(4.6511627906vw, 20px);
  line-height: 2;
  color: #000000;
  text-align: left;
  border-radius: 20px 20px 20px 0;
  transition: border-radius 0ms 400ms;
  cursor: pointer;
}

.accordion__title--inner::before, 
.accordion__title--inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 1px;
  background: #000000;
  transition: transform 0.5s;
}

.accordion__title--inner::before {
  transform: rotate(90deg);
}

.accordion__content {
  overflow: hidden;
  background: #ffffff;
  border-radius: 0 0 20px 0;
}

.accordion__content--innner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 10px 20px 30px;
}

.accordion__content--innner p {
  font-size: min(3.2558139534vw, 14px);
  line-height: 2;
  color: #000000;
  text-align: left;
  margin-block: var(--leading-trim);
}

.movie__accordion.opened .accordion__title--inner {
  border-radius: 20px 20px 0 0;
}

.movie__accordion.opened .accordion__title--inner::before {
  transform: rotate(180deg);
}

@media only screen and (min-width: 768px) {
  .movie {
    padding: 60px 0;
  }

  .movie__wrapper  {
    max-width: 1200px;
  }

  .movie__title {
    max-width: 1000px;
  }

  .movie__accordion {
    max-width: 1000px;
  }
}


/*----------
ABOUT
----------*/
.about__wrapper {
  width: 100%;
  margin: 60px auto 0;
}

.about__title {
  padding: 0 0 0 20px;
  font-size: min(8.3720930232vw, 36px);
  line-height: 2;
  color: #000000;
  text-align: left;
  margin-block: var(--leading-trim);
}

.about__content--txt {
  font-size: min(3.2558139534vw, 14px);
  line-height: 2;
  color: #000000;
  text-align: left;
  margin-block: var(--leading-trim);
}

.about__content--01 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about__content--01 .about__content--txt {
  width: calc(100% - 20px * 2);
  margin: 0 auto;
  padding: 40px 0 0 0;
}

.about__content--01 .about__content--img {
  width: 100%;
  margin: 30px auto 0;
}

.about__content--02 .about__content--img {
  width: calc(100% - 70px * 2);
  margin: 30px auto 0;
}

.about__content--03 {
  margin: 40px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about__content--03 .about__content--txt {
  width: calc(100% - 20px * 2);
  margin: 0 auto;
}

.about__content--03 .about__content--img {
  width: calc(100% - 30px * 2);
  margin: 30px auto 0;
}

.about__content--04 {
  margin: 30px 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.about__content--04 .about__content--img {
  width: 48.83%;
}

.about__content--04 .about__content--img:first-of-type {
  margin: 60px 0 0 0;
}

.about__content--05 {
  margin: 40px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about__content--05 .about__content--txt {
  width: calc(100% - 20px * 2);
  margin: 0 auto;
}

.about__content--05 .about__content--img {
  width: calc(100% - 20px * 2);
  margin: 30px auto 0;
}

.about__content--06 .about__content--img {
  width: 72.09%;
  margin: -20px 0 0 auto;
}

.about__content--02 .view, 
.about__content--04 .view, 
.about__content--06 .view {
  opacity: 0;
}

.view.active {
  animation-name: view;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

.about__content--04 .view:nth-of-type(1).active {
  animation-delay: 0.5s;
}

.about__content--04 .view:nth-of-type(2).active {
  animation-delay: 0s;
}

@keyframes view {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media only screen and (min-width: 768px) {
  .about__wrapper {
    width: 820px;
  }
  .about__title {
    padding: 0;
    text-align: center;
  }

  .about__content--01 {
    margin: 40px 0 0 0;
    flex-direction: row;
    justify-content: space-between;
  }

  .about__content--01 .about__content--txt {
    width: 350px;
    margin: 0;
  }

  .about__content--01 .about__content--img {
    width: 430px;
    margin: 0;
  }

  .about__content--02 .about__content--img {
    width: 350px;
    margin: -50px auto 0 80px;
  }

  .about__content--03 {
    margin: 60px 0 0 0;
  }

  .about__content--03 .about__content--txt {
    width: 430px;
    margin: 40px auto 0;
    order: 2;
  }

  .about__content--03 .about__content--img {
    width: 430px;
    margin: 0 auto;
    order: 1;
  }

  .about__content--04 {
    margin: 40px 0 0 0;
    justify-content: center;
  }

  .about__content--04 .about__content--img {
    width: 260px;
  }

  .about__content--04 .about__content--img:first-of-type {
    margin: 0 20px 0 0;
  }

  .about__content--04 .about__content--img:last-of-type {
    margin: 0 0 0 20px;
  }

  .about__content--05 {
    margin: 60px 0 0 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .about__content--05 .about__content--txt {
    width: 350px;
    margin: 0;
    order: 2;
  }

  .about__content--05 .about__content--img {
    width: 430px;
    margin: 0;
    order: 1;
  }

  .about__content--06 .about__content--img {
    width: 370px;
    margin: -40px auto 0;
  }

  .about__content--04 .view:nth-of-type(1).active {
    animation-delay: 0s;
  }

  .about__content--04 .view:nth-of-type(2).active {
    animation-delay: 0.5s;
  }
}


/*----------
PROCESS
----------*/
.process {
  width: 100%;
  margin: 60px auto 0;
  padding: 0 0 60px;
  background: #000000;
}

.process__wrapper {
  width: 100%;
  margin: 0 auto;
}

.process__title {
  position: relative;
}

.process__title h3 {
  position: absolute;
  bottom: 30px;
  left: 20px;
  font-size: min(8.3720930232vw, 36px);
  line-height: 2;
  color: #ffffff;
  text-align: left;
  margin-block: var(--leading-trim);
}

.process__lead {
  width: calc(100% - 20px * 2);
  margin: 40px auto 0;
}

.process__lead p {
  font-size: min(3.2558139534vw, 14px);
  line-height: 2;
  color: #ffffff;
  text-align: left;
  margin-block: var(--leading-trim);
}

.process__content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.process__content li {
  width: 69.76%;
}

.process__content li:nth-of-type(2n-1) {
  margin: 60px 20px 0 auto;
}

.process__content li:nth-of-type(2n) {
  margin: 60px auto 0 20px;
}

.process__content figure img {
  opacity: 0;
}

.process__content figcaption {
  margin: -20px 0 0 0;
}

.process__content figcaption h4 {
  display: inline-block;
  font-size: min(7.4418604651vw, 32px);
  line-height: min(7.4418604651vw, 32px);
  color: transparent;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.process__content figcaption p {
  display: inline-block;
  margin-top: 5px;
  font-size: min(2.7906976744vw, 12px);
  line-height: 2;
  color: transparent;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.process__content figcaption h4::after, 
.process__content figcaption p::after {
  background: #ffffff;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translate(-101%, 0);
}

.process__content li.active figure img {
  animation: fade-img 1.5s ease-out 0.5s forwards;
}

.process__content li.active figcaption h4 {
  color: #ffffff;
  transition: color 0s 1s;
}

.process__content li.active figcaption h4::after {
  animation: mask-bg 1s cubic-bezier(0.8, 0, 0.170, 1) 0.5s;
}

.process__content li.active figcaption p {
  color: #ffffff;
  transition: color 0s 2s;
}

.process__content li.active figcaption p::after {
  animation: mask-bg 1s cubic-bezier(0.8, 0, 0.170, 1) 1.5s;
}

@media only screen and (min-width: 768px) {
  .process {
    margin: 80px auto 0;
    padding: 80px 0;
  }

  .process__title {
    width: 900px;
    margin: 0 auto;
  }

  .process__title h3 {
    top: 50%;
    bottom: 50%;
    transform: translateY(-50%);
  }

  .process__lead {
    width: 900px;
    margin: 60px auto 0;
  }

  .process__lead p {
    text-align: center;
  }

  .process__content {
    width: 960px;
    margin: 80px auto 0;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .process__content li {
    width: 300px;
  }

  .process__content li:nth-of-type(1) {
    margin: 180px 10px 0;
    order: 1;
  }

  .process__content li:nth-of-type(2) {
    margin: 0 10px 0;
    order: 2;
  }

  .process__content li:nth-of-type(3) {
    margin: 180px 10px 0;
    order: 3;
  }

  .process__content li:nth-of-type(4) {
    margin: 40px 10px 0;
    order: 6;
  }

  .process__content li:nth-of-type(5) {
    margin: 220px 10px 0;
    order: 5;
  }

  .process__content li:nth-of-type(6) {
    margin: 40px 10px 0;
    order: 4;
  }

  .process__content.active .process__content--01 figure img {
    animation: fade-img 1.5s ease-out forwards;
  }

  .process__content.active .process__content--02 figure img {
    animation: fade-img 1.5s ease-out 1s forwards;
  }

  .process__content.active .process__content--03 figure img {
    animation: fade-img 1.5s ease-out 2s forwards;
  }

  .process__content.active .process__content--04 figure img {
    animation: fade-img 1.5s ease-out 3s forwards;
  }

  .process__content.active .process__content--05 figure img {
    animation: fade-img 1.5s ease-out 4s forwards;
  }

  .process__content.active .process__content--06 figure img {
    animation: fade-img 1.5s ease-out 5s forwards;
  }

  .process__content.active .process__content--01 figcaption h4, 
  .process__content.active .process__content--02 figcaption h4, 
  .process__content.active .process__content--03 figcaption h4, 
  .process__content.active .process__content--04 figcaption h4, 
  .process__content.active .process__content--05 figcaption h4, 
  .process__content.active .process__content--06 figcaption h4 {
    color: #ffffff;
  }

  .process__content.active .process__content--01 figcaption h4 {
    transition: color 0s 0.5s;
  }

  .process__content.active .process__content--02 figcaption h4 {
    transition: color 0s 1.5s;
  }

  .process__content.active .process__content--03 figcaption h4 {
    transition: color 0s 2.5s;
  }

  .process__content.active .process__content--04 figcaption h4 {
    transition: color 0s 3.5s;
  }

  .process__content.active .process__content--05 figcaption h4 {
    transition: color 0s 4.5s;
  }

  .process__content.active .process__content--06 figcaption h4 {
    transition: color 0s 5.5s;
  }

  .process__content.active .process__content--01 figcaption h4::after {
    animation: mask-bg 1s cubic-bezier(0.8, 0, 0.170, 1);
  }

  .process__content.active .process__content--02 figcaption h4::after {
    animation: mask-bg 1s cubic-bezier(0.8, 0, 0.170, 1) 1s;
  }

  .process__content.active .process__content--03 figcaption h4::after {
    animation: mask-bg 1s cubic-bezier(0.8, 0, 0.170, 1) 2s;
  }

  .process__content.active .process__content--04 figcaption h4::after {
    animation: mask-bg 1s cubic-bezier(0.8, 0, 0.170, 1) 3s;
  }

  .process__content.active .process__content--05 figcaption h4::after {
    animation: mask-bg 1s cubic-bezier(0.8, 0, 0.170, 1) 4s;
  }

  .process__content.active .process__content--06 figcaption h4::after {
    animation: mask-bg 1s cubic-bezier(0.8, 0, 0.170, 1) 5s;
  }

  .process__content.active .process__content--01 figcaption p, 
  .process__content.active .process__content--02 figcaption p, 
  .process__content.active .process__content--03 figcaption p, 
  .process__content.active .process__content--04 figcaption p, 
  .process__content.active .process__content--05 figcaption p, 
  .process__content.active .process__content--06 figcaption p {
    color: #ffffff;
  }

  .process__content.active .process__content--01 figcaption p {
    transition: color 0s 1s;
  }

  .process__content.active .process__content--02 figcaption p {
    transition: color 0s 2s;
  }

  .process__content.active .process__content--03 figcaption p {
    transition: color 0s 3s;
  }

  .process__content.active .process__content--04 figcaption p {
    transition: color 0s 4s;
  }

  .process__content.active .process__content--05 figcaption p {
    transition: color 0s 5s;
  }

  .process__content.active .process__content--06 figcaption p {
    transition: color 0s 6s;
  }

  .process__content.active .process__content--01 figcaption p::after {
    animation: mask-bg 1s cubic-bezier(0.8, 0, 0.170, 1) 0.5s;
  }

  .process__content.active .process__content--02 figcaption p::after {
    animation: mask-bg 1s cubic-bezier(0.8, 0, 0.170, 1) 1.5s;
  }

  .process__content.active .process__content--03 figcaption p::after {
    animation: mask-bg 1s cubic-bezier(0.8, 0, 0.170, 1) 2.5s;
  }

  .process__content.active .process__content--04 figcaption p::after {
    animation: mask-bg 1s cubic-bezier(0.8, 0, 0.170, 1) 3.5s;
  }

  .process__content.active .process__content--05 figcaption p::after {
    animation: mask-bg 1s cubic-bezier(0.8, 0, 0.170, 1) 4.5s;
  }

  .process__content.active .process__content--06 figcaption p::after {
    animation: mask-bg 1s cubic-bezier(0.8, 0, 0.170, 1) 5.5s;
  }
}

@keyframes fade-img {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mask-bg {
  0% {
    transform: translate(-101%, 0)
  }
  40%, 60% {
    transform: translate(0%, 0)
  }
  100% {
    transform: translate(101%, 0)
  }
}


/*----------
PRODUCT
----------*/
.product__wrapper {
  width: 100%;
  margin: 0 auto;
}

.product__title {
  position: relative;
}

.product__title h3 {
  position: absolute;
  bottom: 30px;
  left: 20px;
  font-size: min(8.3720930232vw, 36px);
  line-height: 2;
  color: #000000;
  text-align: left;
  margin-block: var(--leading-trim);
}

.product__lead {
  width: calc(100% - 20px * 2);
  margin: 40px auto 0;
}

.product__lead p {
  font-size: min(3.2558139534vw, 14px);
  line-height: 2;
  color: #000000;
  text-align: left;
  margin-block: var(--leading-trim);
}

.product__content {
  width: calc(100% - 20px * 2);
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product__content--txt {
  margin: 40px 0 0 0;
}

.product__content--txt > h4 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  font-size: min(8.3720930232vw, 36px);
  line-height: 2;
  color: #000000;
  text-align: left;
  margin-block: var(--leading-trim);
}

.product__content--txt > h4.active {
  --x: 0;
}

.product__content--txt > h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #000000;
  transition: 0.6s ease-out;
}

.product__content--txt > h4.active::after {
  width: 100%;
}

.char {
  overflow: hidden;
}

.char-text {
  display: inline-block;
  transform: translateX(var(--x, -101%));
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: calc(0.05s * var(--char-index));
}

.product__content--txt > p {
  padding: 40px 0 0 0;
  font-size: min(3.2558139534vw, 14px);
  line-height: 2;
  color: #000000;
  text-align: left;
  margin-block: var(--leading-trim);
}

.product__content--spec {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product__content--spec h5 {
  font-size: min(6.5116279069vw, 28px);
  line-height: 2;
  color: #000000;
  text-align: left;
  margin-block: var(--leading-trim);
}

.product__content--spec p {
  padding: 10px 0 0 0;
  font-size: min(3.2558139534vw, 14px);
  line-height: 2;
  color: #000000;
  text-align: left;
  margin-block: var(--leading-trim);
}

.product__content--color, 
.product__content--size {
  margin: 30px 0 0 0;
}

.product__content--credit {
  margin: 30px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product__content--price p {
  font-size: min(5.1162790697vw, 22px);
  line-height: 2;
  color: #000000;
  text-align: center;
  margin-block: var(--leading-trim);
}

.product__content--btn {
  width: 69.23%;
  margin: 15px 0 0 0;
}

.product__content--btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background: #000000;
  border: 1px solid #000000;
  border-radius: 50px;
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
  font-size: min(5.1162790697vw, 22px);
  color: #ffffff;
  text-align: center;
}

.product__content--btn a:hover {
  background: #ffffff;
  border: 1px solid #000000;
  color: #000000;
}

@media only screen and (min-width: 768px) {
  .product__wrapper {
    width: 900px;
    margin: 80px auto 0;
  }

  .product__title h3 {
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
  }

  .product__lead {
    width: 100%;
    margin: 60px auto 0;
  }

  .product__lead p {
    text-align: center;
  }

  .product__content {
    width: 820px;
    margin: 80px auto 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .product__content--img, 
  .product__content--txt {
    width: 390px;
    margin: 0;
  }

  .product__content--spec {
    flex-direction: row;
    justify-content: flex-start;
  }

  .product__content--color {
    margin: 30px 40px 0 0;
  }

  .product__content--credit {
    margin: 60px 0 0 0;
    flex-direction: row;
    justify-content: space-between;
  }

  .product__content--btn {
    width: 100px;
    margin: 0;
  }
}


/*----------
OTHER BUTTON
----------*/
.otherBtn__wrapper {
  width: 81.39%;
  margin: 80px auto 0;
}

.otherBtn__wrapper a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background: #000000;
  border: 1px solid #000000;
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
  font-size: min(4.1860465116vw, 18px);
  color: #ffffff;
  text-align: center;
}

.otherBtn__wrapper a:hover {
  background: #ffffff;
  border: 1px solid #000000;
  color: #000000;
}

@media only screen and (min-width: 768px) {
  .otherBtn__wrapper {
    width: 390px;
    margin: 100px auto 0;
  }
}


/*----------
FOOTER
----------*/
.footer__wrapper {
  width: 100%;
  margin: 80px auto 0;
}

.footer__wrapper img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media only screen and (min-width: 768px) {
  .footer__wrapper {
    margin: 100px auto 0;
  }
}