@charset "UTF-8";
.js-show-up {
  opacity: 0;
  transform: translate(0, 100px);
}
.js-show-up.is-show {
  opacity: 1;
  transform: none;
}

.js-show-left {
  opacity: 0;
  transform: translate(80px, 0);
}
.js-show-left.is-show {
  opacity: 1;
  transform: none;
}

.js-show-right {
  opacity: 0;
  transform: translate(-80px, 0);
}
.js-show-right.is-show {
  opacity: 1;
  transform: none;
}

html {
  box-sizing: border-box;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin: 0 !important;
  scroll-behavior: smooth;
  color: #1a1a1a;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
@media screen and (max-width: 572px) {
  html {
    font-size: 14px;
  }
}

input {
  -webkit-appearance: auto;
  -moz-appearance: auto;
       appearance: auto;
  margin: 0;
}

dt,
th {
  font-weight: 400;
}

.container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.fv-wrap {
  margin-inline: auto;
  padding: 0 20px;
  width: min(100%, 1000px);
}

.wrap {
  margin-inline: auto;
  padding: 0 20px;
  width: min(100%, 920px);
}
@media screen and (max-width: 375px) {
  .wrap {
    padding: 0 10px;
  }
}

.wrap-tb {
  margin-inline: auto;
  padding: 0 20px;
  width: min(100%, 1004px);
}
@media screen and (max-width: 375px) {
  .wrap-tb {
    padding: 0 10px;
  }
}

.wrap-tb-s {
  margin-inline: auto;
  padding: 0 20px;
  width: min(100%, 860px);
}
@media screen and (max-width: 375px) {
  .wrap-tb-s {
    padding: 0 10px;
  }
}

@media screen and (max-width: 1024px) {
  .mb-hide {
    display: none;
  }
}

.mb-display {
  display: none;
}
@media screen and (max-width: 964px) {
  .mb-display {
    display: block;
  }
}

@media screen and (max-width: 572px) {
  .sm-hide {
    display: none;
  }
}

.sm-display {
  display: none;
}
@media screen and (max-width: 572px) {
  .sm-display {
    display: block;
  }
}

.display-none {
  display: none;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.body-fadein {
  -webkit-animation: fadeIn 1.5s forwards;
          animation: fadeIn 1.5s forwards;
}

.scroll-off {
  overflow: hidden;
}

.scroll-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  display: block flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 30px;
  right: 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
  transition: 0.7s;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 572px) {
  .scroll-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
  }
}
.scroll-top.is-show {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  box-shadow: none;
}
.scroll-top::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-left: 2px solid #1a1a1a;
  border-top: 2px solid #1a1a1a;
  transform: rotate(45deg) translate(2px, 2px);
}

.section-title {
  text-align: center;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.section-title__en {
  color: #1a1a1a;
  font-size: 3.5rem;
}
@media screen and (max-width: 572px) {
  .section-title__en {
    font-size: 3rem;
  }
}
.section-title__ja {
  line-height: 1;
  margin-top: 1em;
  font-size: 1.125rem;
}

.sec-name {
  position: relative;
  font-size: 1.75rem;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 20px;
  color: #1a1a1a;
  margin-inline: auto;
}
@media screen and (max-width: 572px) {
  .sec-name {
    font-size: 1.5rem;
    padding: 0 0 0 10px;
  }
}
.sec-name::before {
  content: "";
  width: 1em;
  height: 1em;
  background-image: url(../image/company/icon-sec-name.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translate(0, -50%);
}

.pagination {
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 572px) {
  .pagination {
    margin-top: 30px;
  }
}

.nav-links .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: #1a1a1a;
}

.nav-links a.page-numbers,
.nav-links .current,
.nav-links a.prev,
.nav-links a.next,
.nav-links .dots {
  width: 50px;
  height: 50px;
  font-size: 1.125rem;
  font-weight: bold;
  transition: 0.5s;
  font-weight: bold;
}

.nav-links a.page-numbers:hover {
  opacity: 0.7;
}

.nav-links .current {
  font-weight: bold;
  color: #D54940;
  padding: 0;
}

/* 前への「＜」、次への「＞」 */
.nav-links a.prev,
.nav-links a.next {
  color: currentColor;
  position: relative;
  border: none;
}

.nav-links .dots {
  background: transparent;
  border: none;
}

.next.page-numbers {
  position: relative;
}
.next.page-numbers::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  display: inline-block;
  background-color: currentColor;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(-50%, -45%);
}

.prev.page-numbers {
  position: relative;
}
.prev.page-numbers::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  display: inline-block;
  background-color: currentColor;
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
  transform: translate(-50%, -45%);
}

.container {
  position: relative;
}
.container .fv {
  width: 100%;
  margin-top: 80px;
}
.container .fv__img {
  width: 100%;
  height: auto;
  display: block;
}
.container .mv {
  padding: 20px 0 0;
}
.container .mv__logo {
  width: 120px;
  display: block;
}
@media screen and (max-width: 572px) {
  .container .mv__logo {
    width: 80px;
  }
}
.container .mv__logo > img {
  width: 100%;
  display: block;
}
.container .mv__title {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  padding: 0.75em 4em;
  border-top: 2px solid #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px auto 0;
}
@media screen and (max-width: 572px) {
  .container .mv__title {
    margin-top: 20px;
    font-size: 1.25rem;
    padding: 0.75em 0;
    text-align: center;
    width: 100%;
  }
}
.container .hamburger {
  width: 60px;
  height: 50px;
  padding: 15px 10px;
  position: fixed;
  top: 15px;
  right: 4%;
  z-index: 30;
  border-radius: 50%;
}
.container .hamburger.on-click .inner span:nth-child(1) {
  top: 50%;
  translate: 0 -50%;
  rotate: 390deg;
}
.container .hamburger.on-click .inner span:nth-child(2) {
  opacity: 0;
}
.container .hamburger.on-click .inner span:nth-child(3) {
  top: 50%;
  translate: 0 -50%;
  rotate: -390deg;
}
.container .hamburger .inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.container .hamburger .inner span {
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  transition: 0.3s;
}
.container .hamburger .inner span:nth-child(1) {
  top: 0;
}
.container .hamburger .inner span:nth-child(2) {
  top: 50%;
  translate: 0 -50%;
}
.container .hamburger .inner span:nth-child(3) {
  bottom: 0;
}
.container .ham_menu {
  height: 100vh;
  opacity: 0;
  padding: 0;
  position: fixed;
  transition: 0.3s;
  visibility: hidden;
  background-color: #fff;
  width: 100%;
  top: 0;
  z-index: 20;
}
.container .ham_menu.is-show {
  opacity: 1;
  visibility: visible;
}
.container .ham_menu .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 572px) {
  .container .ham_menu .inner {
    padding: 20px;
  }
}
.container .ham_menu__logo {
  width: 140px;
  position: absolute;
  top: 20px;
  left: 4%;
}
@media screen and (max-width: 572px) {
  .container .ham_menu__logo {
    left: 20px;
    top: 20px;
    width: 80px;
  }
}
.container .ham_menu__logo > img {
  width: 100%;
}
.container .ham_menu__nav {
  font-weight: bold;
  font-size: 1.25rem;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  width: 500px;
}
@media screen and (max-width: 572px) {
  .container .ham_menu__nav {
    font-size: 1.125rem;
    width: 100%;
  }
}
.container .ham_menu__nav_list {
  display: flex;
  flex-direction: column;
}
.container .ham_menu__nav_list_item:last-child > a {
  border-bottom: 1px solid currentColor;
}
.container .ham_menu__nav_list_item > a {
  display: block;
  padding: 1.5em 0;
  transition: 0.3s ease;
  text-align: center;
  border-top: 1px solid currentColor;
  font-weight: bold;
  transition: 0.3s ease;
}
@media screen and (max-width: 572px) {
  .container .ham_menu__nav_list_item > a {
    padding: 1em 0;
  }
}
.container .ham_menu__nav_list_item > a:hover {
  opacity: 0.7;
}
.container .ham_menu__sns {
  display: flex;
  margin-top: 50px;
  gap: 20px;
}
@media screen and (max-width: 572px) {
  .container .ham_menu__sns {
    margin-top: 30px;
  }
}
.container .ham_menu__sns > a {
  display: block;
  width: 40px;
  transition: 0.3s ease;
}
@media screen and (max-width: 572px) {
  .container .ham_menu__sns > a {
    width: 20px;
  }
}
.container .ham_menu__sns > a:hover {
  opacity: 0.5;
}
.container .ham_menu__sns > a > img {
  width: 100%;
  display: block;
}
.container .ham_menu .copylight {
  margin-top: 30px;
  text-align: center;
}

.footer {
  background-color: #F2F2F2;
  padding: 30px 0;
}
.footer .fb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 572px) {
  .footer .fb {
    flex-direction: column;
  }
}
.footer .fb img {
  display: block;
  width: 90px;
}
.footer .fb .item-info {
  font-weight: bold;
}
.footer__msg {
  font-size: 0.875rem;
  margin-top: 10px;
  text-align: center;
  letter-spacing: 0.03em;
}
.footer__msg > span {
  display: inline-block;
}
.footer__msg a {
  transition: 0.3s;
}
.footer__msg a:hover {
  opacity: 0.7;
}
.footer .copylight {
  margin-top: 30px;
  text-align: center;
  font-size: 0.875rem;
}

.item-link {
  width: 180px;
}
@media screen and (max-width: 572px) {
  .item-link {
    width: 150px;
  }
}
.item-link > a {
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 2px solid #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
  text-align: center;
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.4;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  transition: 0.3s ease;
}
@media screen and (max-width: 572px) {
  .item-link > a {
    font-size: 1.25rem;
    height: 100px;
  }
}
.item-link > a:hover {
  opacity: 0.5;
}

.main {
  padding-bottom: 100px;
}
@media screen and (max-width: 572px) {
  .main {
    padding-bottom: 50px;
  }
}
.main .sec-navi {
  margin-top: 50px;
}
.main .sec-navi__list {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 572px) {
  .main .sec-navi__list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.main .news {
  margin: 50px auto 0;
  width: min(1400px, 90%);
  position: relative;
  /* 矢印・ドットは不要なら隠す */
}
@media screen and (max-width: 572px) {
  .main .news {
    margin: 30px auto 0;
    width: 100%;
  }
}
.main .news .swiper-slide {
  aspect-ratio: 16/9;
  position: relative;
  transition: 0.3s ease;
}
.main .news .swiper-slide:hover {
  opacity: 0.7;
}
.main .news .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.main .news .swiper-button-prev,
.main .news .swiper-button-next {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(0, -20%);
}
.main .news .swiper-button-prev::after,
.main .news .swiper-button-next::after {
  display: block;
  background-color: #1a1a1a;
  border: none;
  width: 20px;
  height: 20px;
  content: "";
  color: #1a1a1a;
  font-size: initial;
}
@media screen and (max-width: 572px) {
  .main .news .swiper-button-prev::after,
.main .news .swiper-button-next::after {
    width: 14px;
    height: 14px;
  }
}
.main .news .swiper-button-prev {
  right: 99%;
  left: auto;
}
@media screen and (max-width: 572px) {
  .main .news .swiper-button-prev {
    right: 85%;
    top: 115%;
  }
}
.main .news .swiper-button-prev::after {
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
  translate: -1px 0;
}
.main .news .swiper-button-next {
  left: 99%;
  right: auto;
}
@media screen and (max-width: 572px) {
  .main .news .swiper-button-next {
    left: 85%;
    top: 115%;
  }
}
.main .news .swiper-button-next::after {
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  translate: 1px 0;
}
.main .news .swiper-pagination {
  top: 105%;
}
.main .news .swiper-pagination-bullet-active {
  background: #1a1a1a;
}
.main .news .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}
.main .news.is-static .swiper-button-prev, .main .news.is-static .swiper-button-next, .main .news.is-static .swiper-pagination {
  display: none;
}
.main .news.is-static .swiper-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 964px) {
  .main .news.is-static .swiper-wrapper {
    gap: 10px;
  }
}
@media screen and (max-width: 572px) {
  .main .news.is-static .swiper-wrapper {
    flex-direction: column;
  }
}
.main .news.is-static .swiper-wrapper .swiper-slide {
  width: 25%;
}
@media screen and (max-width: 572px) {
  .main .news.is-static .swiper-wrapper .swiper-slide {
    width: 100%;
  }
}
.main .project {
  margin-top: 80px;
}
.main .project .fb {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 572px) {
  .main .project .fb {
    justify-content: center;
    flex-direction: column-reverse;
    gap: 30px;
  }
}
.main .project__msg {
  line-height: 2;
  font-size: 1.125rem;
  font-weight: bold;
}
.main .project__logo {
  width: 180px;
  margin-left: 50px;
  display: block;
  transition: 0.3s ease;
}
@media screen and (max-width: 964px) {
  .main .project__logo {
    width: 160px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 572px) {
  .main .project__logo {
    width: 120px;
  }
}
.main .project__logo:hover {
  opacity: 0.5;
}
.main .project__logo > img {
  width: 100%;
}
.main .project__image {
  margin-top: 80px;
  width: 100%;
  position: relative;
}
.main .project__image::before {
  content: "HONKOI PROJECT";
  font-size: 4rem;
  font-weight: bold;
  position: absolute;
  bottom: 100%;
  left: 0;
  color: #fff;
  -webkit-text-stroke: 2px #ccc;
  line-height: 0.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 572px) {
  .main .project__image::before {
    font-size: 2.5rem;
    letter-spacing: 0.02em;
  }
}
.main .project__image > img {
  width: 100%;
  height: auto;
}
.main .sec-archive {
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .main .sec-archive {
    margin-top: 50px;
  }
}
.main .sec-archive__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media screen and (max-width: 572px) {
  .main .sec-archive__list {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.main .sec-archive__list-item > a {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  transition: 0.3s ease;
}
.main .sec-archive__list-item > a:hover {
  opacity: 0.7;
}
.main .sec-archive__list-item > a > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main .sec-archive__list-item > p {
  margin-top: 10px;
  text-align: center;
  font-size: 1.125rem;
  font-weight: bold;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
}
.main .bibliobattle {
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .main .bibliobattle {
    margin-top: 50px;
  }
}
.main .bibliobattle__image {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
}
@media screen and (max-width: 572px) {
  .main .bibliobattle__image {
    gap: 10px;
    padding: 0 20px;
    flex-direction: column;
  }
}
.main .bibliobattle__image.l-left {
  justify-content: flex-start;
}
.main .bibliobattle__image.l-right {
  justify-content: flex-end;
}
.main .bibliobattle__image > img {
  display: block;
  width: 20%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 964px) {
  .main .bibliobattle__image > img {
    width: 25%;
  }
}
@media screen and (max-width: 572px) {
  .main .bibliobattle__image > img {
    width: 100%;
  }
}
.main .bibliobattle__content {
  margin: 80px 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main .bibliobattle__content {
    flex-direction: column;
  }
}
.main .bibliobattle__content::before {
  content: "BIBLIO BATTLE";
  font-size: 4rem;
  font-weight: bold;
  position: absolute;
  bottom: 95%;
  right: 0;
  color: #fff;
  -webkit-text-stroke: 2px #ccc;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 572px) {
  .main .bibliobattle__content::before {
    font-size: 2.5rem;
    letter-spacing: 0.02em;
  }
}
.main .bibliobattle__content_block {
  width: calc(100% - 200px);
}
@media screen and (max-width: 768px) {
  .main .bibliobattle__content_block {
    width: 100%;
  }
}
.main .bibliobattle__content_block_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 572px) {
  .main .bibliobattle__content_block_title {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.main .bibliobattle__content_block_title > h3 {
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 2.5rem;
  font-weight: bold;
}
.main .bibliobattle__content_block_title > h3 > span {
  display: inline-block;
  margin-left: 20px;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 572px) {
  .main .bibliobattle__content_block_title > h3 > span {
    margin-left: 10px;
  }
}
.main .bibliobattle__content_block_title > a {
  display: block;
  background-color: #1a1a1a;
  color: #fff;
  padding: 0.5em 1em 0.5em 2em;
  position: relative;
  line-height: 1;
  transition: 0.3s;
}
.main .bibliobattle__content_block_title > a:hover {
  opacity: 0.7;
}
.main .bibliobattle__content_block_title > a::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0.5em;
  transform: translate(0, -58%);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.main .bibliobattle__content_block_text {
  letter-spacing: 0.03em;
  line-height: 2;
  font-weight: bold;
}
@media screen and (max-width: 572px) {
  .main .bibliobattle__content_block_text {
    margin-top: 10px;
  }
}
.main .bibliobattle__content_link {
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .main .bibliobattle__content_link {
    margin-left: 0;
    margin-top: 50px;
  }
}
.main .bibliobattle__navi {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 572px) {
  .main .bibliobattle__navi {
    gap: 30px;
    margin-top: 50px;
  }
}
.main .message {
  margin-top: 80px;
}
.main .message__head {
  display: flex;
}
@media screen and (max-width: 572px) {
  .main .message__head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.main .message__head_title {
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 2.5rem;
  font-weight: bold;
}
.main .message__head_title::before {
  content: "MESSAGE";
  font-size: 4rem;
  display: block;
  font-weight: bold;
  color: #fff;
  -webkit-text-stroke: 2px #ccc;
  letter-spacing: 0.05em;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1;
  margin-top: 5px;
}
@media screen and (max-width: 572px) {
  .main .message__head_title::before {
    font-size: 2.5rem;
    letter-spacing: 0.02em;
  }
}
.main .message__head_text {
  font-weight: bold;
  margin-left: 20px;
  font-size: 1.125rem;
}
@media screen and (max-width: 572px) {
  .main .message__head_text {
    margin-left: 0;
  }
}
.main .message__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
@media screen and (max-width: 964px) {
  .main .message__content {
    gap: 30px;
  }
}
@media screen and (max-width: 572px) {
  .main .message__content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.main .message__content_item .item-head {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.main .message__content_item .item-head img {
  width: 150px;
}
@media screen and (max-width: 572px) {
  .main .message__content_item .item-head img {
    width: 130px;
  }
}
.main .message__content_item .item-head .item-name {
  line-height: 1.6;
}
.main .message__content_item .item-head .item-name .job {
  font-size: 0.875rem;
  background-color: #ffff00;
  font-weight: bold;
  padding: 0 1em;
  margin-top: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.main .message__content_item .item-head .item-name .name {
  font-weight: bold;
  font-size: 1.25rem;
  background-color: #ffff00;
  padding: 0.4em 1.5em 0.2em;
  margin-top: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.main .message__content_item .item-head .item-name .name .honorific {
  font-size: 1rem;
}
.main .message__content_item .item-head .item-name .name .furi1 {
  font-size: 0.6rem;
  position: absolute;
  bottom: 65%;
  left: 36px;
}
.main .message__content_item .item-head .item-name .name .furi2 {
  font-size: 0.6rem;
  position: absolute;
  bottom: 65%;
  left: 77px;
}
.main .message__content_item .item-msg {
  font-weight: bold;
  margin-top: 1em;
}
.main .illustration {
  margin-top: 80px;
  padding: 80px 0 50px;
  background-image: url(../image/illustration_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 572px) {
  .main .illustration {
    margin-top: 50px;
  }
}
.main .illustration .fb {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
@media screen and (max-width: 964px) {
  .main .illustration .fb {
    flex-wrap: wrap;
  }
}
.main .illustration .fb > img {
  width: 150px;
  display: block;
}
@media screen and (max-width: 572px) {
  .main .illustration .fb > img {
    display: none;
  }
}
.main .illustration .fb .item-introduction {
  flex: 1;
  position: relative;
}
@media screen and (max-width: 964px) {
  .main .illustration .fb .item-introduction {
    flex: initial;
    width: calc(100% - 170px);
  }
}
@media screen and (max-width: 572px) {
  .main .illustration .fb .item-introduction {
    width: 100%;
  }
}
.main .illustration .fb .item-introduction::before {
  content: "ILLUSTRATION";
  font-size: 4rem;
  display: block;
  position: absolute;
  bottom: 100%;
  left: 0;
  font-weight: bold;
  color: #fff;
  -webkit-text-stroke: 2px #ccc;
  letter-spacing: 0.05em;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1;
}
@media screen and (max-width: 572px) {
  .main .illustration .fb .item-introduction::before {
    font-size: 2.5rem;
    letter-spacing: 0.02em;
  }
}
.main .illustration .fb .item-introduction .title {
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 2.5rem;
  font-weight: bold;
}
.main .illustration .fb .item-introduction > img {
  display: none;
}
@media screen and (max-width: 572px) {
  .main .illustration .fb .item-introduction > img {
    display: block;
    width: 130px;
    margin: 10px auto 20px;
  }
}
.main .illustration .fb .item-introduction .name {
  font-weight: bold;
  font-size: 1.25rem;
  background-color: #ffff00;
  padding: 0 1.5em;
  margin-top: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.main .illustration .fb .item-introduction .name > span {
  font-size: 1rem;
}
.main .illustration .fb .item-introduction .msg {
  margin-top: 10px;
  font-weight: bold;
}
.main .illustration .fb .item-description {
  max-width: 300px;
}
@media screen and (max-width: 964px) {
  .main .illustration .fb .item-description {
    max-width: 100%;
    width: 100%;
  }
}
.main .illustration .fb .item-description .name {
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: bold;
  border-bottom: 2px solid #1a1a1a;
  padding: 0 0.5em;
}
.main .illustration .fb .item-description .msg {
  font-size: 0.875rem;
  font-weight: bold;
  padding: 0.5em;
}
.main .sns {
  margin-top: 80px;
}
.main .sns__title {
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  -webkit-text-stroke: 2px #ccc;
  letter-spacing: 0.05em;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 572px) {
  .main .sns__title {
    font-size: 2.5rem;
    letter-spacing: 0.02em;
  }
}
.main .sns__content {
  margin-top: 50px;
  width: 100%;
}
.main .sns .more-btn {
  margin: 50px auto 0;
  display: block;
  line-height: 1;
  background-color: #1a1a1a;
  color: #fff;
  text-align: center;
  width: 240px;
  padding: 0.75em 0;
  position: relative;
  transition: 0.3s ease;
}
.main .sns .more-btn:hover {
  opacity: 0.7;
}
.main .sns .more-btn::before {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 50%;
  right: 1em;
  transform: translate(0, -50%);
}

@media screen and (max-width: 640px) {
  #sb_instagram .sb_instagram_header .sbi_header_text,
.sb_instagram_header .sbi_header_text {
    gap: 10px;
    flex-direction: column;
  }
}
/* ——— 既定の表示 ——— */
.kouenkai {
  display: block;
}
.kouenkai.is-active {
  display: block;
}

/* 講習会は見せる */
.yosenkai {
  display: none;
}
.yosenkai.is-active {
  display: block;
}

/* 予選会は隠す */
/* ——— クエリで type=yosenkai が来た場合だけ入れ替え ——— */
.show-yosenkai .kouenkai {
  display: none;
}

.show-yosenkai .yosenkai {
  display: block;
}

.show-kouenkai .k-color {
  background-color: #11a4bf;
}
.show-kouenkai .y-color {
  background-color: #666;
}

.show-yosenkai .k-color {
  background-color: #666;
}
.show-yosenkai .y-color {
  background-color: #ed1e79;
}

.ttl-img > img {
  height: 45px;
  width: auto;
  display: block;
}
@media screen and (max-width: 572px) {
  .ttl-img > img {
    height: 35px;
  }
}

.form-main {
  margin-top: 10px;
  padding-bottom: 100px;
}
@media screen and (max-width: 572px) {
  .form-main {
    padding-bottom: 50px;
  }
}
.form-main .head-image > img {
  width: 100%;
  display: block;
}
.form-main .change {
  margin-top: 30px;
}
.form-main .change .fb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 572px) {
  .form-main .change .fb {
    gap: 10px;
  }
}
.form-main .change .fb .change-btn {
  display: block;
  width: 300px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.4;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  flex-direction: column;
  cursor: pointer;
  transition: 0.3s ease;
}
@media screen and (max-width: 572px) {
  .form-main .change .fb .change-btn {
    height: 80px;
  }
}
.form-main .change .fb .change-btn:hover {
  opacity: 0.7;
}
.form-main .change .fb .change-btn > span {
  font-size: 1.125rem;
  display: block;
}
.form-main .description {
  font-weight: bold;
  margin-top: 30px;
}
.form-main .description > span {
  display: inline-block;
}
.form-main .notice {
  margin-top: 30px;
  background-color: #ffff00;
  text-align: center;
  font-weight: bold;
}
.form-main .batora {
  margin-top: 30px;
}
.form-main .batora__sanka {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 5px;
}
.form-main .batora__text {
  margin-top: 5px;
  font-size: 1.125rem;
}
.form-main .batora__msg {
  margin-top: 5px;
}
.form-main .nittei {
  margin-top: 30px;
}
.form-main .nittei > p {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 5px;
}
.form-main .nittei__list {
  display: flex;
  margin-top: 10px;
}
@media screen and (max-width: 572px) {
  .form-main .nittei__list {
    flex-direction: column;
  }
}
.form-main .nittei__list_item {
  width: 33.3333333333%;
  padding: 1em;
}
@media screen and (max-width: 572px) {
  .form-main .nittei__list_item {
    padding: 1em 0;
    width: 100%;
  }
}
.form-main .nittei__list_item .cls {
  font-size: 1.75rem;
  text-align: center;
  font-weight: bold;
}
.form-main .nittei__list_item .kaijou {
  background-color: #d4145a;
  color: #fff;
  width: 200px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.125rem;
}
.form-main .nittei__list_item .date {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
.form-main .nittei__list_item .date > span {
  font-size: 1.25rem;
}
.form-main .nittei__list_item .time {
  text-align: center;
  font-size: 0.937rem;
}
.form-main .nittei__list_item .place {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
}
.form-main .nittei__list_item .place > span {
  font-size: 10px;
}
.form-main .nittei__list_item .address {
  text-align: center;
  line-height: 1.4;
}
.form-main .nittei__list_item .map {
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: 10px;
}
.form-main .nittei__list_item .map iframe {
  width: 100%;
  height: 100%;
}
.form-main .nittei__list_item .access {
  margin-top: 10px;
  letter-spacing: 0.03em;
  line-height: 1.4;
  font-size: 0.875rem;
}
.form-main .nittei__list_item:not(:first-child) {
  border-left: 1px solid #1a1a1a;
}
@media screen and (max-width: 572px) {
  .form-main .nittei__list_item:not(:first-child) {
    border-left: none;
    border-top: 1px solid #1a1a1a;
  }
}
.form-main .nittei .supplement {
  margin-top: 10px;
  font-size: 0.875rem;
}
.form-main .nittei .supplement > p {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.form-main .nittei .supplement > p > span {
  display: block;
  margin-right: 1em;
}
.form-main .infomation {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 50px;
}
@media screen and (max-width: 964px) {
  .form-main .infomation {
    gap: 30px;
  }
}
@media screen and (max-width: 572px) {
  .form-main .infomation {
    grid-template-columns: repeat(1, 1fr);
  }
}
.form-main .infomation__item .ttl-img {
  margin-bottom: 10px;
}
.form-main .guest {
  background-color: #11a4bf;
  width: 100%;
  margin-top: 80px;
}
.form-main .guest .fb {
  position: relative;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 964px) {
  .form-main .guest .fb {
    flex-direction: column;
  }
}
@media screen and (max-width: 572px) {
  .form-main .guest .fb {
    padding: 50px 0 30px;
    gap: 30px;
  }
}
.form-main .guest .fb::before {
  content: "SPECIAL GUEST";
  font-size: 4rem;
  display: block;
  position: absolute;
  bottom: 100%;
  right: 0;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 2px #ccc;
  letter-spacing: 0.05em;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1;
  transform: translate(0, 50%);
}
@media screen and (max-width: 572px) {
  .form-main .guest .fb::before {
    font-size: 2.5rem;
    letter-spacing: 0.02em;
  }
}
.form-main .guest .fb .guest-item {
  width: 370px;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 70px 20px 80px;
}
@media screen and (max-width: 572px) {
  .form-main .guest .fb .guest-item {
    width: 320px;
    padding: 60px 20px 100px;
  }
}
.form-main .guest .fb .guest-item .name {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.form-main .guest .fb .guest-item .name > h3 {
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
}
.form-main .guest .fb .guest-item .name > h3 .furi1 {
  font-size: 0.7rem;
  position: absolute;
  bottom: 85%;
  left: 5px;
}
.form-main .guest .fb .guest-item .name > h3 .furi2 {
  font-size: 0.7rem;
  position: absolute;
  bottom: 85%;
  left: 55px;
}
.form-main .guest .fb .guest-item .name > p {
  font-size: 0.875rem;
  margin-left: 1em;
  line-height: 1.4;
  flex: 1;
}
.form-main .guest .fb .guest-item.bg1 {
  background-image: url(../image/guest_bg1.png);
}
.form-main .guest .fb .guest-item.bg2 {
  background-image: url(../image/guest_bg2.png);
}
.form-main .guest .fb .guest-item > img {
  margin: 0 auto;
  display: block;
  width: 160px;
}
@media screen and (max-width: 572px) {
  .form-main .guest .fb .guest-item > img {
    width: 140px;
  }
}
.form-main .guest .fb .guest-item .msg {
  margin-top: 5px;
  width: 100%;
}
.form-main .kanran {
  margin-top: 50px;
}
.form-main .kanran > p {
  margin-top: 10px;
}
.form-main .kanran > img {
  width: 100%;
}
.form-main .kanran__block {
  padding: 30px 40px 20px;
  width: 100%;
  background-color: #d4145a;
  color: #fff;
  position: relative;
  margin-top: 60px;
}
@media screen and (max-width: 572px) {
  .form-main .kanran__block {
    padding: 30px 10px 20px;
    margin-top: 50px;
  }
}
.form-main .kanran__block::before {
  content: "PRESENT";
  font-size: 4rem;
  font-weight: bold;
  position: absolute;
  bottom: 95%;
  left: 10px;
  color: transparent;
  -webkit-text-stroke: 2px #ccc;
  line-height: 0.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 572px) {
  .form-main .kanran__block::before {
    font-size: 2.5rem;
    letter-spacing: 0.02em;
  }
}
.form-main .kanran__block .msg {
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 572px) {
  .form-main .kanran__block .msg {
    font-size: 1.125rem;
  }
}
.form-main .kanran__block .msg > span {
  color: #ffff00;
}
.form-main .kanran__block .sub {
  margin-top: 10px;
  text-align: center;
  font-size: 0.875rem;
}
.form-main .kanran__block > img {
  display: block;
  position: absolute;
  right: -20px;
  top: -80px;
  width: 32%;
}
@media screen and (max-width: 572px) {
  .form-main .kanran__block > img {
    right: -10px;
    top: -50px;
    width: 35%;
  }
}
.form-main .sec-navi {
  margin-top: 50px;
}
.form-main .sec-navi__list {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 572px) {
  .form-main .sec-navi__list {
    flex-wrap: wrap;
    gap: 30px 20px;
  }
}

.contact {
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .contact {
    margin-top: 50px;
  }
}
.contact .ttl-img img {
  margin: 0 auto;
}
.contact__text {
  margin-top: 10px;
  text-align: center;
  font-weight: 600;
}
.contact__text.l-border {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  border: 1px solid currentColor;
  padding: 0.5em 3em;
}
@media screen and (max-width: 572px) {
  .contact__text.l-border {
    padding: 0.5em 1em;
  }
}
.contact__text > span {
  font-size: 0.875rem;
}
.contact__form {
  background-color: #fff;
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.1);
  width: min(600px, 100%);
  padding: 20px;
  margin: 30px auto 0;
}
@media screen and (max-width: 572px) {
  .contact__form {
    padding: 10px 10px 10px 0;
  }
}
.contact__form .c-head {
  margin-top: 30px;
}
@media screen and (max-width: 572px) {
  .contact__form .c-head {
    margin-top: 20px;
  }
}
.contact__form .c-head .f-label {
  font-weight: 600;
}
.contact__form .c-head > span {
  font-size: 0.875rem;
  font-weight: 500;
}
.contact__form .c-head > ul {
  counter-reset: num 0;
}
.contact__form .c-head > ul > li {
  display: flex;
}
.contact__form .c-head > ul > li::before {
  counter-increment: num 1;
  display: inline-block;
  content: counter(num) ",";
}
.contact__form .c-head .mt {
  margin-top: 20px;
}
.contact__form .c-head > p > a {
  color: #11a4bf;
  transition: 0.3s ease;
}
.contact__form .c-head > p > a:hover {
  opacity: 0.7;
}
.contact__form .c-data input[type=text],
.contact__form .c-data input[type=email],
.contact__form .c-data input[type=tel] {
  width: 100%;
  padding: 0.25em 0.5em;
  background-color: #f2f2f2;
}
.contact__form .c-data textarea {
  width: 100%;
  padding: 0.25em 0.5em;
  background-color: #f2f2f2;
  height: 100px;
}
.contact__form .c-data .your-age .wpcf7-list-item {
  width: 30%;
  margin: 5px 0 0 0;
}
.contact__form .c-data .your-age .wpcf7-list-item.last {
  width: auto;
}
.contact__form .c-data .your-reason .wpcf7-list-item {
  margin: 5px 0 0 0;
  width: 25%;
}
@media screen and (max-width: 572px) {
  .contact__form .c-data .your-reason .wpcf7-list-item {
    width: 100%;
  }
}
.contact__form .c-data .your-reason .wpcf7-list-item:nth-of-type(3) {
  width: 50%;
}
@media screen and (max-width: 572px) {
  .contact__form .c-data .your-reason .wpcf7-list-item:nth-of-type(3) {
    width: 100%;
  }
}
.contact__form .c-data .your-reason .wpcf7-list-item.last {
  width: auto;
}
.contact__form .c-data .your-date .wpcf7-list-item {
  margin: 5px 0 0 0;
}
.contact__form .c-data .wpcf7-acceptance .wpcf7-list-item {
  margin: 10px 0 0 0;
}
.contact__form .c-data .wpcf7-acceptance .wpcf7-list-item-label {
  font-weight: 600;
}
.contact__form .btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
@media screen and (max-width: 572px) {
  .contact__form .btn-wrap {
    gap: 10px;
    flex-direction: column-reverse;
  }
}
.contact__form .btn-wrap .l-btn {
  width: 220px;
  position: relative;
}
.contact__form .btn-wrap .l-btn .wpcf7-spinner {
  position: absolute;
  inset: 0;
}
.contact__form .btn-wrap .l-btn.l-send::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  margin-left: 1em;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translate(0, -50%);
}
.contact__form .btn-wrap .l-btn input[type=submit],
.contact__form .btn-wrap .l-btn input[type=button] {
  width: 100%;
  padding: 0.8em 0;
  text-align: center;
  font-weight: bold;
  transition: 0.3s;
  line-height: 1;
}
.contact__form .btn-wrap .l-btn input[type=submit]:hover,
.contact__form .btn-wrap .l-btn input[type=button]:hover {
  opacity: 0.7;
}
.contact__form .btn-wrap .l-btn .back-btn {
  background-color: #666;
  color: #fff;
}
.contact .wpcf7-response-output {
  display: none;
}

.kouenkai .send-btn {
  background-color: #11a4bf;
  color: #fff;
}

.yosenkai .send-btn {
  background-color: #d4145a;
  color: #fff;
}

.kbn-hidden {
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
  visibility: hidden;
}

.confirm {
  margin-top: 80px;
}
.confirm .ttl-img img {
  margin: 0 auto;
}
.confirm .c-head {
  margin-top: 30px;
}
.confirm .c-head .f-label {
  font-weight: 600;
}
.confirm .c-comfirm {
  padding: 0.25em 0.5em;
  background-color: #f2f2f2;
}

.event-main {
  margin-top: 10px;
  background-color: #f8f5ef;
  padding-bottom: 50px;
}
.event-main .event-fv {
  width: min(1180px, 100%);
  margin-inline: auto;
}
.event-main .event-fv img {
  width: 100%;
}
.event-main .page-link {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.event-main .page-link > a {
  display: block;
  border: 2px solid #ecaec6;
  text-align: center;
  padding: 0.25em 0;
  font-weight: bold;
  width: 160px;
  font-size: 0.937rem;
  transition: 0.2s ease;
}
.event-main .page-link > a:hover {
  background-color: #ecaec6;
  color: #fff;
}
.event-main .event-title {
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  text-align: center;
  font-size: 1.5rem;
  margin-top: 20px;
}
@media screen and (max-width: 572px) {
  .event-main .event-title {
    font-size: 1.25rem;
  }
}
.event-main .event-title > span {
  display: inline-block;
}
.event-main .event-msg {
  text-align: center;
}
.event-main .schedule {
  position: relative;
  margin-top: 50px;
}
.event-main .schedule__head {
  width: min(550px, 100%);
  margin: 30px auto 0;
}
.event-main .schedule__head > img {
  width: 100%;
  height: auto;
}
.event-main .schedule__time {
  width: min(500px, 100%);
  margin: 30px auto 0;
}
.event-main .schedule__time > img {
  width: 100%;
  height: auto;
}
.event-main .schedule .schedule-img1 {
  width: 220px;
  position: absolute;
  top: 50%;
  right: 85%;
}
@media screen and (max-width: 572px) {
  .event-main .schedule .schedule-img1 {
    display: none;
  }
}
.event-main .schedule .schedule-img2 {
  width: 300px;
  position: absolute;
  top: 20%;
  left: 85%;
}
@media screen and (max-width: 572px) {
  .event-main .schedule .schedule-img2 {
    display: none;
  }
}
.event-main .schedule .schedule-img3 {
  width: 220px;
  position: absolute;
  bottom: 0;
  left: 77%;
}
@media screen and (max-width: 572px) {
  .event-main .schedule .schedule-img3 {
    bottom: -50px;
    left: 70%;
    width: 180px;
  }
}
.event-main .detail {
  margin-top: 50px;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 964px) {
  .event-main .detail {
    flex-direction: column;
  }
}
.event-main .detail .l-left {
  flex-shrink: 0;
  width: 380px;
  font-size: 0.875rem;
}
@media screen and (max-width: 964px) {
  .event-main .detail .l-left {
    flex: initial;
    width: 100%;
    display: contents;
  }
}
.event-main .detail .l-left .detail-opening {
  width: 100%;
  margin-top: 30px;
}
@media screen and (max-width: 964px) {
  .event-main .detail .l-left .detail-opening {
    order: 10;
  }
}
@media screen and (max-width: 572px) {
  .event-main .detail .l-left .detail-opening {
    margin-top: 10px;
  }
}
.event-main .detail .l-left .detail-opening > img {
  width: 100%;
  height: auto;
}
.event-main .detail .l-right {
  flex: 1;
}
@media screen and (max-width: 964px) {
  .event-main .detail .l-right {
    margin-top: 80px;
  }
}
.event-main .detail__item {
  margin-top: 20px;
}
.event-main .detail__item .time {
  font-family: "Source Sans 3", sans-serif;
  font-weight: bold;
  font-size: 2rem;
  padding-left: 10px;
  color: #ecaec6;
  line-height: 1.2;
}
.event-main .detail__item .item-block {
  border: 2px solid #ecaec6;
  position: relative;
}
.event-main .detail__item .item-block .detail-balloon {
  position: absolute;
  display: block;
  width: 50%;
  bottom: 100%;
  right: 0;
  transform: translate(0, 45%);
}
@media screen and (max-width: 572px) {
  .event-main .detail__item .item-block .detail-balloon {
    width: 55%;
    transform: none;
  }
}
.event-main .detail__item .item-block .head {
  background-color: #ecaec6;
  color: #fff;
  padding-left: 10px;
  font-size: 1.5rem;
  font-weight: bold;
}
.event-main .detail__item .item-block .head > .mini {
  font-size: 0.5em;
}
.event-main .detail__item .item-block .inner {
  padding: 1rem;
  background-color: #fff;
}
.event-main .detail__item .item-block .inner .text.sub {
  font-size: 0.875rem;
  margin-top: 0.5em;
}
.event-main .detail__item .item-block .inner .place {
  border: 1px solid #ecaec6;
  margin-top: 10px;
}
.event-main .detail__item .item-block .inner .place > h4 {
  background-color: #ecaec6;
  text-align: center;
}
.event-main .detail__item .item-block .inner .place > p {
  text-align: center;
  background-color: #fff;
}
.event-main .detail__item .item-block .inner .talk-member {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 572px) {
  .event-main .detail__item .item-block .inner .talk-member {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.event-main .detail__item .item-block .inner .talk-member__image {
  width: 140px;
  flex-shrink: 0;
}
.event-main .detail__item .item-block .inner .talk-member__image > img {
  width: 100%;
  height: auto;
}
.event-main .detail__item .item-block .inner .talk-member__image > p {
  font-size: 0.875rem;
}
.event-main .detail__item .item-block .inner .talk-member__block {
  flex: 1;
}
.event-main .detail__item .item-block .inner .talk-member__block > h4 {
  font-size: 1.125rem;
  font-weight: bold;
}
.event-main .detail__item .item-block .inner .talk-member__block > h4 > span {
  font-size: 0.875rem;
}
.event-main .detail__item .item-block .inner .talk-member__block > p {
  margin-top: 5px;
}
.event-main .book {
  margin-top: 80px;
}
.event-main .book__head {
  width: min(550px, 100%);
  margin: 30px auto 0;
  position: relative;
}
.event-main .book__head > img {
  width: 100%;
  height: auto;
}
.event-main .book__head .book-head-img1 {
  width: 260px;
  position: absolute;
  right: 100%;
  top: 0;
}
@media screen and (max-width: 964px) {
  .event-main .book__head .book-head-img1 {
    right: 95%;
  }
}
@media screen and (max-width: 572px) {
  .event-main .book__head .book-head-img1 {
    display: none;
  }
}
.event-main .book__head .book-head-img2 {
  width: 180px;
  position: absolute;
  left: 100%;
  top: 0;
}
@media screen and (max-width: 964px) {
  .event-main .book__head .book-head-img2 {
    left: 95%;
  }
}
@media screen and (max-width: 572px) {
  .event-main .book__head .book-head-img2 {
    display: none;
  }
}
.event-main .book__head .book-head-img3 {
  width: 100%;
  display: none;
}
@media screen and (max-width: 572px) {
  .event-main .book__head .book-head-img3 {
    display: block;
  }
}
.event-main .book__content {
  display: flex;
  margin-top: 50px;
  gap: 50px;
}
@media screen and (max-width: 964px) {
  .event-main .book__content {
    gap: 30px;
  }
}
@media screen and (max-width: 572px) {
  .event-main .book__content {
    margin-top: 30px;
    flex-direction: column;
    gap: 0;
  }
}
.event-main .book__content .l-left,
.event-main .book__content .l-right {
  width: 50%;
}
@media screen and (max-width: 572px) {
  .event-main .book__content .l-left,
.event-main .book__content .l-right {
    width: 100%;
  }
}
.event-main .book .book-item {
  margin-top: 30px;
}
.event-main .book .book-item .item-title {
  background-size: contain;
  background-repeat: no-repeat;
  color: #82c2c1;
  font-weight: bold;
  font-size: 1.5rem;
  height: 50px;
  line-height: 50px;
  padding-left: 80px;
}
@media screen and (max-width: 964px) {
  .event-main .book .book-item .item-title {
    line-height: 42px;
  }
}
@media screen and (max-width: 572px) {
  .event-main .book .book-item .item-title {
    font-size: 1.25rem;
    padding-left: 70px;
  }
}
@media screen and (max-width: 375px) {
  .event-main .book .book-item .item-title {
    line-height: 37px;
    height: 37px;
  }
}
.event-main .book .book-item .item-title.short {
  background-image: url(../image/event/book-head-bg-short.png);
}
.event-main .book .book-item .item-title.large {
  background-image: url(../image/event/book-head-bg-large.png);
  padding-left: 0;
  text-align: center;
}
@media screen and (max-width: 572px) {
  .event-main .book .book-item .item-title.large {
    background-image: url(../image/event/book-head-bg-short.png);
    padding-left: 70px;
    text-align: left;
  }
}
.event-main .book .book-item .item-title > span {
  font-size: 0.75em;
}
.event-main .book .book-item .item-text {
  margin-left: 30px;
  margin-top: 10px;
}
@media screen and (max-width: 572px) {
  .event-main .book .book-item .item-text {
    margin-left: 10px;
  }
}
.event-main .book .book-item .item-text.g-large {
  font-size: 1.25rem;
  font-weight: bold;
  color: #82c2c1;
  line-height: 1.4;
}
.event-main .book .book-item .item-text.b-large {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 572px) {
  .event-main .book .book-item .item-text.b-large {
    margin-bottom: 5px;
  }
}
.event-main .book .book-item .item-text > .mini {
  font-size: 0.75em;
}
.event-main .book .book-item .item-list {
  margin-left: 30px;
  margin-top: 10px;
}
@media screen and (max-width: 572px) {
  .event-main .book .book-item .item-list {
    margin-left: 0;
  }
}
.event-main .book .book-item .item-list > li {
  background-color: #dcecec;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 5px;
  line-height: 1.4;
  height: 50px;
}
.event-main .book .book-item .item-list > li:not(:first-child) {
  margin-top: 5px;
}
.event-main .book .book-item .inner {
  display: flex;
}
@media screen and (max-width: 572px) {
  .event-main .book .book-item .inner {
    flex-direction: column;
  }
}
.event-main .book .book-item .inner .l-left,
.event-main .book .book-item .inner .l-right {
  margin-top: 10px;
  width: 50%;
}
@media screen and (max-width: 572px) {
  .event-main .book .book-item .inner .l-left,
.event-main .book .book-item .inner .l-right {
    width: 100%;
  }
}
.event-main .book .book-item .inner .l-left {
  padding-right: 10px;
  flex-shrink: 0;
}
.event-main .book .book-item .inner .l-right {
  padding-left: 10px;
  display: flex;
  gap: 20px;
}
.event-main .book .book-item .inner .l-right.l-border {
  border-left: 3px dotted #82c2c1;
}
@media screen and (max-width: 572px) {
  .event-main .book .book-item .inner .l-right.l-border {
    border-left: none;
  }
}
.event-main .book .book-item .inner .l-right .item-image {
  width: 120px;
  flex-shrink: 0;
}
.event-main .book .book-item .inner .l-right .item-image > img {
  width: 100%;
}
.event-main .book .book-item .inner .l-right .item-block {
  font-size: 0.875rem;
}
.event-main .book .book-item .inner .l-right .item-block .item-text {
  margin: 10px 0 0;
}
.event-main .book .book-item .inner .l-right .sanka > p:nth-child(1) {
  background-color: #dcecec;
  text-align: center;
}
.event-main .book .book-item .inner .l-right .sanka > p:nth-child(2) {
  margin-top: 5px;
}
.event-main .book .kitchencar {
  width: 100%;
  margin-top: 10px;
}
.event-main .book .kitchencar img {
  width: 100%;
  height: auto;
}
.event-main .access {
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .event-main .access {
    margin-top: 40px;
  }
}
.event-main .access__head {
  width: min(550px, 100%);
  margin: 30px auto 0;
  position: relative;
}
.event-main .access__head > img {
  width: 100%;
  height: auto;
}
.event-main .access__head .access-head-img {
  width: 120px;
  position: absolute;
  right: 105%;
  top: 30px;
}
.event-main .access__map {
  width: 100%;
}
.event-main .access__map iframe {
  margin-top: 30px;
  width: 100%;
  height: 350px;
}
@media screen and (max-width: 572px) {
  .event-main .access__map iframe {
    height: 250px;
  }
}
.event-main .access__text {
  margin-top: 10px;
}
.event-main .access__note {
  margin-top: 20px;
  text-align: center;
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (max-width: 572px) {
  .event-main .access__note {
    font-size: 1rem;
  }
}
.event-main .info {
  margin-top: 30px;
}
.event-main .info__instagram {
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  gap: 30px;
  height: 80px;
  background-color: #fcd6e1;
  color: #ff0c81;
  justify-content: center;
  align-items: center;
  transition: 0.2s ease;
}
@media screen and (max-width: 572px) {
  .event-main .info__instagram {
    font-size: 1.25rem;
    gap: 10px;
    height: 60px;
  }
}
.event-main .info__instagram:hover {
  opacity: 0.8;
}
.event-main .info__instagram > img {
  width: 40px;
  display: inline-block;
  flex-shrink: 0;
}
@media screen and (max-width: 572px) {
  .event-main .info__instagram > img {
    width: 25px;
  }
}
.event-main .info__text {
  margin-top: 20px;
  text-align: center;
  font-size: 1.125rem;
  font-weight: bold;
}
.event-main .info__text > p {
  margin-top: 5px;
}
.event-main .info__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 572px) {
  .event-main .info__list {
    gap: 5px;
  }
}
.event-main .info__list > li {
  width: 60px;
}
.event-main .info__list > li > img {
  width: 100%;
}

.thanks-main {
  margin-top: 100px;
}
.thanks-main .title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
.thanks-main .text {
  margin-top: 30px;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}
.thanks-main .back-btn {
  margin: 80px auto 0;
  width: 240px;
  padding: 0.8em 0;
  text-align: center;
  font-weight: bold;
  transition: 0.3s;
  line-height: 1;
  background-color: #666;
  color: #fff;
  display: block;
}
.thanks-main .back-btn:hover {
  opacity: 0.7;
}

.policy-main .policy {
  margin-top: 180px;
}
.policy-main .policy__title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.policy-main .policy__content {
  margin-top: 50px;
  line-height: 1.8;
}
@media screen and (max-width: 572px) {
  .policy-main .policy__content {
    margin-top: 30px;
  }
}
.policy-main .policy__content h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 2em;
}
.policy-main .policy__content h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 2em;
}
.policy-main .policy__content p {
  margin-top: 1em;
}
.policy-main .policy__content p a {
  text-decoration: underline;
  transition: 0.3s;
}
.policy-main .policy__content p a:hover {
  opacity: 0.7;
}
.policy-main .policy__content ol {
  padding-left: 1.5rem;
  counter-reset: number 0;
}
.policy-main .policy__content ol li {
  margin-top: 10px;
}
.policy-main .policy__content ol li::before {
  counter-increment: number 1;
  content: counter(number) ". ";
}

.p-404 {
  width: 100%;
  margin-top: 100px;
  padding: 0 20px;
  text-align: center;
}
.p-404 .title {
  font-size: 2rem;
  font-weight: bold;
}
.p-404 .text {
  margin-top: 30px;
  font-size: 1.25rem;
  font-weight: bold;
}
.p-404 .back-btn {
  margin: 80px auto 0;
  display: block;
  color: #1a1a1a;
  border: 1px solid currentColor;
  padding: 0.5em 0;
  width: 280px;
  transition: 0.3s;
  text-align: center;
}
.p-404 .back-btn:hover {
  opacity: 0.7;
}
/*# sourceMappingURL=style.css.map */