@charset "UTF-8";
main {
  /* NEWS */
  /* カレンダー */
}

main .key_visual_section {
  width: 100%;
}

main .key_visual_section .key_visual_img {
  /* スライダーのためのcss */
}

main .key_visual_section .key_visual_img h1 {
  position: absolute;
  z-index: 2;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  font-size: 6vw;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

main .key_visual_section .key_visual_img .slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: 100%;
  /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  /* 背景画像設定 */
  /*ドットナビゲーションの設定*/
}

main .key_visual_section .key_visual_img .slider .slider-item {
  width: 100%;
  /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  background-repeat: no-repeat;
  /*背景画像をリピートしない*/
  background-position: center;
  /*背景画像の位置を中央に*/
  background-size: cover;
  /*背景画像が.slider-item全体を覆い表示*/
}

main .key_visual_section .key_visual_img .slider .slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: 20px 0 20px 0;
  /*ドットの位置*/
}

main .key_visual_section .key_visual_img .slider .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

main .key_visual_section .key_visual_img .slider .slick-dots button {
  color: transparent;
  outline: none;
  width: 10px;
  /*ドットボタンのサイズ*/
  height: 10px;
  /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #fff;
  /*ドットボタンの色*/
}

main .key_visual_section .key_visual_img .slider .slick-dots .slick-active button {
  background: #333;
  /*ドットボタンの現在地表示の色*/
}

@media screen and (max-width: 768px) {
  main .key_visual_section .key_visual_img {
    /* スライダーのためのcss */
  }
  main .key_visual_section .key_visual_img .slider {
    /*ドットナビゲーションの設定*/
  }
  main .key_visual_section .key_visual_img .slider .slick-dots {
    position: relative;
    z-index: 3;
    text-align: center;
    margin: 20px 0 20px 0;
    /*ドットの位置*/
  }
  main .key_visual_section .key_visual_img .slider .slick-dots li {
    display: inline-block;
    margin: 0 5px;
  }
  main .key_visual_section .key_visual_img .slider .slick-dots button {
    color: transparent;
    outline: none;
    width: 5px;
    /*ドットボタンのサイズ*/
    height: 5px;
    /*ドットボタンのサイズ*/
    display: block;
    border-radius: 50%;
    background: #fff;
    /*ドットボタンの色*/
  }
  main .key_visual_section .key_visual_img .slider .slick-dots .slick-active button {
    background: #333;
    /*ドットボタンの現在地表示の色*/
  }
}

main .news_section {
  width: 100%;
}

main .news_section .news_header {
  width: 180px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 10px;
}

main .news_section .news_header .news_header_title {
  font-size: 3vw;
  text-decoration: underline;
  margin-bottom: 10px;
}

main .news_section .news_body {
  height: 200px;
  width: 80%;
  margin: 0 auto;
}

main .news_section .news_body .news_body_box {
  padding: 20px;
  border: 1px solid #000;
}

main .news_section .news_body .news_body_box ul {
  margin-bottom: 10px;
}

main .news_section .news_body .news_body_box ul .news_body_dey {
  list-style: none;
}

main .news_section .news_body .news_body_box ul .news_body_dey a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  color: #000;
}

main .news_section .news_body .news_body_box ul .news_body_dey a .data {
  width: 30%;
  margin-bottom: 20px;
}

main .news_section .news_body .news_body_box ul .news_body_dey a .tti {
  width: 70%;
}

main .news_section .news_body .news_body_box .btn_stn {
  text-align: center;
  margin-top: 20px;
}

main .news_section .news_body .news_body_box .btn_stn a {
  color: #000;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  main .news_header .news_header_title {
    font-size: 3vw;
  }
  main .news_header p {
    font-size: 10px;
  }
  main .news_body .news_body_box ul .news_body_dey a .data {
    font-size: 10px;
    width: 30%;
    margin-bottom: 20px;
  }
  main .news_body .news_body_box ul .news_body_dey a .tti {
    font-size: 10px;
    width: 70%;
  }
  main .news_body .news_body_box .btn_stn {
    font-size: 10px;
  }
}

main .calendar_section {
  width: 100%;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main .calendar_section iframe {
  width: 80%;
}

footer {
  color: #000;
  background-color: #d6c5c5;
  width: 100%;
  /* コピーライト */
}

footer .footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  width: 100%;
  /* 会社ロゴ */
  /* リンク */
}

footer .footer-container .footer-logo {
  margin: 10px;
}

footer .footer-container .footer-logo img {
  width: 180px;
  margin-bottom: 20px;
}

footer .footer-container .footer-logo p {
  font-size: 10px;
  text-align: center;
}

footer .footer-container .footer-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px;
}

footer .footer-container .footer-lists ul {
  list-style: none;
  margin-left: 50px;
}

footer .footer-container .footer-lists ul li {
  margin-bottom: 10px;
}

footer .footer-container .footer-lists ul li.title {
  font-weight: bold;
}

footer .footer-container .footer-lists ul li a {
  color: #000;
  text-decoration: none;
  font-size: 10px;
}

footer .copyright {
  text-align: center;
  font-size: 10px;
}

@media screen and (max-width: 768px) {
  footer .footer-container {
    display: block;
    /* 会社ロゴ */
    /* リンク */
  }
  footer .footer-container .footer-logo {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 10px;
  }
  footer .footer-container .footer-lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  footer .footer-container .footer-lists ul {
    width: 50%;
    text-align: center;
    margin-left: 0px;
  }
}

.push {
  height: 50px;
}
/*# sourceMappingURL=front-page.css.map */