/* ==================== */
/* style.css */
/* ==================== */

:root {
  /* scroll */
  scroll-behavior: smooth;
  /* font-weight */
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  --font-black: 900;
  /* color */
  --color-black: #111111;
  --color-white: #FFFFFF;
  --color-blue: #194399;
  --color-red: #C8004C;
  --color-light-blue: #77D4E8;
  --color-orange: #F49C00;
  --color-yellow: #FFE765;
  --color-green: #A9D05F;
  --color-pink: #F3A9C9;
  --color-light-orange: #FFC656;
  /* bg */
  --bg-blue: #E8EDF5;
  --bg-blue-dark: #BECBE2;
  --bg-red: #FAE6EE;
  --bg-red-dark: #F0B8CD;
}

body {
  font-family: "Noto Sans JP", 'Hiragino Sans', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-style: normal;
  font-weight: var(--font-regular);
  font-feature-settings:"palt";
  position: relative;
}

img {
  width: 100%;
  vertical-align: bottom;
}

h1 {
  font-size: 18px;
  color: var(--color-white);
}
h2 {
  font-size: 16px;
  font-weight: var(--font-bold);
  line-height: normal;
  margin-bottom: 30px;
}
h2 span {
  font-family: "Wendy One", sans-serif;
  font-weight: var(--font-regular);
  font-size: 48px;
  color: var(--color-blue);
}
.red_area h2 span {
  color: var(--color-red);
}
h3 {
  font-size: 24px;
  line-height: 1.2;
  color: var(--color-blue);
  padding: 6px 0 6px 14px;
  position: relative;
  font-weight: var(--font-black);
  margin-bottom: 25px;
}
.red_area h3 {
  color: var(--color-red);
}
h3::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 3px;
  left: 0;
  top: 0;
  background: var(--color-blue);
}
.red_area h3::before {
  background: var(--color-red);
}
h3 span {
  font-size: 16px;
  font-weight: var(--font-regular);
  color: var(--color-black);
}
h4 {
  font-size: 14px;
  line-height: 25px;
  font-weight: var(--font-bold);
  background: var(--color-blue);
  width: fit-content;
  padding: 0 8px;
  border-radius: 6px;
  color: var(--color-white);
  margin-bottom: 8px;
}
.red_area h4 {
  background: var(--color-red);
}
@media screen and (max-width: 760px) {
  h1 {
  }
  h2 {
    font-size: 12px;
    margin-bottom: 20px;
  }
  h2 span {
    font-size: 30px;
  }
  h3 {
    font-size: 16px;
    padding: 3px 0 3px 11.5px;
    margin-bottom: 12px;
  }
  h3 span {
    font-size: 12px;
  }
  h4 {
    font-size: 10px;
    line-height: 18px;
    padding: 0 6px;
    border-radius: 3px;
    margin-bottom: 4px;
  }
}

p, a {
  font-size: 16px;
  font-weight: var(--font-regular);
  color: var(--color-black);
  line-height: 1.6;
}
a {
  display: block;
  text-decoration: none;
}
@media screen and (max-width: 760px) {
  p, a {
    font-size: 14px;
  }
}

ul li,
ol li {
  list-style: none;
}

@media screen and (min-width: 760.01px) {
  br.br__sp {
    display: none;
  }
}


/* ================ */
/* .p-tab */
/* ================ */
.p-tab {
  position: fixed;
  width: 360px;
  bottom: -5px;
  right: 30px;
  background: var(--color-red);
  border-radius: 10px 10px 0 0;
  z-index: 200;
  box-shadow: 4px 4px 0 0 var(--color-yellow);
  transition: 0.5s ease;
  display: none !important;
}
.p-tab:hover {
  bottom: 0px;
}
.p-tab a {
  width: 100%;
  height: 70px;
  padding: 0 16px;
}
.tab_wrap {
  position: relative;
  margin: 0 auto;
  width: fit-content;
}
.tab_wrap img {
  position: absolute;
  height: 35px;
  width: 35px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}
.p-tab a p {
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-yellow);
  text-align: center;
  font-weight: var(--font-black);
  line-height: 65px;
  width: fit-content;
  padding-left: calc(35px + 10px);
}
@media screen and (max-width: 760px) {
  .p-tab {
    width: 100%;
    right: 0;
    box-shadow: none;
  }
  .p-tab a {
    height: 55px;
    padding: 0 16px;
  }
  .tab_wrap img {
    height: 24px;
    width: 24px;
  }
  .p-tab a p {
    font-size: 16px;
    line-height: 50px;
    padding-left: calc(24px + 9px);
  }
}


/* ================ */
/* l-main */
/* ================ */
.l-main {
  position: relative;
}
/* .bg_area */
.bg_area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -200;
  background: var(--color-light-blue);
}
/* .bg_orange */
.bg_orange {
  position: absolute;
  background: var(--color-orange);
  width: 5000px;
  height: 5000px;
  border-radius: 50%;
  top: -2140px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 760px) {
  .bg_orange {
    width: 250dvw;
    height: 250dvw;
    top: -70vw;
  }
}
/* .bg_circle */
.bg_circle {
  position: absolute;
  top: 532px;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-image: url(../img/bg_circle_pc.svg);
  background-position: center top;
  background-repeat: repeat-y;
  background-size: 100%;
}
@media screen and (max-width: 760px) {
  .bg_circle {
    top: calc(125vw + 400px);
    background-image: url(../img/bg_circle_sp.svg);
    background-size: 250%;
  }
}
@media screen and (max-width: 460px) {
  .bg_circle {
    background-size: 369%;
  }
}

/* .l-main__section */
.l-main__section {
  padding: 0 60px 60px;
  max-width: calc(1000px + 120px);
  margin: 0 auto;
}
.l-main__section .wrap {
  padding: 60px;
  background: var(--color-white);
  border-radius: 60px;
  box-shadow: 6px 6px 0 0 var(--color-blue);
}
.l-main__section .wrap .inner_item {
  margin-bottom: 30px;
}
.l-main__section .wrap .inner_item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 760px) {
  .l-main__section {
    padding: 0 16px 20px;
  }
  .l-main__section:last-child {
    padding-bottom: 40px;
  }
  .l-main__section .wrap {
    padding: 15px 16px 20px;
    border-radius: 20px;
    box-shadow: 3px 3px 0 0 var(--color-blue);
  }
  .l-main__section .wrap .inner_item {
    margin-bottom: 20px;
  }
}

p.pin {
  font-size: 16px;
  color: var(--color-blue);
  font-weight: var(--font-semibold);
  padding-left: 1.15em;
  position: relative;
  line-height: 1.4;
}
.red_area p.pin {
  color: var(--color-red);
}
p.pin::before {
  content: "";
  width: 14px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/icon_pushpin_bl.svg);
  position: absolute;
  top: 5px;
  left: 1px;
}
.red_area p.pin::before {
  background-image: url(../img/icon_pushpin_rd.svg);
}
p.font__lb {
  font-size: 20px;
  font-weight: var(--font-black);
  line-height: 1.4;
}
p.font__lb span {
  font-size: 14px;
}
p.font__s {
  font-size: 14px;
}
span.suppl {
  font-size: 16px !important;
  font-weight: var(--font-regular);
  display: inline-block;
}
@media screen and (max-width: 760px) {
  p.pin {
    font-size: 12px;
    padding-left: 1.15em;
  }
  p.pin::before {
    width: 10px;
    height: 10px;
    top: 3px;
    left: 1px;
  }
  p.font__lb {
    font-size: 16px;
  }
  p.font__lb span {
    font-size: 12px;
  }
  p.font__s {
    font-size: 12px;
  }
  span.suppl {
    font-size: 12px !important;
  }
}


/* ================ */
/* .l-header */
/* ================ */
.l-header {
  width: 100%;
}
.l-header h1 {
  display: none;
  transition: 0.5s ease;
}
.l-header h1:hover {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
}
.l-header h1,
.l-header h1 a {
  width: fit-content;
}
.l-header h1 img {
  display: block;
  height: 40px;
  width: auto;
}
@media screen and (max-width: 760px) {
  .l-header {
  }
  .l-header h1 {
    display: block;
    margin-bottom: 14px;
  }
}

/* p-hamburger */
.p-hamburger__button {
  position: fixed;
  top: 30px;
  right: 30px;
  background: var(--color-yellow);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 150;
  box-shadow: 2px 2px 0 0 var(--color-blue);
  cursor: pointer;
}
.p-hamburger__button.is-open {
}
.p-hamburger__button .flex {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.p-hamburger__button .flex > div {
  width: 26px;
  height: 3px;
  background: var(--color-red);
}
.p-hamburger__button.is-open .flex > div {
  position: absolute;
}
.p-hamburger__button > div {
  width: 26px;
  height: 3px;
  background: var(--color-blue);
  position: absolute;
  right: 12px;
  transition: 0.5s ease;
}
.p-hamburger__button > div:nth-child(1) {
  top: 15px;
}
.p-hamburger__button > div:nth-child(2) {
  top: 24px;
}
.p-hamburger__button > div:nth-child(3) {
  top: 33px;
}
.p-hamburger__button.is-open > div:nth-child(1) {
  top: 24px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
}
.p-hamburger__button.is-open > div:nth-child(2) {
  right: -100px;
}
.p-hamburger__button.is-open > div:nth-child(3) {
  top: 24px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
}
@media screen and (max-width: 760px) {
  .p-hamburger__button.non-disp {
    display: none;
  }
  .p-hamburger__button {
    top: 10px;
    right: 10px;
  }
}

/* nav */
.l-header__nav_wrap {
  padding: 100px 30px 90px;
  background: var(--color-blue);
  height: 100dvh;
  width: 420px;
  position: fixed;
  top: -100%;
  right: 0;
  z-index: 100;
  opacity: 0;
  transition: 0.5s;
}
.l-header__nav_wrap.is-open {
  top: 0;
  opacity: 1;
}
.l-header__nav_wrap nav {
  background: var(--color-white);
  border-radius: 20px;
  height: fit-content;
  padding: 5px 10px 5px 20px;
}
.l-header__nav_wrap nav ul {
  padding: 0 10px 0 0;
  height: fit-content;
  max-height: calc(100dvh - 190px - 10px);
  overflow-x: hidden;
  overflow-y: auto;
}
.l-header__nav_wrap nav ul li {
  padding: 0 0 1px;
  background-size: 10px 1px;
  background-image: linear-gradient(to right, rgba(25, 67, 153, 0.2), rgba(25, 67, 153, 0.2) 5px, transparent 5px, transparent 10px);
  background-position: left bottom;
  background-repeat: repeat-x;
}
.l-header__nav_wrap nav ul li:last-child {
  background: none;
  padding-bottom: 0;
}
.l-header__nav_wrap nav a {
  padding: 15px 0;
  line-height: 1.2;
  font-size: 16px;
  font-weight: var(--font-medium);
  transition: 0.5s ease;
}
.l-header__nav_wrap nav a:hover {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
}
.l-header__nav_wrap nav a span {
  font-family: "Wendy One", sans-serif;
  font-weight: var(--font-regular);
  font-size: 28px;
  padding-right: 16px;
  color: var(--color-blue);
}
.l-header__nav_wrap nav li:nth-child(odd) a span {
  color: var(--color-red);
}
@media screen and (max-width: 760px) {
  .l-header__nav_wrap {
    width: 100%;
    padding: 16px;
    padding-bottom: 66px;
  }
  .l-header__nav_wrap nav {
  }
  .l-header__nav_wrap nav ul {
    max-height: calc(100dvh - 54px - 16px - 66px - 10px);
  }
  .l-header__nav_wrap nav a {
    padding: 12.5px 0;
    font-size: 12px;
  }
  .l-header__nav_wrap nav a span {
    font-size: 20px;
    padding-right: 12px;
  }
}

/* .p-mask */
.p-mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 90;
}
.p-mask.is-open {
  display: block;
}


/* ================ */
/* .l-footer */
/* ================ */
.l-footer {
  background: var(--color-blue);
}
.l-footer .wrap {
  padding: 60px 75px 55px;
  max-width: 1000px;
  margin: 0 auto;
}
.l-footer h1 {
  transition: 0.5s ease;
}
.l-footer h1:hover {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
}
.l-footer h1,
.l-footer h1 a {
  width: fit-content;
}
.l-footer h1 img {
  width: 300px;
  display: block;
}
@media screen and (max-width: 760px) {
  .l-footer .wrap {
    padding: 30px 16px 70px;
    max-width: none;
  }
  .l-footer h1 {
    margin: auto;
  }
  .l-footer h1 img {
    width: 200px;
    margin: auto;
  }
}

/* .sponsor_list */
.sponsor_list {
  margin-top: 26px;
  margin-bottom: 20px;
}
.sponsor_list dl {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 10px;
  align-items: center;
  gap: 0 10px;
}
.sponsor_list dl:last-child {
  margin-bottom: 0;
}
.sponsor_list dt {
  width: fit-content;
}
.sponsor_list dt span {
  color: var(--color-blue);
  background: var(--color-white);
  font-size: 12px;
  line-height: 22px;
  padding: 0 8px;
  border-radius: 3px;
  display: block;
  width: fit-content;
  font-weight: var(--font-bold);
}
.sponsor_list dd {
  color: var(--color-white);
  font-size: 14px;
  line-height: 22px;
  width: calc(100% - 55px);
  font-weight: var(--font-medium);
}
.sponsor_list dd span {
  display: inline-block;
}
.sponsor_list dl:first-child dd {
  font-size: 16px;
}
@media screen and (max-width: 760px) {
  .sponsor_list {
    margin-top: 27px;
    margin-bottom: 20px;
  }
  .sponsor_list dl {
    margin-bottom: 10px;
    gap: 0 10px;
  }
  .sponsor_list dt span {
    font-size: 10px;
    line-height: 18px;
    padding: 0 6px;
    border-radius: 2px;
  }
  .sponsor_list dd {
    font-size: 12px;
    line-height: 18px;
    width: calc(100% - 44px);
  }
  .sponsor_list dl:first-child dd {
    font-size: 14px;
  }
}

/* .contact_area */
.flex.contact_area {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-bottom: 12px;
}
.l-footer .contact {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  padding: 15px;
}
.l-footer .contact p {
  color: var(--color-white);
  font-size: 14px;
  line-height: 1.2;
}
.l-footer .contact p:first-child {
  font-weight: var(--font-semibold);
  margin-bottom: 8px;
}
.flex.footer_bnr_area {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.footer_banner {
  width: 200px;
  transition: 0.5s ease;
}
.footer_banner:hover {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
}
.footer_banner.kidzania {
  background: var(--color-white);
}
.footer_banner a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_banner img {
  display: block;
}
.footer_banner.kidzania img {
  width: 117px;
}
@media screen and (max-width: 760px) {
  .flex.contact_area {
    flex-direction: column;
    gap: 10px 0;
    margin-bottom: 20px;
  }
  .l-footer .contact {
    padding: 10px;
  }
  .l-footer .contact p {
    font-size: 12px;
  }
  .l-footer .contact p:first-child {
    margin-bottom: 8px;
  }
  .flex.footer_bnr_area {
    flex-direction: column;
    gap: 20px 0;
  }
  .footer_banner {
    width: 100%;
  }
  .footer_banner.kidzania img {
    width: auto;
    height: max(calc(50px + 25px), 13vw);
    padding: 15px 0 10px;
  }
}


/* ================ */
/*
/* index  トップページ
/*
/* ================ */

/* .bg_orange */
.index .bg_orange {
  position: absolute;
  background: var(--color-orange);
  border-radius: 50%;
  top: -1490px;
}
@media screen and (max-width: 760px) {
  .index .bg_orange {
    top: 0;
  }
}
/* .bg_circle */
@media screen and (min-width: 760.1px) {
  .index .bg_circle {
    top: 1156px;
  }
}


/* ================ */
/* .l-top__section */
/* ================ */
.l-top__section {
  overflow: hidden;
}
.l-top__section img {
  display: block;
  width: 100%;
}
.index .logo_top_title {
  padding: 40px 80px;
  max-width: calc(838px + 160px);
  margin: 0 auto max(-12vw, -120px);
}
.index .keyvisual {
  padding: 0 40px;
  max-width: calc(998px + 80px);
  margin: 0 auto 40px;
}
@media screen and (max-width: 760px) {
  .index .logo_top_title {
    padding: 10px 9px;
    margin-bottom: -12vw;
  }
  .index .keyvisual {
    padding: 0;
    margin-bottom: 10px;
    margin-left: -4%;
    margin-right: 0;
    width: 111%;
  }
}


/* ================ */
/* .event_date */
/* ================ */
.event_date {
  position: relative;
}
.event_date .kidzania {
  position: absolute;
  top: 0;
  right: 60px;
  background: var(--color-red);
  border-radius: 0 60px 0 60px;
  padding: 9px 22px 8px;
  padding: 26px 63px;
}
.event_date .kidzania img {
  display: block;
  margin: auto;
  width: min(293px, 29vw);
}
.event_date .wrap {
}
.event_date .wrap .inner_item {
  width: fit-content;
  margin: 0 auto;
}
/* .year, .day */
.event_date .flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.event_date p,
.event_date span {
  line-height: 1;
}
.event_date .year,
.event_date .day {
  color: var(--color-red);
  font-size: min(41px, 3.7vw);
  font-weight: var(--font-black);
}
.event_date .year {
  margin-bottom: 8px;
}
.event_date .days_area {
  gap: 5px 5px;
  margin-bottom: 12px;
}
.event_date .days_area .flex {
  gap: 3px;
}
.event_date .days_area img {
  width: min(53px, 4.8vw);
}
.event_date .year .number {
  font-size: min(53px, 4.8vw);
}
.event_date .day .number {
  font-size: min(81px, 7.4vw);
}
/* .time_area */
.event_date .time_area {
  gap: 10px 20px;
}
.event_date .time {
  color: var(--color-blue);
  font-weight: var(--font-black);
  font-size: min(53px, 4.8vw);
}
.event_date .suppl {
  font-weight: var(--font-bold);
  font-size: min(29px, 2.7vw);
  height: fit-content;
}
@media screen and (max-width: 760px) {
  .event_date .wrap {
    padding: 20px 16px;
  }
  .event_date .kidzania {
    right: 16px;
    border-radius: 0 20px 0 20px;
    padding: 9px 22px 8px;
  }
  .event_date .kidzania img {
    width: 100px;
  }
  /* .year, .day */
  .event_date .year,
  .event_date .day {
    font-size: max(14px, 3.7vw);;
  }
  .event_date .year {
    margin-bottom: 8px;
  }
  .event_date .days_area {
    gap: 5px 3px;
    margin-bottom: 9px;
  }
  .event_date .days_area .flex {
    gap: 2px;
  }
  .event_date .days_area img {
    width: max(18px, 4.8vw);
  }
  .event_date .year .number {
    font-size: max(18px, 4.8vw);
  }
  .event_date .day .number {
    font-size: max(28px, 7.4vw);
  }
  /* .time_area */
  .event_date .time_area {
    gap: 8px 7px;
  }
  .event_date .time {
    font-size: max(18px, 4.8vw);
  }
  .event_date .suppl {
    font-size: max(10px, 2.7vw);
  }
}
@media screen and (max-width: 360px) {
  .event_date .wrap {
    padding: 20px 14px;
  }
}


/* ================ */
/* news */
/* ================ */
.news_list {
  margin-bottom: 6px;
}
.news_item {
  margin-bottom: 20px;
  transition: 0.5s ease;
}
.news_item:last-child {
  margin-bottom: 0;
}
.news_item:has(a):hover {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
}
.news_item .date {
  line-height: normal;
  color: var(--color-blue);
  font-weight: var(--font-medium);
  font-size: 16px;
  margin-bottom: 6px;
}
.news_item .title {
  font-size: 18px;
  line-height: 1.2;
  position: relative;
  width: fit-content;
}
.news_item:has(a) .title {
  padding-right: 30px;
}
.news_item:has(a) .title::before {
  content: "";
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../img/icon_link.svg);
}
.link_all_news {
  position: relative;
  margin-left: auto;
  width: fit-content;
  transition: 0.5s ease;
}
.link_all_news:hover {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
}
.link_all_news a {
  width: fit-content;
}
.link_all_news img {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
}
.link_all_news p {
  font-size: 14px;
  line-height: 20px;
  width: fit-content;
  padding-left: calc(20px + 6px);
}
@media screen and (max-width: 760px) {
  .news_list {
    margin-bottom: 9px;
  }
  .news_item {
    margin-bottom: 10px;
  }
  .news_item .date {
    font-size: 12px;
    margin-bottom: 3px;
  }
  .news_item .title {
    font-size: 14px;
  }
  .news_item:has(a) .title {
    padding-right: 20px;
  }
  .news_item:has(a) .title::before {
    width: 14px;
    height: 14px;
  }
  .link_all_news img {
    width: 16px;
    height: 16px;
  }
  .link_all_news p {
    font-size: 12px;
    line-height: 16px;
    padding-left: calc(16px + 6px);
  }
}


/* ================ */
/* event */
/* ================ */
.event .days_area p,
.event .days_area span {
  line-height: 1;
}
.event .flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.event .days_area {
  gap: 5px 4px;
  margin-bottom: 9px;
}
.event .days_area .flex {
  gap: 2px;
}
.event .days_area .day {
  font-size: 16px;
  font-weight: var(--font-black);
}
.event .days_area .number {
  font-size: 30px;
}
.event .days_area img {
  width: 24px;
}
.event .time_area {
  gap: 9px 6px;
}
.event .time {
  font-size: 24px;
  font-weight: var(--font-bold);
  line-height: 1;
}
.event .time span {
  font-size: 16px;
}
.event .suppl.red {
  font-size: 16px;
  color: var(--color-red);
  line-height: 1;
}
.event .venue {
  gap: 20px 50px;
}
@media screen and (min-width: 760.1px) {
  .event h3 {
    margin-bottom: 10px
  }
}
@media screen and (max-width: 760px) {
  .event .days_area {
    gap: 5px 2px;
    margin-bottom: 9px;
  }
  .event .days_area .flex {
    gap: 1px;
  }
  .event .days_area .day {
    font-size: 12px;
  }
  .event .days_area .number {
    font-size: 22px;
  }
  .event .days_area img {
    width: 16px;
  }
  .event .time_area {
    flex-direction: column;
    align-items: flex-start;
  }
  .event .time {
    font-size: 18px;
  }
  .event .time span {
    font-size: 12px;
  }
  .event .suppl.red {
    font-size: 12px;
  }
  .event .venue {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ================ */
/* program */
/* ================ */
.messe {
  margin-bottom: 60px;
}
ul.program_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 0;
  margin-top: 16px;
}
ul.program_list li {
  border-radius: 6px;
  width: calc(50% - 15px);
  background: var(--bg-blue);
  overflow: hidden;
  transition: 0.5s ease;
  position: relative;
}
.red_area ul.program_list li {
  background: var(--bg-red);
}
ul.program_list li:hover {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
}
ul.program_list li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/icon_arrow_bl.svg);
  width: 20px;
  height: 20px;
}
.red_area ul.program_list li::before {
  background-image: url(../img/icon_arrow_rd.svg);
}
ul.program_list li a {
  height: 100%;
}
ul.program_list .flex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  gap: 0;
  height: 100%;
}
ul.program_list figure {
  width: 160px;
  overflow: hidden;
}
ul.program_list figure img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
ul.program_list .flex > div {
  width: calc(100% - 160px - 20px);
  padding: 20px 54px 20px 0;
  height: fit-content;
  margin: auto 0;
}
ul.program_list p {
  line-height: 1.2;
}
ul.program_list .job {
  font-weight: var(--font-bold);
  color: var(--color-blue);
  margin-bottom: 8px;
}
.red_area .program_list .job {
  color: var(--color-red);
}
ul.program_list .target {
  display: flex;
  flex-wrap: wrap;
}
ul.program_list .target p {
  font-size: 12px;
}
ul.program_list .target .day {
  background: var(--bg-blue-dark);
  display: flex;
  align-items: center;
  padding: 2px 3px;
}
.red_area ul.program_list .target .day {
  background: var(--bg-red-dark);
}
ul.program_list .target .grade {
  max-width: calc(100% - 3em);
  background: rgba(255, 255, 255, 0.6);
  padding: 2px 3px 2px 6px;
}
ul.program_list .target span {
  display: inline-block;
}
ul.program_list .spot {
  font-size: 14px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1100px) {
  ul.program_list {
    flex-direction: column;
  }
  ul.program_list li {
    width: 100%;
  }
}
@media screen and (max-width: 760px) {
  .messe {
    margin-bottom: 30px;
  }
  ul.program_list {
    gap: 10px 0;
    margin-top: 10px;
  }
  ul.program_list li {
    border-radius: 3px;
  }
  ul.program_list li::before {
    right: 10px;
    width: 16px;
    height: 16px;
  }
  ul.program_list figure {
    width: min(28%, 140px);
  }
  ul.program_list .flex > div {
    width: max(calc(71.9% - 10px), calc(100% - 140px - 10px));
    padding: 10px 36px 10px 0;
  }
  ul.program_list .job {
    margin-bottom: 3px;
  }
  ul.program_list .target {
  }
  ul.program_list .target p {
    font-size: 10px;
  }
  ul.program_list .spot {
    font-size: 12px;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 360px) {
  ul.program_list figure {
    width: 90px;
  }
  ul.program_list .flex > div {
    width: calc(100% - 90px - 8px);
    padding: 10px 32px 10px 0;
  }
}


/* ================ */
/* apply */
/* ================ */
.apply_list > div {
  margin-bottom: 60px;
  position: relative;
}
.apply_list > div:last-child {
  margin-bottom: 0;
}
.apply_list > div::before {
  content: "";
  width: 34px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  background-image: url(../img/icon_triangle_rd.svg);
}
.apply_list > div:last-child::before {
  content: none;
}
.apply_list .mt_1em {
  margin-top: 1em;
}
@media screen and (max-width: 760px) {
  .apply_list > div {
    margin-bottom: 30px;
  }
  .apply_list > div::before {
    width: 17px;
    height: 10px;
    bottom: -20px;
  }
}

/* .flag */
.flag {
  position: relative;
  height: 38.5px;
  margin-bottom: 20px;
}
.flag img {
  display: block;
  position: absolute;
  height: 38.5px;
  width: auto;
  top: 0;
  left: 0;
}
.flag p {
  display: block;
  position: absolute;
  font-size: 18px;
  font-weight: var(--font-black);
  line-height: 1;
  top: 5px;
  left: 42px;
}
.flag p.flag_no {
  font-family: "Wendy One", sans-serif;
  font-weight: var(--font-regular);
  color: var(--color-red);
  z-index: 5;
  top: 7px;
  left: 6px;
}
/* .yellow_box */
.yellow_box {
  background: rgba(255, 231, 101, 0.3);
  border-radius: 6px;
  padding: 30px;
}
.yellow_box p {
  line-height: 1.4;
}
/* button.apply */
button.apply {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 20px auto 0;
  position: relative;
  transition: 0.5s ease;
  background: var(--color-red);
  border-radius: 10px;
}
button.apply:hover {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
}
button.apply a {
  width: 100%;
  padding: 0 16px;
}
.apply_btn_wrap {
  position: relative;
  margin: 0 auto;
  width: fit-content;
}
.apply_btn_wrap img {
  position: absolute;
  height: 24px;
  width: 24px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}
button.apply a p {
  text-align: center;
  width: fit-content;
  font-size: 16px;
  line-height: 50px;
  font-weight: var(--font-black);
  color: var(--color-yellow);
  padding-left: calc(24px + 9px);
}
@media screen and (max-width: 760px) {
  /* .flag */
  .flag {
    height: 33px;
    margin-bottom: 0;
  }
  .flag img {
    height: 33px;
  }
  .flag p {
    font-size: 16px;
    top: 4px;
    left: 34px;
  }
  .flag p.flag_no {
    top: 6px;
    left: 5px;
  }
  /* .yellow_box */
  .yellow_box {
    border-radius: 3px;
    padding: 10px;
  }

}


/* ================ */
/* flow */
/* ================ */
.flow_list {
}
.flow_list p {
  padding: 16px 20px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: var(--font-semibold);
  text-align: center;
  background: var(--bg-blue);
  border-radius: 3px;
  margin-bottom: 60px;
  position: relative;
}
.flow_list p:last-child {
  margin-bottom: 0;
}
.flow_list p::before {
  content: "";
  width: 34px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  background-image: url(../img/icon_triangle_bl.svg);
}
.flow_list p:last-child::before {
  content: none;
}
/* .notice_list */
.notice_list ul li {
  list-style: disc;
  font-size: 16px;
  line-height: 1.2;
  margin-left: 1.8em;
  margin-bottom: 0.2em;
}
.notice_list ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 760px) {
  .flow_list p {
    padding: 6px 10px;
    font-size: 14px;
    margin-bottom: 30px;
  }
  .flow_list p::before {
    width: 17px;
    height: 10px;
    bottom: -20px;
  }
  .notice_list ul li {
    font-size: 12px;
  }
}


/* ================ */
/* yumezzo */
/* ================ */
.yumezzo_img img {
  display: block;
  max-width: 450px;
  margin: 0 auto;
}
ul.yumezzo_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 0;
  margin-top: 10px;
}
ul.yumezzo_list li {
  border-radius: 6px;
  border: 1px solid var(--color-red);
  padding: 20px;
  width: calc(50% - 15px);
}
ul.yumezzo_list li p {
  font-size: 14px;
  line-height: 1.2;
}
ul.yumezzo_list li p.store_name {
  font-size: 16px;
  font-weight: var(--font-bold);
  color: var(--color-red);
  margin-bottom: 6px;
}
@media screen and (max-width: 760px) {
  ul.yumezzo_list {
    flex-direction: column;
    gap: 10px 0;
  }
  ul.yumezzo_list li {
    border-radius: 3px;
    padding: 10px;
    width: 100%;
  }
  ul.yumezzo_list li p {
    font-size: 12px;
  }
  ul.yumezzo_list li p.store_name {
    font-size: 14px;
  }
}


/* ================ */
/* faq Q&A */
/* ================ */
.faq_list {
}
.faq_item {
  padding: 20px 0 21px;
  background-size: 10px 1px;
  background-image: linear-gradient(to right, rgba(25, 67, 153, 0.2), rgba(25, 67, 153, 0.2) 5px, transparent 5px, transparent 10px);
  background-position: left bottom;
  background-repeat: repeat-x;
  cursor: pointer;
}
.faq_item:last-child {
  background: none;
  padding-bottom: 10px;
}
.faq_check {
  display: none;
}
.faq_item p {
  line-height: 20px;
  padding: 0 25px;
  position: relative;
  transition: 0.5s ease;
}
.faq_item:hover p {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
}
.faq_item .question {
}
.faq_item .question::before,
.faq_item .question::after {
  content: "";
  width: 13px;
  height: 1px;
  margin: 6px 0;
  background: var(--color-blue);
  position: absolute;
  top: 2.5px;
  right: 2px;
}
.faq_item .question::after {
  transition: 0.5s ease;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
}
.faq_item .faq_check:checked + .question::after {
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
}
.faq_item .answer {
  margin-top: 0;
  max-height: 0;
  height: inherit;
  overflow: hidden;
  transition: 0.5s ease;
}
.faq_item .faq_check:checked + p + .answer {
  margin-top: 6px;
  max-height: 200px;
}
.faq_item p span {
  font-family: "Wendy One", sans-serif;
  font-weight: var(--font-regular);
  letter-spacing: 0.02em;
  font-size: 20px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.faq_item .question span {
  color: var(--color-blue);
}
.faq_item .answer span {
  color: var(--color-red);
  top: 1px;
}
@media screen and (max-width: 760px) {
  .faq_item {
    padding: 10px 0 11px;
  }
  .faq_item p {
    line-height: 18px;
  }
  .faq_item p span {
    font-size: 18px;
    line-height: 18px;
  }
}


/* ================ */
/*
/* プログラム詳細ページ
/*
/* ================ */

/* ================ */
/* .l-top__section */
/* ================ */
.l-top__section.detail {
}
.l-top__section .logo_top {
  padding: 40px 0 8px;
  width: 450px;
  margin: 0 auto;
  transition: 0.5s ease;
}
.l-top__section .logo_top:hover {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
}
.keyvisual.characters {
  width: calc(514px + 64px);
  padding-left: 64px;
  margin: 0 auto 36px;
}
.keyvisual.characters img {
}
@media screen and (max-width: 760px) {
  .l-top__section .logo_top {
    width: 68.8vw;
    padding: 25px 0 0;
    margin-bottom: 2.3vw;
  }
  .keyvisual.characters {
    padding-left: 12vw;
    margin-bottom: 10px;
    width: 89vw;
  }
}
@media screen and (max-width: 400px) {
  .l-top__section .logo_top {
    margin-right: 0;
    margin-left: 8.1%;
  }
}


/* ================ */
/* .l-main__section */
/* ================ */
.l-main__section.detail {
}
.l-main__section.detail .wrap {
}
.l-main__section.detail h3 {
  margin-bottom: 30px;
  padding-left: 20px;
}
/* .job_description */
.flex.job_description {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px 30px;
  margin-top: 12px;
}
.job_desc_img {
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
  width: min(300px, 40%);
}
.job_desc_img img {
  display: block;
  width: 100%;
}
.flex.job_description p {
  width: max(calc(100% - 330px), calc(60% - 30px));
}
/* target_day */
.target_day {
  font-size: 14px;
  font-weight: var(--font-bold);
  color: var(--color-blue);
  line-height: 1.2;
}
.target_day:not(:first-of-type) {
  margin-top: 10px;
}
.red_area .target_day {
  color: var(--color-red);
}
.target_suppl {
  font-size: 14px !important;
  font-weight: var(--font-regular);
  display: inline-block;
}
/* booth */
.booth_header {
  font-size: 14px;
  font-weight: var(--font-bold);
  color: var(--color-blue);
  line-height: 1.2;
  margin-top: 10px;
}
.booth_no {
  font-size: 18px;
  font-weight: var(--font-bold);
  line-height: 1.2;
}
.booth_spot {
  font-size: 18px;
  font-weight: var(--font-bold);
  line-height: 1.2;
  margin-top: 10px;
}
/* .time_table */
.time_table {
  border-spacing: 0;
  border-radius: 4px;
  width: 100%;
  max-width: 500px;
  border-left: 1px solid #CCCCCC;
  border-top: 1px solid #CCCCCC;
  margin-top: 9px;
}
.time_table th,
.time_table td {
  border-right: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  padding: 14px 16px;
  font-size: 16px;
  line-height: 1.3;
  text-align: left;
  font-weight: var(--font-regular);
}
.time_table th {
  background: var(--bg-blue);
}
.red_area .time_table th {
  background: var(--bg-red);
}
.time_table tr:first-child > *:first-child{
  border-radius: 4px 0 0 0;
}
.time_table tr:first-child > *:last-child{
  border-radius: 0 4px 0 0;
}
.time_table tr:last-child > *:first-child{
  border-radius: 0 0 0 4px;
}
.time_table tr:last-child > *:last-child{
  border-radius: 0 0 4px 0;
}
.time_table th:first-child {
  width: 60%;
}
.time_table th:last-child {
  width: 40%;
}
.time_table span {
  display: inline-block;
}
/* button.back */
button.back {
  display: block;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  transition: 0.5s ease;
}
button.back:hover {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
}
button.back::before {
  content: "";
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 20px;
  left: 64px;
  background-image: url(../img/icon_arrow_bl.svg);
}
.red_area button.back::before {
  background-image: url(../img/icon_arrow_rd.svg);
}
button.back a {
  display: block;
  padding: 20px 64px;
  padding-left: 92px;
  background: var(--bg-blue);
  border-radius: 60px;
  line-height: 20px;
  font-size: 16px;
}
.red_area .back a {
  background: var(--bg-red);
}
@media screen and (max-width: 760px) {
  .l-main__section.detail {
    padding-bottom: 30px;
  }
  .l-main__section.detail .wrap {
    padding-bottom: 30px;
  }
  .l-main__section.detail h3 {
    margin-bottom: 20px;
    padding-left: 12px;
  }
  /* .job_description */
  .flex.job_description {
    flex-direction: column;
    margin-top: 10px;
  }
  .job_desc_img {
    max-width: 450px;
    width: 100%;
  }
  .flex.job_description p {
    width: 100%;
  }
  /* target_day */
  .target_day {
    font-size: 10px;
  }
  .target_suppl {
    font-size: 12px !important;
  }
  /* booth */
  .booth_header {
    font-size: 10px;
  }
  .booth_no {
    font-size: 14px;
  }
  .booth_spot {
    font-size: 14px;
  }
  /* .time_table */
  .time_table {
    margin-top: 12px;
  }
  .time_table th,
  .time_table td {
    padding: 10px 12px;
    font-size: 12px;
  }
  /* button.back */
  button.back::before {
    width: 16px;
    height: 16px;
    top: 16px;
    left: 16px;
  }
  button.back a {
    padding: 16px;
    padding-left: 42px;
    border-radius: 40px;
    line-height: 16px;
    font-size: 14px;
  }
}
@media screen and (max-width: 400px) {
  .time_table th:first-child,
  .time_table th:last-child {
    width: auto !important;
  }
}
