@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #5b424c; /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
a:hover {
  opacity: 0.8;
}
*, *:before, *:after {
  box-sizing: border-box;
}
@font-face {
  font-family: "Zen Maru Gothic Light";
  src: url("font/ZenMaruGothic-Light.ttf")format('truetype');
  font-weight: 300;
  font-style: Light;
}
@font-face {
  font-family: "Zen Maru Gothic Medium";
  src: url("font/ZenMaruGothic-Medium.ttf") format('truetype');
  font-weight: 500;
  font-style: Medium;
}
@font-face {
  font-family: "Zen Maru Gothic Regular";
  src: url("font/ZenMaruGothic-Regular.ttf") format('truetype');
  font-weight: 400;
  font-style: Regular;
}
.body {
  background-color: #fefcf7;
}
/* ヘッダー */
.header {
  background-color: #FFF;
  width: 100%;
  height: 160px;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 900;
  box-shadow: rgb(0 0 0 / 5%) 10px 10px 25px;
  padding: 2vw 2vw;
  white-space: nowrap;
}
.header_bg {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -100;
}
.header_bg img {
  width: 100%;
}
.header h1 {
  width: 30%;
  margin-top: 25px;
  min-width: 280px;
  margin-left: 10vw;
}
.header h1 img {
  width: 100%;
  max-width: 400px;
}
.header_overview_img {
  width: 65%;
  margin: 0 auto;
}
.header_overview_img img {
  width: 100%;
  text-align: center;
}
.header_about_img {
  width: 60%;
  margin: 0 auto;
}
.header_about_img img {
  width: 100%;
}
.header_annual_events_img {
  width: 70%;
  margin: 0 auto;
}
.header_annual_events_img img {
  width: 100%;
}
.header_notice {
  width: 70%;
  margin: 0 auto;
}
.header_notice img {
  width: 100%;
}
.header_nav ul {
  display: table;
}
.header_nav ul li {
  margin: 30px;
  display: table-cell;
  padding: 0px 30px 0;
  text-decoration: none;
  text-align: center;
}
.header_nav li a {
  text-decoration: none;
  color: #333;
  font-family: 'Zen Maru Gothic Medium';
  font-weight: 500;
  font-size: 1.5rem;
}
.header_nav {
  min-width: 50px;
}
.header_nav img {
  min-width: 50px;
}
@media(max-width:1024px) {
  .header {
    height: 120px;
  }
  .header h1 {
    width: 30%;
    min-width: 200px;
    margin: 0 auto;
  }
  .header_nav img {
    display: none;
  }
  .header_overview_img {
    width: 50%;
  }
  .header_about_img {
    width: 35%;
  }
  .header_annual_events_img {
    width: 50%;
  }
  .header_notice {
    width: 60%;
  }
  .header_nav li a {
    font-size: 1rem;
    font-family: "Zen Maru Gothic Regular";
  }
}
/* ヘッダーここまで　*/
/*ハンバーガーメニュー*/
@media (max-width:1024px) {
  nav.header_nav {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    background: #FFFCDB;
    color: #000;
    text-align: center;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 70%;
    height: 100%;
    box-shadow: rgb(0 0 0 / 25%) 10px 10px 25px;
  }
  nav.header_nav ul {
    background: #FFFCDB;
    width: 100%;
    padding: 0;
    display: grid;
    align-content: center;
    justify-items: center;
  }
  nav.header_nav ul li {
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px dotted #333;
  }
  nav.header_nav ul li a {
    display: block;
    color: #000;
    padding: 1em 0;
  }
  nav.header_nav.active {
    transform: translateX(0%);
    padding-top: 2.5vw;
  }
  .Toggle {
    display: block;
    position: fixed;
    right: 13px;
    top: 40px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 3;
  }
  .Toggle span {
    display: block;
    position: absolute;
    width: 30px;
    border-bottom: solid 3px #AAC863;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
  }
  .Toggle span:nth-child(1) {
    top: 9px;
  }
  .Toggle span:nth-child(2) {
    top: 18px;
  }
  .Toggle span:nth-child(3) {
    top: 27px;
  }
  .Toggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .Toggle.active span:nth-child(2), .Toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  p {
    font-size: 1.8rem;
  }
}
/*ハンバーガーメニューここまで*/
/*　フッター*/
.footer {
  background-color: #fefcf7;
  position: relative;
  z-index: 1;
}
.footer_logo {
  width: 20%;
  margin: 0 auto;
}
.footer_logo img {
  width: 100%;
}
.footer_children {
  width: 40%;
  margin: 0 auto;
}
.footer_children img {
  width: 100%;
}
.footer_bg {
  width: 100%;
}
.footer_bg img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 23vw;
  z-index: -1;
}
.footer_copyright {
  font-family: "Zen Maru Gothic Regular";
  font-weight: 400;
  font-size: 1.6rem;
  display: block;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
}
@media(max-width:746px) {
  .footer_logo {
    width: 40%;
  }
  .footer_bg img {
  top: 30vw;
}
  .footer_copyright {
    font-size: 1rem;
  }
}
/* フッターここまで　*/