@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://use.fontawesome.com/releases/v6.4.2/css/all.css");
html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  position: relative;
  z-index: 0;
}
body::after {
  content: "";
  background: url(../img/bg-img.png) no-repeat center/cover;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  filter: blur(3px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
}

.global_head {
  margin: 0;
  position: relative;
  z-index: 1;
}

footer {
  position: relative;
  z-index: 90;
}

.wrap {
  font-family: "Noto Sans JP";
  position: relative;
  z-index: 0;
}
.wrap::before {
  content: "";
  background: url(../img/bg-pattern.png) repeat center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-attachment: fixed;
  z-index: -1;
}
.wrap::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-attachment: fixed;
  z-index: -2;
  transition: background-color 0.6s ease;
}

.home .head {
  color: #fff;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
  text-align: center;
  position: fixed;
  top: 60px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 99;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  .home .head {
    padding: 0 15px;
  }
}
@media only screen and (min-width: 769px) {
  .home .head {
    padding: 0 30px;
  }
}
.home .head__ttl {
  font-family: "Anton";
  z-index: 99;
}
@media only screen and (min-width: 769px) {
  .home .head__ttl {
    font-size: 1.3rem;
  }
}
.home .head__lang {
  font-family: "Montserrat";
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0 10px;
  z-index: 99;
}
.home .head__lang a {
  color: #fff;
  font-weight: 500;
}
@media only screen and (min-width: 769px) {
  .home .head__lang-item {
    transition: 0.3s;
  }
  .home .head__lang-item:hover {
    opacity: 0.7;
  }
}
.home .nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  writing-mode: vertical-rl;
  gap: 0 15px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: fixed;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  font-family: "Montserrat";
  font-weight: 600;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .home .nav {
    display: none;
  }
}
.home .nav a {
  color: #fff;
}
.home .foot-scroll {
  position: fixed;
  border: 2px solid #fff;
  border-radius: 50%;
  z-index: 80;
}
@media only screen and (max-width: 768px) {
  .home .foot-scroll {
    bottom: 15px;
    left: 13px;
    width: 38px;
    height: 38px;
  }
}
@media only screen and (min-width: 769px) {
  .home .foot-scroll {
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
  }
}
.home .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: 768px) {
  .home .foot-scroll__icon {
    width: 38px;
    height: 38px;
  }
}
@media only screen and (min-width: 769px) {
  .home .foot-scroll__icon {
    width: 45px;
    height: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .home .foot-scroll__icon .foot-arrow {
    width: 7px;
    height: 7px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    animation: move 2s infinite;
    border-radius: 1px;
  }
}
@media only screen and (min-width: 769px) {
  .home .foot-scroll__icon .foot-arrow {
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    animation: move 2s infinite;
    border-radius: 1px;
  }
}
.home .foot-scroll__icon .foot-arrow:nth-child(1) {
  animation-delay: 0.15s;
}
.home .foot-scroll__icon .foot-arrow:nth-child(2) {
  animation-delay: 0.3s;
}
@keyframes move {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(5px) rotate(45deg);
  }
}
.home .section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 769px) {
  .home .section {
    scroll-snap-align: start;
  }
}
.home .section__content {
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .home .section__content {
    width: calc(100% - 40px);
  }
}
@media only screen and (min-width: 769px) {
  .home .section__content {
    max-width: 950px;
  }
}
.home .section__ttl {
  font-family: "Anton";
  text-align: center;
  margin: 0 0 30px;
  line-height: 1;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 768px) {
  .home .section__ttl {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 769px) {
  .home .section__ttl {
    font-size: 4rem;
  }
}
.home .hero {
  position: relative;
  z-index: 0;
}
.home .hero.section {
  position: relative;
  min-height: 200vh;
  padding: 0;
  display: block;
}
.home .hero .section__content {
  max-width: 100%;
}
.home .hero__content {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}
.home .hero__ttl {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  margin: 0;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .home .hero__ttl {
    max-width: 350px;
    top: 18%;
  }
}
@media only screen and (min-width: 769px) {
  .home .hero__ttl {
    max-width: 850px;
    top: 130px;
  }
}
.home .hero__ttl img {
  filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.4));
}
.home .hero__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .home .hero__img {
    width: min(90vw, 900px);
    margin: 50px 0 0;
  }
}
@media only screen and (min-width: 769px) {
  .home .hero__img {
    width: min(90vw, 800px);
    margin: 0;
  }
}
.home .hero__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  will-change: transform, opacity, filter;
  opacity: 1;
  filter: none;
}
@media only screen and (max-width: 768px) {
  .home .hero__img img {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 769px) {
  .home .hero__img img {
    margin-top: 150px;
  }
}
.home .intro {
  font-family: "Noto Sans JP";
  position: relative;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .home .intro__ttl {
    max-width: 270px;
    margin: 0 auto 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .home .intro__ttl.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (min-width: 769px) {
  .home .intro__ttl {
    max-width: 450px;
    margin: 0 auto 35px;
  }
}
.home .intro__ttl img {
  filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.4));
}
.home .intro__text {
  display: grid;
  gap: 20px 0;
}
@media only screen and (max-width: 768px) {
  .home .intro__text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
  }
  .home .intro__text.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
.home .intro p {
  text-align: center;
  margin: 0;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .home .intro p {
    line-height: 2;
  }
}
@media only screen and (min-width: 769px) {
  .home .intro p {
    font-size: 1.1rem;
    letter-spacing: 0.05rem;
    line-height: 1.9;
  }
}
.home .prod {
  color: #fff;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.4);
  position: relative;
}
.home .prod__block {
  display: grid;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .home .prod__block {
    gap: 70px 0;
  }
}
@media only screen and (min-width: 769px) {
  .home .prod__block {
    align-items: center;
    grid-template-columns: minmax(0, 450px) 1fr;
    gap: 0 80px;
  }
}
@media only screen and (max-width: 768px) {
  .home .prod__img {
    max-width: 300px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .home .prod__img.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (min-width: 769px) {
  .home .prod__img {
    margin: 0 0 0 auto;
  }
}
.home .prod__img img {
  filter: drop-shadow(4px 4px 5px rgba(0, 0, 0, 0.4));
}
.home .prod__text {
  display: grid;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .home .prod__text {
    justify-content: center;
    flex-direction: column;
    gap: 5px 0;
  }
}
@media only screen and (min-width: 769px) {
  .home .prod__text {
    gap: 20px 0;
    padding: 30px;
  }
}
.home .prod__text img {
  filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.4));
}
.home .prod__name {
  font-weight: 600;
}
.home .prod__name span {
  line-height: 1;
  display: inline-block;
}
.home .prod__name .prod-name-series {
  font-family: "Anton";
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .home .prod__name .prod-name-series {
    font-size: 1.6rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
  }
  .home .prod__name .prod-name-series.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (min-width: 769px) {
  .home .prod__name .prod-name-series {
    font-size: 2.3rem;
  }
}
.home .prod__name .prod-name-series span {
  font-family: "Montserrat";
  position: relative;
}
@media only screen and (min-width: 769px) {
  .home .prod__name .prod-name-series span {
    font-size: 3.8rem;
    top: 7px;
  }
}
@media only screen and (max-width: 768px) {
  .home .prod__name .prod-name-main {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
  }
  .home .prod__name .prod-name-main.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (min-width: 769px) {
  .home .prod__name .prod-name-main {
    font-size: 5.5rem;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .home .prod__name .prod-name-main img {
    max-width: 250px;
  }
}
.home .prod__name .prod-name-sub {
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .home .prod__name .prod-name-sub {
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
  }
  .home .prod__name .prod-name-sub.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (min-width: 769px) {
  .home .prod__name .prod-name-sub {
    font-size: 1.7rem;
  }
}
.home .prod__price {
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .home .prod__price {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
  }
  .home .prod__price.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (min-width: 769px) {
  .home .prod__price {
    font-size: 1.15rem;
  }
}
.home .prod__price span {
  font-family: "Oswald";
  font-weight: 700;
  letter-spacing: -0.1rem;
  position: relative;
  top: 3px;
}
@media only screen and (max-width: 768px) {
  .home .prod__price span {
    font-size: 2rem;
    margin: 0 5px;
  }
}
@media only screen and (min-width: 769px) {
  .home .prod__price span {
    font-size: 3rem;
    margin: 0 7px 0 0;
  }
}
.home .prod .splide__arrow {
  background: #fff;
}
.home .prod .splide__arrow--prev {
  left: -2.5em;
}
.home .prod .splide__arrow--next {
  right: -2.5em;
}
.home .prod .splide__pagination {
  bottom: -2em;
}
.home .prod .splide__pagination__page {
  opacity: 1;
  background: #666;
}
.home .prod .splide__pagination__page.is-active {
  transform: scale(1);
  background: #fff;
}
.home .apply {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .home .apply .section__ttl {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .home .apply .section__ttl.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
.home .apply__text {
  text-align: center;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}
@media only screen and (max-width: 768px) {
  .home .apply__text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
  }
  .home .apply__text.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
.home .apply__text span {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 7px;
}
@media only screen and (max-width: 768px) {
  .home .apply__text span {
    font-size: 1.1rem;
  }
}
@media only screen and (min-width: 769px) {
  .home .apply__text span {
    font-size: 1.2rem;
  }
}
.home .apply__text p {
  margin: 0;
  font-weight: 500;
}
@media only screen and (min-width: 769px) {
  .home .apply__text p {
    font-size: 1.1rem;
  }
}
.home .apply__text h3 {
  text-align: left;
  margin: 30px 0 15px;
}
.home .apply__text ul {
  text-align: left;
  margin: 0 0 0 15px;
  padding: 0;
  font-weight: 500;
}
.home .apply__link {
  display: block;
  border: 3px solid #fff;
  background-color: #fff;
  color: #c17c3b;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.05rem;
  font-weight: 700;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .home .apply__link {
    width: 100%;
    height: 55px;
    margin: 40px auto 0;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
  }
  .home .apply__link.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (min-width: 769px) {
  .home .apply__link {
    width: 450px;
    height: 65px;
    font-size: 1.2rem;
    transition: 0.3s;
    margin: 80px auto 0;
    cursor: pointer;
  }
  .home .apply__link:hover {
    background-color: rgba(255, 255, 255, 0.5);
  }
}
.home .apply__link::before {
  content: "";
  border-top: solid 3px #c17c3b;
  border-right: solid 3px #c17c3b;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  rotate: 45deg;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .home .apply__link::before {
    width: 10px;
    height: 10px;
    right: 23px;
  }
}
@media only screen and (min-width: 769px) {
  .home .apply__link::before {
    width: 10px;
    height: 10px;
    right: 30px;
  }
}
.home .apply .link-off {
  filter: grayscale(100%);
  pointer-events: none;
}
.home .apply .link-off::before {
  content: none;
}
.home .instagram {
  position: relative;
  z-index: 0;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .home .instagram__content {
    margin-top: -450px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .home .instagram__content.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (min-width: 769px) {
  .home .instagram__content {
    margin-top: -150px;
  }
}
@media only screen and (max-width: 768px) {
  .home .instagram footer {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.home .instagram p {
  font-family: "Montserrat";
  margin: 0 0 10px;
  font-weight: 600;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}
@media only screen and (min-width: 769px) {
  .home .instagram p {
    font-size: 1.3rem;
  }
}
.home .instagram__link {
  background-color: #f1f1f1;
  color: #c17c3b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .home .instagram__link {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (min-width: 769px) {
  .home .instagram__link {
    width: 65px;
    height: 65px;
    transition: 0.3s;
  }
  .home .instagram__link:hover {
    background-color: rgba(255, 255, 255, 0.5);
  }
}
.home .instagram__link::before {
  font-family: "Font Awesome 6 Brands";
  font-weight: 900;
  content: "\f16d";
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  .home .instagram__link::before {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 769px) {
  .home .instagram__link::before {
    font-size: 2.5rem;
  }
}

.application .content {
  position: relative;
  z-index: 5;
}
@media only screen and (max-width: 768px) {
  .application .content {
    background-color: #fff;
  }
}
@media only screen and (min-width: 769px) {
  .application .content {
    padding: 100px 0;
    min-height: calc(100vh - 500px);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.application__content {
  box-sizing: border-box;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  .application__content {
    background-color: #fff;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
    max-width: 850px;
    width: 90%;
  }
}
.application__head {
  border-bottom: 2px solid #523a04;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .application__head {
    margin: 0 0 40px;
    padding: 20px 20px;
  }
}
@media only screen and (min-width: 769px) {
  .application__head {
    margin: 0 0 55px;
    padding: 35px 50px 30px;
    font-size: 2.1rem;
  }
}
.application__head span {
  display: block;
  margin: 0 0 3px;
}
@media only screen and (max-width: 768px) {
  .application__head span {
    font-size: 1rem;
    word-break: break-all;
  }
}
@media only screen and (min-width: 769px) {
  .application__head span {
    font-size: 1.4rem;
  }
}
.application__main {
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .application__main {
    padding: 0 20px 45px;
  }
}
@media only screen and (min-width: 769px) {
  .application__main {
    padding: 0 50px 60px;
  }
}
@media only screen and (max-width: 768px) {
  .application__note {
    padding: 0 0 40px;
  }
}
@media only screen and (min-width: 769px) {
  .application__note {
    padding: 0 0 50px;
  }
}
@media only screen and (max-width: 768px) {
  .application__note-item {
    margin: 0 0 30px;
  }
}
@media only screen and (min-width: 769px) {
  .application__note-item {
    margin: 0 0 40px;
  }
}
.application__note-item:last-child {
  margin: 0;
}
.application__note h3 {
  display: inline-block;
  line-height: 100%;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  border: 2px solid #000;
  outline-offset: 1px;
}
@media only screen and (max-width: 768px) {
  .application__note h3 {
    margin: 0 0 15px;
    padding: 7px 15px;
  }
}
@media only screen and (min-width: 769px) {
  .application__note h3 {
    margin: 0 0 20px;
    padding: 10px 20px;
  }
}
.application__note .date {
  margin: 0;
  letter-spacing: 0.05rem;
}
@media only screen and (max-width: 768px) {
  .application__note .date {
    font-size: 14px;
    line-height: 1.7rem;
  }
}
@media only screen and (min-width: 769px) {
  .application__note .date {
    font-size: 15px;
  }
}
.application__note .note {
  margin: 0 0 0 20px;
  padding: 0;
  letter-spacing: 0.05rem;
}
.application__note .note li {
  margin: 0 0 8px;
}
@media only screen and (max-width: 768px) {
  .application__note .note li {
    font-size: 14px;
  }
}
@media only screen and (min-width: 769px) {
  .application__note .note li {
    font-size: 15px;
  }
}
.application__note .note li:last-child {
  margin: 0;
}
.application .form {
  position: relative;
  border-top: 2px solid #523a04;
}
@media only screen and (max-width: 768px) {
  .application .form {
    padding: 40px 0 0;
  }
}
@media only screen and (min-width: 769px) {
  .application .form {
    padding: 50px 0 0;
  }
}
.application .form__ttl {
  letter-spacing: 0.1rem;
}
@media only screen and (max-width: 768px) {
  .application .form__ttl {
    margin: 0 0 20px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 769px) {
  .application .form__ttl {
    margin: 0 0 20px;
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 768px) {
  .application .form dl {
    margin: 0 0 25px;
  }
}
@media only screen and (min-width: 769px) {
  .application .form dl {
    margin: 0 0 30px;
  }
}
.application .form dl:last-child {
  margin: 0;
}
.application .form dl dt {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 0.95rem;
}
.application .form dl dd {
  margin: 0;
}
.application .form .required-note {
  color: #c01e2a;
  font-size: 14px;
  margin: 0 0 30px;
  font-weight: 500;
}
.application .form .required {
  color: #c01e2a;
  margin-left: 5px;
  position: relative;
  top: -3px;
  font-size: 0.7rem;
  font-weight: 500;
}
.application .form input[type=text],
.application .form input[type=email] {
  background-color: transparent;
  border: none;
  box-sizing: border-box;
  border: 1px solid #523a04;
  background-color: #fff;
  width: 100%;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .application .form input[type=text],
  .application .form input[type=email] {
    padding: 14px 12px;
  }
}
@media only screen and (min-width: 769px) {
  .application .form input[type=text],
  .application .form input[type=email] {
    padding: 15px 12px;
  }
}
.application .form .submit {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .application .form .submit {
    flex-direction: column;
    margin: 40px 0 0;
  }
}
@media only screen and (min-width: 769px) {
  .application .form .submit {
    flex-direction: row-reverse;
    justify-content: center;
    margin: 50px 0 0;
  }
}
.application .form .submit input[type=submit] {
  font-family: "Noto Sans JP";
  -webkit-appearance: none;
  border: none;
  background: #fff;
  border: 1px solid #000;
  cursor: pointer;
  letter-spacing: 0.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .application .form .submit input[type=submit] {
    width: 100%;
    height: 50px;
    font-size: 1rem;
    margin: 0 0 10px;
  }
  .application .form .submit input[type=submit]:last-child {
    margin: 0;
  }
}
@media only screen and (min-width: 769px) {
  .application .form .submit input[type=submit] {
    width: 350px;
    height: 57px;
    font-size: 1.05rem;
    transition: 0.3s;
    margin: 0 10px;
    cursor: pointer;
  }
  .application .form .submit input[type=submit]:hover {
    background: #f1f1f1;
  }
}
.application .form .submit input[type=submit]:first-child {
  background: #000;
  color: #fff;
}
@media only screen and (min-width: 769px) {
  .application .form .submit input[type=submit]:first-child:hover {
    background-color: #666;
  }
}
.application .msg {
  border: 2px solid #523a04;
  outline-offset: 1px;
  text-align: center;
  display: block;
  place-content: center;
  letter-spacing: 0.1rem;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .application .msg {
    height: 50px;
    margin: 10px 0 100px;
  }
}
@media only screen and (min-width: 769px) {
  .application .msg {
    height: 60px;
    margin: 20px 0 10px;
  }
}

.complete .content {
  position: relative;
  z-index: 5;
}
@media only screen and (max-width: 768px) {
  .complete .content {
    background-color: #fff;
    min-height: calc(100vh - 350px);
  }
}
@media only screen and (min-width: 769px) {
  .complete .content {
    padding: 100px 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.complete__content {
  box-sizing: border-box;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  .complete__content {
    background-color: #fff;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
    max-width: 850px;
    width: 90%;
  }
}
.complete__head {
  border-bottom: 2px solid #523a04;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .complete__head {
    margin: 0 0 40px;
    padding: 20px 20px;
  }
}
@media only screen and (min-width: 769px) {
  .complete__head {
    margin: 0 0 55px;
    padding: 35px 50px 30px;
    font-size: 2.1rem;
  }
}
.complete__head span {
  display: block;
  margin: 0 0 3px;
}
@media only screen and (max-width: 768px) {
  .complete__head span {
    font-size: 1rem;
    word-break: break-all;
  }
}
@media only screen and (min-width: 769px) {
  .complete__head span {
    font-size: 1.4rem;
  }
}
.complete__main {
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .complete__main {
    padding: 0 20px 45px;
  }
}
@media only screen and (min-width: 769px) {
  .complete__main {
    padding: 0 50px 60px;
  }
}
.complete__main p {
  margin: 0;
  line-height: 1.7;
}
.complete__back {
  background: #000;
  text-align: center;
  letter-spacing: 0.05rem;
  font-weight: 500;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .complete__back {
    width: 100%;
    height: 50px;
    margin: 35px auto 0;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 769px) {
  .complete__back {
    width: 350px;
    height: 57px;
    font-size: 1.05rem;
    transition: 0.3s;
    margin: 55px auto 0;
    cursor: pointer;
  }
  .complete__back:hover {
    background: #666;
  }
}
.complete__back a {
  color: #fff;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
}

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

@media only screen and (max-width: 768px) {
  .pconly {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */