/*
*Theme Name:PON DESIGN
*/
/* 全体に適用 */
::selection {
  background-color: var(--theme-color); /* 選択時の背景色 */
  color: var(--text-white);
}

/* Firefox用 */
::-moz-selection {
  background-color: var(--theme-color); /* 選択時の背景色 */
  color: var(--text-white);
}

html {
  font-family:
    "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Helvetica Neue", Arial,
    "Hiragino Sans", Meiryo, sans-serif;
  font-size: 62.5%;
  color: var(--text-white);
}
body.no-scroll {
  overflow: hidden;
  width: 100%;
}
.container {
  max-width: 1500px;
  width: 100%;
  padding: 70px 30px;
  margin: auto;
}
.pc-none {
  display: none;
}
.section-title {
  color: var(--theme-color);
  font-family: Montserrat;
  font-weight: bold;
  font-size: 3.6rem;
  line-height: 4.32rem;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
}
.section-subtitle {
  color: var(--theme-color);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.56rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .section-title-wrapper {
    text-align: center;
    padding-top: 4px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    padding: 70px 15px 0;
  }
  .pc-none {
    display: block;
  }

  .section-title {
    font-size: 3rem;
    line-height: 3.6rem;
  }
}

/*component*/
.c-btn {
  display: block;
  font-family: Montserrat;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 56px;
  letter-spacing: 0.07rem;
  width: 220px;
  height: 56px;
  border-radius: 50px;
  margin: auto;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}
.c-btn::after {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-top: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid white;
  border-radius: 3px;
  position: absolute;
  top: 22px;
  right: 16px;
  transition: all 0.3s;
}
.c-btn:hover::after {
  transform: translateX(6px);
}
.btn-purple {
  position: relative;
  background: linear-gradient(90deg, #7633a4, #250d65);
  color: var(--text-white);
  z-index: 0;
}
.btn-purple::before {
  content: "";
  position: absolute;
  border-radius: 50px;
  background: linear-gradient(90deg, #250d65, #7633a4);
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-purple:hover::before {
  opacity: 1;
}
@media screen and (max-width: 1023px) {
}
@media screen and (max-width: 767px) {
}

/*========================================================
mainvisual
=========================================================*/
.mainvisual {
  background-image: url("assets/images/hero.png");
  width: 100%;
  height: 100vh;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mainvisual .container {
  padding: 0;
}
.mainvisual-maintext {
  font-family: Montserrat;
  font-weight: bold;
  font-size: 7.2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
}
.mainvisual-subtext {
  display: block;
  margin-bottom: 50px;
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 4.32rem;
  letter-spacing: 0.1em;
}
.btn-mainvisual {
  color: var(--text-white);
  border: 1px solid var(--btn-white);
}
.btn-mainvisual:hover {
  opacity: 0.8;
}
.mainvisual-scroll {
  position: absolute;
  right: 0.4%;
  bottom: 15%;
  transform: rotate(90deg);
  font-family: Montserrat;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.24rem;
}
.mainvisual-scroll::after {
  position: absolute;
  right: -90px;
  bottom: 50%;
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background-color: white;
  animation: moveLine 1.5s linear infinite;
}
@keyframes moveLine {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  47% {
    transform: scaleX(1);
    transform-origin: left;
  }
  53% {
    transform: scaleX(1);
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}
@media screen and (max-width: 1023px) {
  .mainvisual {
    background-position: -680px center;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual {
    text-align: left;
    background-position: -1000px center;
  }
  .mainvisual .container {
    padding: 0 30px;
  }
  .mainvisual-maintext {
    font-size: 4rem;
    line-height: 4.4rem;
    padding-top: 4px;
  }
  .mainvisual-subtext {
    font-size: 1.6rem;
    line-height: 2.88rem;
    margin-bottom: 30px;
  }
  .btn-mainvisual {
    margin-left: 0;
  }
  .mainvisual-scroll {
    right: -3%;
    bottom: 10.5%;
  }
}
/*===================================================================
404 page
===================================================================*/
.title-404 {
  display: block;
  height: 500px;
  line-height: 500px;
  position: relative;
  z-index: 0;
  background-color: var(--theme-color);
  color: var(--text-white);
  text-align: center;
  margin-bottom: 0;
}
