@charset "UTF-8";
/*---------------------------------------------
Reset
---------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
  padding: 0;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

div,
dl,
dt,
dd,
form,
input,
ul,
ol,
li,
p,
select,
textarea,
span,
th,
td {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

/*---------------------------------------------
Style
---------------------------------------------*/
:root {
  --orange: #ef5b22;
  --orange-shadow: #c35226;
  --red: #e60012;
  --red-shadow: #9e030f;
  --yellow: #fff300;
  --yellow2: #fff100;
  --cream: #fbf3df;
  --bg-cream: #fffbf5;
  --bg-orange: #ef5b22;
  --blue: #156bcb;
  --brown: #593025;
  --brown-shadow: #2b0b02;
}

html {
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
  background-color: var(--bg-cream);
}

body {
  text-align: center;
  margin: 0 auto;
  padding: 0;
}

@media screen and (min-width: 901px) {
  .spOnly {
    display: none !important;
  }
}

@media screen and (max-width: 900px) {
  .pcOnly {
    display: none !important;
  }
}

/* =========================================================
ヘッダー
========================================================= */
header {
  padding: 10px 20px;
  text-align: left;
  background-color: #fff;
}
@media screen and (min-width: 901px) {
  header {
    padding: 20px;
  }
}
header .header-wrapper {
  margin: 0 auto;
  max-width: 1000px;
}
header img {
  width: 162px;
}
@media screen and (min-width: 901px) {
  header img {
    width: 260px;
  }
}

/*---------------------------------------------
フッター
---------------------------------------------*/
footer {
  width: 100%;
  padding: 36px 20px 110px;
  text-align: center;
  font-size: 0.875rem;
  background: #FFF1DF;
}

/* =========================================================
ページトップ リンク
========================================================= */
.fixed-menu {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
}
.fixed-menu .tabs {
  padding: 14px 10px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (min-width: 901px) {
  .fixed-menu .tabs {
    justify-content: center;
    gap: 14px;
  }
}
.fixed-menu .tabs .pill-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-radius: 60px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  box-shadow: 0 4px 0 var(--shadow-color);
  transition: box-shadow 0.3s;
  transition-property: box-shadow, transform;
}
@media screen and (min-width: 901px) {
  .fixed-menu .tabs .pill-tab {
    max-width: 340px;
  }
}
@media (any-hover: hover) {
  .fixed-menu .tabs .pill-tab:hover {
    box-shadow: none !important;
    transform: translateY(4px);
  }
}
.fixed-menu .tabs .pill-tab.red {
  background: var(--red);
  --shadow-color: var(--red-shadow);
}
.fixed-menu .tabs .pill-tab.orange {
  background: var(--orange);
  --shadow-color: var(--orange-shadow);
}
.fixed-menu .tabs .pill-tab .arrow {
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/*---------------------------------------------
メイン
---------------------------------------------*/
main {
  background-color: var(--bg-cream);
}
main a {
  display: block;
}

.js-fadeIn {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.js-fadeIn.-active {
  opacity: 1;
  transform: translateY(0px);
}

.js-list > * {
  opacity: 0;
}
.js-list.-active > * {
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js-pop {
  scale: 0.1;
  opacity: 0;
}
.js-pop.-active {
  scale: 1;
  opacity: 1;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transition-property: scale, opacity;
}

.cmn_wrap {
  width: 100%;
  margin: 0 auto;
  background: #fff;
}

/* ---------- section common ---------- */
.section {
  padding: 20px 0;
}
@media screen and (min-width: 901px) {
  .section {
    padding: 60px 0;
  }
}
.section.cream {
  background: var(--bg-cream);
}
.section.white {
  background: #fff;
}
.section.orange {
  color: #fff;
  background: var(--bg-orange);
}
.section.beige {
  background: #FFF1DF;
}
.section .inner {
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 18px;
  color: #111;
}
@media screen and (min-width: 901px) {
  .section-title {
    margin-bottom: 40px;
  }
}
.section-title.on-orange {
  color: #fff;
  font-size: 1.5rem;
}

.lead-text {
  margin-bottom: 24px;
  font-size: 1.125rem;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 901px) {
  .lead-text {
    text-align: center;
  }
}
.lead-text span {
  font-weight: 800;
}

/* コンテンツ */
.hero {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #FFF1DF;
}
@media screen and (max-width: 900px) {
  .hero {
    padding-bottom: 40px;
  }
}
.hero .main-img {
  background: #E86D41;
}
.hero .main-img img {
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}
.hero .date {
  transform: translateY(-50%);
  position: relative;
  z-index: 3;
}
.hero .hero-title {
  margin-bottom: 20px;
  color: #EF5B22;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.375rem;
  letter-spacing: 0.88px;
}
@media screen and (min-width: 901px) {
  .hero .hero-title {
    font-size: 2rem;
  }
}
.hero .hero-main-sp {
  padding: 10px 0 100px;
  position: relative;
  overflow-x: clip;
}
@media screen and (min-width: 901px) {
  .hero .hero-main-sp {
    display: none;
  }
}
.hero .hero-main-sp .inner {
  position: relative;
  z-index: 2;
}
.hero .hero-main-sp .inner img {
  margin: 0 auto;
  display: block;
}
.hero .hero-main-sp .inner img:nth-child(2) {
  width: 84.358974359vw;
  transform: translateY(-10px);
}
.hero .hero-main-sp .hero-bg {
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  top: 20px;
}
.hero .hero-main-pc {
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .hero .hero-main-pc {
    display: none;
  }
}

.badges {
  padding: 0 20px;
  gap: 8px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 900px) {
  .badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 901px) {
  .badges {
    display: flex;
    justify-content: center;
  }
}

.badge {
  padding: 9px 14px;
  color: #fff;
  font-size: 0.875rem;
  border-radius: 50px;
  white-space: nowrap;
  background-color: var(--bg-orange);
}
@media screen and (min-width: 901px) {
  .badge {
    padding: 17px 40px;
    width: 200px;
    transform: translateY(-100%);
    font-size: 1.25rem;
  }
}

.label-pill-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
}

.label-pill {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 8px 22px;
  border-radius: 50px;
  position: relative;
}
@media screen and (min-width: 901px) {
  .label-pill {
    font-size: 1.25rem;
  }
}
.label-pill:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 5px 0 5px;
  border-style: solid;
  border-color: var(--orange) transparent transparent transparent;
}

.assist {
  padding-bottom: 40px;
}
.assist .section-title {
  margin: 20px auto 30px;
  width: 71.7948717949vw;
}
@media screen and (min-width: 901px) {
  .assist .section-title {
    width: 40.5405405405vw;
  }
}
.assist .card {
  margin: 0 auto;
  max-width: 600px;
}
.assist .card.-majica {
  margin-top: 47px;
  position: relative;
}
.assist .card.-majica .-plus {
  top: -30px;
  left: -20px;
}
.assist .card.-coupon {
  margin-top: 40px;
  position: relative;
}
.assist .card.-coupon .-plus {
  top: -10px;
  left: -10px;
}
.assist .card .-plus {
  position: absolute;
  width: 112px;
}
@media screen and (min-width: 901px) {
  .assist .card .-plus {
    width: 140px;
  }
}
.assist .card .-plus.-center {
  right: -20px;
  top: calc(50% - 115px);
}
@media screen and (min-width: 901px) {
  .assist .card .-plus.-center {
    display: none;
  }
}
.assist .card.-slim {
  margin-top: 10px;
}
@media screen and (min-width: 901px) {
  .assist .card.-slim {
    display: none;
  }
}

.dream-section {
  padding: 35px 0 47px;
}
@media screen and (min-width: 901px) {
  .dream-section {
    padding: 80px 0 40px;
  }
}
.dream-section .section-title {
  margin-right: auto;
  margin-left: auto;
  width: 78.9743589744vw;
}
@media screen and (min-width: 901px) {
  .dream-section .section-title {
    width: 27.027027027vw;
  }
}
.dream-section .photo-card {
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (min-width: 901px) {
  .dream-section .photo-card:nth-child(n+3) {
    display: none;
  }
}

/* 応募方法 */
.apply {
  padding: 34px 0 53px;
}
@media screen and (min-width: 901px) {
  .apply {
    padding: 40px 0;
  }
}
.apply .section-title {
  font-size: 1.75rem;
}

.method-list {
  margin: 0 auto;
  max-width: 1000px;
}
@media screen and (min-width: 901px) {
  .method-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

.method-card {
  padding: 40px 20px;
  border: 3px solid var(--orange);
  border-radius: 20px;
  margin-bottom: 18px;
  text-align: left;
  background: #fff;
}
@media screen and (min-width: 901px) {
  .method-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
  }
}
.method-card.-red {
  border-color: var(--red);
}
.method-card.-red h3 {
  color: var(--red);
}
.method-card h3 {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.625rem;
  color: var(--orange);
}
.method-card p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 18px;
}
@media screen and (min-width: 901px) {
  .method-card .cta-btn {
    margin: 0 auto;
    max-width: 300px;
  }
}

.cta-btn {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 466px;
  padding: 21px 0;
  border-radius: 70px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.3s;
  transition-property: box-shadow, transform;
}
@media (any-hover: hover) {
  .cta-btn:hover {
    box-shadow: none !important;
    transform: translateY(4px);
  }
}
.cta-btn.red {
  background: var(--red);
  box-shadow: 0 4px 0 var(--red-shadow);
}
.cta-btn.orange {
  background: var(--orange);
  box-shadow: 0 4px 0 var(--orange-shadow);
}
.cta-btn.brown {
  background: var(--brown);
  box-shadow: 0 4px 0 var(--brown-shadow);
}
.cta-btn.brack {
  background: #000;
  box-shadow: 0 4px 0 0 #2B0B02;
}

.common-note {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 14px;
  margin-top: 10px;
}
@media screen and (min-width: 901px) {
  .common-note {
    justify-content: center;
  }
}
.common-note .tag {
  background: #efefef;
  padding: 8px 14px;
  font-size: 1rem;
  white-space: nowrap;
}
.common-note p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #444;
}

/* サマーフェス */
.banner {
  padding: 40px 0;
}

.big-banner img {
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
  display: block;
}

.mv-block img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 901px) {
  .mv-block img {
    max-width: 390px;
  }
}

.summer {
  padding: 40px 0 56px;
  color: #fff;
  background-color: var(--blue);
}
@media screen and (min-width: 901px) {
  .summer {
    padding: 60px 20px;
  }
}
.summer a {
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .summer a:hover {
    opacity: 0.8;
  }
}
.summer .section-title {
  color: #fff;
  font-size: 1.75rem;
}
@media screen and (min-width: 901px) {
  .summer .section-title {
    font-size: 2rem;
  }
}
.summer .section-title span {
  margin-bottom: 10px;
  display: block;
  font-size: 1.125rem;
}
@media screen and (min-width: 901px) {
  .summer .section-title span {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 901px) {
  .summer .summer-wrapper {
    margin: 0 auto;
    max-width: 1000px;
    display: flex;
    gap: 60px;
  }
  .summer .summer-wrapper .section-title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 900px) {
  .summer .inner {
    padding: 30px 20px 50px;
  }
}
@media screen and (min-width: 901px) {
  .summer .inner {
    max-width: 546px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.summer .banner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 901px) {
  .summer .banner-wrapper {
    margin: 60px auto 0;
    max-width: 1000px;
    flex-direction: row;
  }
}
.summer .banner-wrapper .big-banner + .section-title {
  margin-top: 20px;
  margin-bottom: 0;
}

.fest-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.75rem;
  color: #fff;
  margin: 26px 0 12px;
}
@media screen and (min-width: 901px) {
  .fest-title {
    text-align: left;
  }
}

.fest-date-badge {
  margin: 0 auto 20px;
  padding: 8px 64px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  background: #fff;
  color: var(--blue);
  font-weight: 700;
  line-height: 1;
  font-size: 1rem;
}
@media screen and (min-width: 901px) {
  .fest-date-badge {
    margin-left: 0;
  }
}

.fest-note {
  margin-bottom: 30px;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #fff;
  text-align: left;
}
.fest-note.small {
  margin-bottom: 0;
  font-size: 0.875rem;
}

/* 確認事項 */
.note {
  padding: 0 0 54px;
}

.confirm-box {
  margin: 10px auto 0;
  max-width: 720px;
  border: 4px solid #111;
  border-radius: 20px;
  padding: 28px 19px;
}
.confirm-box h4 {
  margin-bottom: 14px;
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: left;
}
.confirm-box ul {
  list-style: none;
}
.confirm-box li {
  position: relative;
  padding-left: 18px;
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 14px;
  color: #222;
  text-align: left;
}
.confirm-box li:last-child {
  margin-bottom: 0;
}
.confirm-box li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #111;
}
.confirm-box + .cta-btn {
  margin-top: 40px;
}
.confirm-box + .cta-btn + .cta-btn {
  margin-top: 24px;
}

/* final cta */
.cta {
  padding: 34px 0 40px;
}

.final-cta-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 18px;
}

.final-cta-deadline {
  margin: 14px auto 36px;
  padding: 4px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  font-size: 1rem;
  color: var(--orange);
  background-color: #fff;
}
.final-cta-deadline .key {
  font-weight: 700;
}

.stack-gap {
  margin: 0 auto;
  padding: 28px 25px;
  max-width: 950px;
  display: flex;
  gap: 18px;
  background-color: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 900px) {
  .stack-gap {
    flex-direction: column;
    gap: 14px;
  }
}

.final-cta-note {
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 400;
  text-align: left;
}
@media screen and (min-width: 901px) {
  .final-cta-note {
    text-align: center;
  }
}

.entry-form {
  padding-top: 48px;
  padding-bottom: 0;
}
.entry-form .section-title {
  margin-left: auto;
  margin-right: auto;
  width: 47.6923076923vw;
}
@media screen and (min-width: 901px) {
  .entry-form .section-title {
    width: 33.7837837838vw;
  }
}
.entry-form .cta-btn {
  margin-top: 57px;
  max-width: 300px;
}
/*# sourceMappingURL=style.css.map */