@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
/* Eric Meyer’s “Reset CSS” 2.0 */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP");
@import url("https://fonts.googleapis.com/css?family=M+PLUS+1p");
@import url(din-webfont/din.css);
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1;
  font-family: "Hiragino Kaku Gothic ProN","メイリオ", sans-serif; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after {
  content: '';
  content: none; }

q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

.brown {
  color: #857e2a; }

.blue {
  color: #1c499e; }

.t_green {
  color: #1e8e43; }

@keyframes rotate {
  100% {
    transform: rotate(360deg); } }
@keyframes float {
  0% {
    transform: translateY(-5%); }
  100% {
    transform: translateY(5%); } }
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px; }

#cover {
  display: none;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5); }
  #cover .cover_in {
    padding: 10px;
    max-width: 1000px;
    max-height: 800px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    align-items: center; }
    #cover .cover_in img {
      width: 100%;
      border: 30px solid #000; }
    #cover .cover_in .close {
      width: 30px;
      height: 30px;
      position: absolute;
      top: 1%;
      right: 0;
      cursor: pointer;
      z-index: 10001; }
      #cover .cover_in .close span {
        display: block;
        width: 100%;
        height: 10px;
        background: #fff;
        transform-origin: center center;
        position: absolute;
        bottom: 50%; }
        #cover .cover_in .close span:first-child {
          transform: rotate(45deg); }
        #cover .cover_in .close span:last-child {
          transform: rotate(-45deg); }

.modal {
  font-weight: normal !important; }
  .modal.red2 {
    color: #e72c2e; }
  .modal.blue2 {
    color: #1c499e; }
  .modal.green2 {
    color: #1e8e43;
    margin: 0; }
  .modal.yellow2 {
    color: #857e2a;
    margin: 0; }
  .modal img {
    cursor: pointer; }

a {
  text-decoration: none; }

.sp {
  display: none; }

.border {
  border-top: 7px dotted #888;
  display: block;
  width: 900px;
  margin: 0 auto; }

/* layout */
#wrap {
  width: 100%;
  background: url(../images/main_bg.jpg) no-repeat;
  -webkit-background-size: cover;
  background-size: cover; }

.header {
  background: rgba(255, 255, 255, 0.85);
  width: 100%;
  padding: 15px 2%;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  font-family: 'DIN Pro Bold',sans-serif; }
  .header ul {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: flex-end; }
  .header li {
    margin: 0 1%;
    padding-bottom: 5px;
    position: relative; }
    .header li:after {
      content: "";
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      background: #00a0e9;
      height: 2px;
      width: 100%;
      transform: scale(0, 1);
      transition: 0.3s all ease-out; }
    .header li:not(.twitter):not(.spacing):hover::after {
      transform: scale(1, 1);
      transition: 0.3s all ease-out; }
    .header li.spacing {
      flex: 0 1 55%; }
  .header a {
    color: #00a0e9;
    text-decoration: none;
    font-weight: normal;
    font-size: 16px; }
    .header a i {
      font-size: 3rem; }

/* section */
section {
  /*キャラクター*/ }
  section.main-v {
    position: relative; }
    section.main-v .chach {
      display: block;
      max-width: 1000px;
      position: absolute;
      bottom: 150px;
      left: 0; }
  section.logo-e {
    max-width: 1200px;
    margin: 0 auto;
    position: relative; }
    section.logo-e .date {
      position: relative;
      padding: 0 3%; }
      section.logo-e .date img {
        display: block;
        width: 85%;
        margin: 0 auto; }
      section.logo-e .date .read {
        font-weight: bold;
        color: red;
        line-height: 2;
        font-size: 1.8em;
        text-align: center;
        margin-bottom: 3%; }
      section.logo-e .date .btn {
        position: absolute;
        top: 0;
        width: 35%;
        right: 53px;
        transition: 0.3s all ease-out; }
        section.logo-e .date .btn:hover {
          opacity: .7;
          transition: 0.3s all ease-out; }
  section:not(.main-v):not(.logo-e) {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 0 20px;
    border-radius: 7px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3), -1px -1px 5px rgba(0, 0, 0, 0.3);
    background: #fff; }
    section:not(.main-v):not(.logo-e) .lead {
      margin-bottom: 25px; }
    section:not(.main-v):not(.logo-e) h1 {
      padding: 15px 0;
      text-align: center;
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 25px;
      background: #ff55ff;
      border-radius: 7px 7px 0 0;
      letter-spacing: 2px;
      color: #fff;
      line-height: 1; }
    section:not(.main-v):not(.logo-e) h2 {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 240px;
      height: 60px;
      margin: 0 2%;
      padding: 0 10px;
      position: relative;
      margin-bottom: 25px;
      box-shadow: 0px 0px 6px 3px #fadee4;
      border-radius: 30px 3px 30px 3px;
      border: 3px solid #ffffff; }
      section:not(.main-v):not(.logo-e) h2 span {
        position: absolute;
        top: 0;
        width: 30px;
        height: 4px;
        background: #fff; }
        section:not(.main-v):not(.logo-e) h2 span:nth-child(1) {
          top: 0;
          left: 35px;
          transform: skewX(-45deg); }
        section:not(.main-v):not(.logo-e) h2 span:nth-child(2) {
          top: 0;
          left: 35px;
          transform: skewX(-45deg);
          left: 27px;
          transform: skewX(45deg); }
        section:not(.main-v):not(.logo-e) h2 span:nth-child(3) {
          top: 0;
          left: 35px;
          transform: skewX(-45deg);
          top: auto;
          right: 35px;
          bottom: 0;
          left: auto;
          transform: skewX(-45deg); }
        section:not(.main-v):not(.logo-e) h2 span:nth-child(4) {
          top: 0;
          left: 35px;
          transform: skewX(-45deg);
          top: auto;
          right: 27px;
          bottom: 0;
          left: auto;
          transform: skewX(45deg); }
  section img {
    width: 100%; }
  section.schedule {
    position: relative; }
    section.schedule .absolute-box {
      animation: float alternate infinite 0.8s cubic-bezier(0.61, 0.2, 0.44, 1);
      position: absolute;
      top: -60px;
      left: -130px;
      width: 200px; }
  section.application {
    position: relative; }
    section.application.mb p {
      padding: 0 2%; }
      section.application.mb p .small {
        font-size: .9em; }
    section.application.mb ul {
      padding: 0 2%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-flow: row wrap;
      justify-content: space-between; }
      section.application.mb ul li {
        flex: 0 1 47%;
        padding: 3% 0; }
        section.application.mb ul li img {
          border: 1px solid #1c499e;
          display: block; }
  section#schedule {
    margin-top: 100px; }
    section#schedule h1 {
      background: #a1cc54; }
    section#schedule dl {
      padding: 0 2%;
      display: flex;
      margin-bottom: 20px;
      letter-spacing: 1px;
      font-weight: bold; }
      section#schedule dl dt {
        flex: 0 1 20%;
        line-height: 1.6; }
      section#schedule dl dd {
        flex: 0 1 80%;
        color: #888;
        line-height: 1.6;
        padding-left: 2%; }
  section#news h1 {
    background: #9a8ec3; }
  section#news dl {
    padding: 0 2%;
    display: flex;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.6; }
    section#news dl:last-child {
      margin-bottom: 0; }
    section#news dl dt {
      margin-right: 20px; }
    section#news dl dd {
      color: #888; }
  section#detail h1 {
    background: #ed7994; }
  section#detail h2 {
    background: #f3a6b8;
    text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.7);
    color: #fff;
    font-weight: bold;
    font-size: 18px; }
  section#detail .lead {
    padding: 0 2%;
    line-height: 1.6;
    text-indent: 0px;
    font-size: 18px; }
  section#detail dl {
    padding: 0 2%;
    display: flex;
    margin-bottom: 20px; }
    section#detail dl dt {
      flex: 0 1 20%; }
    section#detail dl dd {
      flex: 0 1 80%;
      color: #000;
      font-weight: normal;
      line-height: 1.6;
      padding-left: 2%; }
  section#present {
    position: relative; }
    section#present h1 {
      background: #f7af3a; }
    section#present h2 {
      background: #f9c36b;
      box-shadow: 0px 0px 6px 3px rgba(251, 202, 79, 0.5), inset 1px 1px 2px 2px rgba(251, 202, 79, 0.7);
      text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.7);
      color: #fff;
      font-weight: bold;
      font-size: 20px; }
    section#present ul {
      display: flex;
      justify-content: space-between;
      flex-flow: row wrap; }
    section#present li {
      flex: 0 1 40%;
      margin-bottom: 30px; }
      section#present li .f_12 {
        color: #bbb;
        line-height: 1; }
      section#present li .img-box {
        border: 2px solid #fbca4f;
        margin-bottom: 10px; }
      section#present li:last-child {
        flex: 0 1 100%; }
    section#present .absolute-box {
      animation: float alternate infinite 0.8s cubic-bezier(0.61, 0.2, 0.44, 1);
      position: absolute;
      bottom: 810px;
      right: -121px;
      width: 200px;
      z-index: 300; }
  section#application {
    line-height: 2; }
    section#application h1 {
      background: #3c54a4; }
    section#application h2 {
      width: 300px;
      background: #86bce4;
      box-shadow: 0px 0px 6px 3px rgba(60, 84, 164, 0.5);
      text-shadow: none;
      color: #fff100;
      font-weight: bold;
      font-size: 24px; }
    section#application h4 {
      padding: 0 2%;
      text-indent: 0px; }
    section#application dl {
      display: flex;
      padding: 0 2%; }
      section#application dl dt {
        flex: 0 1 20%; }
    section#application ul {
      padding: 0 2%; }
    section#application .lead {
      padding: 0 2%; }
    section#application .link-box {
      text-align: center;
      margin: 50px auto 30px; }
      section#application .link-box .formlink {
        background: #3c54a4;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 500px;
        height: 100px;
        border-radius: 20px 5px 20px 5px;
        color: #fff;
        font-weight: bold;
        transition: 0.3s all ease-out;
        font-size: 2.5em; }
        section#application .link-box .formlink:hover {
          opacity: .7;
          transition: 0.3s all ease-out; }
        section#application .link-box .formlink .far.fa-envelope {
          margin-right: 50px;
          transform-origin: center center;
          font-size: 4.5rem; }
        section#application .link-box .formlink:hover > .far.fa-envelope {
          animation: rotate 1 normal 0.5s cubic-bezier(1, 0, 0, 1); }

.pink, .yellow {
  color: #ed7994;
  margin: 0 2% 20px;
  padding: 0 1%;
  border-left: 4px solid #ed7994;
  line-height: 1.6;
  font-weight: bold;
  font-size: 20px; }

span.pink, span.yellow {
  border-left: none;
  padding: 0;
  margin: 0 0 10px;
  display: block; }

.yellow {
  color: #f7af3a;
  border-color: #f7af3a; }

li.yellow {
  border: none;
  font-weight: normal;
  line-height: 1.2; }

.green {
  color: #81bf24;
  padding: 0 2%;
  margin-bottom: 20px;
  font-size: 24px; }

.glay {
  color: #aaa;
  padding-left: 1em;
  text-indent: -1em; }
  .glay li {
    padding: 0 2%; }

.red {
  color: red;
  font-weight: bold; }
  .red.link {
    text-decoration: underline; }

.f_12 {
  font-size: 13px; }

.f_12.block {
  display: block;
  text-align: center;
  margin-bottom: 20px; }

/*map iframe*/
.gmap {
  max-width: 100%;
  width: 100%;
  padding: 0 5%;
  height: 50%;
  box-sizing: border-box; }

.gmap iframe {
  display: block;
  margin: 30px auto;
  width: 70%;
  height: 500px; }

/* topに戻るボタン */
.toTop {
  display: none;
  width: 35px;
  height: 35px;
  position: fixed;
  bottom: 20px;
  right: 30px;
  background: #335599;
  border-radius: 50%; }
  .toTop.active {
    display: block; }
  .toTop span {
    position: absolute;
    width: 10px;
    height: 2px;
    background: #fff;
    top: 30%;
    left: 35%; }
    .toTop span:first-child {
      transform: rotate(45deg) translateX(5px); }
    .toTop span:nth-child(2) {
      transform: rotate(-45deg) translateX(-5px); }

/* footer */
footer {
  width: 100%;
  background: #000;
  padding: 30px 0;
  text-align: center; }

.copy {
  color: #fff;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 14px; }

/*# sourceMappingURL=style.css.map */
