:root {
  --font_family: "Noto Sans JP", sans-serif;
  --main_color: #362587;
  --font-color: #231815;
}

/* svw */
/* style */
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: var(--font-color);
  font-family: var(--font_family);
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  body {
    font-size: 4.8svw;
  }
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media screen and (max-width: 750px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
/* header */
header {
  width: 100%;
  height: 90px;
  background: var(--main_color) url(../img/header_bg.png) no-repeat right top;
  background-size: auto 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header img {
  width: auto;
  height: 95%;
}
@media screen and (max-width: 750px) {
  header {
    height: 16svw;
  }
}

/* main */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px 60px;
}
main h1 {
  color: var(--main_color);
  font-size: 3.2rem;
  margin-bottom: 1em;
  font-weight: 600;
  text-align: center;
}
main .date {
  display: inline-block;
  margin: 0 auto 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--font-color);
  font-feature-settings: "palt";
}
@media screen and (max-width: 750px) {
  main {
    padding: 0 5.3333333333svw 16svw;
  }
  main h1 {
    font-size: 5.8666666667svw;
    margin-top: 13.3333333333svw !important;
    margin-bottom: 8svw !important;
  }
  main .date {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6.6666666667svw;
  }
  main .date span {
    display: block;
  }
}

.fs14 {
  font-size: 1.4rem;
}

.fs16 {
  font-size: 1.6rem;
}

.fs24 {
  font-size: 2.4rem;
}

.mt30 {
  margin-top: 30px;
}

.mt60 {
  margin-top: 60px;
}

@media screen and (max-width: 750px) {
  .fs14 {
    font-size: 3.7333333333svw;
  }
  .fs16 {
    font-size: 4.2666666667svw;
  }
  .fs24 {
    font-size: 6.4svw;
  }
  .mt30 {
    margin-top: 8svw;
  }
  .mt60 {
    margin-top: 16svw;
  }
}
form {
  width: 100%;
  max-width: 550px;
}

.form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-sizing: border-box;
  background: #F3F3F3;
}
.form strong {
  display: block;
  font-weight: 400;
  margin-bottom: 1em;
}
@media screen and (max-width: 750px) {
  .form {
    padding: 6.6666666667svw;
    border-radius: 2.6666666667svw;
  }
}

.error {
  font-size: 1.4rem;
  color: red;
  margin-top: 1em;
}
@media screen and (max-width: 750px) {
  .error {
    font-size: 3.7333333333svw;
  }
}

input {
  width: 100%;
  padding: 0 1em;
  height: 50px;
  box-sizing: border-box;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  input {
    height: 12svw;
  }
}

input[type=text] {
  max-width: 350px;
}

input[type=submit] {
  width: auto;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  height: 60px;
  border: none;
  border-radius: 6px;
  background: var(--main_color);
  margin-top: 25px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: opacity 0.3s, box-shadow 0.3s;
}
input[type=submit]:hover {
  opacity: 0.7;
  box-shadow: none;
}
@media screen and (max-width: 750px) {
  input[type=submit] {
    font-size: 4.2666666667svw;
    height: 13.3333333333svw;
    border-radius: 1.6svw;
    margin-top: 6.6666666667svw;
  }
}

.title {
  max-width: 700px;
  padding-bottom: 1em;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
}
.title h1 {
  margin-bottom: 0 !important;
  text-align: left;
}
.title .name {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.title .name strong {
  font-weight: 600;
}
@media screen and (max-width: 750px) {
  .title {
    padding-bottom: 5.3333333333svw;
    margin-bottom: 5.3333333333svw;
  }
  .title h1 {
    margin-top: 5.3333333333svw !important;
  }
  .title .name {
    flex-direction: column;
    align-items: flex-start;
  }
  .title .name strong {
    margin: 2.6666666667svw 0;
    font-size: 4.8svw !important;
  }
  .title .name span {
    font-size: 3.7333333333svw !important;
  }
}

.w560 {
  max-width: 560px;
  font-size: 1.4rem;
  margin-bottom: 30px;
  font-feature-settings: "palt";
}

.icon_link::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background: url(../img/icon_link_blue.svg) no-repeat center;
  margin: 0 5px;
  vertical-align: middle;
}

iframe {
  display: block;
  max-width: 700px;
  min-height: 350px;
  background: #ccc;
}
@media screen and (max-width: 750px) {
  iframe {
    min-height: 46.6666666667svw;
  }
}/*# sourceMappingURL=style.css.map */