@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap&text=0123456789");
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  font-size: 1.6rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

#wrapper {
  width: 100%;
  text-align: left;
  position: relative;
  line-height: 1.8;
}

#contents {
  font-size: 1.6rem;
  width: 100%;
  margin: 0 auto;
}

#main {
  width: 90%;
  max-width: 980px;
}

.inner {
  width: 80%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767.98px) {
  .inner {
    width: 100%;
  }
}

a:hover {
  opacity: 0.75;
}

img {
  width: 100%;
  height: auto;
}

ul.circle {
  margin-left: 2em;
  text-indent: 0;
}
ul.circle li {
  list-style-type: disc;
  list-style-position: outside;
  line-height: 1.6;
}
ul.square {
  margin-left: 2em;
}
ul.square li {
  list-style-type: square;
  list-style-position: outside;
  line-height: 1.6;
}
ul.asterisk {
  margin-left: 1em;
}
ul.asterisk li {
  list-style: none;
  line-height: 1.6;
  text-indent: -1em;
  margin: 0 0 5px;
}

/* 横並び
------------------------------------------ */
ul.flexList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* 数字リスト
------------------------------------------ */
ol.numList {
  margin-left: 2em;
  line-height: 1.6;
}
ol.numList li {
  list-style: decimal;
}
ol.paren {
  counter-reset: item;
  list-style: none !important;
  margin: 0 0 20px 0 !important;
  line-height: 1.6;
}
ol.paren li {
  padding-left: 2em;
  text-indent: -2em;
  margin: 0 0 5px 0.5em;
  list-style: none !important;
}
ol.paren li:before {
  content: "(" counters(item, "-") ")";
  counter-increment: item;
  margin-right: 0.5em;
}
ol.paren li > ol {
  margin-top: 5px;
}
ol.paren li > ol li {
  list-style: none;
}
ol.paren li > ol li:before {
  content: none !important;
}

.dlTable {
  width: 100%;
}
.dlTable dl {
  width: 100%;
  overflow: hidden;
  border: solid 1px #dde2e8;
  display: flex;
  flex-wrap: wrap;
}
.dlTable dl dt,
.dlTable dl dd {
  padding: 15px 30px;
}
.dlTable dl dt:not(:last-of-type),
.dlTable dl dd:not(:last-of-type) {
  border-bottom: solid 1px #dde2e8;
}
.dlTable dl dt {
  width: 20%;
  background: #F8FAFC;
  text-align: center;
}
.dlTable dl dd {
  width: 80%;
}

@media screen and (max-width: 767.98px) {
  .dlTable dl {
    width: 100%;
    flex-direction: column;
  }
  .dlTable dl dt,
  .dlTable dl dd {
    width: 100%;
    padding: 10px 15px;
  }
  .dlTable dl dt {
    border-bottom: none;
  }
}
/* HEADER
========================================== */
#mv {
  width: 100%;
}

.pc {
  display: block;
}
@media screen and (max-width: 767.98px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .sp {
    display: block;
  }
}

#contents h2 {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin: 3rem auto;
  width: fit-content;
  box-shadow: inset 0 -3px 0 0 #D7E942;
}

#mv {
  width: 100%;
}

.lead {
  font-size: 3rem;
  line-height: 1.5;
  text-align: center;
  font-weight: 900;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767.98px) {
  .lead {
    font-size: 2rem;
    padding: 0 20px;
  }
}

.entry {
  color: #fff;
  text-align: center;
  background: url("../images/app_bg.png") no-repeat;
  background-attachment: fixed;
  background-position: top center;
  background-size: cover;
  padding: 50px 0;
}
.entry h2 {
  width: 60%;
  margin: -80px auto 0;
}
@media screen and (max-width: 767.98px) {
  .entry h2 {
    width: 90%;
  }
}
@media screen and (max-width: 767.98px) {
  .entry .entryTxt {
    width: 90%;
    margin: 0 auto;
  }
}
.entry .entryTxt p {
  font-size: 2.8rem;
  font-weight: bold;
}
@media screen and (max-width: 767.98px) {
  .entry .entryTxt p {
    font-size: 1.8rem;
  }
}
.entry .entryTxt p span {
  font-weight: normal;
  font-size: 1.8rem;
}
@media screen and (max-width: 767.98px) {
  .entry .entryTxt p span {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767.98px) {
  .entry .entryTxt p .sp-none {
    display: none;
  }
}
.entry .entryTxt .deadline {
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767.98px) {
  .entry .entryTxt .deadline {
    flex-direction: column;
    font-size: 3rem;
    margin-top: 4rem;
  }
}
.entry .entryTxt .deadline span {
  color: #000;
  background: #fff;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 50em;
  margin-right: 2rem;
}
@media screen and (max-width: 767.98px) {
  .entry .entryTxt .deadline span {
    font-size: 1.4rem;
    padding: 0.4rem 2rem;
  }
}
.entry .entryBtn {
  width: 90%;
  text-align: center;
  margin: 2rem auto;
}
.entry .entryBtn a {
  display: block;
  background: #D7E942;
  color: #000;
  border-radius: 8px;
  padding: 2rem 0;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1), inset 0 -0.15em 0 rgba(0, 0, 0, 0.15), 0 0.15em 0.15em rgba(0, 0, 0, 0.05);
}

.place {
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .place {
    width: 90%;
    margin: 0 auto;
  }
}
.place .large {
  font-size: 130%;
}
.place h2 {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
}
.place .map {
  margin-top: 3rem;
}

.outline {
  margin: 4rem 0;
}

.accordion {
  width: 80%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767.98px) {
  .accordion {
    width: 100%;
  }
}
.accordion .acd-check {
  display: none;
}
.accordion .acd-check:checked + .acd-label:after {
  content: "\f068";
}
.accordion .acd-check:checked + .acd-label + .acd-content {
  height: auto;
  opacity: 1;
  visibility: visible;
}
.accordion .acd-label {
  background: #222;
  color: #fff;
  display: block;
  margin-bottom: 1px;
  padding: 17px;
  position: relative;
  font-weight: bold;
}
.accordion .acd-label:after {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .accordion .acd-label:after {
    background: #0ba95f;
    box-sizing: border-box;
    content: "\f067";
    display: block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding: 17px 20px;
    position: absolute;
    right: 0;
    top: 0px;
  }
}
.accordion .acd-content {
  display: flex;
  padding: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
  border: solid 1px #dde2e8;
  border-top: none;
  padding: 3rem;
}
@media screen and (max-width: 767.98px) {
  .accordion .acd-content {
    display: block;
    height: 0;
    opacity: 0;
    padding: 0;
    transition: 0.3s;
    visibility: hidden;
  }
}
.accordion .acd-check:checked + .acd-label:after {
  content: "\f068";
}
.accordion .acd-check:checked + .acd-label + .acd-content {
  height: auto;
  opacity: 1;
  visibility: visible;
}
.accordion .acd-content .block {
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .accordion .acd-content .block {
    padding: 2rem;
    font-size: 1.3rem;
  }
}
.accordion .acd-label span, .accordion .acd-content h3 span {
  display: none;
}

.time {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
.time dt {
  width: 4em;
}
.time dd {
  width: calc(100% - 4em);
}

.note {
  font-size: 90%;
  color: #777;
}

/* SNS
------------------------------------------ */
.snsArea {
  width: 80%;
  margin: 0 auto;
  padding: 80px 0;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.snsArea .block {
  width: 47%;
}
.snsArea #facebookWrap {
  width: 100%;
  max-width: 500px;
}
.snsArea #facebookWrap iframe {
  width: 100%;
}

.bannerArea {
  margin: 80px 0;
}
.bannerArea .bannerList {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.bannerArea .bannerList li {
  text-align: center;
}
.bannerArea .bannerList li img {
  width: auto;
  height: 80px;
  object-fit: contain;
}

/* FOOTER
------------------------------------------ */
#footer {
  width: 100%;
  margin-top: 40px;
  background: #222;
  color: #b2b7b9;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  #footer {
    font-size: 1.3rem;
  }
}
#footer #contact {
  padding: 4rem 0;
  line-height: 1.6;
}
#footer #contact .ico {
  font-size: 2.2rem;
}
#footer #contact h2 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}
#footer #contact h2 span {
  font-size: 1.4rem;
  opacity: 0.5;
}
#footer .copyright {
  width: 100%;
  font-size: 1.3rem;
  text-align: center;
  font-family: "Roboto", sans-serif;
  border-top: solid 1px #333;
  padding: 2rem 0;
}

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