@charset "UTF-8";
:root {
  font-family: YakuHanJPs, "BIZ UDPゴシック", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "Meiryo", "Helvetica Neue", Arial, "Hiragino Sans", sans-serif;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.05em;
}

html {
  background-color: white;
}

.hover:hover {
  filter: brightness(1.1);
}

.indent {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}
.indent > * {
  text-indent: initial;
}

.red {
  color: #c80000;
}

.bold {
  font-weight: bold;
}

.break {
  display: inline-block;
}

.shadow {
  box-shadow: 0 2px 0.5rem rgba(128, 128, 128, 0.5);
}

.break-pc {
  display: block;
}
@media screen and (max-width: 1000px) {
  .break-pc {
    display: none;
  }
}

.break-smp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .break-smp {
    display: block;
  }
}

.mt1 {
  margin-top: 1rem;
}

.mt05 {
  margin-top: 0.5rem;
}

.mb1 {
  margin-bottom: 1rem;
}

.mb05 {
  margin-bottom: 0.5rem;
}

a {
  color: #c80000;
  text-decoration: none;
}
@media screen and (max-width: 1000px) {
  .pswp-gallery a {
    pointer-events: none;
  }
}

img {
  display: block;
  pointer-events: none;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body {
  position: relative;
  background-color: white;
  overflow-x: hidden;
  animation: fadein 1s ease;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 1.6rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  z-index: 999;
}
@media screen and (max-width: 1000px) {
  header {
    top: initial;
    bottom: 0;
    max-height: 10rem;
    font-size: min(4vw, 1.4rem);
  }
}
header nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
}
@media screen and (max-width: 1000px) {
  header nav ul {
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 70vw;
  }
}
header nav ul li {
  position: relative;
  padding: 1rem 2rem;
}
@media screen and (max-width: 1000px) {
  header nav ul li {
    padding: 0.5em;
  }
}
header nav ul li:nth-of-type(n+2)::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 0;
  width: 1px;
  height: 0.8em;
  background-color: rgba(200, 0, 0, 0.25);
}
@media screen and (max-width: 1000px) {
  header nav ul li:nth-of-type(n+2)::before {
    display: none;
  }
}

main {
  font-size: 1.6rem;
}
@media screen and (max-width: 1000px) {
  main article section {
    overflow-x: hidden;
  }
}
main article section h3 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  color: #c80000;
  font-size: 2.7rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(200, 0, 0, 0.25);
}
main article section h3:not(.ecobag h3)::before {
  content: "▷";
  position: absolute;
  top: -0.25em;
  left: -0.75em;
  font-size: 1.5em;
  animation: slide 1s ease-out infinite alternate;
}
@media screen and (max-width: 1000px) {
  main article section h3:not(.ecobag h3)::before {
    top: 0.2em;
    left: -1em;
    font-size: 0.8em;
  }
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-4px);
  }
}
main article section:not(#top, .ended) {
  padding: 10rem 0;
}
main article section:not(#top, .ended):nth-of-type(odd) {
  background-color: #f5f5f5;
}
main article section .wrapper {
  position: relative;
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  main article section .wrapper {
    width: calc(100% - 8rem);
  }
}
main article section .wrapper .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  main article section .wrapper .flex {
    flex-direction: column;
  }
}
main article section .wrapper .flex.start {
  justify-content: flex-start;
}
main article section .wrapper .flex.center {
  justify-content: center;
}
main article section .wrapper .flex.end {
  justify-content: flex-end;
}
main article section.ended {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 9rem;
  background-color: #c80000;
  z-index: 1000;
}
@media screen and (max-width: 1000px) and (orientation: portrait) {
  main article section.ended {
    flex-direction: column;
  }
}
main article section.ended.hidden {
  display: none;
}
main article section.ended p {
  color: white;
  font-size: 3rem;
}
@media screen and (max-width: 1000px) {
  main article section.ended p {
    font-size: 2rem;
    line-height: 1.5;
  }
}
main article section.ended a {
  display: inline-block;
  margin-left: 1rem;
  padding: 0.5rem 0;
  color: white;
  font-size: 1.6rem;
  border-bottom: 1px dotted white;
  opacity: 0.8;
}
@media screen and (max-width: 1000px) {
  main article section.ended a {
    margin-top: 1rem;
  }
}
main article section.ended a:hover {
  opacity: 1;
}
main article section#top {
  display: flex;
  justify-content: space-between;
  height: 100vh;
  padding-top: 55px;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media screen and (max-width: 1000px) and (orientation: portrait) {
  main article section#top {
    flex-direction: column-reverse;
    height: 190vw;
  }
}
main article section#top .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45%;
  height: 100%;
  background-color: rgba(245, 245, 245, 0.85);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
@media screen and (max-width: 1000px) and (orientation: portrait) {
  main article section#top .title {
    width: 100%;
    height: 75vw;
    padding: initial;
  }
}
main article section#top .title img {
  -o-object-fit: contain;
     object-fit: contain;
}
main article section#top .title .title-logo {
  width: 75%;
  height: auto;
  filter: drop-shadow(0 1px 1px #646464) drop-shadow(0 2px 8px #c8c8c8);
}

main article section#top .title .title-logo2 {
  width: 75%;
  height: auto;
  margin-bottom: -10px;
  filter: drop-shadow(0 1px 1px #646464) drop-shadow(0 2px 8px #c8c8c8);
}

main article section#top .title .title-date {
  width: 70%;
  height: auto;
  margin-top: 1rem;
}
@media screen and (max-width: 1000px) {
  main article section#top .title .title-date {
    filter:
      drop-shadow(2px 0 0 white)
      drop-shadow(-2px 0 0 white)
      drop-shadow(0 2px 0 white)
      drop-shadow(0 -2px 0 white);
  }
}



@media screen and (max-width: 1000px) and (orientation: portrait) {
  main article section#top .title .title-date {
    margin-top: 1rem;
  }
}
main article section#top .fes-layout {
  position: relative;
  width: 55%;
  height: 100%;
}
@media screen and (max-width: 1000px) and (orientation: portrait) {
  main article section#top .fes-layout {
    width: 100%;
    height: 100vw;
  }
}
main article section#top .fes-layout img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

main article section#top .fes-layout img.anniversary {
  position: absolute;
  bottom: 0;
  width: 35vw;
  max-width: 600px;
  height: auto;
}
@media screen and (max-width: 1000px) and (orientation: portrait) {
  main article section#top .fes-layout img.anniversary {
    width: 80%;
  }
}
main article section#introduction h2 {
  width: 70%;
  padding-bottom: 1rem;
  color: #c80000;
  font-size: 4.2rem;
  line-height: 1.5;
  border-bottom: 2px dashed rgba(200, 0, 0, 0.25);
  transform: skewX(-5deg);
  text-shadow: 1px 2px 0 #ffc8c8;
}
@media screen and (max-width: 1000px) {
  main article section#introduction h2 {
    display: inline-block;
    width: auto;
    padding-bottom: 1.5rem;
    font-size: 3rem;
    transform: initial;
  }
}
main article section#introduction p {
  position: relative;
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  main article section#introduction p {
    line-height: 1.75;
    z-index: 1;
  }
}
main article section#introduction p .pochikun {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 170px;
  height: 300px;
}
@media screen and (max-width: 1000px) {
  main article section#introduction p .pochikun {
    width: 40vw;
    height: auto;
    max-height: 175%;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: -1;
    opacity: 0.1;
    transform: translateX(50%);
  }
}
main article section#introduction .flex {
  margin-top: 5rem;
}
@media screen and (max-width: 1000px) {
  main article section#introduction .live {
    width: 100%;
  }
}
main article section#introduction .live a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 150px;
  background-color: #c80000;
  color: white;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1em;
  border-radius: 1rem;
}
@media screen and (max-width: 1000px) {
  main article section#introduction .live a {
    width: 100%;
    height: auto;
    padding: 1rem;
    font-size: 2.4rem;
  }
}
main article section#introduction .live a:hover {
  color: yellow;
}
main article section#introduction .live a small {
  font-size: 1.6rem;
  letter-spacing: initial;
}
main article section#introduction .ecobag {
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  main article section#introduction .ecobag {
    margin: 10vw 0 0;
    padding: 10rem 0 0;
  }
}
main article section#introduction .ecobag .ecobag-wrapper {
  position: relative;
  display: inline-block;
  width: auto;
  margin-left: 5rem;
  padding: 1.5rem 1.5rem 1.5rem 9.5rem;
  background-color: #009632;
  color: white;
  border-radius: 1rem;
}
@media screen and (max-width: 1000px) {
  main article section#introduction .ecobag .ecobag-wrapper {
    margin: 0;
    padding: 4rem 1.5rem 1.5rem;
  }
}
main article section#introduction .ecobag .ecobag-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -9rem;
  width: calc(150px + 3rem);
  height: calc(150px + 3rem);
  background-color: #009632;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
@media screen and (max-width: 1000px) {
  main article section#introduction .ecobag .ecobag-wrapper::before {
    top: max(-20vw - 1.5rem, -13.5rem);
    left: 50%;
    width: calc(25vw + 3rem);
    height: calc(25vw + 3rem);
    max-width: 18rem;
    max-height: 18rem;
    transform: translateX(-50%);
  }
}
main article section#introduction .ecobag .ecobag-wrapper svg {
  position: absolute;
  top: 50%;
  left: -7.5rem;
  width: 15rem;
  height: 15rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
  main article section#introduction .ecobag .ecobag-wrapper svg {
    top: max(-20vw, -12rem);
    left: 50%;
    width: 25vw;
    height: 25vw;
    max-width: 15rem;
    max-height: 15rem;
    transform: translateX(-50%);
  }
}
main article section#introduction .ecobag .ecobag-wrapper h3 {
  color: white;
  font-size: 2rem;
  text-align: left;
  letter-spacing: 0.1em;
  z-index: 1;
}
main article section#introduction .ecobag .ecobag-wrapper p {
  margin-top: 1rem;
  text-align: left;
  z-index: 1;
}
main article section#introduction .ecobag .ecobag-wrapper p small {
  margin-top: 1rem;
}
main article section#introduction .ecobag .ecobag-wrapper p .yellow {
  color: yellow;
}
main article section#main .wrapper p {
  margin-top: 1rem;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  main article section#main .wrapper p:has(.indent) {
    margin-top: 4rem;
  }
}
main article section#main .wrapper p:has(.indent) small {
  text-align: right;
}
@media screen and (max-width: 1000px) {
  main article section#main .wrapper p:has(.indent) small {
    text-align: left;
  }
}
main article section#main .card {
  width: 450px;
  margin-top: 8rem;
}
@media screen and (max-width: 1000px) {
  main article section#main .card {
    width: 100%;
    margin-top: calc(30vw + 8rem);
  }
}
main article section#main .card h4 {
  position: relative;
  margin-bottom: 2rem;
  padding: 0.5rem 0 0 120px;
  font-size: 2.4rem;
}
@media screen and (max-width: 1000px) {
  main article section#main .card h4 {
    padding: 1rem 0 0;
    text-align: center;
  }
}
main article section#main .card h4 p {
  padding-top: 0.5rem;
  font-size: 1.6rem;
  font-weight: normal;
  border-top: 1px solid rgba(200, 0, 0, 0.25);
}
main article section#main .card h4 img {
  position: absolute;
  top: 50%;
  left: -1rem;
  width: 100px;
  height: 100px;
  transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
  main article section#main .card h4 img {
    top: -30vw;
    left: 50%;
    width: 30vw;
    height: 30vw;
    transform: translateX(-50%);
  }
}
main article section#main .card .image {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main article section#main .card .image a {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  main article section#main .card .image a {
    border-radius: 0;
  }
}
main article section#main .card .image a:nth-of-type(n+2) {
  margin-top: 4px;
}
main article section#main .card .image a img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
main article section#event .card {
  width: 280px;
  height: auto;
  margin: 4rem 4rem 0 0;
  padding: 2rem;
  background-color: white;
  border-radius: 4px;
}
@media screen and (max-width: 1000px) {
  main article section#event .card {
    width: 100%;
    margin: 4rem 0 0;
  }
}
main article section#event .card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
main article section#event .card h4 {
  margin-top: 1rem;
  font-size: 2.4rem;
  line-height: 1.5;
}
main article section#event .card p {
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.5;
  border-top: 1px solid rgba(200, 0, 0, 0.25);
}
main article section#service .card {
  width: calc(50% - 4rem);
  margin: 4rem 2rem 0 0;
}
@media screen and (max-width: 1000px) {
  main article section#service .card {
    width: 100%;
    margin: 8rem 0 0;
  }
}
main article section#service .card.buy {
  position: relative;
}
main article section#service .card.buy h4 {
  padding: 1rem;
  background-color: #c80000;
  color: yellow;
  font-size: 2rem;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
main article section#service .card.buy p {
  margin-top: 1rem;
  line-height: 1.5;
}
main article section#service .card.buy p:first-of-type {
  margin-top: 2rem;
}
main article section#service .card.buy p.buy-end {
  display: inline-block;
  padding: 1rem;
  background-color: black;
  color: white;
  border-radius: 4px;
}
main article section#service .card.buy hr {
  opacity: 0.25;
}
main article section#service .card.buy img {
  position: absolute;
  top: 100%;
  right: 0;
  width: 142px;
  height: 210px;
}
@media screen and (max-width: 1000px) {
  main article section#service .card.buy img {
    top: calc(4rem - 110px);
    right: -10px;
    width: 100px;
    height: 110px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left top;
       object-position: left top;
  }
}
main article section#service .card.testrun h4 {
  padding: 1rem;
  background-color: black;
  color: white;
  font-size: 2rem;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
main article section#service .card.testrun img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
main article section#service .card.testrun p {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.5;
}
main article section#service .card.testrun p small {
  margin-top: 0.5rem;
}
main article section#access .wrapper > div {
  margin-top: 4rem;
}
main article section#access .wrapper > div .googlemap {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  border: 1px solid #c8c8c8;
}
@media screen and (max-width: 1000px) {
  main article section#access .wrapper > div .googlemap {
    aspect-ratio: 1/1;
  }
}
main article section#access .wrapper > div h4 {
  padding: 1rem;
  background-color: black;
  color: white;
  font-size: 2rem;
  font-weight: normal;
}
main article section#enter .card {
  width: calc(50% - 4rem);
  margin: 4rem 4rem 0 0;
  padding: 1.5rem 2rem;
  background-color: #f5f5f5;
  border-bottom: 1px solid #c8c8c8;
  border-radius: 4px;
}
@media screen and (max-width: 1000px) {
  main article section#enter .card {
    width: 100%;
  }
}
main article section#enter .card h4 {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
  main article section#enter .card h4 br {
    display: none;
  }
}
main article section#enter ul {
  margin-top: 4rem;
  list-style: none;
}
main article section#enter ul li {
  position: relative;
  max-width: 40em;
  margin: 1rem 0 0;
  padding: 0 0 1rem 1em;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  main article section#enter ul li {
    width: 100%;
  }
}
main article section#enter ul li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
main article section#enter ul li:nth-last-of-type(n+2) {
  border-bottom: 1px solid #c8c8c8;
}
main article section#enter p {
  max-width: 40em;
  margin-top: 1rem;
  line-height: 1.5;
}
main article section#enter p:first-of-type {
  margin-top: 2rem;
}
main article section#enter p.yellow {
  background-color: rgba(255, 255, 0, 0.5);
}
main article section#information .wrapper > span {
  position: absolute;
  top: -0.5rem;
  right: 0;
  padding: 1rem;
  background-color: #c80000;
  color: white;
  font-size: 2rem;
  font-weight: normal;
  border-radius: 4px;
  transform: rotateZ(-5deg);
}
@media screen and (max-width: 1000px) {
  main article section#information .wrapper > span {
    top: -5rem;
  }
}
main article section#information .wrapper .flex {
  align-items: center;
  margin-top: 4rem;
}
@media screen and (max-width: 1000px) {
  main article section#information .wrapper .flex {
    flex-direction: column-reverse;
  }
}
main article section#information .wrapper > p {
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 1.5;
}
main article section#information dl {
  display: flex;
  flex-wrap: wrap;
  width: 720px;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  main article section#information dl {
    width: 100%;
  }
}
main article section#information dl dd,
main article section#information dl dt {
  min-height: 3rem;
  padding: 4rem 2rem;
  border-bottom: 1px solid #c8c8c8;
}
main article section#information dl dd {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
  padding-left: 0;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  main article section#information dl dd {
    justify-content: flex-start;
    width: 100%;
    padding: 4rem 0 0;
    font-weight: bold;
    border-bottom: none;
  }
}
main article section#information dl dt {
  width: 80%;
}
@media screen and (max-width: 1000px) {
  main article section#information dl dt {
    justify-content: flex-start;
    width: 100%;
    padding: 2rem 0 4rem;
  }
}
main article section#information dl dt .ended.hidden {
  display: none;
}
main article section#information dl dt .ended span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.5em;
  line-height: 1;
  border: 1px solid #c80000;
  border-radius: 4px;
}
main article section#information dl dt small {
  margin-top: 1rem;
}
main article section#information dl dt .scroll {
  overflow-y: hidden !important;
}
main article section#information dl dt .scroll img {
  width: 100%;
  height: auto;
  max-height: 200px;
}
@media screen and (max-width: 1000px) {
  main article section#information dl dt .scroll img {
    width: auto;
    height: 120px;
  }
}
main article section#information dl dt table {
  width: 100%;
  border-collapse: collapse;
}
main article section#information dl dt table th,
main article section#information dl dt table td {
  padding: 1rem;
  text-align: center;
  border: 1px solid #c8c8c8;
}
main article section#information dl dt table th {
  min-width: 8.7rem;
  background-color: #e2e2e2;
}
main article section#information dl dt table td {
  background-color: rgba(255, 255, 255, 0.5);
}
main article section#information dl dt table td.close {
  background-color: rgba(255, 0, 0, 0.2);
}
main article section#information .flyer {
  display: flex;
  flex-direction: column;
  width: 200px;
}
@media screen and (max-width: 1000px) {
  main article section#information .flyer {
    width: 100%;
  }
}
main article section#information .flyer a {
  width: 100%;
  height: 284px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  main article section#information .flyer a {
    height: auto;
    border-radius: 0;
  }
}
main article section#information .flyer a:nth-of-type(n+2) {
  margin-top: 1rem;
}
main article section#information .flyer a img {
  width: 100%;
  height: 100%;
}

footer {
  position: relative;
  padding: 3rem 0;
  background-color: red;
  color: white;
  font-family: YakuHanJP, "Hiragino Kaku Gothic ProN", "Meiryo", "Helvetica Neue", Arial, "Hiragino Sans", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1000px) {
  footer {
    padding: 2rem 0 14rem;
    text-align: center;
    line-height: 1.5;
  }
}
footer ul {
  display: flex;
  justify-content: space-between;
  width: 1000px;
  margin: 0 auto;
  list-style: none;
}
@media screen and (max-width: 1000px) {
  footer ul {
    flex-direction: column;
    width: 100%;
  }
}
footer ul li a:first-of-type {
  margin-right: 1rem;
}
@media screen and (max-width: 1000px) {
  footer ul li:last-of-type {
    margin-top: 1rem;
  }
}
footer a {
  color: white;
}
footer .animation {
  position: fixed;
  bottom: 2px;
  right: 2px;
  width: 143px;
  height: 143px;
  transform-origin: center bottom;
  animation: hop 0.2s ease-in-out infinite alternate;
  z-index: 999;
}
@media screen and (max-width: 1000px) {
  footer .animation {
    bottom: 1rem;
    right: 1rem;
    width: 25vw;
    height: 25vw;
    max-width: 20vh;
    max-height: 20vh;
  }
}
footer .animation.paused {
  animation-play-state: paused;
}
footer .animation img {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
}
footer .animation img.tail {
  transform: rotateZ(45deg);
  transform-origin: 60% 80%;
  animation: swingTail 0.15s ease-in-out infinite alternate;
}
footer .animation img.eyes {
  transform-origin: 0 34.5%;
  animation: blinkEyes 4s ease-in-out 0s infinite alternate;
}
footer .animation img.arm {
  transform: rotateZ(10deg);
  transform-origin: 40% 45%;
  animation: swingArm 0.2s ease-in-out infinite alternate;
}
footer .animation img.paused {
  animation-play-state: paused;
}
@keyframes hop {
  from {
    transform: scaleY(1) rotateZ(0) translateY(0);
  }
  to {
    transform: scaleY(1.005) rotateZ(0.5deg);
  }
}
@keyframes blinkEyes {
  49% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.1);
  }
  51% {
    transform: scaleY(1);
  }
}
@keyframes swingArm {
  from {
    transform: rotateZ(10deg);
  }
  to {
    transform: rotateZ(-10deg);
  }
}
@keyframes swingTail {
  from {
    transform: rotateZ(45deg);
  }
  to {
    transform: rotateZ(0deg);
  }
}

.pswp__custom-caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  width: auto;
  padding: 1rem;
  background-color: black;
  color: white;
  font-size: 1.6rem;
  border-radius: 4px;
}


/* 企業名載せるとこ用 */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont,
    "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  color: #222;
}

.participants {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 25px;

  border: 0px solid #e60012;
  border-radius: 16px;
}

.participants-title {
  margin: 0 0 20px;
  text-align: center;
  font-size: 25px;
  font-weight: 800;
}

.participants-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin: 7px auto 0;
  background: #e60012;
}

/* 企業一覧 */
.participants-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 30px;
  row-gap: 0;
}

/* 企業名 */
.participant {
  padding: 9px 0;
  border-bottom: 1px solid #ddd;

  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.participant span {
  margin-left: 5px;
  font-size: 10px;
  font-weight: 500;
  color: #777;
}

/*モアー*/
.and-more {
  margin: 20px 0 0;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  color: #666;
}


/* =========================
  スマホ2列部分ここから
========================= */
@media (max-width: 767px) {

  .participants {
    padding: 22px 10px;
  }

  .participants-title {
    margin-bottom: 15px;
    font-size: 21px;
  }

  .participants-title::after {
    width: 32px;
    height: 2px;
    margin-top: 5px;
  }

  .participants-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 18px;
  }

  .participant {
    padding: 7px 0;
    font-size: 11px;
  }

  .participant span {
    display: block;
    margin: 1px 0 0;
    font-size: 8px;
  }

  .and-more {
    margin-top: 15px;
    font-size: 16px;
  }
}



@media (max-width: 380px) {

  .participants {
    padding-left: 7px;
    padding-right: 7px;
  }

  .participants-grid {
    column-gap: 12px;
  }

  .participant {
    padding: 6px 0;
    font-size: 10px;
  }

  .participant span {
    font-size: 7px;
  }
}






/*# sourceMappingURL=style.css.map */