/* --------------------------------------------------------------
   Base Style
   -------------------------------------------------------------- */ :root {
  /* =====================
     カラー設定
     ===================== */
  --color-base: #ffffff;
  --color-base-sub: #F6F2E9;
  --color-main: #ED6D01;
  --color-accent-green: #178742;
  --color-accent-pink: #E4007F;
  --color-accent-blue: #0D8FD2;
  --color-accent-yellow: #FFD900;
  --color-text: #1A1A1A;
  /* =====================
     フォント設定
     ===================== */
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Zilla Slab", serif;
  /* =====================
   PCフォントサイズ（768px以上など）
   ===================== */
  --fz-3xl: 6rem; /* 60px */
  --fz-2xl: 4.2rem; /* 42px */
  --fz-xl: 3.2rem; /* 32px */
  --fz-l: 2.4rem; /* 24px */
  --fz-m: 2rem; /* 20px */
  --fz-s: 1.6rem; /* 16px */
  --fz-xs: 1.4rem; /* 14px */
  /* =====================
     行間・字間
     ===================== */
  --lh-tight: 1.3;
  --lh-normal: 1.5;
  --lh-relaxed: 1.8;
  --ls-none: 0%;
  --ls-wide: 1%;
  --ls-wider: 2%;
}
/* スマホ用（768px以下） */
@media screen and (max-width: 768px) {
  :root {
    --fz-3xl: 4.8rem;
    --fz-2xl: 3.6rem;
    --fz-xl: 2.8rem;
    --fz-l: 2.0rem;
    --fz-m: 1.6rem;
    --fz-s: 1.2rem;
  }
}
/* --------------------------------------------------------------
   Reset / 基本設定
   -------------------------------------------------------------- */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  font-family: var(--font-jp);
  font-size: var(--fz-m);
  line-height: var(--lh-relaxed);
  color: var(--color-text);
  background-color: var(--color-base);
  margin: 0;
  padding: 0;
  background: #f6f2e9;
}
img {
  width: auto;
  max-width: 100%;
  vertical-align: middle;
}
ul, li, ol, dl, dt, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}
figure {
  padding: 0;
  margin: 0;
}
.sp_block {
  display: none;
}
.pc_block {
  display: block;
}
.center {
  text-align: center;
}
.inner {
  width: 96%;
  max-width: 850px;
  margin: 0 auto;
}
a {
  color: var(--color-text);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  text-decoration-color: #1A1A1A;
  text-decoration-thickness: 1px;
}
a img:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70 )";
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:hover {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: var(--color-accent-pink);
  text-decoration: none;
}
/* 英字部分 */
.en {
  font-family: var(--font-en);
}
/*ヘッダー*/
.gov-bar {
  background-color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 10px 0 0;
}
.gov-bar .gov-logo {
  max-width: 110px;
  margin: 0;
}
.gov-bar .gov-link {
  max-width: 130px;
  margin: 0;
}
.openbtn {
  display: none;
  position: fixed;
  z-index: 998;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 11px;
  height: 3px;
  background-color: var(--color-text);
  width: 55%;
}
.openbtn span:nth-of-type(1) {
  top: 12px;
}
.openbtn span:nth-of-type(2) {
  top: 20px;
}
.openbtn span:nth-of-type(3) {
  top: 28px;
}
.openbtn.active span:nth-of-type(1) {
  top: 12px;
  left: 11px;
  transform: translateY(6px) rotate(-45deg);
  width: 55%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 24px;
  left: 11px;
  transform: translateY(-6px) rotate(45deg);
  width: 55%;
}
.openbtn::after {
  content: "MENU";
  color: var(--color-text);
  font-size: 10px;
  margin: 0 auto;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 2px;
  letter-spacing: 0px;
  text-align: center;
  font-weight: bold;
}
.openbtn.active::after {
  content: "閉じる";
}
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  display: block;
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#header {
  width: 100%;
  /* [disabled]background-color: hsla(0, 0%, 100%, 0.90); */
  text-align: center;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999;
}
#header .nav_wrap {
  background-color: hsla(0, 0%, 100%, 0.90);
}
#header .inner {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0;
  justify-content: space-between;
}
#header.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
#header.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#header .logo {
  width: 30%;
  z-index: 1;
  margin: 0 5px 5px;
  max-width: 150px;
}
#header .logo img {
  vertical-align: top;
}
#header.dnone {
  opacity: 0;
}
#header.dnone.panelactive {
  opacity: 1;
}
#navi ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
#header.dnone #navi {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: all 0.4s;
}
#header.dnone.panelactive #navi {
  opacity: 1;
  z-index: 3;
  background-color: hsla(0, 0%, 100%, 0.90);
}
#header.dnone.panelactive #navi ul {
  display: block;
  width: 100%;
}
#header.dnone.panelactive #navi li {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.20);
  width: 100%;
  display: block;
}
#header.dnone.panelactive #navi li:last-child {
  border-bottom: 0;
}
#header.dnone.panelactive #navi li a {
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  font-size: 2rem;
}
/* トップページだけヘッダーinnerを隠す */
body#home #header .nav_wrap {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: all .4s ease;
}
/* スクロール後に表示させる */
body#home #header .nav_wrap.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
/*2階層目以降は横並びにしない*/
#navi ul ul {
  display: block;
}
/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
#navi ul li {
  padding: 0;
  position: relative;
}
#navi ul li.gov-link {
  display: none;
}
#navi ul li:last-child {
  border-right: 0;
}
/*ナビゲーションのリンク設定*/
#navi ul li a {
  display: block;
  text-decoration: none;
  color: var(--color-text);
  padding: 10px 20px;
  transition: all .3s;
  font-weight: bold;
}
#navi ul li.has-child a {
  padding: 10px 40px 10px 20px;
}
#navi ul li.has-child li a {
  padding: 10px;
}
#navi ul li a:hover {
  color: var(--color-main);
}
#navi ul li a::after {
  background-color: var(--color-main);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
  width: 100%;
}
/* リンクにホバーした際の下線の表示 */
#navi ul li a:hover::after {
  transform: scale(1, 1);
}
/*==矢印の設定*/
/*2階層目を持つliの矢印の設定*/
#navi ul li.has-child::after, .foot_nav li.has-child::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #6B6B6B;
  border-right: 2px solid #6B6B6B;
  transform: rotate(135deg);
}
/*3階層目を持つliの矢印の設定*/
#navi ul ul li.has-child::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 17px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
/*== 2・3階層目の共通設定 */
#navi li.has-child ul, .foot_nav li.has-child ul {
  position: absolute;
  width: 100%;
  left: 0;
  top: 60px;
  z-index: 4;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
  background-color: hsla(0, 0%, 100%, 0.90);
  -webkit-box-shadow: 0px 3px 3px hsla(0, 0%, 30%, 0.50);
  box-shadow: 0px 3px 3px hsla(0, 0%, 30%, 0.50);
}
/*hoverしたら表示*/
#navi li.has-child:hover > ul, #navi li.has-child ul li:hover > ul, #navi li.has-child:active > ul, #navi li.has-child ul li:active > ul, .foot_nav li.has-child:hover > ul, .foot_nav li.has-child ul li:hover > ul, .foot_nav li.has-child:active > ul {
  visibility: visible;
  opacity: 1;
}
#navi li.has-child ul li {
  border-right: 0;
  border-bottom: 1px dotted #fff;
}
#navi li.has-child ul li:last-child {
  border-bottom-width: 0px;
}
/*ナビゲーションaタグの形状*/
#navi li.has-child ul li a {
  text-align: center;
  font-size: 1.4rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#navi li.has-child ul li:last-child > a {
  border-bottom: none;
}
@media screen and (max-width:768px) {
  .openbtn {
    display: block;
    right: 5px;
    top: 38px;
  }
  .gov-bar {
    padding: 0;
  }
  .gov-bar .gov-logo {
    max-width: 100px;
    margin: 0;
  }
  .gov-bar .gov-link {
    display: none;
  }
  #header .logo {
    width: 76%;
    max-width: 108px;
    z-index: 999;
    margin: 0 5px;
  }
  #header #navi {
    display: none;
  }
  body#home #header .nav_wrap {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  #header .inner {
    padding: 0 5px 5px;
  }
  #header.panelactive #navi {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    transition: all 0.4s;
    opacity: 1;
    z-index: 3;
    background-color: #FFFFFF;
    padding-top: 100px;
  }
  #header.panelactive #navi li a {
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    font-size: 1.8rem;
    border-bottom: 1px solid #e6e6e6;
  }
  #navi ul li a::after {
    display: none;
  }
  #header.panelactive #navi ul {
    display: block;
    width: 100%;
    -webkit-box-shadow: 0px 0px;
    padding: 0 8px;
    box-shadow: 0px 0px;
  }
  #header.panelactive #navi li {
    width: 100%;
    display: block;
    border-right-width: 0px;
    text-align: left;
  }
  #header.panelactive #navi ul li:last-child {
    border-bottom-width: 0;
  }
  #header.panelactive.dnone {
    display: flex;
  }
  #header.dnone {
    opacity: 1;
  }
  #header.panelactive, #navi ul {
    display: block;
    padding: 0;
  }
  #navi li.has-child ul, #navi li.has-child ul ul, footer .foot_nav li.has-child ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    opacity: 1;
    display: none;
    transition: none;
    max-width: none;
  }
  #navi li.has-child ul li a {
    text-align: left;
    padding: 0.8rem 1.6rem;
  }
  #navi ul li a, #navi ul li.has-child a {
    padding: 1.6rem;
  }
  /*矢印の位置と向き*/
  #navi ul li.has-child::before, .foot_nav li.has-child::before {
    left: 20px;
    top: 10px;
  }
  #navi ul ul li.has-child::before {
    transform: rotate(135deg);
    left: 20px;
  }
  #navi ul li.has-child.active::before, .foot_nav li.has-child.active::before {
    transform: rotate(-45deg);
  }
  #navi ul li.has-child::after, .foot_nav li.has-child::after {
    right: 10px;
    top: 24px;
    width: 11px;
    height: 11px;
  }
  #navi ul li.gov-link {
    display: block;
  }
  #header.panelactive #navi li.gov-link a {
    border-bottom: 0;
  }
  #navi ul li.gov-link img {
    max-width: 15rem;
    margin: 5rem auto 0;
    display: block;
  }
  .inner {
    padding: 0 16px;
    width: auto;
  }
  .sp_block {
    display: block;
  }
  .pc_block {
    display: none;
  }
}
/* --------------------------------------------------------------
   コンポーネント
   -------------------------------------------------------------- */
/* 見出し */
.sec_title {
  font-size: var(--fz-m);
  color: var(--color-text);
  margin: 20rem 0 3.2rem;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 16px 0;
  background-color: #fff;
  position: relative;
  text-align: center;
}
.sec_title::before {
  content: "";
  display: block;
  width: 100%;
  height: 17rem;
  background: url("../images/sec_title_pc.png") center top no-repeat;
  background-size: contain;
  position: absolute;
  top: -90px;
  left: 0;
}
.sec_title .en {
  display: block;
  font-size: 6.4rem;
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--color-accent-blue);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.sub_title {
  text-align: center;
  margin-bottom: 3.2rem;
  font-size: var(--fz-xl);
}
.sub_title span {
  background: linear-gradient(transparent 60%, rgba(255, 217, 0, 0.8) 60%);
}
.block_title {
  font-size: var(--fz-xl);
  padding: 0 0 0.8rem;
  margin: 5rem 0 1.6rem;
  color: var(--color-accent-blue);
  border-bottom: 1px dashed var(--color-main);
}
.breadcrumb {
  font-size: 1.4rem;
  margin: 2rem 0;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  padding: 0;
  margin: 0;
}
.breadcrumb li {
  position: relative;
}
.breadcrumb li:not(:last-child)::after {
  content: "＞";
  margin-left: 0.5em;
  color: var(--color-text);
}
.breadcrumb a {
  text-decoration: none;
  color: var(--color-text);
  transition: color 0.3s;
}
.breadcrumb a:hover {
  color: var(--color-accent-pink);
}
@media screen and (max-width:768px) {
  .sec_title {
    margin: 10rem 0 2.4rem;
    padding: 16px 0;
    background-color: #fff;
    position: relative;
    text-align: center;
  }
  .sec_title::before {
    height: 10rem;
    background: url("../images/sec_title_sp.png") center top no-repeat;
    top: -30px;
  }
  .sec_title .en {
    display: block;
    font-size: var(--fz-3xl);
  }
  .sub_title {
    font-size: var(--fz-l);
    margin-bottom: 2.4rem;
  }
}
/* ===============================
   TOP
================================== */
#top {
  padding: 0;
}
#top h2 {
  margin: 0 auto;
  z-index: 1;
  position: relative;
  line-height: 1;
  max-width: 800px;
  width: 90%;
}
#top .main_inner {
  background-image: url(../images/main_bg_pc.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  padding: 47px 0 100px;
  background-size: cover;
}
/*.top_data::before{
	content: "";
	display: block;
	position: absolute;
	margin: 0 auto;
	width: 100%;
	height: 18rem;
	background-image: url("../images/main_img.png");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: contain;
	top: -120px;
}*/
.data_img {
  position: relative;
  margin-bottom: -10rem;
}
.data_img img {
  position: relative;
  top: -10rem;
}
.top_data {
  z-index: 2;
  background-color: var(--color-main);
  padding: 0;
  position: relative;
}
.top_data h3 {
  color: #fff;
  font-weight: bold;
  font-size: var(--fz-xl);
  letter-spacing: 0.08rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0;
}
.top_data h3::before, .top_data h3::after {
  width: 3px;
  height: 40px;
  content: "";
  background-color: #fff;
}
.top_data h3::before {
  margin-right: 1em;
  transform: rotate(-35deg);
}
.top_data h3::after {
  margin-left: 1em;
  transform: rotate(35deg);
}
.top_data .data_days {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 10px;
}
.top_data .data_days p {
  margin: 0;
  flex: 1;
}
.arrow {
  padding-top: calc(8vw + -1px);
  position: relative;
}
.arrow::before, .arrow::after {
  content: '';
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-bottom: 8vw solid #f6f2e9;
}
.arrow::before {
  left: 0;
  border-right: 50vw solid transparent;
}
.arrow::after {
  right: 0;
  border-left: 50vw solid transparent;
}
@media screen and (max-width:768px) {
  #top {
    padding-top: 0;
  }
  .top_data {
    margin-top: -1px;
    padding-top: 10px;
  }
  .top_data .data_days {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin: 0px auto 10px;
  }
  .top_data .data_days p {
    flex: none;
    width: 100%;
    margin: 0;
  }
  #top .main_inner {
    padding: 0;
    background-image: none;
  }
  #top h2 {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .data_img {
    display: none;
  }
}
/* ===============================
   NEWS
================================== */
/* リスト全体 */
#news .news_wrap {
  text-align: left;
}
#news .news_list {
  list-style: none;
  margin: 0 0 2.4rem;
  padding: 0;
}
#news .news_list li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1.6rem;
}
/* 日付タグ */
#news .news_data {
  display: inline-block;
  background: var(--color-accent-green);
  color: #fff;
  font-size: var(--fz-m);
  font-weight: 700;
  padding: 0.8rem;
  white-space: nowrap;
  flex: 0 0 23rem;
  text-align: center;
}
/* タイトル部分 */
#news .news_title {
  color: var(--color-text);
  font-size: var(--fz-m);
  line-height: 1.5;
  flex: 1;
}
#news .news_list a {
  color: var(--color-text);
  /* [disabled]text-decoration: underline; */
}
#news .news_list a:hover .news_title {
  /* [disabled]text-decoration: underline; */
  color: var(--color-main);
}
#news .more_btn {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  font-size: var(--fz-l);
  padding: 0.8em 3em;
  border-radius: 1rem;
  text-decoration: none;
  transition: opacity 0.3s;
}
#news .more_btn:hover {
  opacity: 0.8;
}
#news .news_item {
  background: #fff;
  border-radius: 0.8rem;
  padding: 2.4rem 1.6rem;
  margin-bottom: 2.4rem;
  scroll-margin-top: 120px; 
}
#news .news_item .news_data {
  margin-bottom: 0.8rem;
  font-size: var(--fz-s);
}
#news .news_item .news_title {
  margin-bottom: 1.6rem;
  padding-bottom: 1.6rem;
  font-weight: normal;
  font-size: var(--fz-l);
  border-bottom: 1px dashed var(--color-main);
}
#news .news_item .news_body p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width:768px) {
  #news .news_list li {
    flex-direction: column;
    align-items: flex-start;
  }
  #news .news_data {
    flex: 0;
  }
  #news .news_list li {
    gap: 8px;
    margin-bottom: 3rem;
  }
  #news .more_btn {
    font-size: var(--fz-l);
    padding: 0.8em 1em;
  }
}
/* ===============================
   ABOUT
================================== */
.lead {
  font-size: var(--fz-m);
  text-align: center;
  line-height: 1.8;
  margin-bottom: 3.2rem;
}
#about .img {
  max-width: 534px;
  margin: 0 auto 60px;
}
.outline_data dl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0 4rem 1.6rem;
  margin: 0 auto 1.6rem;
  border-bottom: 1px dashed var(--color-main);
  max-width: 850px;
  line-height: 1.5;
}
.outline_data dt {
  display: inline-block;
  background: var(--color-accent-green);
  color: #fff;
  font-size: var(--fz-m);
  font-weight: 700;
  padding: 0.5em 0;
  white-space: nowrap;
  flex: 0 0 10rem;
  text-align: center;
}
.outline_data dd {
  flex: 1;
  font-size: var(--fz-m);
}
.outline_data dd p:last-child {
  margin-bottom: 0;
}
.outline_data .btn_access {
  display: inline-block;
  background: var(--color-text);
  color: #fff;
  margin-top: 1rem;
  font-size: var(--fz-m);
  padding: 1rem 2rem;
  border-radius: 1rem;
  text-decoration: none;
  transition: opacity 0.3s;
}
.outline_data .btn_access:hover {
  opacity: 0.8;
}
@media screen and (max-width:768px) {
  #about .lead {
    text-align: left;
    margin-bottom: 2.4rem;
  }
  .outline_data dl {
    gap: 1rem;
    padding: 0 0 1.2rem;
  }
  .outline_data dt {
    padding: 0.3em 0;
    white-space: nowrap;
    flex: 0 0 9rem;
  }
}
/* ===============================
  Program
================================== */
#program .inner {
  max-width: 930px;
}
#program .pro_wrap {
  margin-bottom: 5rem;
}
#program .pro_wrap h3 {
  text-align: center;
  font-size: var(--fz-xl);
  color: #fff;
  background: var(--color-accent-pink);
  position: relative;
  width: 90%;
  padding: 5px 0;
  margin: 0 auto;
  bottom: -1px;
}
#program .pro_wrap h3::before, #program .pro_wrap h3::after {
  content: "";
  position: absolute;
  top: 0;
  width: 5rem;
  height: 100%;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
#program .pro_wrap h3::before {
  left: -5rem;
  clip-path: polygon(100% 0, 100% 100%, 10% 100%);
}
#program .pro_wrap h3::after {
  right: -5rem;
  clip-path: polygon(0 0, 0 100%, 90% 100%);
}
#program .pro_wrap h3 .en {
  padding-right: 20px;
  font-size: var(--fz-2xl);
}
#program .pro_box {
  max-width: 846px;
  margin: 0 auto;
  border-width: 1px;
  border: 2px solid #E4007F;
  background-color: #fff;
  padding-bottom: 6rem;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
#program .pro_box .main_img {
  margin-bottom: 1.6rem
}
#program .pro_box .main_img figure{
	position: relative;
}
#program .pro_box .main_img figcaption{
	position: absolute;
	text-align: left;
	bottom: 0;
	right: 10px;
	font-size: var(--fz-s);
	text-shadow:
    0 0 2px #fff,
    0 0 3px #fff,
    0 0 4px #fff,
    0 0 5px #fff;
}
#program .pro_box .sub_title {
  margin: 0 0 1.6rem;
  font-size: var(--fz-l);
  line-height: 1.8;
}
#program .pro_box p {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
#program .pro_box .program_img {
  margin-bottom: 6rem;
}
#program .workshop.pro_wrap h3 {
  background: var(--color-accent-green);
}
#program .booth.pro_wrap h3 {
  background: var(--color-accent-blue);
}
#program .workshop .pro_box {
  border: 2px solid var(--color-accent-green);
}
#program .booth .pro_box {
  border: 2px solid var(--color-accent-blue);
}
.btn_program {
  text-align: center;
  padding-top: 50px;
}
.btn_program a {
  position: relative;
  display: inline-block;
  background: var(--color-main);
  color: #fff;
  font-size: var(--fz-l);
  padding: 2rem 0;
  border-radius: 1rem;
  width: 100%;
  max-width: 400px;
  font-weight: bold;
  text-decoration: none;
}
.btn_program a::before {
  content: "";
  background-image: url(../images/btn_more.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 142px;
  height: 46px;
  margin: 0 auto;
  display: block;
  position: absolute;
  top: -46px;
  left: 0px;
  right: 0px;
}
.btn_program a:hover {
  background: var(--color-accent-pink);
}
a.disabled {
  position: relative;
  pointer-events: none;
  filter: grayscale(100%);
}
@media screen and (max-width:768px) {
  #program {
    overflow: hidden;
  }
  #program .pro_wrap h3 {
    width: 100%;
  }
  #program .pro_wrap h3::before, #program .pro_wrap h3::after {
    width: 2rem;
    height: 100%;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
  }
  #program .pro_wrap h3::before {
    left: -2rem;
    clip-path: polygon(100% 0px, 100% 100%, 0px 100%);
  }
  #program .pro_wrap h3::after {
    right: -2rem;
    clip-path: polygon(0px 0px, 100% 100%, 0px 100%);
  }
  #program .pro_wrap h3 {
    padding: 0;
  }
  #program .pro_wrap h3 .en {
    padding-right: 20px;
    font-size: var(--fz-3xl);
    line-height: 1.3;
  }
  .btn_program a {
    padding: 1rem 0;
  }
  #program .pro_box p {
    font-size: 1.6rem;
  }
  #program .pro_box .program_img {
    margin-bottom: 2.4rem;
  }
  #program .pro_box {
    padding-bottom: 24px;
  }
}
/* ===============================
  Access
================================== */
.iframe_wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 3rem;
}
.iframe_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#access .outline_data dl {
  padding: 0 0 1.2rem;
}
@media screen and (max-width:768px) {
  #access .outline_data dl {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  #access .outline_data dl dt {
    flex: 0 0 2rem;
    padding: 5px;
    width: 25%;
  }
}
/* ===============================
 下層ページ
================================== */
.page_header {
  margin: 4rem 0 2.4rem;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 15rem 0 3.2rem;
  background-image: url(../images/sec_bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.page_header h1 {
  background: rgba(255, 255, 255, 0.80);
  text-align: center;
  font-size: var(--fz-2xl);
  padding: 2.4rem 0;
  color: var(--color-accent-blue);
  position: relative;
}
.page_header h1::before {
  content: "";
  display: block;
  width: 100%;
  height: 15rem;
  background: url("../images/sec_title_pc.png") center top no-repeat;
  background-size: contain;
  position: absolute;
  top: -100px;
  left: 0;
}
.program_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.program_wrap .txt_box {
  flex: 0 1 calc(50% - 1rem);
  background: #fff;
  border: 2px solid var(--color-accent-pink);
  border-radius: 10px;
  margin: 0 0 2.4rem;
  padding: 2.4rem 1.6rem;
}
.event_title {
  margin: 0 0 1.6rem;
  font-size: var(--fz-l);
	min-height: 86px;
}
.event_title span {
  background: linear-gradient(transparent 60%, rgba(255, 217, 0, 0.8) 60%);
}
.program_wrap .event_time {
  display: inline-block;
  background: var(--color-accent-green);
  color: #fff;
  font-size: var(--fz-m);
  padding: 8px;
  white-space: nowrap;
  text-align: center;
  margin-bottom: 1.6rem;
  line-height: 1.5;
}
.program_wrap .event_desc {
	font-size: 1.8rem;
	margin-bottom: 1.6rem;
}
.program_wrap .event_desc img{
	max-height: 214px;
	margin: 0 auto;
	display: block;
}
.cast_label {
  margin-bottom: 1.6rem;
}
.cast_label::before {
  content: "■";
  color: var(--color-main);
  padding-right: 1rem;
}
.cast_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  justify-content: flex-start;
  align-items: flex-start;
}
.cast_list li {
  text-align: center;
  flex: 0 1 calc(33.333% - 1rem);
}
.cast_list figcaption, .event_img figcaption {
  font-size: var(--fz-s);
  margin: 1rem 0;
}
.cast_list figcaption span {
  font-size: var(--fz-xs);
  display: block;
  line-height: 1.2;
}
.event_img {
	text-align: center;
}
.event_img figcaption {
	text-align: center;
}
.note {
  text-align: center;
  margin: 4.8rem 0 1.6rem;
}
.label_text {
	text-align: center;
	margin: 1.6rem 0;
	font-weight: bold;
	color: #E4007F;
	padding: 0.8rem;
	display: inline-block;
}
.link_list {
  padding-left: 2rem;
  font-size: 1.8rem;
}
.link_list li {
  list-style: disc;
}
.link_icon {
  display: flex;
  gap: 1.6rem;
}
.link_icon li {
  width: 40px;
  display: block;
}
.booth_keyword {
  background-color: var(--color-accent-blue);
  border-radius: 10px;
  padding: 1.6rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .page_header {
    margin: 0 0 1.6rem;
    padding: 11.2rem 0 1.6rem;
    background-image: url("../images/KV-image.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
  }
  .page_header h1 {
    padding: 2.4rem 0;
  }
  .page_header h1::before {
    content: "";
    display: block;
    width: 100%;
    height: 8rem;
    background: url("../images/sec_title_sp.png") center top no-repeat;
    top: -40px;
    left: 0;
    background-size: contain;
  }
  .program_wrap {
    flex-direction: column;
  }
  .program_wrap .txt_box {
    flex: 1 1 100%;
  }
	.event_title{
		min-height: 0px;
	}
  .program_wrap .event_desc {
    font-size: 1.6rem;
  }
	.program_wrap .event_desc img{
	max-height: 300px;
	display: block;
	margin: 0 auto;
}
  .cast_list figcaption, .event_img figcaption {
    font-size: 1.4rem;
  }
  .cast_list figcaption span {
    font-size: 1.2rem;
  }
}
/* ===============================
 サイトポリシー
================================== */
#policy p {
  margin: 0 0 1rem;
  font-size: 1.6rem;
}
#policy h3 {
  font-size: var(--fz-xl);
  padding: 0 0 0.5rem;
  margin: 3rem 0 1rem;
  color: var(--color-accent-blue);
  border-bottom: 1px dashed var(--color-main);
}
#policy h4 {
  font-size: var(--fz-l);
  padding: 0;
  margin: 2rem 0 1rem;
}
#policy h5 {
  font-size: var(--fz-m);
  padding: 0;
  margin: 0 0 1rem;
}
#policy h6 {
  font-size: 1.8rem;
  padding: 0;
  margin: 0 0 0.8rem;
}
#policy section ul, #policy section ol {
  font-size: 1.6rem;
}
#policy section ol {
  padding-left: 2rem;
}
#policy section ol li {
  list-style-type: decimal;
}
@media screen and (max-width:768px) {
  #policy p {
    font-size: var(--fz-m);
  }
  #policy h5 {
    font-size: 1.8rem;
  }
  #policy h6 {
    font-size: 1.6rem;
  }
}
/* ===============================
 footer
================================== */
footer {
  font-size: var(--fz-s);
  text-align: center;
  color: var(--color-text);
  padding: 0;
  margin-top: 60px;
  background: #fff;
}
footer .arrow {
  padding-top: 0;
  padding-bottom: calc(8vw + -1px);
  position: relative;
}
footer .arrow::before, footer .arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-top: 8vw solid #f6f2e9;
  border-bottom: 0;
}
footer .arrow::before {
  left: 0;
  border-right: 50vw solid transparent;
}
footer .arrow::after {
  right: 0;
  border-left: 50vw solid transparent;
}
footer .sec_title {
  padding: 0;
  margin: 0 0 3.2rem;
}
footer .sec_title::before {
  display: none;
}
footer .contact_box p {
  font-size: var(--fz-m);
}
footer .contact_box span {
  font-size: var(--fz-s);
}
footer .contact_box a {
  color: var(--color-text);
  text-decoration: none;
}
footer .contact_box a:hover {
  color: var(--color-accent-pink);
}
footer .foot_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 300px;
  margin: 4rem auto;
}
footer .policy {
  padding: 3rem 0;
  border-top: 1px solid var(--color-main);
}
footer .copyright {
  font-size: var(--fz-s);
  display: block;
  padding: 3rem 0;
  background-color: #f6f2e9;
}
#pagetop {
  background: var(--color-main);
  font-size: var(--fz-s);
  color: #fff;
  border-radius: 30px;
  padding: 21px 13px 9px;
  position: fixed;
  bottom: 10%;
  right: 5%;
  z-index: 10;
  cursor: pointer;
}
#pagetop:hover {
  background: var(--color-accent-pink);
  transition: 0.3s ease-in-out;
}
#pagetop::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 20px;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}
@media screen and (max-width:768px) {
  footer .sec_title {
    padding: 0;
    margin: 0 0 2.4rem;
  }
}
