@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hind+Guntur:wght@700&display=swap");
body {
  margin: 0;
  padding: 0;
  background: #6ebfdb;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 0.9rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #000;
  word-break: break-all;
}

.wrap {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", "ヒラギノ角ゴ ProN", Meiryo, sans-serif;
}

.border {
  position: fixed;
  display: block;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .border {
    background: repeating-linear-gradient(220deg, #c3d435, #c3d435 10px, #f0831e 10px, #f0831e 20px);
  }
}
@media only screen and (min-width: 768px) {
  .border {
    background: repeating-linear-gradient(220deg, #c3d435, #c3d435 20px, #f0831e 20px, #f0831e 40px);
  }
}

.border-top {
  top: 0;
  left: 0;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .border-top {
    height: 23px;
  }
}
@media only screen and (min-width: 768px) {
  .border-top {
    height: 50px;
  }
}

.border-right {
  top: 0;
  right: 0;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .border-right {
    width: 23px;
  }
}
@media only screen and (min-width: 768px) {
  .border-right {
    width: 50px;
  }
}

.border-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .border-bottom {
    height: 23px;
  }
}
@media only screen and (min-width: 768px) {
  .border-bottom {
    height: 50px;
  }
}

.border-left {
  top: 0;
  left: 0;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .border-left {
    width: 23px;
  }
}
@media only screen and (min-width: 768px) {
  .border-left {
    width: 50px;
  }
}

.nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 999;
}
@media only screen and (max-width: 767px) {
  .nav {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .nav {
    left: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .nav__item {
    margin: 5px 0;
  }
}
@media only screen and (min-width: 768px) {
  .nav__item {
    margin: 8px 0;
  }
}
.nav__item.active span {
  background: #000;
}
.nav a {
  position: relative;
  z-index: 999;
}
.nav span {
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid #000;
  box-sizing: border-box;
}

.side-share {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
}
@media only screen and (max-width: 767px) {
  .side-share {
    right: 15px;
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .side-share {
    right: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .side-share__text {
    margin: 0 0 20px;
  }
}
@media only screen and (min-width: 768px) {
  .side-share__text {
    margin: 0 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .side-share__text img {
    width: 15px;
  }
}
.side-share__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .side-share__list li {
    margin: 0 0 15px;
  }
}
@media only screen and (min-width: 768px) {
  .side-share__list li {
    margin: 0 0 20px;
  }
}
.side-share__list li:last-child {
  margin: 0;
}
.side-share__list li span {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .side-share__list li span:hover::before {
    color: #c3d435;
    transition: 0.3s;
  }
}
.side-share__list li span::before {
  font-family: "Font Awesome 5 Brands";
  font-weight: 900;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .side-share__list li span::before {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 768px) {
  .side-share__list li span::before {
    font-size: 1.6rem;
  }
}
.side-share__list li span.share-twitter::before {
  content: "\f099";
}
.side-share__list li span.share-instagram::before {
  content: "\f16d";
}

.foot-scroll {
  position: fixed;
  border: 2px solid #000;
  border-radius: 50%;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .foot-scroll {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .foot-scroll {
    bottom: 70px;
    left: 70px;
    width: 50px;
    height: 50px;
  }
}
.foot-scroll__icon {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: -5px 0 0;
}
@media only screen and (max-width: 767px) {
  .foot-scroll__icon {
    width: 38px;
    height: 38px;
  }
}
@media only screen and (min-width: 768px) {
  .foot-scroll__icon {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .foot-scroll__icon .foot-arrow {
    width: 7px;
    height: 7px;
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    -webkit-animation: move 2s infinite;
            animation: move 2s infinite;
    border-radius: 1px;
  }
}
@media only screen and (min-width: 768px) {
  .foot-scroll__icon .foot-arrow {
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    -webkit-animation: move 2s infinite;
            animation: move 2s infinite;
    border-radius: 1px;
  }
}
.foot-scroll__icon .foot-arrow:nth-child(1) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.foot-scroll__icon .foot-arrow:nth-child(2) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
@-webkit-keyframes move {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(5px) rotate(45deg);
  }
}
@keyframes move {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(5px) rotate(45deg);
  }
}

.section {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .section {
    padding: 60px 0;
  }
}
@media only screen and (min-width: 768px) {
  .section {
    height: calc(100vh - 100px);
  }
}
.section .block {
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .section .block {
    margin: 0 45px;
  }
}
@media only screen and (min-width: 768px) {
  .section .block {
    max-width: 1000px;
    width: calc(100% - 140px);
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .section.intro, .section.prod, .section.sale {
    position: relative;
  }
}
@media only screen and (min-width: 768px) {
  .section.intro, .section.prod, .section.sale {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .hero {
    height: calc(100vh - 46px);
  }
}
@media only screen and (min-width: 768px) {
  .hero {
    height: calc(100vh - 88px);
  }
}
@media only screen and (max-width: 767px) {
  .hero.section {
    padding: 0;
  }
}
.hero .block {
  max-width: 1200px;
}
.hero__logo {
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .hero__logo {
    top: 32px;
    right: 30px;
    width: 140px;
  }
}
@media only screen and (min-width: 768px) {
  .hero__logo {
    top: 60px;
    right: 60px;
  }
}
.hero__catch {
  position: absolute;
  margin: 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .hero__catch {
    font-size: 1.1rem;
    top: 30px;
    left: 34px;
  }
}
@media only screen and (min-width: 768px) {
  .hero__catch {
    font-size: 2.1rem;
    line-height: 2.2rem;
    top: 60px;
    left: 60px;
  }
}
.hero__sub {
  position: absolute;
}
.hero__img {
  z-index: 99;
  text-align: center;
  -webkit-animation: zoomIn 1s forwards;
          animation: zoomIn 1s forwards;
}
.hero__img h1 {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .hero__img h1 img {
    transform: scale(1.2);
  }
}
@media only screen and (min-width: 768px) {
  .hero__img h1 img {
    width: 66.6666666667%;
  }
}
@-webkit-keyframes zoomIn {
  from {
    transform: scale(0.6);
  }
  to {
    transform: scale(1);
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.6);
  }
  to {
    transform: scale(1);
  }
}

.intro {
  background: #0b0b0d;
  color: #fff;
  overflow: hidden;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .intro {
    align-items: flex-start;
  }
}
.intro p {
  letter-spacing: 0.03rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .intro p {
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
    font-size: 0.9rem;
    line-height: 1.7rem;
    margin: 0 0 20px;
  }
}
@media only screen and (min-width: 768px) {
  .intro p {
    font-size: 1.1rem;
    line-height: 2.6rem;
    margin: 0 0 30px;
  }
}
.intro p:first-child .fadein {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.intro__img {
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .intro__img {
    width: 400px;
    bottom: -170px;
    right: -80px;
  }
}
@media only screen and (min-width: 768px) {
  .intro__img {
    bottom: -120px;
    right: -50px;
  }
}
.intro__bg-text {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 100%;
}
@media only screen and (max-width: 767px) {
  .intro__bg-text {
    font-size: 2.7rem;
    margin: 0 0 30px;
  }
}
@media only screen and (min-width: 768px) {
  .intro__bg-text {
    font-size: 6rem;
    margin: 0 0 40px;
    white-space: nowrap;
  }
}

.prod {
  background: #6ebfdb;
}
@media only screen and (min-width: 768px) {
  .prod__inner {
    display: flex;
    justify-content: space-between;
    max-width: 1250px;
  }
}
.prod__img {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .prod__img {
    width: 270px;
    margin: 0 auto 30px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__img {
    width: 550px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__text {
    width: calc(100% - 630px);
    padding: 40px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .prod__text h3 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .prod__text h3 img {
    width: 200px;
  }
}
.prod__text h3 p {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .prod__text h3 p {
    font-size: 0.9rem;
    margin: 10px 30px 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .prod__text h3 p {
    font-size: 1.5rem;
    margin: 15px 0 0;
  }
}
.prod__text .price-container {
  margin: 20px 0 0;
}
@media only screen and (min-width: 768px) {
  .prod__text .price-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.prod__text .price-container .price {
  font-weight: 700;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .prod__text .price-container .price {
    text-align: center;
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .prod__text .price-container .price {
    font-size: 2.1rem;
  }
}
.prod__text .price-container .price .yen {
  margin: 0 5px 0 0;
}
@media only screen and (max-width: 767px) {
  .prod__text .price-container .price .yen {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .prod__text .price-container .price .yen {
    font-size: 1.3rem;
    position: relative;
    top: -2px;
  }
}
.prod__text .price-container .price .tax {
  margin: 0 0 0 5px;
  position: relative;
  top: -3px;
}
@media only screen and (max-width: 767px) {
  .prod__text .price-container .price .tax {
    font-size: 0.7rem;
  }
}
@media only screen and (min-width: 768px) {
  .prod__text .price-container .price .tax {
    font-size: 0.8rem;
  }
}
.prod__text .price-container .soldout {
  color: #ea5520;
  font-weight: 600;
  line-height: 100%;
}
@media only screen and (max-width: 767px) {
  .prod__text .price-container .soldout {
    text-align: center;
    font-size: 1.1rem;
    margin: 7px 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .prod__text .price-container .soldout {
    font-size: 1.4rem;
    margin: 0;
    padding: 0 0 5px;
  }
}
.prod .slide-thumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .prod .slide-thumb {
    justify-content: center;
    margin: 30px 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .prod .slide-thumb {
    margin: 50px 0 0;
  }
}
.prod .slide-thumb__item {
  height: 100px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .prod .slide-thumb__item {
    width: 65px;
    height: 65px;
    margin: 0 3px 13px;
  }
}
@media only screen and (min-width: 768px) {
  .prod .slide-thumb__item {
    width: 105px;
    height: 105px;
    margin: 0 16px 18px 0;
    transition: 0.3s;
  }
  .prod .slide-thumb__item:hover {
    opacity: 0.8;
  }
}
.prod .slide-thumb__item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.prod .slide-thumb__item.slick-active:hover {
  opacity: 1;
}
.prod .slide-thumb__item.slick-active img {
  filter: drop-shadow(0 0 0 #000);
}
.prod .slide-thumb .slick-track {
  margin: 0 !important;
  transform: unset !important;
}

.sale {
  background: #ea5520;
}
@media only screen and (max-width: 767px) {
  .sale {
    margin: 0 0 23px;
  }
}
@media only screen and (min-width: 768px) {
  .sale {
    margin: 0 0 50px;
  }
}
@media only screen and (max-width: 767px) {
  .sale__item {
    margin: 0 0 30px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__item {
    margin: 0 0 60px;
  }
}
.sale__item:last-child {
  margin: 0;
}
.sale__item:last-child .fadein {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.sale__item h4 {
  letter-spacing: 0.05rem;
  display: inline-block;
  border-bottom: 3px solid #000;
}
@media only screen and (max-width: 767px) {
  .sale__item h4 {
    font-size: 1.1rem;
    margin: 0 0 20px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__item h4 {
    font-size: 1.3rem;
    margin: 0 0 20px;
  }
}
.sale__item p {
  letter-spacing: 0.05rem;
}
@media only screen and (max-width: 767px) {
  .sale__item p {
    margin: 0 0 20px;
    line-height: 1.55rem;
  }
}
@media only screen and (min-width: 768px) {
  .sale__item p {
    margin: 0 0 30px;
    line-height: 1.75rem;
  }
}
.sale__item p:last-child {
  margin: 0;
}
.sale__item p span {
  font-weight: 500;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .sale__item p span {
    font-size: 1.05rem;
    margin: 0 0 5px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__item p span {
    font-size: 1.15rem;
  }
}
.sale__item ul {
  margin: 0 0 0 15px;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .sale__item ul {
    line-height: 1.55rem;
  }
}
@media only screen and (min-width: 768px) {
  .sale__item ul {
    line-height: 1.6rem;
  }
}
.sale__item ul span {
  display: block;
}
.sale__item ul li {
  margin: 0 0 10px;
  font-weight: 500;
}
.sale__item ul li:last-child {
  margin: 0;
}
.sale__item ul li span {
  font-weight: 400;
}
.sale__btn {
  background: #ea5520;
  border: 3px solid #000;
  text-align: center;
  font-weight: 600;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .sale__btn {
    margin: 30px 0 0;
    height: 48px;
    line-height: 48px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__btn {
    margin: 70px auto 0;
    width: 470px;
    height: 67px;
    line-height: 67px;
    font-size: 1.1rem;
    transition: 0.1s;
  }
  .sale__btn:hover {
    background: #c3d435;
    border: 3px solid #c3d435;
  }
  .sale__btn:hover::after {
    border-top: solid 3px #ea5520;
    border-right: solid 3px #ea5520;
  }
  .sale__btn:hover a {
    color: #ea5520;
  }
}
.sale__btn::after {
  content: "";
  border-top: solid 3px #000;
  border-right: solid 3px #000;
  transform: rotate(45deg);
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .sale__btn::after {
    width: 7px;
    height: 7px;
    top: 18px;
    right: 23px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__btn::after {
    width: 8px;
    height: 8px;
    top: 27px;
    right: 30px;
  }
}
.sale__btn a {
  display: block;
  width: 100%;
  height: 100%;
}
.sale__btn.sale-msg {
  pointer-events: none;
}
.sale__btn.sale-msg::after {
  border: none;
}

.form {
  background: #0b0b0d;
  color: #fff;
}
.form .wrap {
  display: block;
}
.form .content {
  box-sizing: border-box;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .form .content {
    margin: 0 17px 60px;
  }
}
@media only screen and (min-width: 768px) {
  .form .content {
    max-width: 900px;
    width: calc(100% - 30px);
    margin: 0 auto 130px;
  }
}
.form__ttl {
  background: #111;
}
@media only screen and (max-width: 767px) {
  .form__ttl {
    margin: 0 0 60px;
    padding: 40px 0 43px;
  }
}
@media only screen and (min-width: 768px) {
  .form__ttl {
    margin: 0 0 130px;
    padding: 50px 0 55px;
  }
}
.form__ttl h2 {
  font-family: "Poppins", sans-serif;
  color: #fff;
  letter-spacing: 0.3rem;
}
@media only screen and (max-width: 767px) {
  .form__ttl h2 {
    margin: 0 15px;
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .form__ttl h2 {
    max-width: 950px;
    width: calc(100% - 30px);
    margin: 0 auto;
    font-size: 3.5rem;
  }
}
.form__ttl h2 span {
  display: block;
  font-weight: 500;
  letter-spacing: 0.1rem;
  margin: 10px 0 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .form__ttl h2 span {
    font-size: 0.95rem;
    padding-left: 60px;
  }
}
@media only screen and (min-width: 768px) {
  .form__ttl h2 span {
    font-size: 1.1rem;
    padding-left: 70px;
  }
}
.form__ttl h2 span::before {
  content: "";
  display: inline-block;
  height: 2px;
  background: #fff;
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .form__ttl h2 span::before {
    top: 10px;
    left: 20px;
    width: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .form__ttl h2 span::before {
    top: 50%;
    transform: translate(-50%);
    left: 35px;
    width: 35px;
  }
}
.form__note {
  border-bottom: #ddd solid 1px;
}
@media only screen and (max-width: 767px) {
  .form__note {
    margin: 0 0 45px;
    padding: 0 0 30px;
  }
}
@media only screen and (min-width: 768px) {
  .form__note {
    margin: 0 0 55px;
    padding: 0 0 40px;
  }
}
.form__note_item {
  margin: 0 0 30px;
}
.form__note_item:last-child {
  margin: 0;
}
.form__note ul {
  margin: 0 0 0 20px;
  padding: 0;
}
.form__note ul li {
  margin: 0 0 7px;
}
.form__note ul li:last-child {
  margin: 0;
}
.form__note p {
  margin: 0;
}
.form__note_ttl {
  font-weight: 600;
  letter-spacing: 0.1rem;
}
@media only screen and (max-width: 767px) {
  .form__note_ttl {
    font-size: 1.1rem;
    margin: 0 0 13px;
  }
}
@media only screen and (min-width: 768px) {
  .form__note_ttl {
    font-size: 1.2rem;
    margin: 0 0 15px;
  }
}
@media only screen and (max-width: 767px) {
  .form dl {
    margin: 0 0 35px;
  }
}
@media only screen and (min-width: 768px) {
  .form dl {
    margin: 0 0 40px;
  }
}
.form dl:last-child {
  margin: 0;
}
.form dl dt {
  margin: 0 0 10px;
  letter-spacing: 0.05rem;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .form dl dt {
    font-size: 0.95rem;
  }
}
@media only screen and (max-width: 767px) {
  .form dl dt {
    font-size: 1rem;
  }
}
.form dl dd {
  margin: 0;
}
.form dl .apply-note {
  margin: 15px 0 0;
  font-size: 0.9rem;
  color: #ccc;
}
.form .required-text {
  color: #ff4545;
  margin: 0 0 30px;
}
.form .required {
  color: #ff4545;
  margin-left: 3px;
}
.form input[type=text],
.form input[type=tel],
.form input[type=mail] {
  -webkit-appearance: none;
  border: 1px solid #666;
  background-color: #fbfbfb;
  font-size: 16px;
  padding: 10px;
  box-sizing: border-box;
}
.form .mini {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .form .short {
    width: 80%;
  }
}
@media only screen and (min-width: 768px) {
  .form .short {
    width: 30%;
  }
}
@media only screen and (max-width: 767px) {
  .form .middle {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .form .middle {
    width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .form .long {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .form .long {
    width: 80%;
  }
}
.form .max {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .form__submit {
    margin: 50px 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .form__submit {
    margin: 70px 0 0;
  }
}
.form__submit_inner {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .form__submit_inner {
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) {
  .form__submit_inner {
    flex-direction: row-reverse;
    justify-content: center;
  }
}
.form__submit input[type=submit] {
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  letter-spacing: 0.1rem;
  height: 55px;
  line-height: 55px;
}
@media only screen and (max-width: 767px) {
  .form__submit input[type=submit] {
    width: 100%;
    margin: 0 0 10px;
  }
  .form__submit input[type=submit]:last-child {
    margin: 0;
  }
}
@media only screen and (min-width: 768px) {
  .form__submit input[type=submit] {
    width: 330px;
    margin: 0 13px;
  }
}
.form__submit input[type=submit]:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}
@media only screen and (min-width: 768px) {
  .form .complete {
    min-height: calc(100vh - 500px);
  }
}
.form .complete h3 {
  letter-spacing: 0.1rem;
}
@media only screen and (max-width: 767px) {
  .form .complete h3 {
    margin: 0 0 15px;
  }
}
@media only screen and (min-width: 768px) {
  .form .complete h3 {
    margin: 0 0 45px;
    font-size: 1.6rem;
  }
}
.form .complete p {
  margin: 0 0 20px;
  line-height: 1.8rem;
  letter-spacing: 0.05rem;
}
@media only screen and (max-width: 767px) {
  .form .complete p {
    font-size: 0.95rem;
  }
}
@media only screen and (min-width: 768px) {
  .form .complete p {
    font-size: 1rem;
  }
}
.form .complete p:last-child {
  margin: 0;
}
.form .complete__btn {
  border: 1px solid #fff;
  text-align: center;
  height: 55px;
  line-height: 55px;
  font-size: 0.95rem;
  letter-spacing: 0.1rem;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .form .complete__btn {
    width: 100%;
    margin: 60px 0 100px;
  }
}
@media only screen and (min-width: 768px) {
  .form .complete__btn {
    width: 330px;
    margin: 70px auto 0;
  }
}
.form .complete__btn:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}
.form .complete__btn a {
  color: #fff;
  display: block;
  width: 100%;
}
.form .complete__btn a:hover {
  text-decoration: none;
}

#particles-js {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.fadein {
  transform: translate(-90px, 0);
  transition: all 0.8s;
  opacity: 0;
  visibility: hidden;
}
.fadein.scrollin {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}

.fadein-bottom {
  transform: translate(0, 180px);
  transition: all 0.8s;
}
.fadein-bottom.scrollin {
  transform: translate(0, 0);
}

.fadein-zoom {
  transform: scale(0.6);
  transition: all 0.8s;
}
.fadein-zoom.scrollin {
  transform: scale(1);
}

@media only screen and (min-width: 768px) {
  .sponly {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .pconly {
    display: none;
  }
}

.global_head {
  margin: 0;
}/*# sourceMappingURL=style.css.map */