@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "MS ゴシック", "MS Gothic", "MS Pゴシック", "MS PGothic", sans-serif;
  -webkit-text-size-adjust: 100%; /* mobile safariの自動文字サイズ調整をoffにする */
  -webkit-font-smoothing: antialiased; /* mac×webkit系のブラウザで文字が勝手に太くなるのを回避する */
  color: #333333;
  min-height: 100vh;
  position: relative;
  padding-bottom: 30px;
}

a {
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* -------- clearfix -------- */
.cf::after {
  content: "";
  clear: both;
  display: table;
}

/* ============================== ▼▼▼ ヘッダー ▼▼▼ ============================== */
header {
  /* h1 */
  /* nav */
}
header h1 {
  text-align: center;
  padding: 30px 0;
}
header h1 img {
  width: 130px;
  height: auto;
}
  .sp{display:none;}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header h1 img {
    width: 200px;
  }
  .sp{display:block;}
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header h1 {
    padding: 20px 0;
  }
}
header nav {
  background: #C9B566;
  /* media only screen */
  /* ul */
}
header nav label, header nav input[type=checkbox] {
  display: none;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header nav { /* チェックボックスの非表示 */
    /* ▽▽アコーディオン開閉指定▽▽ */
    /* △△アコーディオン開閉指定△△ */
  }
  header nav label {
    display: block;
    margin: 0;
    color: #fff;
    background: #C9B566;
    cursor: pointer;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 1.9rem;
    font-family: "Noto Serif JP", serif;
  }
  header nav input[type=checkbox].bellows {
    display: none;
  }
  header nav input[type=checkbox].bellows + ul {
    height: 0; /* チェックが入っていない時の高さ */
    overflow: hidden;
  }
  header nav input[type=checkbox].bellows:checked + ul {
    height: 320px; /* チェックが入っているときの高さ */
  }
}
header nav ul {
  text-align: center;
  /* li */
}
header nav ul li {
  display: inline-block;
  vertical-align: bottom;
  /* a */
}
header nav ul li a {
  color: #fff;
  font-size: 1.9rem;
  font-family: "Noto Serif JP", serif;
  height: 45px;
  line-height: 45px;
}
header nav ul li a:hover {
  opacity: 0.7;
}
header nav ul li ~ li {
  margin-left: 35px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header nav ul li ~ li {
    margin-left: 0px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  header nav {
    /* メニュー開閉時アニメーション */ /* .ac */
  }
  header nav .ac {
    transition: all 0.5s;
    margin: 0;
    padding: 0;
    list-style: none;
    /* li */
  }
  header nav .ac li {
    display: block;
    background: #fff;
    border-bottom: 1px dotted #C9B566;
    text-align: center;
    margin-right: 0px;
  }
  header nav .ac li a {
    color: #C9B566;
    display: block;
  }
}

/* header */
/* ============================== ▼▼▼ メイン画像 ▼▼▼ ============================== */
.hero {
  height: 600px;
  background: url("../images/hero4.jpg") no-repeat;
  position: relative;
  background-size: cover;
  background-position: center -250px;
  /* div */
}
.hero div {
  text-align: center;
  width: 100%;
  color: #fff;
  position: absolute;
  bottom: 5%;
  font-family: "Noto Serif JP", serif;
  /* ul */
}
.hero div h1 {
  font-size: 3rem;
  line-height: 1.6;
  margin-bottom: 5px;
  text-shadow: 0px 0px 2px #000, 0px 0px 5px #000;
}
.hero div h1 + p {
  font-size: 2.4rem;
  line-height: 1.6;
  font-weight: bold;
  text-shadow: 0px 0px 2px #000, 0px 0px 5px #000;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  .hero div h1 {
    font-size: 2.4rem;
  }
  .hero div h1 + p {
    font-size: 2rem;
  }
}
.hero div ul {
  margin-top: 20px;
  /* li */
}
.hero div ul li {
  display: inline-block;
  vertical-align: bottom;
  /* a */
}
.hero div ul li a {
  display: inline-block; /* width: 300px; */
  width: 350px;
  height: 70px;
  border-radius: 35px;
  background: #e2e2b7;
  position: relative;
  border: 3px solid #fff;
  font-weight: bold;
}
.hero div ul li a p {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "MS ゴシック", "MS Gothic", "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  line-height: 1.2;
  color: #695d33;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  .hero div ul li a p {
    font-size: 1.7rem;
  }
}
.hero div ul li a:hover {
  background: #f0e9d2;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  .hero div ul li a {
    width: 270px;
    height: 60px;
    border-radius: 30px;
  }
}
.hero div ul li ~ li {
  margin-left: 15px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  .hero div ul li ~ li {
    margin: 10px 0 0;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  .hero div ul li {
    display: block;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  .hero div ul {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  .hero div {
    padding: 0 2.5%;
  }
}

/* .hero */
@media only screen and (max-width: 800px) and (min-width: 300px) {
  .hero {
    height: 550px;
    background-position: center;
  }
}
/* ============================== ▼▼▼ メイン ▼▼▼ ============================== */
main {
  /* #section */
}
main section {
  padding: 70px 0;
  /* h1 */
  /* ------------------------------ ▼▼▼ コンセプト ▼▼▼ ------------------------------ */
  /* &#concept */
  /* ------------------------------ ▼▼▼ スポンサー ▼▼▼ ------------------------------ */
  /* ------------------------------ ▼▼▼ コンタクト ▼▼▼ ------------------------------ */
  /* &#contact */
}
main section .wrap {
  width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main section .wrap {
    width: 95%;
  }
}
main section h1 {
  color: #C9B566;
  font-size: 2.4rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 40px;
}
main section h1 span {
  border-bottom: 1px solid #C9B566;
  padding-bottom: 5px;
}
main section p {
  font-size: 1.5rem;
  line-height: 1.7;
}
main section#concept {
  /* article */
}
main section#concept article img {
  width: 25%;
  height: auto;
  float: right;
  margin: 0 0 10px 5%;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main section#concept article img {
    width: 30%;
    margin-left: 2.5%;
  }
}
main section#concept h2 {
  padding-top: 40px;
  color: #C9B566;
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 20px;
}
main section#sponsor {
  background: #faf6ea;
}
main section#contact p {
  text-align: center;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main section {
    padding: 60px 0;
  }
}

/* main */
/* ============================== ▼▼▼ エントリーページ ▼▼▼ ============================== */
main.entry {
  padding: 70px 0;
  width: 1000px;
  margin: 0 auto;
  /* h1 */
  /* section */
}
main.entry h1 {
  color: #C9B566;
  font-size: 2.4rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 40px;
}
main.entry h1 span {
  border-bottom: 1px solid #C9B566;
  padding-bottom: 5px;
}
main.entry section {
  padding: 0;
  /* h3 */
  /* ul */
  /* form */
  /* ---------- ▽▽▽ 確認画面 ▽▽▽ ---------- */
  /* &.container */
  /* ---------- △△△ 確認画面ここまで △△△ ---------- */
}
main.entry section h2 {
  background: #e2e2b7;
  color: #695d33;
  font-size: 1.7rem;
  height: 35px;
  line-height: 35px;
  padding-left: 0.5em;
  margin-bottom: 20px;
}
main.entry section h3 {
  color: #C9B566;
  line-height: 1.4;
  font-size: 1.6rem;
  border-bottom: 1px solid #C9B566;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
main.entry section h3 ~ h3 {
  margin-top: 50px;
}
main.entry section ul {
  /* li */
}
main.entry section ul li {
  font-size: 1.5rem;
  line-height: 1.7;
  position: relative;
  padding-left: 1.2em;
}
main.entry section ul li:before {
  content: "●";
  color: #e2e2b7;
  font-size: 80%;
  position: absolute;
  left: 0;
  top: 0.2em;
}
main.entry section form {
  margin-top: 30px;
  /* table */
  /* .attention */
  /* .send */
}
main.entry section form table {
  width: 100%;
  /* td */
  /* tr:last-of-type */
}
main.entry section form table th {
  text-align: left;
  vertical-align: middle;
  color: #C9B566;
  font-size: 1.5rem;
  font-weight: normal;
  padding: 20px 0;
  width: 20%;
  border-top: 1px dotted #e2e2b7;
  line-height: 1.4;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main.entry section form table th {
    display: block;
    width: 100%;
    padding-bottom: 0px;
  }
}
main.entry section form table td {
  padding: 20px 0;
  border-top: 1px dotted #e2e2b7;
  font-size: 1.5rem;
  line-height: 1.4;
  /* .select-wrapper */
}
main.entry section form table td input[type=text], main.entry section form table td textarea {
  background: #eeeeee;
  border: none;
  -webkit-appearance: none;
  border-radius: 0;
}
main.entry section form table td input[type=text] {
  width: 60%;
  height: 3em;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main.entry section form table td input[type=text] {
    width: 100%;
  }
}
main.entry section form table td input.mini {
  width: 7em;
}
main.entry section form table td input.mini2 {
  width: 12em;
}
main.entry section form table td textarea {
  width: 100%;
  height: 12em;
}
main.entry section form table td .select-wrapper {
  float: left;
  height: 3em;
  line-height: 3em;
  width: 80px;
  overflow: hidden;
  -webkit-appearance: none;
  border-radius: 0;
  background: #eeeeee;
  background-image: url(../entry/img/arrow.png);
  background-position: 90% center;
  background-size: 20px;
  background-repeat: no-repeat;
  margin-right: 10px;
}
main.entry section form table td .select-wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100px;
  margin: 0;
  border: 0;
  outline: none;
  padding-left: 5px;
  background: transparent;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main.entry section form table td {
    display: block;
    width: 100%;
    padding-top: 5px;
    border-top: none;
  }
}
main.entry section form table tr:last-of-type th, main.entry section form table tr:last-of-type td {
  border-bottom: 1px dotted #e2e2b7;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main.entry section form table tr:last-of-type th {
    border-bottom: none;
  }
}
main.entry section form .attention {
  background: #f2ecfb;
  padding: 25px;
  margin-top: 30px;
  /* ol */
}
main.entry section form .attention h4 {
  color: #C9B566;
  margin-bottom: 5px;
  line-height: 1.5;
  font-size: 1.5rem;
}
main.entry section form .attention h4 ~ h4 {
  margin-top: 30px;
}
main.entry section form .attention ol {
  margin-left: 2em;
  list-style: decimal;
}
main.entry section form .attention ol li {
  line-height: 1.5;
  font-size: 1.5rem;
}
main.entry section form .send {
  text-align: center;
  margin-top: 50px;
}
main.entry section form .send input[type=submit], main.entry section form .send input[type=reset], main.entry section form .send input[type=button] {
  border: none;
  -webkit-appearance: none;
  border-radius: 0;
  border: #C9B566 1px solid;
  color: #C9B566;
  background: #fff;
  width: 10em;
  padding: 15px 0px;
  font-size: 1.6rem;
}
main.entry section form .send input[type=submit]:hover, main.entry section form .send input[type=reset]:hover, main.entry section form .send input[type=button]:hover {
  cursor: pointer;
  background: #C9B566;
  color: #fff;
}
main.entry section ~ section {
  margin-top: 70px;
}
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main.entry section ~ section {
    margin-top: 60px;
  }
}
main.entry section.container {
  /* table */
  /* .submit_area */
}
main.entry section.container table {
  width: 100%;
  /* tr:last-of-type */
  /* &:last-of-type */
}
main.entry section.container table th {
  text-align: left;
  color: #C9B566;
  font-weight: normal;
  vertical-align: middle;
  width: 20em;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  main.entry section.container table th, main.entry section.container table td {
    width: 100%;
    display: block;
  }
  main.entry section.container table th {
    padding: 15px 0px 5px;
  }
  main.entry section.container table td {
    border-top: none;
    padding: 0px 0px 15px 0px;
  }
}
main.entry section.container table tr:last-of-type th, main.entry section.container table tr:last-of-type td {
  border-bottom: none;
}
main.entry section.container table:last-of-type {
  border-bottom: 1px dotted #e2e2b7;
}
main.entry section.container .submit_area {
  text-align: center;
  margin-top: 50px;
}
main.entry section.container .submit_area input[type=submit], main.entry section.container .submit_area input[type=button] {
  border: none;
  -webkit-appearance: none;
  border-radius: 0;
  border: #C9B566 1px solid;
  color: #C9B566;
  background: #fff;
  width: 10em;
  padding: 15px 0px;
  font-size: 1.6rem;
}
main.entry section.container .submit_area input[type=submit] {
  margin-right: 1.5em;
}
main.entry section.container .submit_area input[type=submit]:hover, main.entry section.container .submit_area input[type=button]:hover {
  cursor: pointer;
  background: #C9B566;
  color: #fff;
}

/* main.entry */
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main.entry {
    padding: 60px 0;
    width: 95%;
  }
}
/* ============================== ▼▼▼ ファイナリストページ ▼▼▼ ============================== */
main.finalist {
  padding: 70px 0;
  width: 1000px;
  margin: 0 auto;
  /* h1 */
  /* section */
}
main.finalist h1 {
  color: #C9B566;
  font-size: 2.4rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 40px;
}
main.finalist h1 span {
  border-bottom: 1px solid #C9B566;
  padding-bottom: 5px;
}
main.finalist section {
  padding: 0;
  /* ul */
}
main.finalist section ul {
  text-align: center;
  /* li */
}
main.finalist section ul li {
  width: 232px;
  display: inline-block;
  margin: 0 20px 40px 0;
  padding: 15px;
  background: #e2e2b7;
  vertical-align: top;
  /* p.daihyou */
}
main.finalist section ul li img {
  width: 100%;
  height: auto;
}
main.finalist section ul li p.name {
  text-align: center;
  font-size: 1.8rem;
  font-family: "Noto Serif JP", serif;
  margin-top: 10px;
}
main.finalist section ul li p.daihyou {
  color: #374f82;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}
main.finalist section ul li p.daihyou br {
  display: none;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  main.finalist section ul li p.daihyou br {
    display: inline;
  }
}
main.finalist section ul li a {
  display: inline-block;
  background: #fff;
  border: 1px solid #C9B566;
  text-align: center;
  width: 100%;
  height: 30px;
  line-height: 28px;
  border-radius: 15px;
  color: #C9B566;
  margin-top: 10px;
  font-size: 1.4rem;
}
main.finalist section ul li:nth-of-type(4n) {
  margin-right: 0;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  main.finalist section ul {
    /* li */
  }
  main.finalist section ul li {
    width: 48%;
    margin: 0 4% 30px 0;
    padding: 10px;
  }
  main.finalist section ul li:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  main.finalist section ul {
    text-align: left;
  }
}

/* main.finalist */
@media only screen and (max-width: 800px) and (min-width: 300px) {
  main.finalist {
    padding: 60px 0;
    width: 95%;
  }
}
/* ============================== ▼▼▼ フッター ▼▼▼ ============================== */
footer {
  background: #374f82;
  text-align: center;
  padding: 10px 0;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
footer small {
  color: #fff;
  font-size: 1.2rem;
}

/* footer */
/* css *//*# sourceMappingURL=style.css.map */

@media only screen and (max-width: 640px) and (min-width: 300px) {
.schedule{
width:100%;
}

}
.schedule{
  display:inline-table;
width:65%;
}

.schedule table {
width:100%;
  border-bottom: #6699CC dotted 1px;
  font-size: 1.4rem;
  /* th */
  /* td */
  /* tr:last-of-type */
}
.schedule table th {
  text-align: left;
  width: 30%;
  border-bottom:  #6699CC dotted 1px;
  padding: 10px 0;
  vertical-align: middle;
}
.schedule table th span {
  display: inline-block;
  margin-right: 10px;
}
.schedule table td {
  border-bottom:  #6699CC dotted 1px;
  padding: 10px 0;
  vertical-align: middle;
  /* ul */
  /* dl */
}
.schedule table td ul {
  margin-top: 0.8em;
  /* li */
}
.schedule table td ul li {
  position: relative;
  padding-left: 1em;
}
.schedule table td ul li:before {
  content: "▶︎";
  color: #d6af72;
  position: absolute;
  top: 15%;
  left: 0;
}
.schedule table td small {
  display: block;
}
.schedule table td dl {
  margin-top: 0.8em;
}
.schedule table td dl dt {
  color: #CC0066;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
.schedule{
width:100%;
}
.schedule table td {
    padding-left: 1em;
  }
}
.schedule table tr:last-of-type th, .schedule section table tr:last-of-type td {
  border-bottom: none;
}
.schedule table {
  margin-top: 30px;
}
.schedule  table th, .schedule table td {
  border-top:  #6699CC dotted 1px;
}
