@charset "utf-8";
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent
}
body {
  margin: 0
}
main {
  display: block
}
p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0
}
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none
}
dt {
  font-weight: 700
}
dd {
  margin-left: 0
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit
}
pre {
  font-family: monospace, monospace;
  font-size: inherit
}
address {
  font-style: inherit
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit
}
abbr[title] {
  text-decoration: underline dotted
}
b, strong {
  font-weight: bolder
}
code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit
}
small {
  font-size: 80%
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}
sub {
  bottom: -.25em
}
sup {
  top: -.5em
}
svg, img, embed, object, iframe {
  vertical-align: bottom
}
button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit
}
button, [type="button"], [type="reset"], [type="submit"] {
  cursor: pointer
}
button:disabled, [type="button"]:disabled, [type="reset"]:disabled, [type="submit"]:disabled {
  cursor: default
}
:-moz-focusring {
  outline: auto
}
select:disabled {
  opacity: inherit
}
option {
  padding: 0
}
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0
}
legend {
  padding: 0
}
progress {
  vertical-align: baseline
}
textarea {
  overflow: auto
}
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto
}
[type="search"] {
  outline-offset: -2px
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}
[type="number"] {
  -moz-appearance: textfield
}
label[for] {
  cursor: pointer
}
details {
  display: block
}
summary {
  display: list-item
}
[contenteditable]:focus {
  outline: auto
}
table {
  border-color: inherit;
  border-collapse: collapse
}
caption {
  text-align: left
}
td, th {
  vertical-align: top;
  padding: 0
}
th {
  text-align: left;
  font-weight: 700
}
html {
  scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP","游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 400;
    color: #232323;
    font-size: 1.1vw;
      letter-spacing: 0.04em;
 font-feature-settings: "palt";
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), 
       only screen and (min-resolution: 192dpi) {
  body {
     font-size: 1.2vw;
  }
}

.pc {
  display: block;
}
.sp {
  display: none;
}
.en {
font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-style: normal;
}

img {
  width: 100%;
}
p {

}
.flex {
    display: flex;
    justify-content: space-between;
}
/* ハンバーガーメニュー */

body{
  overflow-x: hidden;
}

header {
    position: relative;
    z-index: 3;
}


.hamburger {
    width: 94px;
    height: 94px;
    position: fixed;
    top: 24px;
    right: 40px;
        background: #008e54;
    border-radius: 48px;
    z-index: 4;
    cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95, 0.95);
  transition: .4s;
}
.sc01 .hamburger {
  opacity: 1;
   pointer-events: auto;
  transform: scale(1, 1);
  transition: .4s;
}
.menu-active .hamburger {
        background:none;

}
.hamburger span{
  position: absolute;
  width: 56%;
  height: 2px;
  background-color: #fefcef;
  transition: .3s;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.hamburger span:first-of-type{
  top: 44px;
}
.hamburger span:nth-of-type(2){
  top: 52px;
}
.slide-menu {
    background: #008e54;
    position: fixed;
    top: 0;
    width: 40%;
    right: -100%;
    transition: .7s;
    height: 100%;
    z-index: 3;
}

.menu-active .slide-menu {
  transform: translateX(0);
}
.slide-menu ul{
padding: 50px 50px 0;
}
.slide-menu dl{
  color: #b5aa5f;
  text-align:left;
  padding-bottom: 12px;
}
.slide-menu li a{
text-decoration: none;
}
.slide-menu li.en a{
text-decoration: none;
}
.slide-menu li.sub {
    font-size: 15px;
}
.slide-menu li.en {
    font-size: 40px;
    padding-top: 40px;
}
.menu-active .hamburger span:first-of-type{
  top: 50%;
  transform: rotate(45deg);    background-color: #008e54;
}
.menu-active .hamburger span:nth-of-type(2){
  top: 50%;
  transform: rotate(-45deg);    background-color: #008e54;
}

.menu-active .slide-menu {
 right: 0%;
}
.body.menu-active {
  overflow: hidden;
  transition: .7s;
}




.slide-menu-wrap {
width: 97%;
    margin: 1.4% auto 0;
    background: #fefcef;
    height: 100%;
    border-radius: 10px;
}
.slide-menu-logo {
    width: 68%;
    text-align: center;
    margin: 0 auto;
    padding-top: 7vw;
}
.slide-menu-gnav {
    width:50%;
}
.slide-menu-gnav a {
text-decoration: none;
}
.nav-en {
    font-size: 60px;
    display: block;
    line-height: 1;
}


.slide-menu-wrap li {
    text-align: center;
	padding-bottom: 1em;
}
.slide-menu-wrap li .en {
    font-size: 2.4em;
    display: block;
    line-height: 1;
}
.slide-menu-wrap li .jp {
    display: block;
    font-weight: 700;
}

.content {

  position: relative;
}

.hero-fade {
  animation: fadeInlogo 0.5s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.content {
  animation: fadeInlogo 0.5s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}
@keyframes fadeInhero {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.8;
  }
}
@keyframes fadeInlogo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


footer {

}
.wrap {
    background:url("../images/bg.svg");
    width: 100%;
    overflow: hidden;
    position: relative;
}.inner {
  width: 80%;
  margin: 0 auto;
	position: relative;
}
.inner-wide {
  width: 85%;
  margin: 0 auto;
}
.inner-min {
    width: 68%;
    margin: 0 auto;
	position: relative;
}
.l-sec {

}
.hero {
    width: 71%;
    margin: 0 auto;
    padding-top: 6vw;
    position: relative;
    z-index: 2;
}
.content {
    position: relative;
    z-index: 2;
}
.hero-copy {
    position: absolute;
    width: 1.8em;
    right: -10vw;
    top: 10vw;
    z-index: 3;
}
.hero-txt {
    padding: 1em;
    border-top: #008e54 solid 1px;
    margin-top: 1em;
    font-weight: 400;
    font-size: 0.95em;
}
.map iframe {
    width: 100%;
    border-radius: 2vw;
}
.timeschedule-items {
    background: #fff;
    padding: 3vw 2.8vw 0;
    border-radius: 0 1vw 1vw;
    border: #008e54 solid 0.3vw;
height: 100%;
}
.timeschedule {
    width: 50%;
}
.flex {
    display: flex;
    align-items: stretch;
    gap: 1.4vw;
}
footer {
    padding: 6vw 0 5vw;
    color: #fff;
    text-align: center;
}
.program-wrap {
    background: #fff;
    padding: 0.3em;
    position: relative;border-radius: 1.3em;
}
.program-wrap-inner {
border-radius: 1.2em;
  padding: 2.4em;
}
.day1.flex-wrap {
    width: 58%;
}
.day2.flex-wrap {
    width: 42%;
}
.day {
    width: 15vw;
    position: absolute;
    top: -2vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
}
.day1-title {
    font-size: 1.1em;
    font-weight: 700;
    background: #1d50a2;
    text-align: center;
    padding: 0.4em;
    border-radius: 99px;
    color: #fff;
    width: 13em;
    margin: 0 auto 2em;
}

.day1 .program-wrap-inner {
    color: #1d50a2;
    border: #1d50a2 solid 3px;
    padding-top: 3em;
}
.day2 .program-wrap-inner {
    color: #e94738;
  border: #e94738 solid 3px;padding-top: 4em;
}
.day2 .day3 .program-wrap-inner {
    color: #1d50a2;
    border: #1d50a2 solid 3px;
    padding-top: 2.4vw;
}
.reverse {
    flex-direction: row-reverse;
}

.item-title {
    font-size: 2em;
    font-weight: 900;
    padding-bottom: 0.4em;
      line-height: 1.05em;
	position: relative;
}
.day3 .item-title {
    font-size: 1.7em;
}

.day3 {
    margin-top: 1.7em;
}
.item-title span.sup {
    font-size: 0.65em;
    display: block;
}
.program-item {
    padding-bottom: 2em;
}
.program-item p {
  line-height: 1.6em;    color: #232323;
}
.item-data {
    padding-top: 1em;
}
.item-data {
    padding-top: 1em;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.item-detail-th {
    width: 3.5em;
    color: #fff;
    font-weight: 600;
    font-size: 0.8em;
    background: #333;
    line-height: 1em;
    padding: 6px 0 6px;
    border-radius: 0.2em;
    margin-right: 8px;
    text-align: center;
}
.day1 .item-detail-th {
    background: #1d50a2;
}
.day2 .item-detail-th {
    background: #e94738;
}
.day2 .day3 .item-detail-th {
 background: #1d50a2;
}
.day1 .program-item {
    padding-bottom: 1.78em;
    margin-bottom: 1.8em;
    border-bottom: #1d50a2 solid 1px;
}

.item-detail-td {
    font-size: 0.9em;
    padding-right: 1em;    font-weight: 600;    color: #232323;
}
.item-tag {

}
.item-tag span {
    font-size: 0.75em;
    font-weight: 600;
    border: #1d50a2 solid 1px;
    padding: 0.4em 1em;
    border-radius: 99px;
    margin-bottom: 0.5em;
    display: inline-block;
}
.txt {
    width: 54%;
}
.pic {
    width: 42%;
}
.day1 .txt {
    width: 66%;
}
.day1 .pic {
    width: 29%;
}

.day3 .day {
    width: 10vw;
    top: -1vw;
}
.guest-item {
    display: flex;
    justify-content: space-between;
}
.guest-item p {
    font-size: 0.8em;
    line-height: 1.7;    color: #232323;
}
.guest-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1.5em;
}
.guest-tag {
    font-size: 0.7em;
    display: inline-block;
    background: #1d50a2;
    color: #fff;
    padding: 8px 20px;
    line-height: 1em;
    margin-bottom: 12px;
    font-weight: 600;
    border-radius: 99px;
}
.pic img{
    border-radius: 0.6em;
}
.job {
    font-size: 0.9em;
    padding-bottom: 0.3em;
    font-weight: 600;
}
.name {
    font-size: 1.3em;
    font-weight: 700;
    padding-bottom: 0.6em;
}
span.sun {
    font-size: 0.7em;
    padding-left: 0.2em;
}
#experience .program-wrap-inner {
    border: #ff6417 solid 3px;
}



#experience .item-detail-th {
 background: #ff6417;
}
#experience .program-item {
    padding-right: 2em;
  margin-right: 2em;
    border-right: #ff6417 solid 1px;
}
section#experience {
    margin-top: 1.5em;
}
#experience .sec-title {
    position: absolute;
    left: -2em;
    background: #ff6417;
    color: #fff;
    padding: 0.5em;
    border-radius: 0 0 10px;
    top: 0;
}

#experience .pic img {
    border-radius: 0.3em;
}
.experience-item {
    width: 33.333%;
}


#exhibition .program-wrap-inner {
    border: #7d4698 solid 3px;
	    padding-bottom: 1.8em;
    border-radius: 0 1.2vw 1.2vw 1.2vw;
}
#exhibition .item-detail-th {
 background: #7d4698;
}
#exhibition .program-item {
    padding-bottom: 2em;
  margin-bottom: 2em;
    border-bottom: #7d4698 solid 1px;
}
#exhibition .sec-title {
    position: absolute;
    left: -2em;
    background: #7d4698;
    color: #fff;
    padding: 0.5em;
    border-radius: 0 0 10px;
    top: 0;
}
#exhibition .program-wrap {
    border-radius: 0 1.3em 1.3em;
}



.day3 .program-item {
    padding-bottom: 0em;
}
.item-data.block {
    display: block;
}
.broon {
    position: absolute;
    width: 5vw;
    top: -2vw;
    right: -1vw;
}
.broon03 {
  
}

.row.flex {
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    margin-bottom: 0.3em;
}
.broon.broon04 {
    width: 5vw;
    top: -2vw;
    right: -2vw;
}
.broon.broon05 {
    width: 5vw;
    top: -2vw;
    right: auto;
    left: -2vw;
}
.item-title span.sup2 {
    display: inline;
    font-size: 0.5em;
}
.broon.broon03 {
    top: -0.2em;
}
.day2 .guest-item {
    padding-bottom: 0;
}
.guest-item.end {
    padding-bottom: 0;
}
.experience-item-title {
    font-size: 1.05em;
    font-weight: 700;
    color: #ff6417;
    padding-bottom: 0.5em;
}
.experience-item-subtitle {
    font-size: 0.8em;
    font-weight: 600;
    color: #ff6417;
    padding-bottom: 0.2em;
}
.experience-item-detail p{
    font-size: 0.8em;
    line-height: 1.5em;
}
.not-ticket {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 0.7em;
}
section.l-sec.map {
    background: #fff;
}
section.l-sec.access {
    background: #fff6e9;
}
footer {
    padding: 6vw 0 5vw;
    text-align: center;
    background: #fff;
}
#experience .program-wrap-inner {
    padding-bottom: 1.8vw;
	    border-radius: 0 1.2vw 1.2vw 1.2vw;
}
section#exhibition {
    margin-top: 1.5em;
}
.sec-title2 {
    font-size: 1.4em;
    font-weight: 700;
    padding-bottom: 0.5em;
    color: #7d4698;
}
section#exhibition p {
    font-size: 0.82em;
    line-height: 1.5em;
}
.exhibition-item.w25 {
    width: 22%;
}
.exhibition-item.w15 {
    width: 14%;
}
section#exhibition .pic {
    width: 100%;
}
.exhibition-item-subtitle {
    font-size: 1.05em;
    font-weight: 700;
    padding-bottom: 0.5em;
    color: #7d4698;
}
section#exhibition ul {
width: 50%;
}
section#exhibition li {
    font-size: 0.88em;
    line-height: 1.4em;
    text-indent: -1em;
    padding-left: 1em;
    padding-bottom: 0.3em;
    display: flex;
    align-items: center;
	font-weight: 600;
}
.exhibition-item.w25 .txt {
    width: 100%;
}
.exhibition-item.w15 .pic {
    width: 100%;
}
.exhibition-item.w60 {
    position: relative;
	width: 65%;
}
.line {
    width: 100%;
    height: 1px;
    background: #7d4698;
    position: absolute;
    top: 0.6em;
}
.exhibition-item-subtitle {
    font-size: 1.1em;
    font-weight: 700;
    padding-bottom: 0.5em;
    color: #7d4698;
    background: #fff;
    display: inline-block;
    position: relative;
    z-index: 2;
    padding-right: 1em;
}
.not-ticket {
    position: absolute;
    right: 0;
    top: -20px;
    font-size: 0.7em;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
span.icon-ticket {
    width: 2.3vw;
    display: block;
    margin: 0 5px;
    text-indent: 0;
}
section#exhibition .pic {
    width: 100%;
    margin-bottom: 10px;
    position: relative;
}
section#workshop {
    background:url("../images/ws-bg.svg");
    margin-top: 6em;
    padding: 3em 0 2em;
    position: relative;
    color: #fff;background-size: cover;
}
#workshop .sec-title {
    width: 20vw;
    position: absolute;
    top: -2vw;
    left: -2vw;
}
.workshop-items.flex {
    padding-left: 22vw;
}
section.l-sec.schedule {
    background: #fff;
    padding: 6em 0;
}
#workshop .item-detail-td {
    color: #fff;
}

.workshop-item-subtitle {
    font-size: 0.8em;
    font-weight: 600;
    color: #fff100;
    padding-bottom: 0.2em;
}
.workshop-item-title {
    font-size: 1.05em;
    font-weight: 700;
    color: #fff100;
    padding-bottom: 0em;
}
#workshop .item-detail-th {
    color: #00a48d;
    background: #fff100;
}
#workshop .pic {
    width: 42%;
    position: relative;
}
#workshop .row.flex {
    align-items: start;
    line-height: 1.3;
}
.row.flex .item-detail-td {
    padding-right: 0;
}
#experience .item-detail-td {
    font-size: 0.8em;
}
#experience .item-detail-th {
    font-size: 0.7em;
}
#workshop .item-detail-td {
    font-size: 0.8em;
}
#workshop .item-detail-th {
    font-size: 0.7em;
}
.broon.komyutan {
    width: 11vw;
    top: auto;
    right: -2vw;
    bottom: 0vw;
}
.broon.broon07 {
    top: -2vw;
    right: auto;
    left: -2vw;
}
.broon.broon06 {
    top: -2vw;
    right: auto;
    left: -2vw;
}

.day2 .present .program-wrap-inner {
    color: #ff4936;
    border: none;
    padding: 1.5em 0.5em 1.5em 2em;
}
.present .program-wrap {
    background: #fff100;
    padding: 0.3em;
    position: relative;
    border-radius: 1.3em;
}
.present .item-detail {
    display: flex;
}
.present .pic {
    width: 30%;    padding-top: 2.5vw;
}
.present {
    margin-top: 1.5em;
}
.present .txt {
    width: 70%;
}
.present .program-item {
    padding-bottom: 0;
}

.present .program-item p {
    line-height: 1.6em;
    color: #232323;
    font-size: 0.8em;
}
.present .item-tag {
    display: inline-block;
    background: #ff4936;
    color: #fff100;
    padding: 0.4em 1em;
    margin-bottom: 0.5em;
    font-weight: 600;
	transform: rotate(-3deg);
	border-radius: 3px;
}
.present .item-title {
    font-size: 1.75em;
    padding-top: 0.2em;
}
#experience .sec-title {
    position: absolute;
    left: -2.1em;
    background: #ff6417;
    color: #fff;
    padding: 0.7em;
    border-radius: 10px 0 0 10px;
    top: 0.25em;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 1.1em;
    font-weight: 700;
}
#exhibition .sec-title {
    position: absolute;
    left: -2.1em;
    background: #7d4698;
    color: #fff;
    padding: 0.7em;
    border-radius: 10px 0 0 10px;
    top: 0.25em;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 1.1em;
    font-weight: 700;
}
.kitchen {
    padding-top: 3em;
}
.schedule .sec-title {
    width: 17vw;
    padding-bottom: 1em;
}
.schedule p {
    font-size: 0.9em;
    line-height: 1.6;
	padding-bottom: 2em;
}
.table-wrap {
    padding-top: 0.5em;
	position: relative;
}
section.l-sec.map {
    padding-bottom: 6em;
}
section.l-sec.access {
    background:#fff6e9;
    padding: 6em 0;
}

.access-title {
    font-size: 1.6em;
    font-weight: 600;
	justify-content: center;
	padding-bottom: 1em;
}.map {
    padding: 3vw 0;
}
.map iframe {
   width: 100%;
}
.ico-bus {
    width: 5vw;
}
.ico-car {
    width: 3vw;
}
.ico-train {
    width: 2vw;
}
.train.flex {
    justify-content: flex-start;
    align-items: center;
	gap:1vw;
}
.car.flex {
    justify-content: flex-start;
    align-items: center;
	padding-right: 2em;
	gap:1vw;
}
.koriyama {
    position: relative;
    display: flex;
    justify-content: flex-start;
    padding: 1.5vw;
    border-top: #008e54 solid 1px;
    font-size: 0.9em;
}
.koriyama li {
    line-height: 1.5;
    padding-bottom: 0.1em;
}
.iwaki {
    position: relative;
    display: flex;
    justify-content: flex-start;
    padding: 1.5vw;
    border-top: #008e54 solid 1px;
    font-size: 0.9em;
}
.iwaki li {
    line-height: 1.5;
    padding-bottom: 0.1em;
}
.location {
    width: 6em;
    background: #008e54;
    border-radius: 99px;
    text-align: center;
    height: 2em;
    line-height: 2em;
    color: #fff;
    font-weight: 600;
    margin-right: 1em;
}

.access-img {
    position: absolute;
    bottom: 0;
    width: 22vw;
    right: 0;
}
.bus {
    position: relative;
    padding-top: 1em;
	font-size: 0.9em;
}
.access-items.flex {
    justify-content: center;
    gap: 3vw;
}
.access-name {
    width: 30%;
}
.access-contact {
    width: 30%;
}
.address {
    padding-top: 1em;
    font-size: 0.9em;
    line-height: 1.5;
}
.access-contact-tel {
    font-size: 2em;
    font-weight: 900;
}
.access-contact-title {
    display: inline-block;
    padding: 0.6em 1em;
    border: #333 solid 1px;
    margin-bottom: 1em;
    font-weight: 600;
}
.access-contact-note {
    padding-top: 0.4em;
    font-size: 0.8em;
}
.access-contact-url {
	padding-top: 0.4em;
 font-size: 0.8em;
}
.access-contact-url a {
text-decoration: underline;
}
.googlemap iframe {
    width: 100%;
    border-radius: 1em;
}
.googlemap {
    padding-top: 2em;
}
.access-etc.flex {
    justify-content: center;
    align-items: center;
    padding: 1.5em;
    padding-top: 2em;
}
.bus-koriyama {
    padding: 1em;
    background: #fff100;
    text-align: center;border-radius: 10px;
}.bus-koriyama strong {
    font-size: 1.1em;
    padding-right: 1em;
}
.bus {
    position: relative;
    padding-top: 1.5em;
    text-align: center;
}
footer {
    padding: 6vw 0 5vw;
    text-align: center;
    background: #fff;
    color: #333;
    line-height: 1.6;
    font-size: 0.9em;
}
.access-items.flex {

}

.bus strong{
    color: #ff4936;
    font-size: 1.15em;
	padding-right: 1em;
}
.access-contact-name {
    font-weight: 600;
    padding-bottom: 0.3em;
}

.hero-bg {
    width: 72%;
    margin: 0 auto;
    padding-left: 4%;
padding-bottom: 3vw;
}.hero-img {
    position: absolute;
    width: 80%;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
}
.hero-name01 {
    position: absolute;
    bottom: 10vw;
    left: 3vw;
}
.hero-name-job {
    font-size: 0.7em;
    font-weight: 600;
    line-height: 1.3em;
    padding-bottom: 0.2em;
}.hero-name {
    font-weight: 600;
}
.hero-name02 {
    position: absolute;
    bottom: 10vw;
    right: 0;
}
.footer-name {
    padding-bottom: 10px;
}
.not-ticket.sp {
display: none;
}
.line-bg {
    width: 16vw;
    height: 1em;
    background: #ffffff;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
}
.day3 .line-bg {
    width: 11vw;
}
.kitchen-title {
    position: absolute;
    top: -1.5em;
    width: 90%;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.kitchen {
    margin-top: 4em;
    background: #efe5d9;
    border-radius: 99px;
    color: #955629;
    font-weight: 600;
    font-size: 1.1em;
    padding: 1.7em 0 1em;
    line-height: 1.5em;
    text-align: center;
    position: relative;
}
@media screen and (max-width:1200px) {
body {
    font-size: 1.2vw;
}
	.hero {
    width: 75%;
}
	.inner-min {
    width: 75%;
}
	
}


@media screen and (max-width:900px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  body {
    font-size: 16px;
}  
.hero {
    width: 100%;
}
		.inner-min {
    width: 80%;
}
	.program-flex {
		display: block;
	}.day1.flex-wrap {
    width: 100%;
}.day2.flex-wrap {
    width: 100%;
    margin-top: 40px;
}.hero-img {
    position: absolute;
    width: 70%;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
}.hero-name-job {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3em;
    padding-bottom: 0.2em;
}.hero-name01 {
    position: absolute;
    bottom: 15vw;
    left: 5vw;
}.hero-name02 {
    position: absolute;
    bottom: 15vw;
    right: 5vw;
}.hero-name {
    font-weight: 600;
    font-size: 15px;
}.day {
    width: 150px;
    position: absolute;
    top: -2vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
}.broon {
    position: absolute;
    width: 70px;
    top: -46px;
    right: -1vw;
}.item-title {
    font-size: 30px;
    font-weight: 900;
    padding-bottom: 0.4em;
    line-height: 1.05em;
    position: relative;
}.job {
    font-size: 13px;
    padding-bottom: 0.3em;
    font-weight: 600;
}.name {
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 0.6em;
}.day3 .day {
    width: 150px;
    top: -2vw;
}.day2 .day3 .program-wrap-inner {
    padding-top: 40px;
}
#experience .experience-flex {
    display: block;
}
	.experience-item {
    width: 100%;
		        margin-bottom: 30px;
}
#exhibition .exhibition-flex {
    display: block;
}
.exhibition-item.w25 {
    width: 100%;
    margin-bottom: 30px;
}
	.exhibition-item.w60 {
    position: relative;
    width: 100%;
}
.exhibition-item.w15 {
    width: 100%;
    margin-top: 30px;
}
	.pic-wrap {
    display: flex;
    gap: 10px;
}
	.broon.broon04 {
    width: 60px;
    top: -20px;
    right: auto;
    left: -10px;
}
	.broon.broon05 {
    width: 60px;
   top: -20px;
    right: auto;
   left: -10px;
}
	#workshop .sec-title {
    width: 240px;
    margin: 0 auto;padding-bottom: 30px;
		position: relative;
}section#workshop {
    background: url("../images/ws-bg.svg");
    margin-top: 6em;
    padding: 30px 0;
    position: relative;
    color: #fff;
    background-size: cover;
}.workshop-items.flex {
    padding-left: 0;
}.workshop-items.flex {
    padding-left: 0;
    display: block;
}.workshop-item-detail {
    margin-bottom: 30px;
}section.l-sec.schedule {
    background: #fff;
    padding: 50px 0;
}.schedule .sec-title {
    width: 150px;
    padding-bottom: 1em;
}.access-contact {
    width: 50%;
}.access-name {
    width: 50%;
}.bus-koriyama strong {
    font-size: 1.1em;
    padding-right: 0;
    display: block;
}.bus-koriyama span.sup {
    display: block;
    font-size: 12px;
    padding-top: 10px;
}.access-etc.flex {
    font-size: 13px;
}.footer-inner {
    width: 85%;
    margin: 0 auto;
    font-size: 12px;
}.workshop-item-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: #fff100;
    padding-bottom: 0.2em;
}.workshop-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff100;
    padding-bottom: 0em;
}.flex.workshop-items {
    width: 85%;
    margin: 0 auto;
}.broon.broon06 {
    top: -20px;
    right: auto;
    left: -20px;
    width: 50px;
}
	.broon.broon07 {
    top: -20px;
    right: auto;
    left: -20px;
    width: 50px;
}.schedule p {
    font-size: 14px;
    line-height: 1.6;
    padding-bottom: 2em;
    width: 90%;
    margin: 0 auto;
}.access-items.flex {
    display: block;
}.access-name {
    width: 80%;
    margin: 0 auto 40px;
    text-align: center;
}
	
	.not-ticket.sp {
    position: relative;
    right: auto;
    top: auto;
    font-size: 11px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 10px;
}
	.not-ticket.pc {
    display: none;
}
	.line-bg {
    width: 170px;
}
  .day3 .line-bg {
  width: 170px;
}.kitchen {
    margin-top: 20px;
    background: #fff;
    border-radius: 0;
    color: #955629;
    font-weight: 600;
    font-size: 1.1em;
    padding: 1.7em 0 1em;
    line-height: 1.5em;
    text-align: center;
    position: relative;
}
}


@media screen and (max-width:650px) {
	body {
    font-size: 15px;
}
.inner {
    width: 94%;
    margin: 0 auto;
    position: relative;
}
.hero-bg {
    width: 95%;
    margin: 0 auto;
    padding-left: 4%;
    padding-bottom: 10px;
}
	.hero-img {
    position: absolute;
    width: 90%;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
}
.hero-name01 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;
}.hero-name-job {
    font-size: 10px;
    font-weight: 600;
    line-height: 1.3em;
    padding-bottom: 0.2em;
    background: #fff;
}.hero-name {
    font-weight: 600;
    font-size: 12px;
	background: #fff;
}.hero-name02 {
    right: 10px;
    z-index: 2;
    bottom: 10px;
}.item-title span.sup {
    font-size: 16px;
}.item-tag span {
    font-size: 12px;
}.item-title {
    font-size: 26px;
    line-height: 1.2;
}
	.program-item p {
    line-height: 1.6em;
    color: #232323;
    font-size: 14px;
}
	.program-wrap-inner {
    border-radius: 1.2em;
    padding: 25px;
}
	.item-title span.sup2 {
    font-size: 14px;
    display: block;
    padding-top: 8px;
}.guest-item {
    display: block;
}.day1 .pic {
    width: 100%;
    margin-bottom: 20px;
}.guest-tag {
    font-size: 12px;
}
	.day1 .txt {
    width: 100%;
}
	.guest-item p {
    font-size: 13px;
    line-height: 1.7;
    color: #232323;
}
	.guest-item.end {
    padding-bottom: 0;
    padding-top: 20px;
}
	.broon.broon03 {
    top: -15px;
}.pic {
    width: 100%;
}.txt {
    width: 100%;
}
	.day1 .program-wrap-inner {
    border: #1d50a2 solid 2px;
}
	.program-wrap {
    padding: 3px;
}
	.day2 .guest .pic {
    width: 100%;
    padding-bottom: 20px;
}.day3 .item-title {
    font-size: 18px;
}.present .item-tag {
    display: inline-block;
    font-size: 13px;
}.present .item-title {
    font-size: 22px;
}.day2 .present .program-wrap-inner {
    padding: 1em 0.5em 1em 1em;
}.flex {
    display: flex;
    align-items: stretch;
    gap: 15px;
}.present .program-item p {
    line-height: 1.6em;
    color: #232323;
    font-size: 12px;
}.experience-item-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: #ff6417;
    padding-bottom: 0.2em;
}.experience-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #ff6417;
    padding-bottom: 0.5em;
}.experience-item-detail p {
    font-size: 13px;
    line-height: 1.5em;
}
	#experience .pic {
    width: 35%;
    padding-bottom: 20px;
}
	#experience .txt {
    width: 65%;
}
	#experience .program-wrap-inner {
    border-radius: 10px;
}.program-wrap {
    border-radius: 10px;
}#experience .sec-title {
    position: relative;
    left: auto;
    background: #ff6417;
    color: #fff;
    padding: 0.6em;
    border-radius: 10px;
    top: auto;
    -ms-writing-mode: tb-rl;
    font-size: 18px;
    font-weight: 700;
    writing-mode: horizontal-tb;
    display: block;
    margin-bottom: 24px;
    text-align: center;
}#exhibition .program-wrap-inner {
    border: #7d4698 solid 2px;
    border-radius: 12px;
}#exhibition .program-wrap {
    border-radius: 12px;
}#exhibition .sec-title {
    position: relative;
   left: auto;
    background: #7d4698;
    color: #fff;
    padding: 0.6em;
   border-radius: 10px;
    top: auto;
    font-size: 1.1em;
    font-weight: 700;
	    writing-mode: horizontal-tb;
    display: block;
    margin-bottom: 24px;
    text-align: center;
}
.exhibition-item.w60 .flex {
  display: block;
}section#exhibition ul {
    width: 100%;
}span.icon-ticket {
    width: 26px;
    display: block;
    margin: 0 5px;
    text-indent: 0;
}.not-ticket {
    position: absolute;
    right: 0;
    top: -20px;
    font-size: 11px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}.access-contact {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}section.l-sec.access {
    background: #fff6e9;
    padding: 40px 0;
}.access-logo {
    width: 80%;
    margin: 0 auto;
}.access-etc.flex {
    font-size: 13px;
    display: block;
}.ico-car {
    width: 30px;
}.car.flex {
    justify-content: flex-start;
    align-items: center;
    padding-right: 2em;
    gap: 1vw;
    margin-bottom: 10px;
}.ico-train {
    width: 30px;
}.bus strong {
    color: #ff4936;
    font-size: 16px;
    padding-right: 0;
    display: block;
    padding-bottom: 10px;
}.program-flex.flex {
    display: block;
}.program-wrap-inner {
    border-radius: 12px;
}.program-wrap {
    border-radius: 12px;
}.present .pic {
    width: 30%;
    padding-top: 40px;
}section#exhibition p {
    font-size: 14px;
    line-height: 1.5em;
}.exhibition-item-subtitle {
    font-size: 15px;
    padding-bottom: 20px;
}.schedule .sec-title {
    width: 180px;
    padding-bottom: 1em;
    margin: 0 auto;
}.hero-name {
    font-weight: 600;
    font-size: 12px;
    background: #fff;
    display: inline-block;
}.day1-title {
    font-size: 14px;
    font-weight: 700;
    background: #1d50a2;
    text-align: center;
    padding: 0.4em;
    border-radius: 99px;
    color: #fff;
    width: 13em;
    margin: 0 auto 2em;
}#experience .item-detail-th {
    font-size: 12px;
}#experience .item-detail-td {
    font-size: 12px;
}.sec-title2 {
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 0.5em;
    color: #7d4698;
}.item-detail-th {
    font-size: 12px;
}.item-detail-td {
    font-size: 12px;
}.address {
    padding-top: 1em;
    font-size: 13px;
    line-height: 1.5;
}.access-contact-name {
    font-weight: 600;
    padding-bottom: 0.3em;
    font-size: 13px;
}.access-contact-tel {
    font-size: 22px;
    font-weight: 900;
}.access-contact-note {
    padding-top: 0.4em;
    font-size: 12px;
}.access-contact-url {
    padding-top: 0.4em;
    font-size: 12px;
}section#exhibition li {
    font-size: 13px;
    line-height: 1.4em;
    text-indent: -1em;
    padding-left: 1em;
    padding-bottom: 0.3em;
    display: flex;
    align-items: center;
    font-weight: 500;
}.table-wrap {
    padding-top: 0.5em;
    position: relative;
    overflow: scroll;
}.table {
    width: 1000px;
}.car.flex {
    justify-content: flex-start;
    align-items: center;
    padding-right: 2em;
    gap: 20px;
    margin-bottom: 10px;
}.train.flex {
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}.bus-koriyama strong {
    font-size: 18px;
    padding-right: 0;
    display: block;
    line-height: 1.3;
}.bus-koriyama span.sup {
    display: block;
    font-size: 12px;
    padding-top: 10px;
    line-height: 1.4;
}.bus {
    position: relative;
    padding-top: 1.5em;
    text-align: center;
    line-height: 1.4;
}.exhibition-item.w25 .txt {
    width: 100%;
    padding-bottom: 30px;
}
}
@media screen and (max-width:450px) {
	
}
