@charset "UTF-8";
html {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body {
  line-break: strict;
}

a {
  text-decoration: underline;
}

#header {
  background-color: #ffffff;
}

section {
  word-break: normal;
}
section h2 {
  font-size: 1.8rem;
  margin-top: 2.2em;
  font-weight: bold;
  padding-bottom: 0.8rem;
}
@media screen and (min-width: 768px) {
  section h2 {
    font-size: 2.625rem;
  }
}
section h2 span {
  word-break: keep-all;
  background-image: repeating-linear-gradient(-60deg, #fcf69f 0, #fcf69f 4px, transparent 4px, transparent 8px);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 0.4em;
}
section p {
  margin-top: 0.4em;
}
section h3 {
  font-size: 1.4rem;
  margin-top: 1.3em;
  font-weight: 800;
  line-height: 1.3em;
}
@media screen and (min-width: 768px) {
  section h3 {
    font-size: 1.625rem;
  }
}
section h3 span {
  word-break: keep-all;
  text-shadow: 0.1em 0.1em #fdf0ff;
}

/* 画面外にいる状態 */
.out {
  opacity: 0;
  transform: translate(0, 50px);
}

/* 画面内に入った状態 */
.fadein {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 1500ms;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-flow: column;
  width: 100vw;
  padding-bottom: 1rem;
  background-color: rgb(226, 226, 226);
}
.wrapper section {
  display: inline-block;
  width: min(92%, 1166px);
  margin: auto;
  background-color: rgb(226, 226, 226);
}
.wrapper #header {
  position: fixed;
  width: 100%;
  height: 60px;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .wrapper #header #navi_sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .wrapper #header #navi_pc {
    display: none;
  }
}
.wrapper #header .nav_container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: min(92%, 1166px);
  margin: auto;
  top: 10px;
}
.wrapper #header .nav_container div span {
  font-size: 30px;
}
.wrapper #header .nav_container .navi {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  font-size: 1.1rem;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2%;
}
.wrapper #header .nav_container .navi ul li {
  font-size: 1.625rem;
  width: 100%;
  margin-top: 2rem;
}
.wrapper #header .nav_container .navi_pc {
  margin-top: 0.4rem;
}
.wrapper #header .nav_container .navi_pc ul {
  display: flex;
}
.wrapper #header .nav_container .navi_pc ul li {
  padding-left: 3rem;
}

.logo {
  height: 1.5rem;
}

.h_menu {
  font-size: 1.5rem;
}

#hero {
  /* 動画を中央にするための指定 */
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
#hero video {
  position: relative;
  display: block;
  min-width: 100%;
  min-height: 100%;
  top: 50%; /* 動画を中央にするための指定 */
  left: 50%; /* 動画を中央にするための指定 */
  transform: translate(-50%, -50%); /* 動画を中央にするための指定 */
}
#hero .main_logo {
  position: absolute;
  width: 80vw;
  top: 50%; /* 動画を中央にするための指定 */
  left: 50%; /* 動画を中央にするための指定 */
  transform: translate(-50%, -50%); /* 動画を中央にするための指定 */
}
@media screen and (min-width: 768px) {
  #hero .main_logo {
    width: 60vw;
  }
}
@media screen and (min-width: 1025px) {
  #hero .main_logo {
    width: 40vw;
  }
}

.sns {
  display: flex;
  position: absolute;
}
.sns img {
  width: 2rem;
  margin-top: 1rem;
  margin-right: 1rem;
}

.banner {
  width: 100%;
  background-color: #222;
  color: #fdf0ff;
  font-size: 1.3rem;
  padding: 1.1rem 0.5rem 1.1rem 0.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .banner {
    width: 70%;
    margin: auto;
  }
}

.introWrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.introWrapper img {
  width: 7rem;
  height: 7rem;
}
.introWrapper h3 {
  margin-top: 0;
}
.introWrapper div {
  padding-left: 0.8rem;
  display: flex;
  flex-direction: column;
}
.introWrapper div h3 {
  border-bottom: 1px solid #222;
}

.info_table {
  min-width: 100%;
  min-height: 100%;
}

.td {
  width: 25%;
}
@media screen and (min-width: 768px) {
  .td {
    width: 20%;
  }
}
@media screen and (min-width: 1025px) {
  .td {
    width: 20%;
  }
}

td {
  padding: 0.2rem 0 0.2rem 0;
}

form {
  padding: 0.2rem 0 0.2rem 0;
}
form label {
  position: relative;
  height: 1.2rem;
  display: flex;
  align-items: center;
}
form label .borde_line,
form label .las {
  position: absolute;
  font-size: 1rem;
  width: 1.2rem;
  height: 1.2rem;
}
form label .borde_line {
  border: solid 1px #222;
  background-color: #fff;
  margin: 0.2rem 0 0.2rem 0;
}
form label .las {
  opacity: 0;
}
form label p {
  position: relative;
  left: 1.5rem;
}
form input,
form textarea {
  display: block;
  width: 100%;
  margin: 0.2rem 0 0.2rem 0;
  padding: 0.1rem;
  background-color: #fff;
  border: solid 1px #222;
}
form input[type=submit] {
  text-align: center;
  background-color: #222;
  color: #fdf0ff;
}
form input[type=checkbox] {
  display: none;
}
form input[type=checkbox]:checked + div > .las {
  opacity: 1;
}
form p {
  display: block;
  margin: 0;
}
form ::-moz-placeholder {
  color: #aaa;
}
form :-ms-input-placeholder {
  color: #aaa;
}
form ::placeholder {
  color: #aaa;
}

.copylight {
  text-align: center;
}

input[type=button] {
  text-align: center;
}
input[type=button] + p {
  opacity: 0;
}

.btn_wapper {
  display: flex;
}

.comp {
  display: block;
  width: 6rem;
  text-align: center;
  margin: auto;
  background-color: #222;
  color: #fdf0ff;
}

@media screen and (min-width: 768px) {
  #side {
    display: flex;
  }
}
#side div {
  height: 100%;
}
@media screen and (min-width: 768px) {
  #side div {
    width: 90%;
  }
}

@media screen and (min-width: 768px) {
  form {
    width: 70%;
    margin: auto;
  }
}/*# sourceMappingURL=style.css.map */