@charset "UTF-8";
/* ===========================================
 * ROOT
 * ======================================== */
:root {
  --font_base: "Noto Sans JP", sans-serif;
}

/* ===========================================
 * BASE
 * ======================================== */
header {
  width: 100%;
}
main {
  width: 100%;
  position: relative;
}
html.active,
body.active {
  overflow: hidden;
}

/* ===========================================
 * PC・SP・NONE
 * ======================================== */
.sp {
	display: none;
}
.pc {
  display: block;
}
@media screen and (max-width: 767px) {
	.sp {
		display: block;
	}
  .pc {
    display: none;
  }
}
/* ===========================================
 * HEADER
 * ======================================== */
.header__wrap {
  width: 100%;
  height: 80px;
  background-color: #FFFFFF;
}
.header__inner {
  width: min(100%, 1200px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo {
  width: 350px;
  display: block;
}
@media screen and (max-width: 767px) {
  .header__wrap {
    height: 40px;
  }
  .header__inner {
    width: min(100%, 1200px);
  }
  .header__logo {
    width: 150px;
  }
}

/* ===========================================
 * MENU
 * ======================================== */
.nemu__wrap {
  width: 100%;
  margin-inline: auto;
  position: absolute;
  z-index: 100;
  right: 0;
  left: 0;
  bottom: 0;
  /* display: none; */
}
.menu__contents {
  width: 100%;
  height: 100vh;
  margin-inline: auto;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  display: none;
  position: fixed;
  inset: 0;
  opacity: 0;
}
.menu__contents.active {
  display: block;
  opacity: 1;
  visibility: visible;
}
.menu__contents__inner {
  padding: 40px 5%;
  margin-inline: auto;
  display: grid;
  gap: 15px;
  position: relative;
  z-index: auto;
  background-color: #FFFFFF;
}
.menu__contents__logo {
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #cccccc;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center
}
.menu__contents__logo > span {
  width: 150px;
  display: block;
}
.menu__icon {
  width: 40px;
  aspect-ratio: 1 / 1;
  border-radius: 9999px;
  background-color: #82bce6;
  filter: drop-shadow( 0 2px 0 #FFFFFF);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 110;
  right: 19px;
  top: 60px;
}
.menu__icon > span {
  width: 17px;
  height: 2px;
  margin: auto;
  background-color: #FFFFFF;
  display: block;
  position: absolute;
  z-index: 111;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease;
}
.menu__icon > span:nth-child(1) {
  transform: translate(-50%, calc(-50% + 6px));
}
.menu__icon > span:nth-child(2) {
  transform: translate(-50%, -50%);
}
.menu__icon > span:nth-child(3) {
  transform: translate(-50%, calc(-50% - 6px));
}
.active.menu__icon > span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.active.menu__icon > span:nth-child(2) {
  opacity: 0;
}
.active.menu__icon > span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.menu__btn {
  width: fit-content;
  padding-left: 15px;
  display: flex;
  position: relative;
  z-index: auto;
}
.menu__btn::before {
  content: "";
  width: calc(15px / 2);
  height: calc(21px / 2);
  margin-block: auto;
  clip-path: polygon(0 0, 0% 100%, 100% 56%);
  display: block;
  position: absolute;
  z-index: auto;
  top: 0;
  bottom: 0;
  left: 0;
}
/* Btn */
/* ======================================= */
#menu--food {
  width: calc(229px / 2);
}
#menu--food::before {
    background-color: #9bc647;
  }
#menu--event {
  width: calc(267px / 2);
}
#menu--event::before {
    background-color: #f19aab;
  }
#menu--lottery {
  width: calc(274px / 2);
}
#menu--lottery::before {
    background-color: #31acdd;
  }
#menu--survey {
  width: calc(303px / 2);
}
#menu--survey::before {
    background-color: #ffa655;
  }
#menu--footer {
  width: calc(181px / 2);
}
#menu--footer::before {
    background-color: #004097;
  }

/* ===========================================
 * TOP
 * ======================================== */
.top__wrap {
  width: 100%;
}
.top__inner {
  margin-inline: auto;
}
.top__kv {
  display: block;
}
.top__kv img {
  width: 100%;
}

/* ===========================================
 * NAVI
 * ======================================== */
.navi__wrap {
  width: 100%;
  padding-block: 25px;
  background-color: #82bce6;
}
.navi__inner {
  width: min(calc(100% - 100px), 1200px);
  margin-inline: auto;
}
.navi__btn__container {
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.navi__btn {
  width: 100%;
  height: 70px;
  padding-bottom: 15px;
  text-align: center;
  font: 600 22px / 1.0 var(--font_base);
  color: #231815;
  border-radius: 20px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: auto;
}
.navi__btn::before {
  content: "";
  width: 40px;
  height: 40px;
  margin-inline: auto;
  border-radius: 9999px;
  background-color: #82bce6;
  display: block;
  position: absolute;
  z-index: 1;
  right: 0;
  left: 0;
  bottom: -20px;
}
.navi__btn::after {
  content: "";
  width: 14px;
  height: 10px;
  margin-inline: auto;
  background-color: #FFFFFF;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  display: block;
  position: absolute;
  z-index: 2;
  right: 0;
  left: 0;
  bottom: 0;
}
.navi__fixed {
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
}
@media screen and (max-width: 1200px) {
  .navi__btn__container {
    gap: calc(25 / 1200 * 100vw);
  }
  .navi__btn {
    height: calc(70 / 1200 * 100vw);
    padding-bottom: calc(15 / 1200 * 100vw);
    font: 600 calc(22 / 1200 * 100vw) / 1.0 var(--font_base);
    border-radius: calc(20 / 1200 * 100vw);
  }
  .navi__btn::before {
    width: calc(40 / 1200 * 100vw);
    height: calc(40 / 1200 * 100vw);
    bottom: calc(-20 / 1200 * 100vw);
  }
  .navi__btn::after {
    width: calc(14 / 1200 * 100vw);
    height: calc(10 / 1200 * 100vw);
  }
  .navi__fixed {
    box-shadow: 0px 0px calc(8 / 1200 * 100vw) rgba(0, 0, 0, 0.25);
  }
}

/* ===========================================
 * FOOD
 * ======================================== */
.food__wrap {
  width: 100%;
  padding-block: 70px 120px;
  background:
    center top / 1500px auto no-repeat url(../images/food_bg.png),
    center 50px / 1500px auto repeat-y url(../images/food_bg-side.png),
    center top / 100% auto repeat-y url(../images/food_bk.png)
  ;
  background-color: #eeffd4;
  overflow: hidden;
}
.food__inner {
  width: min(calc(100% - 100px), 1200px);
  margin-inline: auto;
}
/* .food__title {} */
.food__title > span {
  width: 72px;
  display: block;
}
.food__caution {
  width: fit-content;
  margin-inline: auto;
  font: 400 16px / 1.5 var(--font_base);
}
@media screen and (max-width: 767px) {
  .food__wrap {
    padding-block: 20px 70px;
    background: center top / 100% auto no-repeat url(../images/food_bg_sp.png), center top / 100% auto repeat-y url(../images/food_bk.png);
    background-color: #eeffd4;
  }
  .food__inner {
    width: min(90%, 674px);
  }
  .food__title > span {
    width: 36px;
  }
  .food__caution {
    margin-left: 0;
    font: 400 10px / 1.5 var(--font_base);
    display: block;
  }
}
.food__leadtext01,
.food__leadtext02 {
  margin-inline: auto;
  margin-bottom: 35px;
  display: block;
}
.food__leadtext01 {
  width: min(100%, 904px);
}
.food__leadtext02 {
  width: min(100%, 900px);
}
.food__box01 {
  margin-bottom: 70px;
}
/* .food__box02 {} */
@media screen and (max-width: 767px) {
  .food__leadtext01,
  .food__leadtext02 {
    margin-bottom: 15px;
  }
  .food__leadtext01 {
    width: min(100%, 261px);
  }
  .food__leadtext02 {
    width: min(100%, 302px);
  }
  .food__box01 {
    margin-bottom: 50px;
  }
  .food__box02 {
  position: relative;
  z-index: 1;
  }
  .food__box02::before {
    content: "";
    width: 100vw;
    height: calc(455 / 750 * 100vw);
    background: center top / 100vw auto  url(../images/food_bg_sp.png);
    display: block;
    position: absolute;
    z-index: -1;
    left: -5%;
    top: -5%;
  }
}
/* card */
/* ======================================= */
.food__card__container {
  width: min(100%, 1100px);
  margin-inline: auto;
  margin-bottom: 35px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(5, auto);
  align-items: center;
  justify-content: center;
  gap: min(calc(40 / 1200 * 100vw), 40px);
}
/* .food__card__container::after {
  content: "";
  width: 332px;
  height: 433px;
  background: center center / 332px 433px no-repeat url(../images/food_card_container_deco.svg);
  display: block;
  right: 20px;
  bottom: 60px;
} */
.food__card {
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.3));
  display: block;
}
.food__card:last-child {
  filter: none;
}
@media screen and (max-width: 767px) {
  .food__card__container {
    margin-bottom: 10px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(14, auto);
    gap: 15px;
  }
  /* .food__card__container::after {
    width: 100%;
    height: auto;
    aspect-ratio: 674 / 304;
    background: center center / 100% auto no-repeat url(../images/food_card_container_deco_sp.svg);
    right: 0;
    bottom: 0;
  } */
  .food__card {
    width: 100%;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.3));
  }
}
/* list */
/* ======================================= */
.food__list__container {
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 35px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
}
.food__list {
  width: min(100%, 530px);
  background-color: #FFFFFF;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.3));
}
.food__list > span {
  padding: calc(20 / 530 * 100%);
  font: 400 14px / 1.5 var(--font_base);
  color: #404040;
  display: block;
}
@media screen and (max-width: 767px) {
  .food__list__container {
    margin-bottom: 10px;
    flex-direction: column;
    gap: 15px;
  }
  .food__list {
    width: 100%;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.3));
  }
  .food__list > span {
    padding: 12px;
    font: 400 9px / 1.5 var(--font_base);
  }
}

/* ===========================================
 * EVENT
 * ======================================== */
.event__wrap {
  width: 100%;
  padding-block: 70px 120px;
  border-top: 20px solid #f19aab;
  background: center top / 1500px 1756px no-repeat url(../images/event_bg.png), linear-gradient(#ffd7d7 0%, #ffd7d7 30%, transparent 100%), center top / 600px 600px repeat url(../images/event_bk.png);
  background-color: #ffd7d7;
  position: relative;
  z-index: auto;
  overflow: hidden;
}
.event__inner {
  width: min(calc(100% - 100px), 1200px);
  margin-inline: auto;
}
/* .evnet__title {} */
.evnet__title > span {
  width: 85px;
  display: block;
}
.event__leadtext {
  margin-inline: auto;
  margin-bottom: 35px;
  display: block;
}
.evnet__card__container {
  width: min(100%, 1000px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: repeat(3, auto);
  gap: 30px;
}
.evnet__card {
  position: relative;
  z-index: 1;
}
.evnet__card:first-of-type:before {
  content: "";
  width: 100%;
  height: 100%;
  margin: auto;
  display: block;
  position: absolute;
  z-index: 10;
  inset: 0;
}
@media screen and (max-width: 767px) {
  .event__wrap {
    padding-block: 20px 70px;
    border-top: 10px solid #f19aab;
    background: center top / 100% auto no-repeat url(../images/event_bg_sp.png), linear-gradient(#ffd7d7 0%, #ffd7d7 30%, transparent 100%), center top / calc(600px / 2) calc(600px / 2) repeat url(../images/event_bk.png);
    background-color: #ffd7d7;
  }
  .event__inner {
    width: min(90%, 674px);
  }
  .evnet__title > span {
    width: 42.5px;
  }
  .event__leadtext {
    width: calc(504px / 2);
    margin-bottom: 15px;
  }
  .evnet__card__container {
    gap: 15px;
  }
}

/* ===========================================
 * LOTTERY
 * ======================================== */
.lottery__wrap {
  width: 100%;
  padding-block: 70px 120px;
  border-top: 20px solid #31acdd;
  background: center top / 83px 140px repeat url(../images/lottery_bk.png);
  background-color: #b6e9ff;
  overflow: hidden;
}
.lottery__inner {
  width: min(calc(100% - 100px), 1200px);
  margin-inline: auto;
}
.lottery__box {
  width: min(100%, 1000px);
  margin-inline: auto;
}
/* .lottery__title {} */
.lottery__title > span {
  width: 85px;
  display: block;
}
.lottery__leadtext {
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 35px;
  display: block;
}
.lottery__contents {
  width: min(100%, 900px);
  margin-inline: auto;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.3));
}
.lottery__contents__inner {
  padding: 40px;
  border-radius: 0 0 20px 20px;
  background-color: #FFFFFF;
}
.lottery__list__container {
  padding: 0;
}
.lottery__list {
  padding-left: 1em;
  text-indent: -1em;
  font: 400 18px / 1.5 var(--font_base);
  color: #404040;
}
.lottery__list > span {
    color: #e9443e;
  }
.lottery__caution {
  font: 400 18px / 1.5 var(--font_base);
  color: #404040;
}
@media screen and (max-width: 767px) {
  .lottery__wrap {
    padding-block: 20px 70px;
    border-top: 10px solid #31acdd;
    background: center top / calc(83px / 2) calc(140px / 2) repeat url(../images/lottery_bk.png);
    background-color: #b6e9ff;
  }
  .lottery__inner {
    width: min(90%, 674px);
  }
  .lottery__box {
    width: min(100%, 1000px);
  }
  /* .lottery__title {} */
  .lottery__title > span {
    width: calc(85px / 2);
  }
  .lottery__leadtext {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    margin-bottom: 0;
    display: block;
  }
  .lottery__contents {
    width: min(100%, 900px);
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.3));
  }
  .lottery__contents__inner {
    width: 100%;
    padding: calc(40 / 674 * 100%);
    border-radius: 0 0 10px 10px;
  }
  .lottery__list {
    font: 400 9px / 1.5 var(--font_base);
  }
  .lottery__caution {
    font: 400 9px / 1.5 var(--font_base);
  }
}

/* ===========================================
 * SURVEY
 * ======================================== */
.survey__wrap {
  width: 100%;
  padding-block: 70px 120px;
  border-top: 20px solid #ffa655;
  background: center top / 117px 119px repeat url(../images/survey_bk.png);
  background-color: #ebe4d5;
  overflow: hidden;
}
.survey__inner {
  width: min(100%, 1200px);
  margin-inline: auto;
}
.survey__box {
  width: min(100%, 1000px);
  margin-inline: auto;
}
.survey__title > span {
  width: 106px;
  display: block;
}
.survey__leadtext {
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 35px;
  display: block;
}
.survey__contents {
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.3));
}
.survey__contents__inner {
  width: min(90%, 900px);
  padding: 40px;
  margin-inline: auto;
  border-radius: 0 0 20px 20px;
  background-color: #FFFFFF;
}
.survey__btn {
  width: min(100%, 600px);
  height: 3em;
  margin-inline: auto;
  margin-bottom: 35px;
  font: 400 30px / 1.0 var(--font_base);
  color: #FFFFFF;
  border-radius: 20px;
  background-color: #e9443e;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: auto;
}
.survey__btn::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  margin-block: auto;
  border-top: solid 2px #FFFFFF;
  border-right: solid 2px #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  transform: rotate(45deg);
}
.survey__btn > span {
  width: fit-content;
  display: block;
}
.survey__caution {
  font: 400 18px / 1.5 var(--font_base);
  color: #404040;
}
.survey__caution > span {
  color: #e9443e;
}
@media screen and (max-width: 767px) {
  .survey__wrap {
    padding-block: 20px 70px;
    border-top: 10px solid #ffa655;
    background: center top / calc(117px / 2) calc(119px / 2) repeat url(../images/survey_bk.png);
    background-color: #ebe4d5;
  }
  .survey__inner {
    width: min(90%, 674px);
  }
  .survey__title > span {
    width: calc(106px / 2);
    display: block;
  }
  .survey__box {
    width: min(100%, 1000px);
  }
  .survey__leadtext {
    width: fit-content;
    margin-bottom: 15px;
  }
  .survey__contents {
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.3));
  }
  .survey__contents__inner {
    width: 100%;
    padding: calc(40 / 674 * 100%);
    border-radius: 0 0 10px 10px;
  }
  .survey__btn {
    height: 3em;
    margin-bottom: 15px;
    font: 400 15px / 1.0 var(--font_base);
    border-radius: 10px;
  }
  .survey__caution {
    font: 400 9px / 1.5 var(--font_base);
  }
}


/* ===========================================
 * ASSETS
 * ======================================== */
.title {
  width: 200px;
  height: 50px;
  margin-inline: auto;
  margin-bottom: 35px;
  border-radius: 9999px;
  background-color: #FFFFFF;
  filter: drop-shadow(0 4px 0 rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: auto;
}
.title::before,
.title::after {
  content: "";
  width: 250px;
  height: 120px;
  background: center center / 250px 120px no-repeat url(../images/assets_title_deco.png);
  display: block;
  position: absolute;
  z-index: auto;
  bottom: 0;
}
.title::before {
  left: -250px;
  transform: scale(-1, 1);
}
.title::after {
  right: -250px;
}
@media screen and (max-width: 767px) {
  .title {
    width: 100px;
    height: 25px;
    margin-bottom: 14px;
    filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.3));
  }
  .title::before,
  .title::after {
    width: 125px;
    height: 60px;
    background: center center / 125px 60px no-repeat url(../images/assets_title_deco.png);
  }
  .title::before {
    left: -125px;
  }
  .title::after {
    right: -125px;
  }
}


.access {
  background: #004097;
}
.access__inner {
  max-width: 1300px;
  padding-inline: 50px;
  margin: 0 auto;
}
.access::before {
  display: none;
}
@media screen and (max-width: 767px) {
  .access__inner {
    width: min(90%, 674px);
    padding-inline: 0;
  }
}