@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@200;300;400;500;700&display=swap");
html {
  font-size: 10px;
  margin: auto;
}
html.menuon {
  overscroll-behavior: none;
}

@media print, screen and (max-width: 1100px) {
  html {
    font-size: 0.9090909091vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 2.5641025641vw;
  }
}
body {
  background: #FBE0E6;
  margin: auto;
  padding: 0;
  font-family: "Zen Maru Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #222;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
body.index {
  background: #E95383;
}
body.menuon {
  overscroll-behavior: none;
  overflow: hidden;
  height: 100vh;
}

p, li, dt, dd, h3 {
  font-size: 1.7rem;
  line-height: 1.5;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  p, li, dt, dd, h3 {
    letter-spacing: 0em;
    line-height: 1.75;
  }
}

a {
  text-decoration: none;
}

ul, dl, dt, dd {
  padding-left: 0;
  margin: auto;
}

h3 {
  margin: auto;
}

figure {
  margin: 0;
}

strong {
  font-weight: inherit;
}

.en {
  font-family: "Poppins", sans-serif;
}

._ib {
  display: inline-block;
}

@media print, screen and (min-width: 768px) {
  ._sp:not(._pc) {
    display: none !important;
  }
}
@media only screen and (max-width: 757px) {
  ._pc:not(._sp) {
    display: none !important;
  }
}
.btn_regular {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 1rem;
  padding: 2rem;
  min-width: 28rem;
  background: #FDD23E;
  font-size: 1.8rem;
  color: #666464;
  font-weight: bold;
  transition: 0.3s;
  line-height: 1;
  gap: 0.5rem;
}
.btn_regular .small {
  font-size: 80%;
  display: block;
}
.btn_regular.blue {
  background: #0062B0;
  color: #fff;
}
.btn_regular:hover, .btn_regular.off {
  background: rgba(255, 255, 255, 0.75);
  color: #E95383;
}
@media (max-width: 767px) {
  .btn_regular {
    font-size: 1.6rem;
    padding: 1.5rem;
  }
}

/*--------------------------------------------------------------
header
--------------------------------------------------------------*/
#header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header nav {
  width: 100%;
  height: 100%;
}
#header nav ul {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header nav ul li + li {
  border-left: 1px solid #E95383;
}
#header nav ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  transition: color 0.3s ease;
}
#header nav ul li a:hover {
  color: #E95383;
}
@media (max-width: 767px) {
  #header {
    height: 0;
  }
  #header nav {
    transition: left 0s 0.5s, opacity 0.5s 0s;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
  }
  #header nav ul {
    width: 25rem;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #header nav ul li + li {
    border-left: none;
    border-top: 1px solid #E95383;
    width: 100%;
  }
  #header nav ul li a {
    width: 100%;
    padding: 1rem 2rem;
    transition: color 0.3s ease;
  }
  #header nav ul li a:hover {
    color: #E95383;
  }
  #header.menuon nav {
    transition: left 0s 0s, opacity 0.5s 0s;
    left: 0;
    opacity: 1;
  }
}

/*--------------------------------------------------------------
footer
--------------------------------------------------------------*/
footer {
  text-align: center;
  padding: 0 2rem 3rem;
}
footer p {
  font-size: 1.2rem;
  color: #fff;
  opacity: 0.7;
}
@media (max-width: 767px) {
  footer {
    text-align: center;
    padding: 0 2rem 3rem;
  }
  footer p {
    font-size: 1rem;
    color: #E95383;
  }
}

/*--------------------------------------------------------------
drawer
--------------------------------------------------------------*/
.menubutton {
  transition: 0.3s;
  z-index: 200;
  background: #fff;
  transition: 0.3s ease-out;
  width: 4rem;
  height: 4rem;
  position: fixed;
  top: 0rem;
  right: 0rem;
  cursor: pointer;
}
.menubutton span {
  transition: top 0.2s 0.2s ease-out, bottom 0.2s 0.2s ease-out, transform 0.2s 0s ease-out;
  display: block;
  position: absolute;
  width: 70%;
  height: 2px;
  background: #999;
  left: 15%;
  top: calc(50% - 0.8rem);
  transform-origin: center center;
  transition: top 0.6s 0.3s, transform 0.6s 0s, opacity 0s 0.5s;
}
.menubutton span:nth-child(2) {
  top: calc(50% - 1px);
}
.menubutton span:nth-child(3) {
  top: calc(50% + 0.8rem);
}
.menubutton.menuon span {
  transition: top 0.3s 0s, transform 0.3s 0.3s, opacity 0s 0.3s;
}
.menubutton.menuon span:first-child {
  transform: rotate(45deg);
  top: calc(50% - 1px);
}
.menubutton.menuon span:nth-child(2) {
  opacity: 0;
}
.menubutton.menuon span:nth-child(3) {
  transform: rotate(-45deg);
  top: calc(50% - 1px);
}

#header.menuon .menubutton span {
  transition: top 0.2s 0s ease-out, bottom 0.2s 0s ease-out, transform 0.2s 0.2s ease-out;
  transform: rotate(30deg);
  top: calc(50% - 0px);
}
#header.menuon .menubutton span:nth-child(2) {
  top: calc(50% + 0px);
  transform: rotate(-30deg);
}

/*--------------------------------------------------------------
main
--------------------------------------------------------------*/
h2.foot {
  background: #fff;
  display: flex;
  height: 6rem;
  border-radius: 50rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #E95383;
  font-size: 2.6rem;
  font-weight: bold;
}
h2.foot::before {
  display: inline-block;
  content: "";
  width: 4rem;
  height: 3.6rem;
  background: url(../images/icon_foot.png) center center/contain no-repeat;
  margin-right: 2rem;
}

main.index {
  width: 100rem;
  margin: auto;
  color: #fff;
  padding: 6rem 0 10rem;
  padding: 0rem 0 10rem;
}
@media (max-width: 767px) {
  main.index {
    width: auto;
    padding: 0rem 2.5rem 5rem;
  }
}
main.index section {
  margin-top: 80px;
}
main.index section .main {
  margin: 4rem 3rem 0;
}
@media (max-width: 767px) {
  main.index section .main {
    margin: 2rem 0 0;
  }
}
main.index #mv {
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: flex-start;
}
main.index #mv h1 {
  width: 45rem;
  padding-top: 5rem;
}
main.index #mv .intro {
  margin-top: 8rem;
  width: 48rem;
}
main.index #mv .detail {
  line-height: 1;
}
main.index #mv .detail .flag {
  text-align: left;
}
main.index #mv .detail .flag img {
  width: 20rem;
}
main.index #mv .detail .date {
  color: #FFF577;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.1;
}
main.index #mv .detail .date strong {
  font-weight: 500;
  font-size: 3.9rem;
}
main.index #mv .detail .time {
  color: #FFF577;
  font-size: 2.6rem;
  font-weight: 500;
}
main.index #mv .place {
  margin-top: 1rem;
  font-weight: 400;
}
main.index #mv .place dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.7rem 0;
}
main.index #mv .place dl dt {
  margin: 0;
  width: 5.5em;
  white-space: nowrap;
}
main.index #mv .place dl dt.place {
  padding-top: 0.3em;
}
main.index #mv .place dl dt.buy {
  width: 100%;
}
main.index #mv .place dl dd {
  margin: 0;
  width: calc(100% - 5.5em);
}
main.index #mv .place dl dd strong {
  font-size: 2.2rem;
}
main.index #mv .place dl dd.place {
  line-height: 1.4;
}
main.index #mv .place dl dd.buy {
  padding-left: 1em;
}
main.index #mv .place dl dd ul li {
  padding-left: 1em;
  line-height: 1.5;
}
main.index #mv .place dl dd ul li + li {
  margin-top: 0.2em;
}
main.index #mv .place dl dd ul li.mt {
  margin-top: 1em;
}
main.index #mv .place dl dd ul li::before {
  content: "・";
  width: 1em;
  display: inline-block;
  margin-left: -1em;
  text-align: left;
}
main.index #mv .place dl dd ul li .link {
  font-size: 75%;
}
main.index #mv .place dl dd ul li .note {
  margin-top: 0.4em;
  font-size: 85%;
}
main.index #mv .place dl dd ul li a:hover {
  text-decoration: underline;
}
main.index #mv .place .small {
  font-size: 85%;
}
main.index #mv .place .ticket {
  margin-top: 3rem;
}
main.index #mv .place .ticket a {
  display: inline-block;
  background: #FFF577;
  color: #E95383;
  padding: 1.3rem 3rem;
  transition: 0.3s ease;
  border: 1px solid #FFF577;
}
main.index #mv .place .ticket a:hover {
  background-color: #E95383;
  color: #FFF577;
}
main.index #mv .place figure {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  main.index #mv {
    display: flex;
    flex-direction: column;
    gap: 0rem;
    justify-content: center;
    align-items: flex-end;
    margin-top: 0;
  }
  main.index #mv .left {
    width: 100%;
  }
  main.index #mv h1 {
    width: auto;
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
  }
  main.index #mv .detail {
    justify-content: center;
    text-align: center;
  }
  main.index #mv .detail p {
    line-height: 1.5;
  }
  main.index #mv .detail .flag {
    margin-top: 1rem;
    text-align: center;
  }
  main.index #mv .detail .date {
    margin-top: -1rem;
    color: #FFF577;
    font-size: 3rem;
    font-weight: 500;
  }
  main.index #mv .detail .date strong {
    font-weight: 500;
    font-size: 3.6rem;
  }
  main.index #mv .detail .time {
    color: #FFF577;
    font-size: 2.3rem;
    font-weight: 500;
  }
  main.index #mv .place {
    margin-top: 1rem;
    font-weight: 400;
    text-align: left;
  }
  main.index #mv .place dl {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main.index #mv .place dl dt {
    margin: 0;
    width: 6em;
    text-align: left;
  }
  main.index #mv .place dl dt.place {
    padding-top: 0.1em;
  }
  main.index #mv .place dl dt.buy {
    width: 100%;
    text-align: left;
  }
  main.index #mv .place dl dd {
    text-align: left;
    margin: 0;
    width: calc(100% - 6em);
  }
  main.index #mv .place dl dd.place {
    line-height: 1.2;
  }
  main.index #mv .place dl dd.buy {
    width: 100%;
    padding-left: 0.5em;
  }
  main.index #mv .place .small {
    font-size: 85%;
  }
  main.index #mv .place figure {
    margin-top: 3rem;
  }
}
main.index #introduction {
  margin-top: 5rem;
  text-align: center;
}
main.index #introduction h2 {
  font-size: 3.2rem;
}
main.index #introduction p {
  font-size: 1.9rem;
  line-height: 1.9444444444;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  main.index #introduction {
    margin-top: 2.5rem;
  }
  main.index #introduction .intro {
    margin: 3rem 0 2rem;
  }
  main.index #introduction h2 {
    font-size: 2.1rem;
    letter-spacing: normal;
    margin: auto -2.5rem 0 -1.5rem;
    font-weight: 600;
  }
  main.index #introduction p {
    font-size: 1.4rem;
    line-height: 1.9444444444;
    margin-top: 1.5rem;
  }
}
main.index #sponsor {
  max-width: 60rem;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 1.5rem 2rem;
  margin-top: 5rem;
  font-size: 1.4rem;
  line-height: 2;
}
@media (max-width: 767px) {
  main.index #sponsor {
    line-height: 1.8;
    padding: 1.1rem 0.5rem;
    font-size: 1.1rem;
  }
}
main.index #event .eventlist {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}
main.index #event .eventlist li {
  width: calc(33% - 0.8rem);
  border: 1px solid #fff;
  padding: 3rem 2rem 2rem;
}
main.index #event .eventlist li figure {
  display: flex;
  margin: auto;
  width: 70%;
  aspect-ratio: 100/70;
  position: relative;
}
main.index #event .eventlist li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main.index #event .eventlist li figure figcaption {
  position: absolute;
  font-size: 1rem;
  line-height: 1.4;
  bottom: 0.2rem;
  right: 0.4rem;
  text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.7);
}
main.index #event .eventlist li h3 {
  margin: 1.5rem -1rem 0.5rem;
  font-size: 2.1rem;
  font-weight: bold;
  text-align: center;
}
main.index #event .eventlist li p {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: normal;
}
main.index #event .image {
  text-align: center;
  margin-top: 5rem;
}
main.index #event .image img {
  width: 40rem;
  max-width: 70%;
}
@media (max-width: 767px) {
  main.index #event .eventlist {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }
  main.index #event .eventlist li {
    width: 100%;
    border: none;
    border-bottom: 1px solid #fff;
    padding: 2rem 2rem 2rem;
  }
  main.index #event .eventlist li figure {
    display: flex;
    margin: auto;
    width: 70%;
    aspect-ratio: 100/70;
    position: relative;
  }
  main.index #event .eventlist li figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main.index #event .eventlist li figure figcaption {
    position: absolute;
    font-size: 1rem;
    line-height: 1.4;
    bottom: 0.2rem;
    right: 0.4rem;
    text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.7);
  }
  main.index #event .eventlist li h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 2.1rem;
    font-weight: bold;
    text-align: center;
  }
  main.index #event .eventlist li p {
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: normal;
  }
  main.index #event .image {
    text-align: center;
    margin-top: 5rem;
  }
  main.index #event .image img {
    width: 40rem;
  }
}
main.index #booth .flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8rem;
}
main.index #booth .list .boothlist {
  margin-top: 1.5rem;
}
main.index #booth .list .boothlist li {
  margin-top: 0.5rem;
}
main.index #booth .list .boothlist li a {
  display: flex;
  gap: 1rem;
}
main.index #booth .list .boothlist li a .num {
  padding-top: 0.3rem;
}
main.index #booth .list .boothlist li a .name {
  font-size: 2rem;
  line-height: 1.4;
}
main.index #booth .list .boothlist li a .name small {
  font-size: 75%;
}
main.index #booth .image {
  text-align: center;
  margin-top: 5rem;
}
main.index #booth .image img {
  width: 40rem;
}
@media (max-width: 767px) {
  main.index #booth .flex {
    flex-direction: column;
    gap: 3rem;
  }
  main.index #booth .btn_area {
    width: 100%;
    text-align: center;
  }
  main.index #booth .list .explanation {
    text-align: center;
  }
  main.index #booth .list .boothlist {
    margin-top: 1.5rem;
  }
  main.index #booth .list .boothlist li {
    margin-top: 0.5rem;
  }
  main.index #booth .list .boothlist li a {
    display: flex;
    gap: 1rem;
  }
  main.index #booth .list .boothlist li a .num {
    padding-top: 0.14rem;
  }
  main.index #booth .list .boothlist li a .name {
    font-size: 1.7rem;
  }
  main.index #booth .image {
    text-align: center;
    margin-top: 5rem;
  }
  main.index #booth .image img {
    width: 40rem;
    max-width: 70%;
  }
}
main.index #access .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
main.index #access .flex .txt {
  padding-bottom: 2rem;
  text-align: center;
}
main.index #access .flex .txt .location {
  letter-spacing: normal;
  font-size: 3.2rem;
}
main.index #access .flex .txt .location .small {
  font-size: 70%;
}
main.index #access .flex .txt .address {
  margin-top: 1rem;
  font-size: 2.4rem;
}
main.index #access .flex .txt .parking {
  font-size: 2rem;
  color: #FFF577;
}
main.index #access .flex figure {
  width: 40rem;
}
main.index #access .map {
  margin-top: 4rem;
  text-align: center;
}
main.index #access .map iframe {
  width: 100%;
  aspect-ratio: 460/200;
}
main.index #access .map .explanation {
  margin-top: 4rem;
}
main.index #access .map .btn_area {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  main.index #access .flex {
    flex-direction: column;
    gap: 5rem;
  }
  main.index #access .flex .txt {
    padding-bottom: 2rem;
    text-align: center;
  }
  main.index #access .flex .txt .location {
    letter-spacing: normal;
    font-size: 2rem;
  }
  main.index #access .flex .txt .address {
    margin-top: 1rem;
    font-size: 1.7rem;
  }
  main.index #access .flex .txt .parking {
    font-size: 1.7rem;
  }
  main.index #access .flex figure {
    display: none;
  }
  main.index #access .map {
    margin-top: 4rem;
    text-align: center;
  }
  main.index #access .map iframe {
    width: 100%;
    height: 24rem;
  }
  main.index #access .map .explanation {
    margin-top: 3rem;
    font-size: 1.4rem;
  }
  main.index #access .map .btn_area {
    margin-top: 2.5rem;
  }
}
main.index #attention .block {
  margin-top: 3rem;
}
main.index #attention .block h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
main.index #attention .block ul {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 200;
  padding-left: 1.4rem;
  text-indent: -1.4rem;
}
main.index #attention .block ul ul {
  margin-left: -1.4rem;
}
main.index #contact {
  text-align: center;
}
main.index #contact .name {
  font-weight: 200;
  font-size: 2.1em;
}
main.index #contact .email {
  margin-top: 0.5em;
  font-size: 2rem;
}
main.index #contact .tel {
  margin-top: 0.8em;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  main.index #contact .name {
    font-size: 1.7em;
  }
  main.index #contact .email {
    font-size: 1.6rem;
  }
  main.index #contact .tel {
    font-size: 1.5rem;
  }
}
main.index #banner {
  text-align: center;
}
main.index #banner .block {
  margin-top: 7rem;
}
main.index #banner .block ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
main.index #banner .block ul li {
  width: 46rem;
}
main.index #banner .block ul li a {
  transition: opacity 0.3s;
}
main.index #banner .block ul li a:hover {
  opacity: 0.8;
}
main.index #banner .block ul li a p {
  font-size: 1.4rem;
  font-weight: 300;
  opacity: 0.7;
}
main.index #banner .block.special ul {
  justify-content: center;
  align-items: center;
}
main.index #banner .heading {
  font-size: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  main.index #banner .block {
    margin-top: 4rem;
  }
  main.index #banner .block h2 {
    font-size: 1.8rem;
  }
  main.index #banner .block ul li {
    width: auto;
    text-align: center;
  }
  main.index #banner .block ul li a {
    transition: opacity 0.3s;
  }
  main.index #banner .block ul li a:hover {
    opacity: 0.8;
  }
  main.index #banner .block ul li a p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.7;
  }
  main.index #banner .block.special ul {
    justify-content: center;
    align-items: center;
  }
  main.index #banner .heading {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

main.booth {
  background: #FBE0E6;
  width: 100rem;
  margin: auto;
  color: #595757;
  padding: 12rem 0 10rem;
}
@media (max-width: 767px) {
  main.booth {
    width: auto;
    padding: 6rem 2.5rem 5rem;
  }
}
main.booth p + footer {
  background: #FBE0E6;
}
main.booth p + footer p {
  color: #E95383;
}
main.booth section#introduction .note {
  margin-top: 3rem;
  text-align: right;
  font-size: 1.4rem;
  letter-spacing: normal;
}
main.booth section#introduction ul.introlist {
  margin-top: 1rem;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
main.booth section#introduction ul.introlist li {
  background: #fff;
  width: calc(50% - 1.5rem);
  padding: 3rem 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem;
}
main.booth section#introduction ul.introlist li .lower {
  margin: auto 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
}
main.booth section#introduction ul.introlist li h3.name {
  margin: 0;
  color: #E95383;
  display: flex;
  font-size: 2.2rem;
  gap: 1.5rem;
  letter-spacing: normal;
  line-height: 1.2;
  padding-bottom: 0.5rem;
  position: relative;
}
main.booth section#introduction ul.introlist li h3.name small {
  font-size: 75%;
}
main.booth section#introduction ul.introlist li h3.name .num {
  position: absolute;
  top: -1.2em;
  left: -1.5em;
  font-size: 95%;
  padding-top: 0.02em;
  font-weight: 300;
  opacity: 0.8;
}
main.booth section#introduction ul.introlist li .item {
  font-size: 1.5rem;
  margin: 0.8em 0 0;
  opacity: 0.8;
  letter-spacing: normal;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: bold;
}
main.booth section#introduction ul.introlist li .item span.heading {
  display: inline-block;
  white-space: nowrap;
}
main.booth section#introduction ul.introlist li .main {
  margin-top: 1.5em;
  letter-spacing: normal;
}
main.booth section#introduction ul.introlist li .main p {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: normal;
}
main.booth section#introduction ul.introlist li .main p + br {
  display: none;
}
main.booth section#introduction ul.introlist li .main br + p {
  margin-top: 0.7em;
}
main.booth section#introduction ul.introlist li .main * + p {
  margin-top: 0.7em;
}
main.booth section#introduction ul.introlist li .main > br:last-child {
  display: none;
}
main.booth section#introduction ul.introlist li figure {
  display: block;
  position: relative;
  margin: 0 auto;
  text-align: center;
  width: 80%;
}
main.booth section#introduction ul.introlist li figure .photo {
  width: 100%;
  aspect-ratio: 4/3;
  display: inline-block;
  vertical-align: bottom;
}
main.booth section#introduction ul.introlist li figure .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
main.booth section#introduction ul.introlist li figure figcaption {
  position: absolute;
  font-size: 1.1rem;
  bottom: 0.5rem;
  right: 1rem;
  letter-spacing: normal;
}
main.booth section#introduction ul.introlist li .link {
  margin-top: 1rem;
  font-size: 1.2rem;
  min-height: 2em;
  opacity: 0.8;
  word-break: break-all;
  line-height: 1.2;
}
main.booth section#introduction ul.introlist li .sns {
  margin-top: 0.8rem;
  width: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  height: 2.3rem;
}
main.booth section#introduction ul.introlist li .sns div {
  display: block;
  width: 2.3rem;
  height: 2.3rem;
}
main.booth section#introduction ul.introlist li .sns div a {
  width: 100%;
  height: 100%;
  display: inline-block;
  padding: 0.2rem;
  transition: opacity 0.3s ease;
  opacity: 0.8;
}
main.booth section#introduction ul.introlist li .sns div a:hover {
  opacity: 0.5;
}
main.booth section#introduction ul.introlist li .sns div img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  main.booth section#introduction .note {
    margin-top: 2rem;
    font-size: 1.3rem;
  }
  main.booth section#introduction ul.introlist {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
  }
  main.booth section#introduction ul.introlist li {
    width: 100%;
    padding: 2.3rem 2.5rem 1.5rem;
  }
  main.booth section#introduction ul.introlist li .lower {
    margin: auto 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }
  main.booth section#introduction ul.introlist li h3.name {
    font-size: 2rem;
    gap: 1.3rem;
  }
  main.booth section#introduction ul.introlist li h3.name .num {
    top: -1em;
    left: -1em;
  }
  main.booth section#introduction ul.introlist li .item {
    font-size: 1.3rem;
  }
  main.booth section#introduction ul.introlist li figure {
    display: inline-flex;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
  }
  main.booth section#introduction ul.introlist li figure figcaption {
    position: absolute;
    font-size: 1.1rem;
    bottom: 0.5rem;
    right: 1rem;
    letter-spacing: normal;
  }
  main.booth section#introduction ul.introlist li .link {
    font-size: 1.2rem;
    min-height: 0;
  }
  main.booth section#introduction ul.introlist li .sns {
    min-height: 0;
    height: auto;
  }
}
/*# sourceMappingURL=style.css.map */