@charset "UTF-8";
/* color */
/* common */
/* ieto */
/*border dots*/
/* mono */
/* yellow */
/* green */
/* pink */
/* blue */
/* 各ページごと */
/*font-family*/
/*filler color*/
/*text-shadow*/
/*box-shadow*/
/*media query break point*/
/*sans font weight*/
/*font-size*/
/*wrapper inner width*/
/*flex settings*/
/*grid settings*/
/*add :after*/
/* media query */
.p-mv {
  background-image: url(../../../images/event/photo/photo-mv.jpg);
  background-size: cover;
  background-position: center;
  height: 28vw;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .p-mv {
    background-image: url(../../../images/event/photo/photo-mv-sp.jpg);
    height: 100vw;
    margin-top: 0;
  }
}
.p-mv__inner {
  padding: 15rem 0 7rem;
}
@media only screen and (max-width: 768px) {
  .p-mv__inner {
    padding: 7rem 0 3rem;
  }
}
.p-mv__ttl {
  margin: 6rem auto 0;
  text-align: center;
  padding: 0;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .p-mv__ttl {
    margin-top: -16rem;
  }
}
.p-mv__ttlwrap em {
  font-size: 3rem;
  margin: 1rem;
  display: block;
  color: #005394;
}
.p-mv__engttl {
  font-size: 1.6rem;
  display: block;
}
.p-mv__ttltxt {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin-top: 4rem;
}
@media only screen and (max-width: 768px) {
  .p-mv__ttltxt {
    margin-top: 3rem;
  }
}

.p-con {
  background-color: #f2f6fa;
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .p-con {
    padding: 5rem 0;
  }
}
.p-con__box {
  position: relative;
  background-color: #fff;
  padding: 5rem;
}
@media only screen and (max-width: 768px) {
  .p-con__box {
    padding: 2rem;
  }
}
.p-con__box::before {
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 2px solid #f2f6fa;
  position: absolute;
  top: 10px;
  left: 10px;
}
.p-con__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.p-con__ttltxt {
  font-size: 2.5rem;
  color: #005394;
}
@media only screen and (max-width: 768px) {
  .p-con__ttltxt {
    font-size: 1.8rem;
    text-align: center;
  }
}
.p-con__ic {
  display: block;
  width: 3rem;
  height: 3rem;
}
.p-con__ic img {
  width: 100%;
  height: auto;
}
.p-con__txtblock {
  display: block;
}
.p-con__txt {
  margin: 3rem auto;
  font-size: 1.7rem;
  line-height: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media only screen and (max-width: 768px) {
  .p-con__txt {
    font-size: 1.4rem;
  }
}

.p-theme {
  padding: 10rem 0;
  position: relative;
  overflow-x: hidden;
}
.p-theme .c-txt-box {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-theme__ttlicon {
  width: 6.8rem;
  height: 6.8rem;
  position: absolute;
  top: -1rem;
  left: -8rem;
}
@media only screen and (max-width: 768px) {
  .p-theme__ttlicon {
    top: -7rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-theme__box {
  position: relative;
  background-color: #f2f6fa;
  background-color: rgba(242, 246, 250, 0.8);
  padding: 5rem;
  max-width: 80rem;
  margin: 4rem auto;
}
@media only screen and (max-width: 768px) {
  .p-theme__box {
    padding: 4rem 2rem;
    width: 90%;
    margin: 0 auto 7rem;
  }
}
.p-theme__box::before {
  content: "";
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  left: 10px;
  top: 10px;
  border: 2px solid #fff;
}
.p-theme__ttl {
  text-align: center;
  font-size: 1.8rem;
}
.p-theme__ttl em {
  font-size: 2.8rem;
  display: block;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .p-theme__ttl em {
    font-size: 2.2rem;
    line-height: 1.3;
  }
}
.p-theme__txt {
  font-size: 1.7rem;
  text-align: center;
  margin: 3rem auto 4rem;
}
@media only screen and (max-width: 768px) {
  .p-theme__txt {
    font-size: 1.4rem;
    margin: 2rem auto 3rem;
  }
}
.p-theme__period {
  background-color: #666666;
  width: 90%;
  margin: 0 auto;
  padding: 2rem 0;
  text-align: center;
  color: #fff;
}
.p-theme__img {
  width: 45rem;
  height: auto;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .p-theme__img {
    width: 18rem;
    z-index: -1;
  }
}
.p-theme__img.mod--l {
  right: 72%;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .p-theme__img.mod--l {
    top: unset;
    bottom: 1%;
    right: 61%;
    transform: unset;
  }
}
.p-theme__img.mod--r {
  left: 72%;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .p-theme__img.mod--r {
    top: 1%;
    left: 61%;
    transform: unset;
  }
}
@media only screen and (max-width: 768px) {
  .p-theme .c-txt-box__ttl {
    text-shadow: 0 0 2px #fff, 0 0 5px #fff, 0 0 10px #fff;
  }
}

.p-gift {
  background-color: #f2f6fa;
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .p-gift {
    padding: 5rem 0;
  }
}
.p-gift__box {
  max-width: 100rem;
  width: 90%;
  margin: 4rem auto;
  position: relative;
  background-color: #fff;
  padding: 5rem;
  border: 1px solid #005394;
  border-top: 4px solid #005394;
}
@media only screen and (max-width: 768px) {
  .p-gift__box {
    margin: 0 auto;
    padding: 4rem 2rem;
  }
}
.p-gift__ttl {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 2.8rem;
  color: #005394;
  display: block;
  line-height: 1;
  text-align: center;
}
.p-gift__ttljp {
  display: block;
  line-height: 1.4;
}
.p-gift__ttleng {
  font-size: 1.6rem;
  display: block;
}
.p-gift__ttlicon {
  position: absolute;
  top: -1rem;
  right: -8rem;
  width: 6.8rem;
  height: auto;
}
.p-gift__txt {
  text-align: center;
  font-size: 1.7rem;
  margin: 4rem auto;
}
@media only screen and (max-width: 768px) {
  .p-gift__txt {
    font-size: 1.4rem;
  }
}
.p-gift__txt em {
  font-size: 1.5em;
  line-height: 1;
}
.p-gift__imgwrap {
  max-width: 60rem;
  margin: 0 auto;
}
.p-gift__link a {
  color: #005394;
  text-decoration: underline;
  font-size: 1.4rem;
  transition: 0.3s;
}
.p-gift__link a:hover {
  color: #7ab5e1;
  transition: 0.3s;
}
.p-gift__cap {
  font-size: 1.3rem;
}
@media only screen and (max-width: 768px) {
  .p-gift__cap {
    font-size: 1.2rem;
  }
}

.p-how {
  background-color: #f0f0f2;
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .p-how {
    padding: 4rem 0;
  }
}
.p-how__step {
  max-width: 100rem;
  width: 80%;
  margin: 6rem auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6rem;
}
@media only screen and (max-width: 768px) {
  .p-how__step {
    grid-template-columns: 1fr;
    gap: 8rem;
  }
}
.p-how__inf {
  position: relative;
}
.p-how__num {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 4rem;
  font-size: 2.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #005394;
  color: #fff;
  border-radius: 1000px;
}
@media only screen and (max-width: 768px) {
  .p-how__num {
    font-size: 2rem;
  }
}
.p-how__img {
  background-color: #fff;
  box-shadow: 2px 2px 15px rgb(186, 186, 186);
}
.p-how__txt {
  font-size: 1.6rem;
  text-align: center;
  margin-top: 2rem;
}
@media only screen and (max-width: 768px) {
  .p-how__txt {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}
.p-how__steparw {
  position: absolute;
  right: -4rem;
  top: calc(50% - 2lh);
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 1em;
  height: 1em;
  transform: translateY(-50%) translateX(-25%) rotate(45deg);
}
@media only screen and (max-width: 768px) {
  .p-how__steparw {
    right: unset;
    left: 49%;
    top: unset;
    bottom: -3rem;
    transform: translateX(-25%) rotate(135deg);
  }
}
.p-how__steparw::before, .p-how__steparw::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}
.p-how__steparw::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}
.p-how__steparw::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}
.p-how__list {
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto;
  font-size: 2rem;
  max-width: 90%;
}
@media only screen and (max-width: 768px) {
  .p-how__list {
    font-size: 1.6rem;
    margin: 2rem auto;
  }
}
.p-how__notice {
  max-width: 80rem;
  width: 90%;
  margin: 4rem auto;
  padding: 3rem 5rem;
  background-color: #fff;
  border: 1px solid gray;
}
@media only screen and (max-width: 768px) {
  .p-how__notice {
    padding: 3rem 2rem;
  }
}
.p-how__btn {
  display: block;
  background-color: #005394;
  font-size: 2rem;
  max-width: 56rem;
  width: 90%;
  margin: 4rem auto;
}
@media only screen and (max-width: 768px) {
  .p-how__btn {
    font-size: 1.6rem;
    margin: 1rem auto 0;
  }
}

.p-ban {
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .p-ban {
    padding: 4rem 0;
  }
}
.p-ban__btn {
  display: block;
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
}
.p-ban__btn.coming {
  pointer-events: none;
}
.p-ban__heading__ribon {
  display: block;
  max-width: 500px;
  margin-inline: auto;
}
.p-ban__heading h3 {
  text-align: center;
  font-size: 2.8rem;
}
@media only screen and (max-width: 768px) {
  .p-ban__heading h3 {
    font-size: 2rem;
  }
}
.p-ban__detail {
  position: relative;
}
.p-ban__term {
  background-color: #4D4D4D;
  text-align: center;
  color: #fff;
  padding: 1rem;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 768px) {
  .p-ban__term {
    font-size: 1.6rem;
  }
}
.p-ban__term span {
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background-color: #fff;
  color: #333;
  margin-right: 1rem;
  font-size: 0.8em;
}
.p-ban-com {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-ban-com p {
  font-size: 5rem;
  color: white;
}
@media only screen and (max-width: 768px) {
  .p-ban-com p {
    font-size: 1.8rem;
  }
}

.obj--yell {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.obj--yell::before {
  content: "";
  width: 100%;
  height: 8px;
  position: absolute;
  bottom: 0.2rem;
  left: 0;
  background-color: #ffea99;
  z-index: -1;
}/*# sourceMappingURL=style.css.map */