@charset "UTF-8";
/* Foundation
-------------------------------- */
/* Font
----------------------------------------------- */
@import 'https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap';
@import 'https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&display=swap';
@import 'https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap';
/* Reset
----------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-size: 100%;
  vertical-align: baseline;
  border: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: "";
  content: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

body {
  font-family: "Noto Sans JP", serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.1em;
  background: #100f24;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 12px;
  }
}

a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all ease-out 0.3s;
}
a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
}

h1 {
  font-size: clamp(12px, 1.25vw, 24px);
}

.text {
  font-size: 1.25rem;
}

/* Layout
-------------------------------- */
.l-header {
  position: fixed;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
}
.l-header__logo {
  position: relative;
  z-index: 999;
  font-family: "Cormorant Garamond", serif;
  font-size: 35px;
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 0 0 0 15px;
  }
  .l-header__logo {
    font-size: 25px;
  }
}

.l-header__icon {
  position: relative;
  z-index: 999;
  display: inline-block;
  padding: 15px;
  cursor: pointer;
}
.l-header__icon div {
  width: 35px;
  height: 2px;
  margin: 6px 0;
  background-color: #fff;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .l-header__icon div {
    width: 25px;
  }
}

.change .l-header__bar1 {
  transform: rotate(-45deg) translate(-7px, 7px);
}
.change .l-header__bar2 {
  opacity: 0;
}
.change .l-header__bar3 {
  transform: rotate(45deg) translate(-3px, -4px);
}

.l-header__menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  overflow-y: auto;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: opacity 0.5s;
}
.l-header__menu.fadein {
  pointer-events: auto;
  opacity: 1;
}
.l-header__menu.fadeout {
  pointer-events: none;
  opacity: 0;
}
.l-header__menu ul {
  display: flex;
  gap: 20px;
  width: 80%;
  height: 70%;
  padding: 0;
  margin: auto;
  text-align: center;
  list-style-type: none;
}
.l-header__menu ul li {
  line-height: 1.5;
}
.l-header__menu ul li a {
  position: relative;
  display: flex;
  flex-direction: column;
  place-items: center;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 30px;
  overflow: hidden;
  font-size: 30px;
  color: white;
  text-decoration: none;
  border: 1px solid #000;
}
.l-header__menu ul li a::before {
  position: absolute;
  inset: -3px;
  z-index: -1;
  content: "";
  filter: blur(3px) grayscale(100%);
  transition: all 0.5s ease;
}
.l-header__menu ul li a:hover {
  border: 1px solid #fff;
  opacity: 1;
}
.l-header__menu ul li a:hover::before {
  filter: grayscale(0%);
  transform: scale(108%);
}
@media screen and (max-width: 1000px) {
  .l-header__menu ul {
    flex-direction: column;
    gap: 10px;
    place-items: center;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
  }
  .l-header__menu ul li a {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-header__menu ul {
    width: 90%;
    height: 100%;
  }
}
.l-header__menu-time {
  width: -moz-fit-content;
  width: fit-content;
  width: 100%;
  padding: 10px 15px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.05);
}
.l-header__menu-time span {
  display: block;
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.l-header__menu-title {
  width: 100%;
  padding: 0;
  margin: 20px 0;
  font-size: 20px;
}
.l-header__menu-detail {
  font-size: 14px;
  text-align: left;
}
.l-header__menu-first ::before {
  background: url("../images/bg_menu02.jpg") no-repeat center/cover;
}
.l-header__menu-second ::before {
  background: url("../images/bg_menu01.jpg") no-repeat center left/cover;
}
.l-header__menu-third ::before {
  background: url("../images/bg_menu03.jpg") no-repeat center/cover;
}
@media screen and (max-width: 1000px) {
  .l-header__menu-title {
    padding: 10px;
    margin: 0;
    font-size: 16px;
  }
  .l-header__menu-detail {
    padding: 0 15px 20px;
    font-size: 10px;
    color: #ccc;
  }
}

.l-footer {
  padding: 1vw 5vw;
  line-height: 2;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.l-footer ul {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.l-footer ul li {
  font-size: 12px;
}
.l-footer ul li img {
  width: 15px;
  margin-right: 5px;
  margin-bottom: -3px;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 3vw 0;
  }
}

/* Component
-------------------------------- */
.c-heading {
  font-family: "Cormorant Garamond", serif;
}

.c-title {
  margin-bottom: 5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.125rem, 0.852rem + 11.36vw, 9.375rem);
  line-height: 0.8;
}
.c-title span {
  font-size: 25px;
  margin-left: 30px;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", serif;
}
@media screen and (max-width: 767px) {
  .c-title {
    margin-bottom: 40px;
    font-size: 50px;
  }
  .c-title span {
    font-size: 18px;
    margin-left: 15px;
  }
}

.c-btn {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 360px;
  font-size: 14px;
  text-align: center;
  transition: all ease 0.3s;
}
.c-btn_no {
  max-width: 400px;
  padding: 1.2vw 2vw;
  border: 1px solid;
}
.c-btn a {
  display: block;
  padding: 1.2vw 2vw;
  background: #bb007a;
  border-radius: 100px;
}
.c-btn a::after {
  position: absolute;
  top: calc((100% - 5px) / 2);
  right: 20px;
  display: inline-block;
  width: 5px;
  height: 5px;
  content: "";
  border-top: 1px solid;
  border-right: 1px solid;
  transition: all ease 0.3s;
  transform: rotate(45deg);
}
.c-btn a:hover {
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
}
.c-btn a:hover::after {
  right: 15px;
}
.c-btn a:active {
  background: rgba(255, 255, 255, 0.1);
}
.c-btn_gray a {
  background: #333;
}
.c-btn_gray a::after {
  position: absolute;
  top: calc((100% - 5px) / 2);
  left: 20px;
  display: inline-block;
  width: 5px;
  height: 5px;
  content: "";
  border-top: 1px solid;
  border-right: 1px solid;
  transition: all ease 0.3s;
  transform: rotate(-135deg);
}
.c-btn_gray a:hover::after {
  left: 15px;
}
@media screen and (max-width: 767px) {
  .c-btn a {
    padding: 15px 20px;
  }
}

.c-fadebottom {
  animation: 3s fadebottom 0.3s 1 both;
}

@keyframes fadebottom {
  0% {
    filter: blur(20px);
    opacity: 0;
    transform: translateY(30px);
  }
  45% {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }
}
.c-bg-blur {
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}

.c-inner {
  margin: 0 5vw;
}

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

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

.c-member {
  display: grid;
  grid-template-columns: 1fr 1fr 4fr;
}
.c-member + .c-member {
  padding-top: 3vw;
  margin-top: 3vw;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.c-member .c-detail {
  width: 100%;
  padding-left: 30px;
}
.c-member .c-name {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 500;
}
.c-member .c-company {
  margin-bottom: 8px;
}
.c-member .c-company span {
  margin-left: 10px;
}
.c-member .c-profile {
  font-size: 12px;
  line-height: 1.8;
}
.c-member .c-position {
  display: inline-block;
  padding: 3px;
  margin-bottom: 5px;
  font-size: 10px;
  color: #ccc;
  border: 1px solid #666;
}
@media screen and (max-width: 1000px) {
  .c-member {
    grid-template-areas: "A C" "B C";
    grid-template-columns: 1fr 3fr;
  }
  .c-member .c-img {
    grid-area: A;
  }
  .c-member .c-logo {
    grid-area: B;
  }
  .c-member .c-detail {
    grid-area: C;
  }
}
@media screen and (max-width: 640px) {
  .c-member {
    grid-template-areas: "A B" "C C";
    grid-template-columns: 1fr 1fr auto;
  }
  .c-member + .c-member {
    padding-top: 30px;
    margin-top: 30px;
  }
  .c-member .c-name {
    margin-bottom: 15px;
  }
  .c-member .c-profile {
    font-size: 12px;
  }
  .c-member .c-detail {
    padding: 15px 0 0;
  }
}

.c-time {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1vw;
  font-size: 18px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .c-time {
    font-size: 16px;
  }
}

.c-stitle {
  margin-bottom: 2vw;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.25rem, 0.795rem + 2.27vw, 2.5rem);
  font-weight: normal;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-stitle {
    margin: 20px 0;
  }
}

.c-memberList {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 30px 0 50px;
}
.c-memberList li {
  width: calc((100% - 30px) / 2);
}
@media screen and (max-width: 767px) {
  .c-memberList li {
    width: 100%;
  }
}

.c-content + .c-content {
  margin-top: 18vw;
}

.c-stitlearea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5vw 4vw;
  margin-bottom: 5vw;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.c-stitlearea__text {
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .c-stitlearea {
    padding: 30px 20px;
    background-position: center;
  }
}

.c-btnArea {
  margin: 8vw 0;
  text-align: center;
}
.c-btnArea__depend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 5vw;
}
.c-btnArea__depend li {
  min-height: 250px;
}
.c-btnArea__depend li a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 30px;
  overflow: hidden;
  font-size: 30px;
  color: white;
  text-decoration: none;
}
.c-btnArea__depend li a::before {
  position: absolute;
  inset: -3px;
  z-index: -1;
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  filter: grayscale(100%);
  -webkit-backdrop-filter: grayscale(100%);
          backdrop-filter: grayscale(100%);
  transition: all 0.5s ease;
}
.c-btnArea__depend li a:hover {
  opacity: 1;
}
.c-btnArea__depend li a:hover::before {
  filter: grayscale(0%);
  transform: scale(108%);
}
.c-btnArea__depend-time {
  width: 100%;
  padding-bottom: 15px;
  margin-bottom: 15px;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.c-btnArea__depend-title {
  font-size: 20px;
  line-height: 1.5;
}
.c-btnArea__depend-first ::before {
  background: url("../images/bg_menu02.jpg") no-repeat center/cover;
}
.c-btnArea__depend-second ::before {
  background: url("../images/bg_menu01.jpg") no-repeat center left/cover;
}
.c-btnArea__depend-third ::before {
  background: url("../images/bg_menu03.jpg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .c-btnArea {
    margin-bottom: 100px;
  }
  .c-btnArea__depend {
    display: flex;
    flex-direction: column;
  }
  .c-btnArea__depend li {
    min-height: 100%;
  }
  .c-btnArea__depend li + li {
    border-top: 1px solid #fff;
  }
  .c-btnArea__depend-title {
    font-size: 14px;
    line-height: 1.5;
  }
}

.c-btnArea_back {
  padding: 3vw 5vw 5vw;
  text-align: center;
}

.pager {
  text-align: center;
  clear: both;
  margin: 5vw 0;
}
.pager a {
  background: #bb007a;
  color: #333;
  font-size: 16px;
  padding: 5px 12px 5px;
  text-decoration: none;
  display: inline-block;
  margin: 0 5px 5px 0;
}
.pager a:hover {
  background: #000;
  color: #fff;
}
.pager .current {
  background: #ccc;
  color: #fff;
  font-size: 16px;
  padding: 5px 12px 5px;
  display: inline-block;
  margin: 0 5px 5px 0;
}
@media screen and (max-width: 767px) {
  .pager a {
    font-size: 12px;
  }
  .pager .current {
    font-size: 12px;
  }
}

/* Project
-------------------------------- */
.top {
  background: #100f24;
}

.p-mainvs {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  transition: all ease 1s;
}

.scrolled {
  filter: blur(3px);
  opacity: 0.5;
}

.p-top-mainvs {
  position: relative;
  z-index: 99;
  display: flex;
  flex-direction: column;
  place-items: center;
  align-items: center;
  justify-content: center;
  height: 100svh;
  padding: 0 5vw;
  margin-bottom: 5vw;
  text-align: center;
}
.p-top-mainvs__catch {
  min-height: 2em;
  margin: 2vw 0 1vw;
  font-size: clamp(0.875rem, 0.739rem + 0.68vw, 1.25rem);
  letter-spacing: 0.4em;
}
.p-top-mainvs__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5rem, 20.57vw, 19.063rem);
  line-height: 0.8;
}
.p-top-mainvs__day {
  margin-bottom: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 100px;
}
.p-top-mainvs__day span {
  font-size: 50px;
}
.p-top-mainvs__day b {
  font-size: 33px;
}
.p-top-mainvs__place {
  margin-bottom: 3vw;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1000px) {
  .p-top-mainvs {
    height: 100svh;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mainvs__title {
    margin-bottom: 20px;
  }
  .p-top-mainvs__catch {
    min-height: 3em;
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
  .p-top-mainvs__day {
    margin-bottom: 40px;
    font-size: 50px;
    line-height: 0.5;
  }
  .p-top-mainvs__day span {
    font-size: 20px;
  }
  .p-top-mainvs__day b {
    font-size: 20px;
  }
  .p-top-mainvs__place {
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 400;
  }
}

.p-top-about .c-inner {
  display: flex;
  margin: 0 0 15vw 5vw;
}
.p-top-about__box {
  z-index: 1;
  width: 100%;
  margin: 8vw 0 5vw;
}
.p-top-about__text {
  margin-bottom: 4rem;
  line-height: 3;
}
.p-top-about__date {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.5rem 8rem;
  line-height: 1.5;
  border: 1px solid;
}
.p-top-about__img {
  width: 60%;
  margin-left: -60%;
}
.p-top-about__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 75% bottom;
     object-position: 75% bottom;
}
@media screen and (max-width: 767px) {
  .p-top-about .c-inner {
    margin: 0 0 30vw 5vw;
  }
  .p-top-about__box {
    padding-right: 5vw;
    margin: 27vw 0 5vw;
  }
  .p-top-about__text {
    margin-bottom: 5vw;
    line-height: 2;
  }
  .p-top-about__date {
    width: 100%;
    padding: 4vw;
  }
  .p-top-about__img {
    width: 80%;
    height: 200px;
    margin: 0 0 0 -80%;
  }
  .p-top-about__img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-top-schedule {
  margin-bottom: 15vw;
}
.p-top-schedule .c-inner {
  display: grid;
  grid-template-columns: 1fr auto;
}
.p-top-schedule__title {
  order: 2;
  margin: -5vw 0 0 5vw;
  writing-mode: vertical-rl;
}
.p-top-schedule__list {
  display: flex;
  gap: 2vw;
  order: 1;
}
.p-top-schedule__list li {
  position: relative;
  width: 33%;
  /*
  &:hover::before,
  &:hover::after {
    width: 100%;
  }


  &:hover a::before,
  &:hover a::after {
    height: 100%;
  }
  */
}
.p-top-schedule__list li::before, .p-top-schedule__list li::after {
  position: absolute;
  width: 0;
  height: 1px;
  content: "";
  background: #0481a2;
  transition: all 0.3s linear;
}
.p-top-schedule__list li::before {
  top: 0;
  right: 0;
}
.p-top-schedule__list li::after {
  bottom: 0;
  left: 0;
  transition-delay: 0.2s;
}
.p-top-schedule__list li a {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #fff;
  /* &::before,
  &::after {
    position: absolute;
    width: 1px;
    height: 0;
    content: "";
    background: #0481A2;
    transition: all 0.3s linear;
  }

  &::before {
    top: 0;
    left: 0;
  }

  &::after {
    right: 0;
    bottom: 0;
  } */
}
.p-top-schedule__list li img {
  vertical-align: bottom;
}
.p-top-schedule .c-btn {
  margin: 5vw auto 0;
}
.p-top-schedule__btn {
  position: relative;
  font-size: 14px;
  transition: all ease 0.3s;
}
.p-top-schedule__btn a {
  display: block;
  padding: 1.2vw 2vw;
}
.p-top-schedule__btn a::after {
  position: absolute;
  top: calc((100% - 5px) / 2);
  right: 20px;
  display: inline-block;
  width: 5px;
  height: 5px;
  content: "";
  border-top: 1px solid;
  border-right: 1px solid;
  transition: all ease 0.3s;
  transform: rotate(45deg);
}
.p-top-schedule__btn a:hover {
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
}
.p-top-schedule__btn a:hover::after {
  right: 15px;
}
.p-top-schedule__btn a:active {
  background: rgba(255, 255, 255, 0.1);
}
.p-top-schedule__part {
  padding: 0.5rem;
  font-size: 12px;
}
.p-top-schedule__time {
  margin: 20px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgb(187, 0, 122);
  letter-spacing: 0.1em;
}
.p-top-schedule__time time {
  margin-right: 10px;
  font-weight: 600;
}
.p-top-schedule__stitle {
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.p-top-schedule__place {
  margin-bottom: 1vw;
}
.p-top-schedule__detail {
  margin-bottom: 30px;
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-top-schedule {
    margin-bottom: 30vw;
  }
  .p-top-schedule__list {
    flex-direction: column;
    gap: 20vw;
  }
  .p-top-schedule__list li {
    width: 100%;
  }
  .p-top-schedule__list time {
    display: block;
    line-height: 1.5;
  }
  .p-top-schedule__btn a {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
  }
}

.p-top-access {
  margin-bottom: 10vw;
}
.p-top-access .c-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
}
.p-top-access__title {
  margin: 0 5vw 0 0;
  writing-mode: vertical-rl;
}
.p-top-access__box {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 20px;
}
.p-top-access__map {
  width: calc(40% - 30px);
}
.p-top-access__map iframe {
  width: 100%;
  max-width: 1000px;
  height: auto;
  aspect-ratio: 4/3;
  filter: grayscale(100%);
}
.p-top-access__img {
  width: 11.5%;
}
.p-top-access__img img {
  aspect-ratio: 389/950;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-access__text {
  width: 40%;
  line-height: 2;
}
.p-top-access__text h3 {
  margin-bottom: 0.5vw;
}
.p-top-access__text p {
  margin-bottom: 3vw;
}
.p-top-access__text ul li {
  line-height: 1.5;
}
.p-top-access__text ul li::before {
  content: "・";
}
@media screen and (max-width: 1000px) {
  .p-top-access {
    padding-bottom: 0;
  }
  .p-top-access .c-inner {
    gap: 0;
  }
  .p-top-access__title {
    margin: -5vw 5vw 0 0;
  }
  .p-top-access__box {
    gap: 0;
  }
  .p-top-access__map {
    width: 100%;
  }
  .p-top-access__img {
    width: 25%;
    margin: 5vw 0 15vw;
  }
  .p-top-access__text {
    width: 75%;
    padding-left: 15px;
    margin: 5vw 0 15vw;
    line-height: 1.5;
  }
}
.p-top-company {
  margin-bottom: 10vw;
}
.p-top-company__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.p-top-company__list li {
  width: calc((100% - 120px) / 6);
}
.p-top-company__text {
  margin-bottom: 5vw;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-top-company {
    margin-bottom: 30vw;
  }
  .p-top-company__list {
    gap: 10px;
  }
  .p-top-company__list li {
    width: calc((100% - 20px) / 3);
  }
}

.p-top-hisotry {
  margin-bottom: 15vw;
}
.p-top-hisotry__text {
  margin-bottom: 2vw;
  line-height: 1.5;
}
.p-top-hisotry__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.p-top-hisotry__list li {
  position: relative;
  width: 16.6666666667%;
  text-align: center;
}
.p-top-hisotry__list li + li::before {
  position: absolute;
  top: 50px;
  left: -50%;
  display: block;
  width: 100%;
  content: "";
  border-top: 1px solid #fff;
}
.p-top-hisotry__list li span {
  position: relative;
  z-index: 1;
  display: flex;
  place-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: auto;
  margin-bottom: 1vw;
  background: #100f24;
  border: 1px solid #fff;
  border-radius: calc(infinity * 1px);
}
.p-top-hisotry__list .current {
  font-weight: 700;
  color: rgb(187, 0, 122);
}
.p-top-hisotry__list .current span {
  color: #fff;
  background: rgb(187, 0, 122);
  border: none;
}
.p-top-hisotry__btn {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  margin-bottom: 5vw;
  font-size: 16px;
  font-weight: 500;
  transition: all ease 0.3s;
}
.p-top-hisotry__btn a {
  display: flex;
  padding: 15px;
  color: #bb007a;
  border: 1px solid;
}
.p-top-hisotry__btn a::after {
  position: absolute;
  top: calc((100% - 5px) / 2);
  right: 20px;
  display: inline-block;
  width: 5px;
  height: 5px;
  content: "";
  border-top: 1px solid;
  border-right: 1px solid;
  transition: all ease 0.3s;
  transform: rotate(45deg);
}
.p-top-hisotry__btn a:hover {
  color: #fff;
  opacity: 1;
}
.p-top-hisotry__btn a:hover::after {
  right: 15px;
}
.p-top-hisotry__name {
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-top-hisotry {
    margin-bottom: 30vw;
  }
  .p-top-hisotry__list {
    flex-wrap: wrap;
    gap: 20px 0;
    overflow: hidden;
  }
  .p-top-hisotry__list li {
    width: 33.3333333333%;
  }
  .p-top-hisotry__list li span {
    width: 80px;
    height: 80px;
  }
  .p-top-hisotry__list li + li::before {
    top: 40px;
  }
  .p-top-hisotry__list li:nth-of-type(3)::after {
    position: absolute;
    top: 40px;
    left: 50%;
    display: block;
    width: 100%;
    content: "";
    border-top: 1px solid #fff;
  }
  .p-top-hisotry__name {
    font-size: 12px;
    line-height: 1.2;
  }
}

.p-top-assoication {
  margin-bottom: 10vw;
}
.p-top-assoication__text {
  margin-bottom: 5vw;
  font-size: 14px;
}
.p-top-assoication ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 80px;
}
.p-top-assoication li {
  display: table;
  width: calc((100% - 100px) / 6);
  transition: all ease 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top-assoication ul {
    gap: 10px;
  }
  .p-top-assoication li {
    width: calc((100% - 20px) / 3);
  }
}

.p-top-market {
  margin-bottom: 10vw;
}
.p-top-market__text {
  margin-bottom: 5vw;
  font-size: 14px;
}
.p-top-market ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: stretch;
  margin-bottom: 80px;
}
.p-top-market li {
  display: table;
  width: calc((100% - 100px) / 6);
  transition: all ease 0.3s;
}
.p-top-market li a {
  display: table-cell;
  padding: 10px 15px;
  line-height: 1.3;
  color: #000;
  text-align: center;
  vertical-align: middle;
  background: #fff;
}
.p-top-market li a:hover {
  filter: brightness(1.25);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-top-market ul {
    gap: 10px;
  }
  .p-top-market li {
    width: calc((100% - 10px) / 2);
  }
}

.volunteer {
  color: #333;
}
.volunteer__title {
  margin-bottom: 20px;
  font-size: clamp(1.2rem, 0.682rem + 1.59vw, 1.875rem);
  text-align: center;
}
.volunteer .l-header {
  display: none;
}
.volunteer .l-footer {
  font-weight: 500;
}
.volunteer .l-footer img {
  filter: invert(98%) sepia(96%) saturate(0%) hue-rotate(246deg) brightness(102%) contrast(101%);
}
@media screen and (max-width: 767px) {
  .volunteer__title {
    margin-bottom: 30px;
    font-size: clamp(1.2rem, 0.682rem + 1.59vw, 1.875rem);
  }
}

.p-volunteer__btn {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: auto;
}
.p-volunteer__btn a {
  display: block;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #000;
  border-radius: calc(infinity * 1px);
}
@media screen and (max-width: 767px) {
  .p-volunteer__btn a {
    padding: 15px 10px;
    font-size: 14px;
  }
}
.p-volunteer__btn a:hover {
  color: #000;
  background: #ffe92e;
  opacity: 1;
}

.p-volunteer-mainvs {
  position: relative;
  padding: 20px 50px 50px;
  text-align: center;
  background: url("../images/bg_volunteer.jpg") no-repeat center bottom/cover;
}
.p-volunteer-mainvs__title {
  margin-bottom: 50px;
}
.p-volunteer-mainvs__img {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.p-volunteer-mainvs__img img {
  max-width: 100%;
  height: auto;
  margin: auto;
}
.p-volunteer-mainvs__bg {
  position: absolute;
  bottom: -150px;
  left: 0;
  z-index: 0;
  width: 100%;
}
.p-volunteer-mainvs__bg img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-volunteer-mainvs {
    padding: 0;
    overflow: hidden;
  }
  .p-volunteer-mainvs__title {
    margin-bottom: 20px;
  }
  .p-volunteer-mainvs__img {
    grid-template-columns: 1fr;
  }
  .p-volunteer-mainvs__img img {
    display: none;
  }
  .p-volunteer-mainvs__img img:nth-last-of-type(2) {
    display: block;
    padding: 0 50px;
  }
  .p-volunteer-mainvs__bg {
    bottom: 50px;
    width: 130%;
  }
}

.p-volunteer-detail {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 50px;
  margin: auto;
  margin-bottom: 120px;
  background: #fff;
  border: 3px solid #6adfce;
  border-radius: 20px;
}
.p-volunteer-detail table {
  margin-bottom: 50px;
}
.p-volunteer-detail tr {
  border-bottom: 1px dotted #ccc;
}
.p-volunteer-detail th,
.p-volunteer-detail td {
  padding: 20px;
  line-height: 1.5;
}
.p-volunteer-detail th {
  text-align: left;
}
.p-volunteer-detail td {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-volunteer-detail {
    padding: 40px 20px;
    margin: 30px 20px;
    border: 2px solid #6adfce;
    border-radius: 10px;
  }
  .p-volunteer-detail table {
    margin-bottom: 30px;
  }
  .p-volunteer-detail tr {
    border-bottom: none;
  }
  .p-volunteer-detail th {
    display: block;
    padding: 10px;
    background: #efefef;
  }
  .p-volunteer-detail td {
    display: block;
    padding: 10px 10px 20px;
  }
}

.p-volunteer-history {
  max-width: 1200px;
  margin: 0 auto 100px;
}
.p-volunteer-history ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 50px 0;
}
.p-volunteer-history ul li {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 767px) {
  .p-volunteer-history {
    padding: 40px 20px 50px;
    margin: 0;
  }
  .p-volunteer-history ul {
    gap: 10px;
    margin: 20px 0 30px;
  }
  .p-volunteer-history ul li {
    width: calc((100% - 10px) / 2);
  }
}

.first {
  background: #001614;
}
.first .c-time {
  color: #1de196;
}
.first .c-btn a {
  color: #000;
  background: #1de196;
}
.first .c-btn a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
}
.first .c-btn a:hover::after {
  right: 15px;
}
.first .c-btn a:active {
  background: rgba(255, 255, 255, 0.1);
}

.p-first-mainvs {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  transition: all ease 1s;
}

.p-first-intro {
  position: relative;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100svh;
  padding: 0 5vw;
}
.p-first-intro__catch {
  min-height: 2em;
  padding: 30px 0;
  margin: 2vw 0 1vw;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(3.125rem, 1.989rem + 4.68vw, 5.25rem);
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0;
}
.p-first-intro__catch span {
  color: #1de196;
}
.p-first-intro__title {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 50px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.563rem, 1.222rem + 1.7vw, 2.5rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.p-first-intro__title span {
  margin-left: 50px;
  font-size: clamp(1.125rem, 0.966rem + 0.8vw, 1.563rem);
}
.p-first-intro__day {
  margin-bottom: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: normal;
  line-height: 1.2;
}
.p-first-intro__day span {
  font-size: 20px;
}
.p-first-intro__day b {
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
  font-weight: normal;
}
@media screen and (max-width: 1000px) {
  .p-first-intro {
    height: 100svh;
  }
}
@media screen and (max-width: 767px) {
  .p-first-intro__title {
    padding: 5px 10px;
    margin-bottom: 20px;
    font-size: 18px;
  }
  .p-first-intro__title span {
    margin-left: 15px;
    font-size: 18px;
  }
  .p-first-intro__catch {
    min-height: 3em;
    margin: 0;
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 0.1em;
  }
  .p-first-intro__day {
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 1.5;
  }
  .p-first-intro__day span {
    font-size: 20px;
  }
  .p-first-intro__day b {
    font-size: 20px;
  }
}

.p-first-about {
  background: rgba(255, 255, 255, 0.05);
}
.p-first-about .c-inner {
  display: flex;
  margin: 0 0 10vw 5vw;
}
.p-first-about__box {
  z-index: 1;
  width: 100%;
  padding-right: 5vw;
  margin: 8vw 0;
}
.p-first-about__text {
  margin-bottom: 4rem;
  line-height: 3;
}
.p-first-about__date {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.5rem 8rem;
  line-height: 1.5;
  border: 1px solid;
}
.p-first-about__img {
  width: 60%;
}
.p-first-about__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
@media screen and (max-width: 767px) {
  .p-first-about .c-inner {
    margin: 0 0 30vw 5vw;
  }
  .p-first-about__box {
    margin: 20vw 0;
  }
  .p-first-about__text {
    margin-bottom: 5vw;
    line-height: 2;
  }
  .p-first-about__date {
    width: 100%;
    padding: 4vw;
  }
  .p-first-about__img {
    width: 30%;
  }
  .p-first-about__img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-first-lecture {
  margin-bottom: 8vw;
}
.p-first-lecture__title {
  order: 2;
  margin: 0 0 5vw;
}
.p-first-lecture__box {
  display: flex;
  align-items: flex-end;
}
.p-first-lecture__detail {
  width: 60%;
  margin-right: 5vw;
}
.p-first-lecture__text {
  line-height: 2;
}
.p-first-lecture__person {
  align-items: end;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .p-first-lecture__title {
    margin-bottom: 50px;
  }
  .p-first-lecture__box {
    flex-direction: column;
  }
  .p-first-lecture__detail {
    width: 100%;
    margin: 0;
  }
  .p-first-lecture__person {
    align-items: start;
    width: 100%;
    margin: 40px 0 80px;
  }
}

.p-first-seminar {
  margin-bottom: 15vw;
}
.p-first-seminar__text {
  margin-bottom: 5vw;
  line-height: 2;
}
.p-first-seminar .c-btnArea {
  margin-top: 5vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-first-seminar {
    margin-bottom: 80px;
  }
}

.second {
  background: #000000;
}
.second .c-time {
  color: #ff8c00;
}
.second .c-btn a {
  color: #000;
  background: #ff8c00;
}
.second .c-btn a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
}
.second .c-btn a:hover::after {
  right: 15px;
}
.second .c-btn a:active {
  background: rgba(255, 255, 255, 0.1);
}

.p-second-mainvs {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  transition: all ease 1s;
}

.p-second-intro {
  position: relative;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100svh;
  padding: 0 5vw;
}
.p-second-intro__catch {
  min-height: 2em;
  padding: 30px 0;
  margin: 2vw 0 1vw;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(3.125rem, 1.989rem + 5.68vw, 6.25rem);
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0;
}
.p-second-intro__catch span {
  color: #ff8c00;
}
.p-second-intro__catch b {
  font-size: clamp(1.875rem, 1.193rem + 3.41vw, 3.75rem);
}
.p-second-intro__title {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 50px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.563rem, 1.222rem + 1.7vw, 2.5rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.p-second-intro__title span {
  margin-left: 50px;
  font-size: clamp(1.125rem, 0.966rem + 0.8vw, 1.563rem);
}
.p-second-intro__day {
  margin-bottom: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: normal;
  line-height: 1.2;
}
.p-second-intro__day span {
  font-size: 20px;
}
.p-second-intro__day b {
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
  font-weight: normal;
}
@media screen and (max-width: 1000px) {
  .p-second-intro {
    height: 100svh;
  }
}
@media screen and (max-width: 767px) {
  .p-second-intro__title {
    padding: 5px 10px;
    margin-bottom: 20px;
    font-size: 18px;
  }
  .p-second-intro__title span {
    margin-left: 15px;
    font-size: 18px;
  }
  .p-second-intro__catch {
    min-height: 3em;
    margin: 0;
    font-size: 35px;
    line-height: 1.3;
    letter-spacing: 0.1em;
  }
  .p-second-intro__day {
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 1.5;
  }
  .p-second-intro__day span {
    font-size: 20px;
  }
  .p-second-intro__day b {
    font-size: 20px;
  }
}

.p-second-about {
  background: rgba(255, 255, 255, 0.05);
}
.p-second-about .c-inner {
  display: flex;
  margin: 0 0 10vw 5vw;
}
.p-second-about__box {
  z-index: 1;
  width: 100%;
  padding-right: 5vw;
  margin: 8vw 0;
}
.p-second-about__text {
  margin-bottom: 4rem;
  line-height: 3;
}
.p-second-about__date {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.5rem 8rem;
  line-height: 1.5;
  border: 1px solid;
}
.p-second-about__img {
  width: 60%;
}
.p-second-about__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
@media screen and (max-width: 767px) {
  .p-second-about .c-inner {
    margin: 0 0 30vw 5vw;
  }
  .p-second-about__box {
    margin: 10vw 0;
  }
  .p-second-about__text {
    margin-bottom: 8vw;
    line-height: 2;
  }
  .p-second-about__date {
    width: 100%;
    padding: 4vw;
  }
  .p-second-about__img {
    width: 30%;
  }
  .p-second-about__img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-second-mall {
  margin-bottom: 8vw;
}
.p-second-mall__title {
  order: 2;
  margin: 0 0 5vw;
}
.p-second-mall__detail {
  margin: 0 0 5vw;
}
.p-second-mall__text {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-second-mall__title {
    margin-bottom: 50px;
  }
  .p-second-mall__box {
    flex-direction: column;
  }
  .p-second-mall__detail {
    width: 100%;
    margin: 0;
  }
  .p-second-mall__person {
    align-items: start;
    width: 100%;
    margin: 40px 0 80px;
  }
}

.p-second-fashion {
  margin-bottom: 10vw;
}
.p-second-fashion__box {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 5vw;
}
.p-second-fashion__text {
  margin-bottom: 5vw;
  line-height: 2;
}
.p-second-fashion__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
@media screen and (max-width: 767px) {
  .p-second-fashion__box {
    grid-template-columns: 1fr;
  }
  .p-second-fashion__img img:nth-of-type(2) {
    display: none;
  }
  .p-second-fashion__text {
    margin-bottom: 8vw;
  }
}

.p-second-discussion {
  margin-bottom: 15vw;
}
.p-second-discussion__text {
  margin-bottom: 5vw;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-second-discussion {
    margin-bottom: 80px;
  }
  .p-second-discussion__text {
    margin-bottom: 8vw;
  }
}

.third {
  background: #000000;
}
.third .c-time {
  color: #bb007a;
}

.p-third-mainvs {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  transition: all ease 1s;
}

.p-third-intro {
  position: relative;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100svh;
  padding: 0 5vw;
}
.p-third-intro__catch {
  min-height: 2em;
  padding: 30px 0;
  margin: 2vw 0 1vw;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(3.125rem, 1.989rem + 5.68vw, 6.25rem);
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0;
}
.p-third-intro__catch span {
  color: #bb007a;
}
.p-third-intro__title {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 50px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.563rem, 1.222rem + 1.7vw, 2.5rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.p-third-intro__title span {
  margin-left: 50px;
  font-size: clamp(1.125rem, 0.966rem + 0.8vw, 1.563rem);
}
.p-third-intro__day {
  margin-bottom: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: normal;
  line-height: 1.2;
}
.p-third-intro__day span {
  font-size: 20px;
}
.p-third-intro__day b {
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
  font-weight: normal;
}
@media screen and (max-width: 1000px) {
  .p-third-intro {
    height: 100svh;
  }
}
@media screen and (max-width: 767px) {
  .p-third-intro__title {
    padding: 5px 10px;
    margin-bottom: 20px;
    font-size: 18px;
  }
  .p-third-intro__title span {
    margin-left: 15px;
    font-size: 18px;
  }
  .p-third-intro__catch {
    min-height: 3em;
    margin: 0;
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 0;
  }
  .p-third-intro__day {
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 1.5;
  }
  .p-third-intro__day span {
    font-size: 20px;
  }
  .p-third-intro__day b {
    font-size: 20px;
  }
}

.p-third-about {
  background: rgba(255, 255, 255, 0.05);
}
.p-third-about .c-inner {
  display: flex;
  margin: 0 0 10vw 5vw;
}
.p-third-about__box {
  z-index: 1;
  width: 100%;
  padding-right: 5vw;
  margin: 8vw 0;
}
.p-third-about__text {
  margin-bottom: 4rem;
  line-height: 3;
}
.p-third-about__date {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.5rem 8rem;
  line-height: 1.5;
  border: 1px solid;
}
.p-third-about__img {
  width: 60%;
}
.p-third-about__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
@media screen and (max-width: 767px) {
  .p-third-about .c-inner {
    margin: 0 0 30vw 5vw;
  }
  .p-third-about__box {
    margin: 10vw 0;
  }
  .p-third-about__text {
    margin-bottom: 8vw;
    line-height: 2;
  }
  .p-third-about__date {
    width: 100%;
    padding: 4vw;
  }
  .p-third-about__img {
    width: 30%;
  }
  .p-third-about__img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-third-booth {
  margin-bottom: 15vw;
}
.p-third-booth__text {
  margin-bottom: 5vw;
  line-height: 2;
}
.p-third-booth__logo {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.p-third-booth .c-btn a {
  color: #000;
  background: #bb007a;
}
.p-third-booth .c-btn a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
}
.p-third-booth .c-btn a:hover::after {
  right: 15px;
}
.p-third-booth .c-btn a:active {
  background: rgba(255, 255, 255, 0.1);
}
.p-third-booth .c-btnArea {
  margin-top: 5vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-third-booth {
    margin-bottom: 80px;
  }
  .p-third-booth__logo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .p-third-booth .c-btnArea {
    margin-top: 10vw;
  }
}

.jyusyo {
  position: relative;
  padding: 0 30px;
  border-image-slice: 1;
}
@media screen and (max-width: 1000px) {
  .jyusyo {
    padding: 20px;
  }
}

.jyusyo ul {
  display: flex;
  gap: 1.5vw;
}
@media screen and (max-width: 1000px) {
  .jyusyo ul {
    flex-wrap: wrap;
    gap: 20px 10px;
  }
  .jyusyo ul li {
    width: calc((100% - 10px) / 2);
  }
}

.jyusyo h3 {
  padding-bottom: 10px;
  margin-bottom: 25px;
  font-size: 20px;
  text-align: center;
  border-bottom: 1px solid #333;
}

.award_name {
  line-height: 1.5;
  margin: 8px 0;
  font-size: 12px;
  font-weight: bold;
}

.jyusyo li {
  position: relative;
  width: 19%;
}

.badge {
  position: absolute;
  top: -10px;
  right: -5px;
  width: 30px;
}

.position {
  margin-bottom: 8px;
  font-size: 10px;
  line-height: 1.5;
  color: #ccc;
}

.name {
  font-size: 17px;
  line-height: 1.5;
  color: #fff;
}
.name span {
  margin-left: 0.3vw;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .name {
    font-size: 15px;
  }
  .name span {
    font-size: 12px;
  }
}

.p-association__title {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  place-items: center;
  justify-content: center;
  padding: 40px 50px 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.563rem, 1.222rem + 1.7vw, 2.5rem);
  margin-bottom: 0;
}
.p-association__title span {
  margin-top: 10px;
  font-size: 16px;
  font-family: "Noto Sans JP", serif;
  display: block;
  margin: 10px 0;
}
@media screen and (max-width: 767px) {
  .p-association__title {
    min-height: 150px;
    padding-top: 60px;
  }
  .p-association__title span {
    font-size: 12px;
  }
}

.associationListBox {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 5vw;
}
.associationListBox li {
  width: calc((100% - 40px) / 3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #fff;
  padding: 20px;
}
.associationListBox .name {
  color: #000;
}
.associationListBox .tag {
  color: #000;
  margin-bottom: 5px;
}

.association {
  background: rgba(255, 255, 255, 0.8);
  padding: 30px 50px;
}
.association a {
  color: #bb007a;
}
.association table {
  margin-top: 50px;
  width: 100%;
}
.association td,
.association th {
  padding: 15px;
  font-size: 14px;
  word-break: break-all;
  color: #000;
  line-height: 1.5;
}
.association td img,
.association th img {
  width: 30px;
}
.association th {
  width: 15%;
}
.association tr + tr {
  border-top: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .association {
    padding: 20px;
  }
  .association table {
    margin-top: 20px;
  }
  .association th {
    display: block;
    font-size: 12px;
    width: 100%;
    padding: 8px 15px;
    background: #bebbc4;
  }
  .association td {
    display: block;
    font-size: 12px;
    padding: 5px 0 20px;
  }
  .association tr + tr {
    border-top: none;
  }
}

.associationBox {
  display: flex;
  gap: 40px;
  justify-content: stretch;
}
.associationBox figure {
  width: 40%;
  display: flex;
  align-items: center;
  background: #fff;
  justify-content: center;
}
.associationBox .associationR {
  width: 60%;
}
.associationBox .associationR .comment {
  margin-top: 30px;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5em;
  color: #000;
}
.associationBox .ttl {
  font-size: 25px;
  font-weight: 600;
  margin: 20px 0 20px;
  line-height: 1.5;
  color: #000;
}
.associationBox .txt {
  color: #000;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .associationBox {
    display: block;
  }
  .associationBox figure {
    width: 100%;
  }
  .associationBox .associationR {
    width: 100%;
  }
  .associationBox .ttl {
    font-size: 20px;
  }
}

.p-market__title {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  place-items: center;
  justify-content: center;
  padding: 40px 50px 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.563rem, 1.222rem + 1.7vw, 2.5rem);
  margin-bottom: 0;
}
.p-market__title span {
  margin-top: 10px;
  font-size: 16px;
  font-family: "Noto Sans JP", serif;
  display: block;
  margin: 10px 0;
}
@media screen and (max-width: 767px) {
  .p-market__title {
    min-height: 150px;
    padding-top: 60px;
  }
  .p-market__title span {
    font-size: 12px;
  }
}

.tagList {
  border-radius: 10px;
  font-size: 0;
  margin: 0 50px 40px;
  text-align: center;
}
.tagList li {
  display: inline-block;
  font-size: 16px;
  margin: 0 5px 5px;
}
.tagList li a {
  display: block;
  padding: 8px 12px;
  font-size: 12px;
  border: 2px solid #bb007a;
  border-radius: 100px;
}
.tagList li a:hover {
  background: #bb007a;
  color: #000;
}
@media screen and (max-width: 767px) {
  .tagList {
    margin: 0 0 30px;
  }
  .tagList li {
    margin: 0 2px 5px;
  }
}

.marketListBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  color: #000;
}
.marketListBox > li {
  position: relative;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  transition: background-color ease 0.3s;
}
.marketListBox > li:hover {
  background-color: #fff;
}
.marketListBox__title {
  font-size: 22px;
  font-weight: bold;
  margin: 40px 0;
  line-height: 1.5em;
  text-align: center;
  color: #000;
}
.marketListBox__info {
  line-height: 1.5em;
  margin-bottom: 30px;
  color: #000;
}
.marketListBox__text {
  color: #000;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
}
.marketListBox .tag {
  position: absolute;
  left: 0;
  top: 0;
  background: #bb007a;
  padding: 10px 15px;
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .marketListBox .tag {
    padding: 8px 12px;
    font-size: 10px;
  }
}
.marketListBox .marketR {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.marketListBox .marketR li {
  width: 48%;
  float: left;
  border: 1px solid #ccc;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 5px;
  font-size: 13px;
  line-height: 1.3em;
  border-radius: 5px;
  color: #000;
}
.marketListBox .marketR i {
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .marketListBox {
    grid-template-columns: repeat(1, 1fr);
  }
  .marketListBox .marketR li {
    font-size: 10px;
  }
  .marketListBox > li {
    padding: 20px;
  }
}

.p-market__article {
  padding: 50px;
  background-color: rgba(255, 255, 255, 0.9);
}
.p-market__article a {
  color: #bb007a;
}
.p-market__article a:hover {
  color: #000;
}
.p-market__article .handling {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}
.p-market__article .handling li {
  border: 1px solid #ccc;
  text-align: center;
  font-size: 10px;
  width: 80px;
  padding: 10px 0;
  box-sizing: border-box;
  text-align: center;
  margin: 0 4px 8px;
  border-radius: 8px;
  background: #fff;
  color: #000;
}
.p-market__article .handling img {
  display: block;
  margin: 0 auto 10px;
}
.p-market__article .comment {
  margin-top: 30px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5em;
  color: #000;
}
.p-market__article table {
  border: 2px solid #666;
  width: 100%;
  margin-top: 30px;
}
.p-market__article table th {
  width: 30%;
}
.p-market__article table th,
.p-market__article table td {
  padding: 15px;
  text-align: left;
  border: 1px solid #666;
  box-sizing: border-box;
  line-height: 1.3em;
  font-size: 14px;
  word-break: break-all;
  color: #000;
}
.p-market__article table th img,
.p-market__article table td img {
  width: 30px;
}
.p-market__article .marketImg ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 20px;
}
.p-market__article .marketImg li {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 767px) {
  .p-market__article {
    padding: 20px;
  }
  .p-market__article .handling li {
    width: calc((100% - 15px) / 4);
    margin: 0;
  }
  .p-market__article .handling li img {
    width: 24px;
    margin: 0 auto 5px;
  }
  .p-market__article .comment {
    font-size: 12px;
  }
  .p-market__article table {
    border: 2px solid #666;
    width: 100%;
    margin-top: 30px;
  }
  .p-market__article table th,
  .p-market__article table td {
    padding: 10px;
    font-size: 12px;
  }
  .p-market__article .marketImg ul {
    gap: 10px;
  }
  .p-market__article .marketImg li {
    width: calc((100% - 20px) / 3);
  }
}

/* Utility
-------------------------------- */
.u-hidden {
  display: none;
}

.u-block {
  display: block;
}

.u-inline-block {
  display: inline-block;
}

.u-width-fill {
  width: 100% !important;
}

.u-flex {
  display: flex;
  flex-wrap: wrap;
}
.u-flex-h-start {
  justify-content: flex-start;
}
.u-flex-h-start-self {
  justify-self: flex-start;
}
.u-flex-h-center {
  justify-content: center;
}
.u-flex-h-center-self {
  justify-self: center;
}
.u-flex-h-end {
  justify-content: flex-end;
}
.u-flex-h-end-self {
  justify-self: flex-end;
}
.u-flex-h-between {
  justify-content: space-between;
}
.u-flex-h-between-self {
  justify-self: space-between;
}
.u-flex-v-start {
  align-items: flex-start;
}
.u-flex-v-start-self {
  align-self: flex-start;
}
.u-flex-v-center {
  align-items: center;
}
.u-flex-v-center-self {
  align-self: center;
}
.u-flex-v-end {
  align-items: flex-end;
}
.u-flex-v-end-self {
  align-self: flex-end;
}

.u-text-exsmall {
  font-size: 0.6rem;
}
.u-text-small {
  font-size: 0.8rem;
}
.u-text-medium-small {
  font-size: 0.9rem;
}
.u-text-medium {
  font-size: 1rem;
}
.u-text-medium-large {
  font-size: 1.1rem;
}
.u-text-large {
  font-size: 1.2rem;
}
.u-text-exlarge {
  font-size: 1.5rem;
}
.u-text-left {
  text-align: left;
}
.u-text-center {
  text-align: center;
}
.u-text-right {
  text-align: right;
}
.u-text-underline {
  text-decoration: underline;
}

.u-font-weight-normal {
  font-weight: normal;
}
.u-font-weight-bold {
  font-weight: bold;
}

.u-mt-0 {
  margin-top: calc(0rem / 2) !important;
}

.u-mb-0 {
  margin-bottom: calc(0rem / 2) !important;
}

.u-ml-0 {
  margin-left: calc(0rem / 2) !important;
}

.u-mr-0 {
  margin-right: calc(0rem / 2) !important;
}

.u-pt-0 {
  padding-top: calc(0rem / 2) !important;
}

.u-pb-0 {
  padding-bottom: calc(0rem / 2) !important;
}

.u-pl-0 {
  padding-left: calc(0rem / 2) !important;
}

.u-pr-0 {
  padding-right: calc(0rem / 2) !important;
}

.u-width-00p {
  width: calc(0 * 10%) !important;
}

.u-width-00vw {
  width: calc(0 * 10vw) !important;
}

.u-mt-1 {
  margin-top: calc(1rem / 2) !important;
}

.u-mb-1 {
  margin-bottom: calc(1rem / 2) !important;
}

.u-ml-1 {
  margin-left: calc(1rem / 2) !important;
}

.u-mr-1 {
  margin-right: calc(1rem / 2) !important;
}

.u-pt-1 {
  padding-top: calc(1rem / 2) !important;
}

.u-pb-1 {
  padding-bottom: calc(1rem / 2) !important;
}

.u-pl-1 {
  padding-left: calc(1rem / 2) !important;
}

.u-pr-1 {
  padding-right: calc(1rem / 2) !important;
}

.u-width-10p {
  width: calc(1 * 10%) !important;
}

.u-width-10vw {
  width: calc(1 * 10vw) !important;
}

.u-mt-2 {
  margin-top: calc(2rem / 2) !important;
}

.u-mb-2 {
  margin-bottom: calc(2rem / 2) !important;
}

.u-ml-2 {
  margin-left: calc(2rem / 2) !important;
}

.u-mr-2 {
  margin-right: calc(2rem / 2) !important;
}

.u-pt-2 {
  padding-top: calc(2rem / 2) !important;
}

.u-pb-2 {
  padding-bottom: calc(2rem / 2) !important;
}

.u-pl-2 {
  padding-left: calc(2rem / 2) !important;
}

.u-pr-2 {
  padding-right: calc(2rem / 2) !important;
}

.u-width-20p {
  width: calc(2 * 10%) !important;
}

.u-width-20vw {
  width: calc(2 * 10vw) !important;
}

.u-mt-3 {
  margin-top: calc(3rem / 2) !important;
}

.u-mb-3 {
  margin-bottom: calc(3rem / 2) !important;
}

.u-ml-3 {
  margin-left: calc(3rem / 2) !important;
}

.u-mr-3 {
  margin-right: calc(3rem / 2) !important;
}

.u-pt-3 {
  padding-top: calc(3rem / 2) !important;
}

.u-pb-3 {
  padding-bottom: calc(3rem / 2) !important;
}

.u-pl-3 {
  padding-left: calc(3rem / 2) !important;
}

.u-pr-3 {
  padding-right: calc(3rem / 2) !important;
}

.u-width-30p {
  width: calc(3 * 10%) !important;
}

.u-width-30vw {
  width: calc(3 * 10vw) !important;
}

.u-mt-4 {
  margin-top: calc(4rem / 2) !important;
}

.u-mb-4 {
  margin-bottom: calc(4rem / 2) !important;
}

.u-ml-4 {
  margin-left: calc(4rem / 2) !important;
}

.u-mr-4 {
  margin-right: calc(4rem / 2) !important;
}

.u-pt-4 {
  padding-top: calc(4rem / 2) !important;
}

.u-pb-4 {
  padding-bottom: calc(4rem / 2) !important;
}

.u-pl-4 {
  padding-left: calc(4rem / 2) !important;
}

.u-pr-4 {
  padding-right: calc(4rem / 2) !important;
}

.u-width-40p {
  width: calc(4 * 10%) !important;
}

.u-width-40vw {
  width: calc(4 * 10vw) !important;
}

.u-mt-5 {
  margin-top: calc(5rem / 2) !important;
}

.u-mb-5 {
  margin-bottom: calc(5rem / 2) !important;
}

.u-ml-5 {
  margin-left: calc(5rem / 2) !important;
}

.u-mr-5 {
  margin-right: calc(5rem / 2) !important;
}

.u-pt-5 {
  padding-top: calc(5rem / 2) !important;
}

.u-pb-5 {
  padding-bottom: calc(5rem / 2) !important;
}

.u-pl-5 {
  padding-left: calc(5rem / 2) !important;
}

.u-pr-5 {
  padding-right: calc(5rem / 2) !important;
}

.u-width-50p {
  width: calc(5 * 10%) !important;
}

.u-width-50vw {
  width: calc(5 * 10vw) !important;
}

.u-mt-6 {
  margin-top: calc(6rem / 2) !important;
}

.u-mb-6 {
  margin-bottom: calc(6rem / 2) !important;
}

.u-ml-6 {
  margin-left: calc(6rem / 2) !important;
}

.u-mr-6 {
  margin-right: calc(6rem / 2) !important;
}

.u-pt-6 {
  padding-top: calc(6rem / 2) !important;
}

.u-pb-6 {
  padding-bottom: calc(6rem / 2) !important;
}

.u-pl-6 {
  padding-left: calc(6rem / 2) !important;
}

.u-pr-6 {
  padding-right: calc(6rem / 2) !important;
}

.u-width-60p {
  width: calc(6 * 10%) !important;
}

.u-width-60vw {
  width: calc(6 * 10vw) !important;
}

.u-mt-7 {
  margin-top: calc(7rem / 2) !important;
}

.u-mb-7 {
  margin-bottom: calc(7rem / 2) !important;
}

.u-ml-7 {
  margin-left: calc(7rem / 2) !important;
}

.u-mr-7 {
  margin-right: calc(7rem / 2) !important;
}

.u-pt-7 {
  padding-top: calc(7rem / 2) !important;
}

.u-pb-7 {
  padding-bottom: calc(7rem / 2) !important;
}

.u-pl-7 {
  padding-left: calc(7rem / 2) !important;
}

.u-pr-7 {
  padding-right: calc(7rem / 2) !important;
}

.u-width-70p {
  width: calc(7 * 10%) !important;
}

.u-width-70vw {
  width: calc(7 * 10vw) !important;
}

.u-mt-8 {
  margin-top: calc(8rem / 2) !important;
}

.u-mb-8 {
  margin-bottom: calc(8rem / 2) !important;
}

.u-ml-8 {
  margin-left: calc(8rem / 2) !important;
}

.u-mr-8 {
  margin-right: calc(8rem / 2) !important;
}

.u-pt-8 {
  padding-top: calc(8rem / 2) !important;
}

.u-pb-8 {
  padding-bottom: calc(8rem / 2) !important;
}

.u-pl-8 {
  padding-left: calc(8rem / 2) !important;
}

.u-pr-8 {
  padding-right: calc(8rem / 2) !important;
}

.u-width-80p {
  width: calc(8 * 10%) !important;
}

.u-width-80vw {
  width: calc(8 * 10vw) !important;
}

.u-mt-9 {
  margin-top: calc(9rem / 2) !important;
}

.u-mb-9 {
  margin-bottom: calc(9rem / 2) !important;
}

.u-ml-9 {
  margin-left: calc(9rem / 2) !important;
}

.u-mr-9 {
  margin-right: calc(9rem / 2) !important;
}

.u-pt-9 {
  padding-top: calc(9rem / 2) !important;
}

.u-pb-9 {
  padding-bottom: calc(9rem / 2) !important;
}

.u-pl-9 {
  padding-left: calc(9rem / 2) !important;
}

.u-pr-9 {
  padding-right: calc(9rem / 2) !important;
}

.u-width-90p {
  width: calc(9 * 10%) !important;
}

.u-width-90vw {
  width: calc(9 * 10vw) !important;
}

.u-mt-10 {
  margin-top: calc(10rem / 2) !important;
}

.u-mb-10 {
  margin-bottom: calc(10rem / 2) !important;
}

.u-ml-10 {
  margin-left: calc(10rem / 2) !important;
}

.u-mr-10 {
  margin-right: calc(10rem / 2) !important;
}

.u-pt-10 {
  padding-top: calc(10rem / 2) !important;
}

.u-pb-10 {
  padding-bottom: calc(10rem / 2) !important;
}

.u-pl-10 {
  padding-left: calc(10rem / 2) !important;
}

.u-pr-10 {
  padding-right: calc(10rem / 2) !important;
}

.u-width-100p {
  width: calc(10 * 10%) !important;
}

.u-width-100vw {
  width: calc(10 * 10vw) !important;
}

.u-margin-auto {
  margin-right: auto;
  margin-left: auto;
}

.u-color-black {
  color: #000;
}
.u-color-gray {
  color: #666;
}
.u-color-winered {
  color: #ab002e;
}
.u-color-red {
  color: #f00;
}/*# sourceMappingURL=common.css.map */