/* Base Settings
---------------------------------------- */
body {
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #007B3A;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #fff;
}
@media screen and (min-width: 768px) {
  body {
    padding-top: 50px;
    font-size: clamp(14px, 1.285vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  body {
    background-image: url(../images/mv_bg__sp.png);
  }
  body.nav--opened {
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: clamp(12px, 4vw, 16px);
  }
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

em, strong {
  font-style: normal;
  font-weight: 700;
}

dt {
  font-weight: 400;
}

@media screen and (min-width: 641px) {
  .only-sp {
    display: none !important;
  }
}
/* Common Layout
---------------------------------------- */
.anc-point {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  margin-top: -20px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .anc-point {
    margin: 0;
    padding: 0;
  }
}

.section {
  position: relative;
}
@media screen and (min-width: 768px) {
  .section {
    padding-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .section {
    padding-bottom: 10vw;
  }
}
.section__inner {
  width: 90%;
  max-width: 780px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .section__inner {
    width: 100%;
  }
}
.section__heading {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25em 1em;
  background-color: #F5BE00;
  color: #000;
}
.section__heading.bg--red {
  background-color: #E83828;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .section__heading {
    margin: 0;
    display: block;
  }
  .section__heading.sp--mt0 {
    margin-top: 0;
  }
}
.section__heading em {
  font-size: 1.5em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .section__heading em {
    display: block;
    font-size: 1.3em;
  }
}
.section__heading span {
  margin-left: 1em;
  font-size: 0.8125em;
}
@media screen and (max-width: 767px) {
  .section__heading span {
    display: block;
    margin-left: 0;
    font-size: 0.7em;
  }
}
.section__heading span:nth-last-of-type(2) {
  margin-left: auto;
}
.section__heading2 {
  padding: 0.5em 2em;
  border-radius: 4em;
  background-color: #fff;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .section__heading2 {
    padding: 0.5em 4vw;
    border-radius: 0;
    background-color: #e9545d;
  }
}
.section__heading2 em {
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #004097;
}
@media screen and (max-width: 767px) {
  .section__heading2 em {
    letter-spacing: 0.1em;
    font-size: 1.14em;
    color: #fff;
  }
}

.brackets {
  display: inline-block;
  margin: 0 -0.25em 0 -0.5em;
}

/* Header
---------------------------------------- */
@media screen and (min-width: 768px) {
  .header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #F5BE00;
  }
  .header__inner {
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
  }
  .header__inner nav {
    width: 100%;
  }
  .nav-btn {
    display: none;
  }
  .global-nav ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-top: 2px;
  }
  .global-nav ul a {
    position: relative;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    font-size: 1.25em;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #000;
    transition: 0.2s;
  }
  .global-nav ul a:hover {
    color: #fff;
  }
}
@media screen and (max-width: 834px) {
  .global-nav {
    font-size: 0.86em;
  }
}
@media screen and (max-width: 767px) {
  .nav-btn {
    position: fixed;
    z-index: 11;
    top: 0;
    right: 0;
    width: 3.2em;
    height: 3.2em;
    cursor: pointer;
  }
  .nav-btn span {
    position: absolute;
    top: 50%;
    left: calc(50% - 1.1em);
    width: 2.2em;
    height: 3px;
    line-height: 0;
    background-color: #fff;
    transition: 0.3s;
  }
  .nav-btn span::before, .nav-btn span::after {
    content: "";
    position: absolute;
    display: block;
    width: 2.2em;
    height: 3px;
    line-height: 0;
    background-color: #fff;
    transition: 0.3s;
  }
  .nav-btn span::before {
    top: -10px;
  }
  .nav-btn span::after {
    bottom: -10px;
  }
  .nav-btn.nav--opened span {
    background: none;
  }
  .nav-btn.nav--opened span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .nav-btn.nav--opened span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .global-nav {
    position: fixed;
    z-index: 10;
    display: flex;
    align-items: center;
    top: 0;
    left: 100vw;
    width: 100vw;
    height: 100vh;
    padding-bottom: 10vh;
    background-color: #F5BE00;
    opacity: 0;
    transition: opacity 0.5s;
  }
  .global-nav.opened {
    left: 0;
    opacity: 1;
  }
  .global-nav ul {
    width: 100%;
  }
  .global-nav ul a {
    display: block;
    padding: 1em;
    text-align: center;
    font-size: min(5vw, 24px);
    font-weight: bold;
    color: #000;
  }
}
/* Title
---------------------------------------- */
.title {
  padding: 30px 0 50px;
  background: url(../images/title_bg.png) center center/cover no-repeat;
}
.title__text {
  width: 94%;
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .title {
    padding: 5vw 0;
  }
  .title__text {
    width: 100%;
  }
}

/* Logos
---------------------------------------- */
.logos {
  width: 90%;
  max-width: 780px;
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  .logos {
    margin-top: 3vw;
  }
}

/* Date
---------------------------------------- */
.date__box {
  margin: 35px 0;
}
@media screen and (max-width: 767px) {
  .date__box {
    width: 90%;
    margin: 5vw auto;
  }
}
.date--special > div {
  display: flow-root;
  padding: 20px 30px 30px;
  background-color: #fff;
  color: #000;
}
.date--special > div figure {
  float: left;
  width: 160px;
  margin-top: 10px;
}
.date--special > div dl {
  padding-left: calc(160px + 2em);
}
.date--special > div dl dt {
  padding: 0.25em 0 0.5em;
  font-size: 1.8em;
  font-weight: bold;
}
.date--special > div dl dd {
  text-align: justify;
  font-size: 0.875em;
}
.date--special > div dl dd p:nth-child(2) {
  clear: both;
}
.date--special > div dl + p {
  margin-top: 20px;
  padding: 0.5em;
  border-radius: 0.5em;
  background-color: rgba(243, 152, 0, 0.3);
  text-align: center;
  font-size: 1.8em;
  font-weight: bold;
}
.date--special > div dl + p > span {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .date--special > div {
    padding: min(5%, 1.5em);
  }
  .date--special > div figure {
    width: 30%;
    max-width: 120px;
    margin: 2% 5% 5% 0;
  }
  .date--special > div dl {
    padding: 0;
  }
  .date--special > div dl dt {
    font-size: 1.4em;
  }
  .date--special > div dl dd {
    font-size: 0.8em;
  }
  .date--special > div dl + p {
    font-size: 1.2em;
  }
}
.date__gift {
  margin-top: 2em;
  padding: 1.5em;
  border: solid 2px #ea545d;
  border-radius: 1.5em;
  background-color: #fef6f7;
  line-height: 1.4;
  font-size: 0.9em;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 767px) {
  .date__gift {
    width: 92%;
    margin: 5vw auto 0;
    padding: 1em 0.5em;
    border-radius: 1em;
    font-size: 0.8em;
  }
}
.date__gift dt {
  margin-bottom: 1em;
}
.date__gift dd {
  padding-left: 1em;
  text-indent: -1em;
}
.date__gift dd a {
  text-decoration: underline;
}

/* Companies
---------------------------------------- */
.companies__inner {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding: 20px;
  background-color: #fff;
  color: #000;
}
.companies__list {
  width: 49%;
}
.companies__list li {
  line-height: 1.2;
}
.companies__list li:not(:last-child) {
  margin-bottom: 0.5em;
}
.companies__list li > a > * {
  display: inline-block;
  vertical-align: middle;
}
.companies__list li > a > em {
  font-weight: normal;
}
.companies__list li > a > span {
  font-size: 0.8em;
}
.companies__list li > a + span {
  display: block;
  margin: 0.25em 0.5em 0;
  line-height: 1.4;
  font-size: 0.8em;
  color: #666;
}
@media screen and (min-width: 768px) {
  .companies__list li a {
    display: block;
  }
  .companies__list li a:hover {
    background-color: #ff0;
  }
}
@media screen and (max-width: 767px) {
  .companies {
    padding-bottom: 0;
  }
  .companies__inner {
    display: block;
    margin-top: 0;
    padding: 5%;
  }
  .companies__list {
    width: 100%;
  }
  .companies__list:not(:first-child) {
    margin-top: 0.5em;
  }
}

/* Schedule
---------------------------------------- */
.schedule__inner {
  padding-top: 30px;
}
.schedule__inner > *:not(:first-child) {
  margin-top: 1em;
}
.schedule__list {
  margin-top: 1em;
  font-size: 1.3em;
}
.schedule__list li > * {
  display: inline-block;
}
.schedule__list li span:nth-child(2) {
  font-family: Verdana, sans-serif;
}
.schedule__list li span:nth-child(3) {
  display: block;
  margin: 0 0 0.5em 1em;
  font-size: 0.9em;
}
.schedule .fsz--larger {
  font-size: 1.5em;
}
.schedule .fsz--middle {
  font-size: 1.2em;
}
.schedule .fsz--smaller {
  font-size: 0.9em;
}
@media screen and (max-width: 767px) {
  .schedule__inner {
    padding: 5% 5% 0;
  }
  .schedule__list li {
    margin-bottom: 0.5em;
    line-height: 1.2;
  }
  .schedule__list li span {
    font-size: 0.8em;
  }
  .schedule__list li span:nth-child(3) {
    margin: 0.25em 0 1em 1em;
    line-height: 1.4;
    font-size: 0.8em;
  }
  .schedule .fsz--larger {
    font-size: 1.2em;
  }
  .schedule .fsz--middle {
    font-size: 1em;
  }
  .schedule .fsz--smaller {
    font-size: 0.8em;
  }
}

/* Notice
---------------------------------------- */
.notice__list {
  margin-top: 30px;
  list-style-type: disc;
  margin-left: 1.5em;
  font-size: 0.94em;
}
@media screen and (max-width: 767px) {
  .notice__list {
    margin-top: 0;
    padding: 5% 5% 0;
  }
}

/* Preparation
---------------------------------------- */
.preparation__inner {
  margin-top: 30px;
}
.preparation a {
  text-decoration: underline;
}
.preparation ol li {
  margin-top: 1em;
}
.preparation ul {
  list-style-type: disc;
  margin-top: 1em;
  margin-left: 1.5em;
  font-size: 0.94em;
}
@media screen and (min-width: 768px) {
  .preparation a:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  .preparation__inner {
    margin-top: 0;
    padding: 5% 5% 0;
  }
}

/* Footer
---------------------------------------- */
.footer {
  margin-top: 100px;
  padding: 1em 0;
  background-color: #F5BE00;
  font-weight: 700;
  color: #000;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 0;
  }
}
.footer dl {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer dl div {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer__01 {
    font-size: 0.7em;
  }
}
.footer__01 dt {
  font-size: 1.5em;
  font-weight: 700;
}
.footer__01 dd {
  font-size: 1.875em;
}
.footer__02 {
  font-size: 1.125em;
}
@media screen and (max-width: 767px) {
  .footer__02 {
    display: block !important;
    font-size: 0.8em;
  }
}
.footer__02 dt {
  font-weight: 700;
}
.footer__02 div {
  margin: 0 0.5em;
}
.footer__02 div:first-child dt {
  font-size: 1.2em;
}
.footer__02 div:first-child dd img {
  width: auto;
  height: 1.4em;
  padding: 3px;
  vertical-align: middle;
  background-color: #fff;
}
.footer__02 div:last-child dt:last-of-type {
  margin-left: 1em;
}

/* Entry
---------------------------------------- */
.entry__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 25px;
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .entry__list {
    width: 90%;
    margin: 5vw auto 0;
  }
}
.entry__list li {
  width: 23%;
}
@media screen and (max-width: 640px) {
  .entry__list li {
    width: 50%;
    margin-bottom: 7vw;
  }
}
.entry__list li > * {
  display: block;
  line-height: 1.4;
  text-align: center;
}
.entry__list li img {
  width: 70%;
  margin: 0 auto;
}
.entry__list li em {
  margin: 0.75em 0 0.25em;
  font-size: 1.16em;
}
@media screen and (max-width: 640px) {
  .entry__list li em {
    font-size: 1em;
  }
}
.entry__list li em span {
  display: inline-block;
}
.entry__list li > span {
  font-size: 0.9em;
}
@media screen and (max-width: 640px) {
  .entry__list ~ * {
    width: 90%;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
}
.entry__notes {
  text-align: center;
}
@media screen and (max-width: 640px) {
  .entry__notes {
    padding-left: 1em;
    text-indent: -1em;
    text-align: left;
  }
}
.entry__notes span {
  display: inline-block;
}
@media screen and (max-width: 640px) {
  .entry__notes span {
    display: inline;
  }
}
.entry__button {
  margin-top: 3em;
  text-align: center;
}
.entry__button .ex-link::after {
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  background: url(../images/icon_ex-link.svg) center center/contain no-repeat;
}
@media screen and (min-width: 980px) {
  .entry__button .ex-link:hover {
    text-decoration: underline;
  }
}
.entry__button--button a {
  display: inline-block;
  margin: 0.75em auto 1em;
  padding: 0.75em 1.5em;
  border-radius: 0.2em;
  background-color: #FF961E;
  box-shadow: 0 0.25em 0 #C87828;
  font-size: 2.2em;
  font-weight: 700;
  font-style: italic;
  color: #fff;
}
@media screen and (min-width: 980px) {
  .entry__button--button a {
    transition: 0.3s;
  }
  .entry__button--button a:hover {
    background-color: #C87828;
    box-shadow: 0 0.15em 0 #C7501E;
    transform: translateY(0.1em);
  }
}
@media screen and (max-width: 640px) {
  .entry__button--button a {
    font-size: 1.8em;
  }
}
.entry__button--notes {
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */