@charset "UTF-8";
/* CSS Document */

:root {
  /* color */
  --yellow: #FFF200;
  --brown: #804040;
  /* font */
  --en: "Libre Bodoni", serif;
  --enB: "Barlow", sans-serif;
  /* other */
  --transition: all .3s cubic-bezier(.25,.1,.25,1);
  --padL: 8px;
  --shadow: drop-shadow(2px 2px 5px rgb(128 64 64 / .5));
}

body {
  color: #212529;
  margin: 0;
  padding: 0;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: min(4vw,16px);
  font-weight: 500;
  line-height: 1.9375;
  width: 100%;
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow-x: hidden; 
}
a {
  color: inherit;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  body {
    letter-spacing: .05em;
  }
  .sp {
    display: none !important;
  }
}

/* -------------------------------------------------------------

 header

------------------------------------------------------------- */
.b-fvWrap {
  width: 100dvw;
  height: 100dvh;
  background: var(--yellow);
  position: fixed;
  top: 0;
  left: 0;
}
.b-fv {
  height: 100dvh;
}
@media screen and (max-width: 767px) {
  .b-sideTxt,
  .sideTxt {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .b-fvWrap {
    display: flex;
    align-items: flex-start;
  }
  .b-fv {
    /*aspect-ratio: 1153/719;*/
    width: 100%;
  }
  .b-sideTxt {
    display: flex;
    align-items: center;
    height: 100%;
    background: var(--yellow);
    font-family: var(--enB);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .08em;
    color: var(--brown);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    min-width: 127px;
  }
  .sideTxt {
    position: absolute;
    z-index: 5;
    font-family: var(--enB);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .08em;
    color: var(--brown);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    right: 45px;
    top: 50dvh;
    transform: translateY( -50% );
  }
  .b-sideTxt span {
    display: inline-block;
    margin-top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 1727px) {
  .b-fv {
    min-width: 1600px;
  }
  .b-sideTxt {
    width: 100%;
  }
}

/* fv layout */
.b-fv {
  position: relative;
  background: var(--brown);
}
.b-fv .e-logo,
.b-fv .e-lpTtl,
.b-fv .e-date,
.b-fv .e-chatchCopy,
.b-fv .b-visual {
  position: absolute;
  z-index: 1;
}
.b-fv .b-visual,
.b-fv .b-visual .e-movie,
.b-fv .e-lpTtl .e-movie {
  width: 100%;
  height: 100%;
  z-index: 0;
}
.b-fv .b-visual video {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: relative;
}
@media screen and (max-width: 767px) {
  .b-fv .e-logo {
    width: 44px;
    left: 26px;
    top: 26px;
  }
  .b-fv .e-lpTtl {
    /*width: min(70%,320px);*/
    width: min(77%,352px);
    right: 8%;
    top: 23vh;
  }
  .b-fv .e-date {
    width: 70%;
    max-width: 500px;
    left: min(8%,50px);
    bottom: 8vw;
  }
  .b-fv .e-chatchCopy {
    width: min(33%,180px);
    left: min(8%,50px);
    bottom: 23vw;
  }
}
@media screen and (min-width: 768px) {
  .b-fv .e-logo {
    width: 67px;
    left: 43px;
    top: 43px;
  }
  .b-fv .e-lpTtl {
    width: min(60%,485px);
    right: 45px;
    top: 183px;
  }
  .b-fv .e-date {
    width: min(55%,518px);
    right: 50px;
    bottom: 57px;
  }
  .b-fv .e-chatchCopy {
    width: min(25%,215px);
    left: 45px;
    bottom: 47px;
  }
}
@media screen and (min-width: 768px) and (max-height: 620px) {
  .b-fv .e-lpTtl {
    width: 400px;
    top: 10%;
  }
  .b-fv .e-date {
    bottom: 6%;
  }
  .b-fv .e-chatchCopy {
    bottom: 5%;
  }
}


/* -------------------------------------------------------------

 MENU nav

------------------------------------------------------------- */
.b-MENU,
.b-slideIn {
  position: fixed;
  z-index: 100;
}

/* MENU --------------------------------------*/
.b-MENU {
  aspect-ratio: 1/1;
  transition: var(--transition);
}
.b-MENU .inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.b-MENU span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--brown);
  position: absolute;
  transform-origin: center center;
  transition: var(--transition);
}
.b-MENU span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .b-MENU {
    width: min(15vw,60px);
    right: min(5vw,24px);
    bottom: 24px;
    background: var(--yellow);
    border-radius: 50%;
  }
  .b-MENU .inner {
    width: 65%;
    margin: auto;
  }
  .b-MENU span:nth-of-type(1) {
    top: 35%;
  }
  .b-MENU span:nth-of-type(3) {
    bottom: 35%;
  }
}
@media screen and (min-width: 768px) {
  .b-MENU {
    width: 54px;
    right: 36px;
    top: 38px;
  }
  .b-MENU span:nth-of-type(1) {
    top: 26%;
  }
  .b-MENU span:nth-of-type(3) {
    bottom: 26%;
  }
}


/* nav --------------------------------------*/
.b-slideIn {
  background: url(../images/nav-bg.jpg) top left / cover;
  font-size: min(4.25vw,17px);
  font-weight: bold;
  line-height: 1;
  letter-spacing: .05em;
  height: 110dvh;
  right: 0;
  top: 0;
  transition: var(--transition);
}
body:not(.menuOpen) .b-slideIn {
  transform: translateX(100%);
}
.b-slideIn .inner {
  height: 100dvh;
  overflow-y: auto;
}
.b-slideIn .b-navlist li {
  margin-top: 1.5em;
  letter-spacing: .1em
}
.b-slideIn .b-logo {
  width: min(46.5vw,186px);
  margin-left: auto;
}
.b-slideIn .b-navlist a {
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  color: var(--yellow);
}
.b-slideIn .b-IAMAS {
  width: min(38.25vw,153px);
  margin-top: 110px;
}
@media screen and (max-width: 767px) {
  .b-slideIn {
    width: 100dvw;
  }
  .b-slideIn .inner {
    padding: 70px min(9.5vw,38px) 80px min(10.75vw,43px);
  }
  .b-slideIn .b-nav {
    margin-top: 90px;
  }
}
@media screen and (min-width: 768px) {
  .b-slideIn {
    width: 485px;
  }
  .b-slideIn .inner {
    padding: 143px 45px 50px 55px;
  }
  .b-slideIn .b-navlist a:hover {
    color: #fff;
  }
}

/* menuOpen --------------------------------------*/
body.menuOpen .b-MENU span {
  background: var(--yellow);
}
body.menuOpen .b-MENU span:nth-of-type(2) {
  opacity: 0;
}
body.menuOpen .b-MENU span:nth-of-type(1),
body.menuOpen .b-MENU span:nth-of-type(3) {
  top: 50%;
}
body.menuOpen .b-MENU span:nth-of-type(1) {
  transform: rotate(35deg) translateY(-50%);
}
body.menuOpen .b-MENU span:nth-of-type(3) {
  transform: rotate(-35deg) translateY(-50%);
}
@media screen and (max-width: 767px) {
  body.menuOpen .b-MENU  {
    background: none;
  }
}

/* -------------------------------------------------------------

 main common

------------------------------------------------------------- */
.b-main {
  background: #fff;
  margin-top: 100dvh;
  position: relative;
  z-index: 1;
}
.container {
  /*max-width: 923px;*/
}
@media screen and (max-width: 767px) {
  .container {
    width: 80.5vw;
    margin-right: 7.5vw;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .container {
    width: 70vw;
    margin: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1090px) {
  .container {
    margin-left: 80px;
    margin-right: 40px;
  }
}


/* section --------------*/
.b-section {
  position: relative;
}
.b-section .b-sideEn {
  display: block;
  font-family: var(--en);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .05em;
  color: var(--brown);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: absolute;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .b-section {
    padding-top: 95px;
    padding-bottom: 105px;
  }
  .b-section .b-sideEn {
    font-size: min(6.25vw,25px);
    top: 95px;
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  .b-section {
    padding-top: 145px;
    padding-bottom: 155px;
  }
  .b-section .b-sideEn {
    font-size: 27px;
    top: 145px;
    left: 10px;
  }
}

/* pageTop --------------------------------------*/
.e-pageTop {
  display: block;
  aspect-ratio: 47/36;
  width: min(11.75vw,47px);
  margin-left: auto;
  position: relative;
}
.e-pageTop img {
  position: relative;
  z-index: 1;
}
.e-pageTop::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--yellow);
  position: absolute;
  z-index: 0;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .e-pageTop {
    margin-top: 70px;
    margin-right: min(5vw,27px);
  }
}
@media screen and (min-width: 768px) {
  .e-pageTop {
    margin-right: 44px;
  }
  .e-pageTop:hover::before{
    background: var(--brown);
  }
}


/* secMds --------------*/
.b-secMds {
  line-height: 1.5;
  letter-spacing: .1em;
  color: var(--brown);
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.b-secMds span {
  display: inline-block;
  padding: 0 10px;
  position: relative;
}
.b-secMds span::before {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background: var(--yellow);
  position: absolute;
  z-index: -1;
  left: 0;
  top: 50%;
  transform: translateY(-.15em);
}
@media screen and (max-width: 767px) {
  .b-secMds {
    font-size: min(6vw,24px);
  }
}
@media screen and (min-width: 768px) {
  .b-secMds {
    font-size: 28px;
  }
}

/* btns --------------*/
.b-btns a,
.b-btns button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--brown);
  line-height: 1;
  font-weight: 700;
  border-radius: 200px;
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .b-btns a,
  .b-btns button {
    height: min(11vw,44px);
  }
}
@media screen and (min-width: 768px) {
  .b-btns a,
  .b-btns button {
    height: 46px;
  }
  .b-btns a:hover,
  .b-btns button:hover {
    background: var(--brown);
    color: var(--yellow);
  }
}

/* panelTxts --------------*/
.e-panelMds {
  padding: .95em .5em .9em 0;
  margin-bottom: .75em;
  font-size: min(5vw,20px);
  line-height: 1.36;
  font-weight: 700;
  color: var(--brown);
  background: url(../images/line-dot.png) bottom left repeat-x;
}

.e-panelMds span {
  display: inline-block;
  font-size: .7em;
}

/* organizer subMds */

.b-panelTxts .e-organizer,
.b-panelTxts .e-subMds {
  color: var(--brown);
  font-weight: 700;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .b-panelTxts .e-organizer,
  .b-panelTxts .e-subMds {
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 768px) {
  .b-panelTxts .e-organizer,
  .b-panelTxts .e-subMds {
    margin-bottom: 10px;
  }
}

.b-panelTxts a {
  color: var(--brown);
  text-decoration: underline;
}
.b-panelTxts .e-discription {
  text-align: justify;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .b-panelTxts a:hover {
    text-decoration: none;
  }
}

/* information */
.b-panelTxts .b-information .e-item {
  display: flex;
}
.b-panelTxts .b-information .e-item dt {
  color: var(--brown);
  letter-spacing: .25em;
  flex-shrink: 0;
  margin-right: .5em;
}
.b-panelTxts .b-information .e-item dt span {
  display: inline-block;
  padding-left: 10px;
  padding-right: calc( 10px - .25em);
  position: relative;
  z-index: 1;
}
.b-panelTxts .b-information .e-item dt span::before {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background: var(--yellow);
  position: absolute;
  z-index: -1;
  left: 0;
  top: 50%;
  transform: translateY(-.175em);
}
@media screen and (max-width: 767px) {
  .b-panelTxts .b-information {
    margin-top: 8px;
  }
}
@media screen and (min-width: 768px) {
  .b-panelTxts .b-information {
    margin-top: 20px;
  }
}
/* guestProfile */

.b-guestProfile .e-guestMds {
  color: var(--brown);
  letter-spacing: .25em;
  flex-shrink: 0;
  margin-right: .5em;
}
.b-guestProfile .e-guestMds span {
  display: inline-block;
  padding-left: 10px;
  padding-right: calc( 10px - .25em);
  position: relative;
  z-index: 1;
}
.b-guestProfile .e-guestMds span::before {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background: var(--yellow);
  position: absolute;
  z-index: -1;
  left: 0;
  top: 50%;
  transform: translateY(-.175em);
}
.b-guestProfile .e-img {
  text-align: center;
  max-width: 327px;
  margin: 25px auto 40px;
}
@media screen and (max-width: 767px) {
  .b-guestProfile {
    padding-top: 44px;
  }
}
@media screen and (min-width: 768px) {
  .b-guestProfile {
    padding-top: 44px;
  }
  .b-guestProfile .e-img {
    
  }
}

/* -------------------------------------------------------------

 about

------------------------------------------------------------- */
.sec-about {
  overflow: hidden;
}
.sec-about .b-block,
.sec-about .b-detail  {
  padding-left: var(--padL);
}
.sec-about .b-detail .b-item dt {
  color: var(--brown);
  letter-spacing: .25em;
}
.sec-about .b-detail .b-item dt span {
  display: inline-block;
  padding-left: 10px;
  padding-right: calc( 10px - .25em);
  position: relative;
}
.sec-about .b-detail .b-item dt span::before {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background: var(--yellow);
  position: absolute;
  z-index: -1;
  left: 0;
  top: 50%;
  transform: translateY(-.175em);
}
.sec-about .b-block p {
  text-align: justify;
}
.sec-about .b-block p+p {
  margin-top: 2em;
}
.sec-about .b-block p:first-child {
  position: relative;
}
.sec-about .b-block p:first-child::before {
  content: "";
  width: 200dvw;
  height: 150dvw;
  background: var(--yellow);
  position: absolute;
  z-index: -2;
  left: -100dvw;
  bottom: -1em;
}
.sec-about .b-secMds span::before {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .sec-about .b-block .e-img {
    width: calc(100% + 7.5vw);
    margin-top: 80px;
    margin-bottom: 65;
  }
}
@media screen and (min-width: 768px) {
  .sec-about .b-block .b-flex {
    display: flex;
  }
  .sec-about .b-block .e-img {
    width: 558px;
    min-width: 558px;
    margin-right: -178px;
    margin-left: 33px;
    margin-top: -30px;
  }
  .sec-about .b-slider .e-item {
    width: 533px;
  }
}
.sec-about .b-detail {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .sec-about .b-content {
    margin-bottom: 70px;
  }
  .sec-about .b-content .b-item {
    margin-top: 40px;
  }
  .sec-about .b-content .b-item dd {
    letter-spacing: .05em
  }
}
@media screen and (min-width: 768px) {
  .sec-about .b-content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 100px;
  }
  .sec-about .b-content .b-date {
    width: 390px;
    min-width: 390px;
  }
  .sec-about .b-content .b-item {
    margin-top: 30px;
  }
}


/* -------------------------------------------------------------

 timeTable 
 .sec-timeTable

------------------------------------------------------------- */

.sec-timeTable {
  overflow: hidden;
}
.sec-timeTable .container,
.sec-timeTable .b-timeTable,
.sec-timeTable .b-exhibitionList,
.sec-timeTable .b-sessionList {
  position: relative;
  z-index: 3;
}

.b-tableMds {
  font-size: min(6vw,24px);
  line-height: 1;
  color: var(--brown);
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.b-tableMds.m-day {
  font-family: var(--en);
  font-weight: 600;
}
.b-tableMds span {
  display: inline-block;
  margin-bottom: 35px;
  padding: 0 10px;
  position: relative;
}
.b-tableMds.m-day span {
  margin-bottom: 20px;
}
.b-tableMds span::before {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background: #fff;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 50%;
  transform: translateY(-.15em);
}

.b-timeTableContent {
  display: flex;
  container-type: inline-size;
  filter: var(--shadow);
}
.b-timeTableContent .b-times {
  width: calc(57/923 * 100cqw);
  min-width: 57px;
  filter: drop-shadow(2px 2px 5px rgb(102 102 102 / .5));
}
.b-timeTableContent .b-schedule {
  width: calc( 100cqw - 57/923 * 100cqw );
  overflow-x: auto;
}
.b-timeTableContent .b-schedule .inner {
  width: calc(866/923 * 100cqw);
  min-width: 866px;
}
.sec-timeTable .b-exhibitionList > img {
  filter: var(--shadow);
}
.sec-timeTable .b-sessionList .b-item {
  display: flex;
  width: 100%;
  filter: var(--shadow);
}

.sec-timeTable .b-session .b-tableMds:not(.m-day) {
  letter-spacing: .1em;
}
.sec-timeTable .b-sessionList .b-item dt {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--en);
  font-weight: 500;
  background: var(--yellow);
  color: var(--brown);
}
.sec-timeTable .b-sessionList .b-item dd {
  display: flex;
  align-items: center;
  justify-content: left;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .sec-timeTable {
    background: url(../images/timetable-bg-sp.jpg) top center / cover;
  }
  .b-timeTableContent {
    width: calc( 100% + 7.5vw);
  }
  .b-timeTableContent {
    margin-bottom: 45px;
  }
  .sec-timeTable .b-exhibitionList:nth-child(1) {
    margin-bottom: 50px;
  }
  .sec-timeTable .b-exhibitionList:nth-child(2) {
    margin-bottom: 10px;
  }
  .sec-timeTable .b-session {
    margin-top: 50px;
  }
  .sec-timeTable .b-session .b-tableMds:not(.m-day) span {
    margin-bottom: 10px;
  }
  .sec-timeTable .b-sessionList:nth-child(1) {
    margin-bottom: 40px;
  }
  .sec-timeTable .b-sessionList .b-item {
    font-size: min(3vw,12px);
    margin-top: 3px;
  }
  .sec-timeTable .b-sessionList .b-item dt {
    width: 25%;
  }
  .sec-timeTable .b-sessionList .b-item dd {
    width: 75%;
    line-height: 1.75;
    padding: .7em .75em .5em .75em;
  }
  .b-timeTableContent .b-times {
    min-width: 52px;
  }
}
@media screen and (min-width: 768px) {
  .sec-timeTable {
    background: url(../images/timetable-bg-pc.jpg) top center / cover;
  }
  .sec-timeTable .b-timeTable+.b-timeTable {
    margin-top: 75px;
  }
  .sec-timeTable .b-exhibition,
  .sec-timeTable .b-session {
    margin-top: 80px;
  }
  .sec-timeTable .b-exhibition .b-flex,
  .sec-timeTable .b-session .b-flex {
    display: flex;
    justify-content: space-between;
  }
  .sec-timeTable .b-exhibitionList,
  .sec-timeTable .b-sessionList {
    width: calc( (100% - 45px) / 2 );
  }
  .sec-timeTable .b-sessionList {
  }
  .sec-timeTable .b-sessionList .b-item {
    margin-top: 6px;
  }
  .sec-timeTable .b-sessionList .b-item dt {
    width: 120px;
    font-size: 15px;
  }
  .sec-timeTable .b-sessionList .b-item dd {
    width: calc(100% - 120px);
    font-size: 13px;
    line-height: 2.15;
    padding: 1.2em 1.3em 1em 1.3em;
  }
}
/* object --------------*/
.sec-timeTable .e-obj {
  position: absolute;
  z-index: -5;
  transform-origin: center center;
}
@media screen and (max-width: 767px) {
  .sec-timeTable .e-obj.m-01 {
    width: 34vw;
    top: -100px;
    right: 3vw;
  }
  .sec-timeTable .e-obj.m-01.moveOn {
    animation: .7s infinite m02P-01,.8s forwards steps(3) m02S-02;
  }
  .sec-timeTable .e-obj.m-02 {
    width: 17.5vw;
    top: 10.5vw;
    right: -6.5vw;
  }
  .sec-timeTable .e-obj.m-03 {
    width: 19vw;
    top: 30%;
    left: -20vw;
  }
  .sec-timeTable .e-obj.m-04 {
    width: 50.75vw;
    bottom: -28vw;
    right: 0;
  }
  .sec-timeTable .e-obj.m-04.moveOn {
    animation: .8s forwards m04S-01 cubic-bezier(0.42, 0, 0.58, 1.0);
  }
  .sec-timeTable .e-obj.m-05 {
    width: 26vw;
    top: 46%;
    left: -17vw;
  }
  .sec-timeTable .e-obj.m-06 {
    width: 33.75vw;
    bottom: -23vw;
    right: 2vw;
  }
  .sec-timeTable .e-obj.m-06.moveOn {
    animation: .8s forwards m06S-01 cubic-bezier(0.42, 0, 0.58, 1.0);
  }
  .sec-timeTable .e-obj.m-07 {
    width: 20.25vw;
    top: 40%;
    left: -17vw;
  }
  .sec-timeTable .e-obj.m-08 {
    width: 44vw;
    bottom: -28vw;
    left: -16vw;
    animation: 1.8s infinite m07P-01 cubic-bezier(0.42, 0, 0.58, 1.0);
  }
  .sec-timeTable .e-obj.m-09 {
    width: 59.25vw;
    right: -9vw;
    bottom: -138px;
    animation: 1s infinite m10P-01;
  }
  .sec-timeTable .e-obj.m-10 {
    width: 38.5vw;
    bottom: -24vw;
    right: -11vw;
  }
  .sec-timeTable .e-obj.m-11 {
    width: 64.75vw;
    bottom: -183px;
    left: -17vw;
    animation: 8s infinite m11S-01 cubic-bezier(0.42, 0, 0.58, 1.0);
  }
  .sec-timeTable .e-obj.m-12 {
    width: 26vw;
    top: 64.5%;
    left: -16.5vw;
  }
}
@media screen and (min-width: 768px) {
  .sec-timeTable .e-obj.m-01 {
    width: 173px;
    bottom: -100px;
    right: 125px;
  }
  .sec-timeTable .e-obj.m-02 {
    width: 230px;
    top: -130px;
    left: 60%;
    transform: rotate(-5deg);
  }
  .sec-timeTable .e-obj.m-02.moveOn {
    animation: .7s infinite m02P-01,.8s forwards steps(3) m02P-02;
  }
  .sec-timeTable .e-obj.m-03 {
    width: 220px;
    top: 140px;
    left: calc(100% + 50px);
    
  }
  .sec-timeTable .e-obj.m-03.moveOn {
    animation: .8s forwards m03P-01 cubic-bezier(0.42, 0, 0.58, 1.0);
    transition-delay: 2s;
  }
  .sec-timeTable .e-obj.m-04 {
    width: 330px;
    bottom: -40px;
    left: -189px;
    transform: rotate(15deg);
    
  }
  .sec-timeTable .e-obj.m-04.moveOn {
    animation: .8s forwards m04P-01 cubic-bezier(0.42, 0, 0.58, 1.0);
  }
  .sec-timeTable .e-obj.m-05 {
    width: 128px;
    left: -205px;
    top: -30px;
  }
  .sec-timeTable .e-obj.m-06 {
    width: 240px;
    right: -123px;
    bottom: -143px;
    transform-origin: left top;
    animation: 7s infinite m06P-01 cubic-bezier(0.42, 0, 0.58, 1.0);
  }
  .sec-timeTable .e-obj.m-07 {
    width: 246px;
    top: 20.8%;
    left: -170px;
    transform-origin: center bottom;
    animation: 1.8s infinite m07P-01 cubic-bezier(0.42, 0, 0.58, 1.0);
  }
  .sec-timeTable .e-obj.m-08 {
    width: 116px;
    top: 35%;
    right: -215px;
  }
  .sec-timeTable .e-obj.m-09 {
    width: 259px;
    bottom: -53px;
    right: -170px;
  }
  .sec-timeTable .e-obj.m-10 {
    width: 395px;
    top: -98px;
    right: -80px;
    animation: 1s infinite m10P-01;
  }
  .sec-timeTable .e-obj.m-11 {
    width: 182px;
    left: -160px;
    top: 245px;
  }
  .sec-timeTable .e-obj.m-12 {
    width: 423px;
    right: -178px;
    bottom: -217px;
    animation: 8s infinite m12P-01 cubic-bezier(0.42, 0, 0.58, 1.0);
  }
}

@keyframes m02P-01 {
    0% {
      transform: rotate(0deg);
    }
    10% {
      transform: rotate(3deg);
    }
    20% {
      transform: rotate(-3deg);
    }
    30% {
      transform: rotate(5deg);
    }
    40% {
      transform: rotate(-3deg);
    }
    50% {
      transform: rotate(3deg);
    }
    70% {
      transform: rotate(5deg);
    }
    80% {
      transform: rotate(-3deg);
    }
    90% {
      transform: rotate(3deg);
    }
    100% {
      transform: rotate(0deg);
    }
}
@keyframes m02P-02 {
  0% {
    top: -130px;
    left: 60%;
  }
  100% {
    top: -75px;
    left: 50%;
  }
}
@keyframes m02S-02 {
  0% {
    top: -150px;
    left: 60%;
  }
  100% {
    top: -100px;
    left: 50%;
  }
}

@keyframes m03P-01 {
    0% {
      top: 140px;
      left: calc(100% + 50px);
    }
    100% {
      top: 140px;
      left: calc(100% + 120px);
    }
}

@keyframes m04P-01 {
    0% {
      bottom: 30px;
      left: 15px;
      transform: rotate(15deg);
    }
    100% {
      bottom: -40px;
      left: -189px;
      transform: rotate(0);
    }
}
@keyframes m04S-01 {
    0% {
      bottom: 18vw;
      right: -20vw;
      transform: rotate(20deg);
    }
    100% {
    bottom: -28vw;
    right: 0;
    transform: rotate(0);
    }
}
@keyframes m06P-01 {
  0% {
    right: -123px;
    bottom: -143px;
  }
  50% {
    right: -233px;
    bottom: -103px;
  }
  100% {
    right: -123px;
    bottom: -143px;
  }
}
@keyframes m06S-01 {
    0% {
      bottom: -23vw;
      right: 2vw;
    }
    100% {
      bottom: -23vw;
      right: -15vw;
    }
}
@keyframes m07P-01 {
  0% {
    transform: rotate(0deg)
  }
  50% {
    transform: rotate(-10deg)
  }
  100% {
    transform: rotate(0deg)
  }
}
@keyframes m10P-01 {
    0% {
      transform: rotate(-2deg);
    }
    3% {
      transform: rotate(2deg);
    }
    6% {
      transform: rotate(-2deg);
    }
    9% {
      transform: rotate(2deg);
    }
    12% {
      transform: rotate(-2deg);
    }
    100% {
      transform: rotate(-2deg);
    }
}
@keyframes m10S-01 {
    0% {
      transform: rotate(-2deg);
    }
    3% {
      transform: rotate(-4deg);
    }
    6% {
      transform: rotate(-2deg);
    }
    9% {
      transform: rotate(-4deg);
    }
    12% {
      transform: rotate(-2deg);
    }
    100% {
      transform: rotate(-2deg);
    }
}
@keyframes m12P-01 {
  0% {
    right: -178px;
    bottom: -217px;
    transform: rotate(0);
  }
  50% {
    right: -298px;
    bottom: -100px;
    transform: rotate(-10deg);
  }
  100% {
    right: -178px;
    bottom: -217px;
    transform: rotate(0);
  }
}
@keyframes m11S-01 {
  0% {
    bottom: -183px;
    left: -17vw;
    transform: rotate(0);
  }
  50% {
    bottom: -153px;
    left: -30vw;
    transform: rotate(-10deg);
  }
  100% {
    bottom: -183px;
    left: -17vw;
    transform: rotate(0);
  }
}


/* -------------------------------------------------------------

 guide
 .sec-guide

------------------------------------------------------------- */
.sec-guide .b-content {
  color: var(--brown);
}
.sec-guide .b-map {
  /*max-width: 438px;*/
  margin: auto;
}
.sec-guide .b-content .e-caution {
  font-size: min(3.75vw,15px);
}
.sec-guide .b-map .b-btns a {
  display: flex;
  width: min(54.5vw,218px);
  margin: auto;
}
.sec-guide .b-map .b-btns a::before {
  content: "";
  display: block;
  aspect-ratio: 16/19;
  width: 16px;
  background: url(../images/icon-pdf.svg) center center / contain no-repeat;
  margin-right: 15px;
}

@media screen and (max-width: 767px) {
  .sec-guide .b-map .b-btns {
    margin: 32px auto;
  }
}
@media screen and (min-width: 768px) {
  .sec-guide .b-content {
    text-align: center;
  }
  .sec-guide .b-map {
    width: 47.45%;
    min-width: 438px;
  }
  .sec-guide .b-map .b-btns {
    margin: 44px auto;
  }
  .sec-guide .b-map .b-btns a:hover::before {
    background: url(../images/icon-pdf-ov.svg) center center / contain no-repeat;
  }
}

/* -------------------------------------------------------------

 consult
 .sec-consult

------------------------------------------------------------- */

@media screen and (max-width: 767px) {
  .sec-consult {
    background: url(../images/consult-bg-sp.jpg) top center / cover;
  }
  .sec-consult .b-item+.b-item {
    margin-top: 45px;
  }
}
@media screen and (min-width: 768px) {
  .sec-consult {
    background: url(../images/consult-bg-pc.jpg) top center / cover;
  }
  .sec-consult .b-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .sec-consult .b-flex .b-item {
    width: calc( (100% - 70px) / 2 );
  }
}


/* -------------------------------------------------------------

 exhibitions
 .sec-exhibitions

------------------------------------------------------------- */
.sec-exhibitions .b-exhibitionList:not(.active) {
  display: none;
}
/* tabs */
.b-exhibitionsTabs {
  position: relative;
}
.b-exhibitionsTabs::after {
  content: "";
  display: block;
  height: 14px;
  width: 100%;
  border-left: 1px solid var(--brown);
  border-right: 1px solid var(--brown);
  position: absolute;
}
.b-exhibitionsTabs:first-of-type {
  margin-bottom: 80px;
}
.b-exhibitionsTabs:first-of-type::after {
  border-top: 1px solid var(--brown);
  bottom: 0;
  transform: translateY(100%);
}
.b-exhibitionsTabs:last-of-type::after {
  border-bottom: 1px solid var(--brown);
  top: 0;
  transform: translateY(-100%);
}
.b-exhibitionsTabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-left: 1px solid var(--brown);
  border-right: 1px solid var(--brown);
  font-size: min(4.25vw,17px);
  font-weight: 700;
  color: var(--brown);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.b-exhibitionsTabs .b-item:nth-child(1) button {
  letter-spacing: .35em;
}
.b-exhibitionsTabs .b-item button span {
  letter-spacing: .1em;
}
.b-exhibitionsTabs button.active {
  background: var(--yellow);
  border-color: #fff;
  cursor: default;
}
@media screen and (max-width: 767px) {
  .b-exhibitionsTabs li {
    padding: 0 1em;
    height: min(11.5vw,46px);
  }
  .b-exhibitionsTabs:first-of-type li {
    margin-top: 7px;
  }
  .b-exhibitionsTabs:last-of-type li {
    margin-bottom: 7px;
  }
  .b-exhibitionsTabs button:not(.active) {
    border-top: 1px solid var(--brown);
    border-bottom: 1px solid var(--brown);
  }
  .b-exhibitionsTabs:first-of-type li:last-of-type button {
    border-bottom: 0 none;
  }
  .b-exhibitionsTabs:last-of-type li:first-of-type button {
    border-top: 0 none;
  }
}
@media screen and (min-width: 768px) {
  .b-exhibitionsTabs {
    display: flex;
    justify-content: space-around;
  }
  .b-exhibitionsTabs li {
    width: calc( 100% / 3);
    height: 46px;
    padding: 0 10px;
  }
  .b-exhibitionsTabs:first-of-type button:not(.active) {
    border-top: 1px solid var(--brown);
  }
  .b-exhibitionsTabs:last-of-type button:not(.active) {
    border-bottom: 1px solid var(--brown);
  }
  .b-exhibitionsTabs button:not(.active):hover {
    background: var(--brown);
    color: var(--yellow);
  }
}

/* list */
.sec-exhibitions .b-exhibitionsLists:not(.active) {
  display: none;
}
.sec-exhibitions .b-exhibitionsLists .b-item.m-addGuest {
  border: 1px solid #666;
  padding-bottom: 33px;
}
@media screen and (max-width: 767px) {
  .sec-exhibitions .b-exhibitionsLists .b-item {
    margin-bottom: 60px;
  }
  .sec-exhibitions .b-exhibitionsLists .b-item.m-addGuest .b-left .b-panelTxts {
    padding-left: 20px;
    padding-right: 20px;
  }
  .b-guestProfile {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 768px) {
  .sec-exhibitions .b-exhibitionsLists {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .sec-exhibitions .b-exhibitionsLists .b-item {
    width: calc( (100% - 80px) / 2 );
    margin-bottom: 80px;
  }
  .sec-exhibitions .b-exhibitionsLists .b-item:nth-child(2n) {
    position: relative;
  }
  .sec-exhibitions .b-exhibitionsLists .b-item:nth-child(2n):not(.m-addGuest)::before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #ccc;
    position: absolute;
    left: -40px;
    top: 0;
  }
  .sec-exhibitions .b-exhibitionsLists .b-item.m-addGuest {
    width: 100%;
    display: flex;
    justify-content: space-between;
    
  }
  .sec-exhibitions .b-exhibitionsLists .b-item.m-addGuest .b-left,
  .b-guestProfile {
    width: calc( (100% - 55px) / 2 );
  }
  .sec-exhibitions .b-exhibitionsLists .b-item.m-addGuest .b-left .b-panelTxts {
    padding-left: 33px;
  }
  .b-guestProfile {
    padding-right: 33px;
  }
}

/* -------------------------------------------------------------

 question
 .sec-question

------------------------------------------------------------- */
.sec-question .b-content .b-btns {
  margin-top: 35px;
}
.sec-question .b-content .b-btns a {
  width: min(54.5vw,218px);
}
@media screen and (max-width: 767px) {
  .sec-question {
    background: url(../images/question-bg-sp.jpg) top center / cover;
  }
  .sec-question .b-content {
    margin-left: auto;
    width: 75%;
    text-align: justify;
  }
  .sec-question .b-content .b-btns a {
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .sec-question {
    background: url(../images/question-bg-pc.jpg) top center / cover;
  }
}


/* -------------------------------------------------------------

 iamas
 .sec-iamas

------------------------------------------------------------- */
.sec-iamas .b-content {
  display: flex;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .sec-iamas .b-secMds {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .sec-iamas .b-btns a {
    margin-top: 35px;
    width: min(73%,235px);
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .sec-iamas .b-secMds span+span {
    padding-left: 0;
    margin-left: -10px;
  }
  .sec-iamas .b-content,
  .sec-iamas .b-btns {
    margin-left: 125px;
  }
  .sec-iamas .e-img {
    width: 553px;
    min-width: 553px;
    margin-left: 50px;
    margin-right: -166px;
  }
  .sec-iamas .b-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .sec-iamas .b-btns a {
    width: max(28%,235px);
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1090px) {
  .sec-iamas .b-content,
  .sec-iamas .b-btns {
    margin-left: 8vw;
  }
  .sec-iamas .e-img {
    width: 50%;
    min-width: 55%;
    margin-right: -40px;
  }
}
@media screen and  (max-width: 900px) {
  .sec-iamas .b-content {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .sec-iamas .e-img {
    width: 100%;
    margin-left: 0;
    margin-bottom: 50px;
  }
}


/* -------------------------------------------------------------

 access
 .sec-access

------------------------------------------------------------- */
.sec-access .b-content .e-panelMds span {
  font-size: inherit;
}
.sec-access .b-item.m-googleMap iframe {
  aspect-ratio: 798/450;
  width: 100%;
}
.b-accessFlowItem {
  margin-top: 25px;
}
.b-accessFlowItem dt {
  font-weight: 700;
}
.b-accessFlowItem a,
.b-accessFlowItem .e-caution {
  color: var(--brown);
}
.b-accessFlowItem a {
  text-decoration: underline;
}
.b-accessFlowItem .e-caution {
  margin-top: .5em;
}
@media screen and (max-width: 767px) {
  .sec-access {
    background: url(../images/access-bg-sp.jpg) top center / cover;
    padding-bottom: 42px;
  }
  .sec-access .b-item+.b-item {
    margin-top: 45px;
  }
  .sec-access .b-item.m-locationmap {
    width: 100dvw;
    margin-left: -12dvw;
  }
  .sec-access .b-item.m-googleMap {
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .sec-access {
    background: url(../images/access-bg-pc.jpg) top left 74px / cover no-repeat;
  }
  .sec-access .b-secMds {
    margin-bottom: 60px;
  }
  .sec-access .b-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 796px;
    max-width: 80%;
    transform: translateX(100px);
  }
  .sec-access .b-content .b-item {
    width: calc( (100% - 68px) / 2 );
  }
  .sec-access .b-content .b-item.m-locationmap {
    width: 100%;
    margin: 70px 0;
  }
  .b-accessFlowItem:first-of-type {
    margin-top: 75px;
  }
  .b-accessFlowItem a:hover {
    text-decoration: none;
  }
}
.sec-access .b-content .b-item.m-googleMap {
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1210px) {
  .sec-access .container {
    width: 100%;
    max-width: unset;
    margin-left: 0;
    margin-right: 0;
    padding: 0 50px 0 125px;
  }
  .sec-access .b-secMds {
    width: 100%;
  }
  .sec-access .b-content {
    width: 100%;
    max-width: unset;
    padding-left: 40px;
    padding-right: 40px;
    transform: translateX(0);
  }
  .sec-access .b-content .b-item {
    width: calc( (100% - 40px) / 2 );
  }
}


/* -------------------------------------------------------------

 footer
 .b-footer

------------------------------------------------------------- */
.b-footer {
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.b-footer .container {
  width: unset;
  max-width: unset;
  position: relative;
  z-index: 5;
}
.b-footer .container .e-obj {
  position: absolute;
  z-index: -1;
}
.b-footer .b-fotterInfo .b-email {
  display: inline-block;
  margin-bottom: 2.21em;
}
.b-footer .b-fotterInfo .e-email {
  display: inline-block;
}
.b-footer .b-fotterInfo a {
  display: block;
  text-decoration: underline;
}
.b-footer .b-fotterInfo .e-email::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  background: #fff;
  margin: 0 .5em 0 .35em;
  transform: translateY(.2em);
}
.b-footer .e-copyright {
  display: block;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .b-footer {
    background: url(../images/footer-bg-sp.jpg) top right / cover;
    padding: 45px 0 15px;
  }
  .b-footer .container {
    margin: 0 30px;
  }
  .b-footer .b-fotterInfo {
    width: min(80.5vw,320px);
    margin: auto;
  }
  .b-footer .b-fotterInfo dd {
    font-size: min(3.75vw,15px);
  }
  .b-footer .b-logo {
    width: min(47.5vw,190px);
    margin: 258px 0 48px auto;
  }
  .b-footer .e-iamas {
    width: min(80.5vw,320px);
    margin: 0 auto 30px;
  }
  .b-footer .e-copyright {
    font-size: min(2.5vw,10px);
  }
}
@media screen and (min-width: 768px) {
  .b-footer {
    background: url(../images/footer-bg-pc.jpg) top center / cover;
    padding: 144px 0 40px;
  }
  .b-footer .container {
    position: relative;
    margin: 0 90px;
  }
  .b-footer .b-logo {
    width: 286px;
    position: absolute;
    right: 0;
    top: 0;
  }
  .b-footer .b-fotterInfo a:hover {
    text-decoration: none;
  }
  .b-footer .e-iamas {
    width: 371px;
    margin-bottom: 50px;
  }
  .b-footer .b-fotterInfo .b-email {
    padding-left: 1em;
  }
  .b-footer .e-copyright {
    font-size: 12px;
    margin-top: 110px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1090px ) {
  .b-footer .container {
    margin: 0 40px;
  }
  .b-footer .b-logo {
    position: relative;
    margin-left: auto;
    margin-top: 100px;
  }
}
.b-footer .e-obj.f-01 {
  animation: 1s infinite m10P-01;
}
.b-footer .e-obj.f-02 {
  animation: 1s infinite m10S-01;
  animation-delay: .75s;
  animation-direction: reverse;
}
@media screen and (max-width: 767px) {
  .b-footer .e-obj.f-01 {
    width: 46vw;
    bottom: 265px;
    left: -12vw;
  }
  .b-footer .e-obj.f-02 {
    width: 42vw;
    bottom: 165px;
    left: 11.5vw;
  }
  
}
@media screen and (min-width: 768px) {
  .b-footer .e-obj.f-01 {
    width: 265px;
    top: -85px;
    left: 435px;
    
  }
  .b-footer .e-obj.f-02 {
    width: 240px;
    top: 90px;
    left: 600px;
  }
  
}