@charset "UTF-8";
/* カラー */
@font-face {
  font-family: "oswald";
  src: url("../fonts/Oswald-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "zenkaku-black";
  src: url("../fonts/ZenKakuGothicNew-Black.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "zenkaku-bold";
  src: url("../fonts/ZenKakuGothicNew-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "zenKaku-medium";
  src: url("../fonts/ZenKakuGothicNew-Medium.woff2") format("woff2");
  font-display: swap;
}
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}
@media screen and (max-width: 1100px) {
  .header {
    position: absolute;
  }
}
.header__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  padding: clamp(0.625rem, 0.5293367347rem + 0.4081632653vw, 0.9375rem) clamp(1.25rem, 1.0586734694rem + 0.8163265306vw, 1.875rem);
}
@media screen and (max-width: 1100px) {
  .header__inner {
    place-content: center;
    grid-template-columns: auto;
  }
}
.header__inner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header__logo {
  width: clamp(8.75rem, 7.7933673469rem + 4.0816326531vw, 11.875rem);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px clamp(0.9375rem, 0.6505102041rem + 1.2244897959vw, 1.875rem);
}
@media screen and (max-width: 1100px) {
  .header__btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.header__btn {
  background: #fff;
  border: 2px solid #000;
  border-radius: 40px;
  font-weight: bold;
  font-size: clamp(0.875rem, 0.8367346939rem + 0.1632653061vw, 1rem);
  text-align: center;
  line-height: 1.2;
  padding: 8px 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header__btn--color {
  color: #fff;
  background: #E1307E;
}
.header__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.9375rem, 0.6505102041rem + 1.2244897959vw, 1.875rem);
}
@media screen and (min-width: 768px) {
  .header__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.header__sns-wrap {
  display: grid;
  grid-template-columns: 24px 24px 24px 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.625rem, 0.5293367347rem + 0.4081632653vw, 0.9375rem);
}
.header__language-wrap {
  font-weight: bold;
  font-size: clamp(1rem, 0.9617346939rem + 0.1632653061vw, 1.125rem);
}
.header__note {
  display: none;
}
@media screen and (max-width: 1100px) {
  .header__note {
    display: block;
    font-family: "oswald";
    line-height: 1.4;
    text-align: center;
  }
}

@media screen and (max-width: 1100px) {
  .nav {
    position: fixed;
    background: #fff;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    padding: clamp(2.5rem, 1.3520408163rem + 4.8979591837vw, 6.25rem) 20px 100px;
    translate: 100% 0;
    top: 0;
    right: 0;
    overflow: scroll;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .nav.active {
    translate: 0 0;
  }
}
.nav__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 500px;
  margin: 10px auto 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.nav__list:has(+ .header__other) {
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1100px) {
  .nav__list {
    grid-template-columns: auto;
    gap: 0;
    margin-bottom: 30px;
  }
}
.nav__only-sp {
  display: none;
}
@media screen and (max-width: 1100px) {
  .nav__only-sp {
    display: block;
  }
}
.nav__link {
  font-family: "oswald";
  font-size: clamp(1rem, 0.9617346939rem + 0.1632653061vw, 1.125rem);
}
@media screen and (max-width: 1100px) {
  .nav__link {
    position: relative;
    display: block;
    border-bottom: 1px solid #000;
    max-width: 360px;
    font-size: 26px;
    margin: 0 auto;
    padding: 10px 0;
  }
  .nav__link::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    top: 50%;
    right: 10px;
    translate: 0 -50%;
    rotate: -45deg;
  }
}
.nav__sub-list {
  display: none;
}
@media screen and (max-width: 1100px) {
  .nav__sub-list {
    display: grid;
    max-width: 360px;
    font-size: clamp(0.875rem, 0.8367346939rem + 0.1632653061vw, 1rem);
    font-weight: bold;
    gap: 15px 20px;
    margin: 0 auto 30px;
  }
}

.front-page .header__inner::before {
  background: none;
}
@media only screen and (min-width: 1101px) {
  .front-page .header__inner::before {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    translate: 0 -100%;
  }
  .front-page .header__btn {
    color: #fff;
    border-color: #fff;
  }
  .front-page .header__btn:first-of-type {
    background: none;
  }
  .front-page .header__language-wrap {
    color: #fff;
  }
  .front-page .nav__link {
    color: #fff;
  }
}

@media only screen and (min-width: 1101px) {
  .header.show .header__inner {
    padding: clamp(0.3125rem, 0.2168367347rem + 0.4081632653vw, 0.625rem) clamp(1.25rem, 1.0586734694rem + 0.8163265306vw, 1.875rem);
  }
  .header.show .header__inner::before {
    translate: 0 0;
  }
  .header.show .header__logo {
    width: clamp(7.5rem, 6.7346938776rem + 3.2653061224vw, 10rem);
  }
  .header.show .header__other {
    gap: 10px;
  }
  .header.show .header__btn {
    font-size: clamp(0.75rem, 0.7117346939rem + 0.1632653061vw, 0.875rem);
    padding: 6px 16px;
  }
  .header.show .nav__list {
    margin: 0 auto;
  }
}

.hamburger {
  display: none;
}
@media screen and (max-width: 1100px) {
  .hamburger {
    display: block;
    position: fixed;
    background: #E1307E;
    border-radius: 50%;
    width: clamp(2.125rem, 2.0102040816rem + 0.4897959184vw, 2.5rem);
    height: clamp(2.125rem, 2.0102040816rem + 0.4897959184vw, 2.5rem);
    top: 8px;
    right: clamp(0.625rem, 0.5293367347rem + 0.4081632653vw, 0.9375rem);
    padding: clamp(0.5rem, 0.4617346939rem + 0.1632653061vw, 0.625rem);
    cursor: pointer;
    z-index: 1000;
  }
  .hamburger__btn {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .hamburger__bar {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .hamburger .top {
    top: 20%;
  }
  .hamburger .middle {
    top: 50%;
  }
  .hamburger .bottom {
    top: 80%;
  }
  .hamburger.active .top {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 50%;
  }
  .hamburger.active .middle {
    opacity: 0;
  }
  .hamburger.active .bottom {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 50%;
  }
}

.fixed-btn {
  display: none;
}
@media screen and (max-width: 1100px) {
  .fixed-btn {
    display: block;
    position: fixed;
    background: #E1307E;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 0 40px 40px 0;
    left: -2px;
    bottom: 15px;
    padding: 15px 20px;
    translate: -100% 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: -1;
  }
  .fixed-btn.show {
    translate: 0 0;
  }
}

.footer {
  padding: 40px 0 20px;
}
@media screen and (max-width: 1100px) {
  .footer {
    padding: 40px 0 80px;
  }
}
.footer__top {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  place-content: center;
  margin-bottom: clamp(1.875rem, 1.6836734694rem + 0.8163265306vw, 2.5rem);
}
@media screen and (min-width: 768px) {
  .footer__top {
    padding: 40px 0 20px;
  }
}
.footer__logo {
  width: 180px;
  margin: 0 auto 20px;
}
.footer__middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px 40px;
}
@media screen and (min-width: 768px) {
  .footer__middle {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__sns-wrap {
  display: grid;
  grid-template-columns: 24px 24px 24px 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  place-content: center;
  gap: clamp(0.625rem, 0.5293367347rem + 0.4081632653vw, 0.9375rem);
}
.footer__language-wrap {
  color: #fff;
  font-weight: bold;
  font-size: clamp(1rem, 0.9617346939rem + 0.1632653061vw, 1.125rem);
  text-align: center;
}
.footer__note {
  color: #fff;
  font-family: "oswald";
  line-height: 1.4;
  text-align: center;
  margin: 10px 0 20px;
}
.footer__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px clamp(0.9375rem, 0.6505102041rem + 1.2244897959vw, 1.875rem);
}
@media screen and (min-width: 768px) {
  .footer__btn-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.footer__btn {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 40px;
  font-weight: bold;
  font-size: clamp(0.875rem, 0.8367346939rem + 0.1632653061vw, 1rem);
  text-align: center;
  line-height: 1.2;
  padding: 8px 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.footer__btn--color {
  background: #E1307E;
}
.footer__body {
  display: grid;
  gap: 0 clamp(1.25rem, 0.1020408163rem + 4.8979591837vw, 5rem);
  margin-bottom: clamp(1.25rem, 1.0586734694rem + 0.8163265306vw, 1.875rem);
}
@media screen and (min-width: 768px) {
  .footer__body {
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer__menu {
  color: #fff;
}
.footer__item {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: clamp(0.3125rem, 0.2168367347rem + 0.4081632653vw, 0.625rem);
  border-top: 1px solid #fff;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .footer__item {
    grid-template-columns: auto;
    border: none;
  }
}
.footer__link {
  display: inline-block;
  font-family: "oswald";
  font-size: clamp(1.5rem, 1.4234693878rem + 0.3265306122vw, 1.75rem);
  line-height: 1;
}
.footer__description {
  font-family: "zenKaku-medium", sans-serif;
  font-size: clamp(0.75rem, 0.6734693878rem + 0.3265306122vw, 1rem);
  line-height: 1.3;
}
.footer__menu-list {
  display: grid;
  gap: 10px;
}
.footer__menu-list a {
  font-family: "zenKaku-medium", sans-serif;
  font-size: clamp(0.875rem, 0.8367346939rem + 0.1632653061vw, 1rem);
  line-height: 1.3;
}
.footer__menu-list a::before {
  content: "-";
}
.footer__bottom {
  display: grid;
  color: #fff;
  border-top: 1px solid #fff;
  padding: clamp(1.25rem, 0.8673469388rem + 1.6326530612vw, 2.5rem) 0;
}
@media screen and (min-width: 768px) {
  .footer__bottom {
    grid-template-columns: 1fr 1fr;
  }
}
.footer__info {
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .footer__info {
    border-right: 1px solid #fff;
    border-bottom: none;
    padding-bottom: 0;
  }
}
.footer__tel-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px 10px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .footer__tel-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.footer__tel {
  font-family: "oswald";
  font-size: 28px;
  line-height: 1;
}
.footer__time {
  font-family: "zenKaku-medium", sans-serif;
}
.footer__office {
  font-family: "zenKaku-medium", sans-serif;
  line-height: 1.3;
  margin-bottom: clamp(0.3125rem, 0.2168367347rem + 0.4081632653vw, 0.625rem);
}
.footer__catering {
  padding: 20px 0 0;
}
@media screen and (min-width: 768px) {
  .footer__catering {
    padding: 0 0 0 clamp(1.25rem, 0.4846938776rem + 3.2653061224vw, 3.75rem);
  }
}
.footer__link-area {
  display: grid;
  gap: 15px;
}
.footer__link-area a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "zenKaku-medium", sans-serif;
  font-size: clamp(0.875rem, 0.8367346939rem + 0.1632653061vw, 1rem);
}
.footer__link-area a::after {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1;
  background: url(../../assets/img/icon/icon-link.svg) no-repeat center center/contain;
}
.footer__copy {
  display: block;
  text-align: center;
  color: #fff;
  font-family: "zenKaku-medium", sans-serif;
  font-size: clamp(0.8125rem, 0.7551020408rem + 0.2448979592vw, 1rem);
}

.only-pc { /*PCのみ*/
  display: none;
}
@media screen and (min-width: 1024px) {
  .only-pc {
    display: block;
  }
}

.only-tab { /*タブレット以上*/
  display: block;
}
@media screen and (min-width: 768px) {
  .only-tab {
    display: none;
  }
}

.under-tab { /*タブレット以下*/
  display: block;
}
@media screen and (min-width: 1024px) {
  .under-tab {
    display: none;
  }
}

.only-sp { /*スマホのみ*/
  display: block;
}
@media screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
}

.except-sp { /*スマホ以外*/
  display: none;
}
@media screen and (min-width: 768px) {
  .except-sp {
    display: block;
  }
}

body {
  font-family: "zenKaku-black", sans-serif;
  background: #000;
}

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

h1, h2, h3, h4, h5, h6, p, li, dt, dd, tr, td, a {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.075em;
}

p {
  font-size: clamp(0.875rem, 0.8367346939rem + 0.1632653061vw, 1rem);
  line-height: 1.8;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

p a {
  text-decoration: underline;
}

.section {
  position: relative;
  padding: clamp(3.125rem, 2.1683673469rem + 4.0816326531vw, 6.25rem) 0;
}
.section--bg {
  background: #EEEEEE;
}

.container {
  position: relative;
  max-width: 1660px;
  padding: 0 clamp(1.25rem, 1.0586734694rem + 0.8163265306vw, 1.875rem);
  margin: 0 auto;
}

.container-min {
  max-width: 1160px;
  margin: 0 auto;
}

.cmn-grid {
  display: grid;
  gap: 20px clamp(1.25rem, 0.1020408163rem + 4.8979591837vw, 5rem);
  max-width: 1360px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .cmn-grid {
    grid-template-columns: 40% 1fr;
  }
}

.heading2 {
  color: #fff;
  font-size: clamp(1.5rem, 1.193877551rem + 1.306122449vw, 2.5rem);
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  margin-bottom: clamp(1.25rem, 0.8673469388rem + 1.6326530612vw, 2.5rem);
}

.title {
  color: #E1307E;
  font-size: clamp(1.5rem, 1.2704081633rem + 0.9795918367vw, 2.25rem);
  text-align: center;
  line-height: 1.5;
  margin-bottom: clamp(1.25rem, 0.8673469388rem + 1.6326530612vw, 2.5rem);
}

.lead {
  position: relative;
  color: #E1307E;
  font-size: clamp(1.25rem, 1.0204081633rem + 0.9795918367vw, 2rem);
  text-align: center;
  line-height: 1.4;
  margin-bottom: clamp(1.25rem, 0.8673469388rem + 1.6326530612vw, 2.5rem);
  z-index: 1;
}
.lead--color {
  color: #575757;
}

.text-large {
  text-align: justify;
  color: #fff;
  font-family: "zenKaku-bold", sans-serif;
  font-size: clamp(1rem, 0.8469387755rem + 0.6530612245vw, 1.5rem);
  font-weight: bold;
  line-height: 2.2;
  margin-bottom: clamp(1.25rem, 0.8673469388rem + 1.6326530612vw, 2.5rem);
}
.text-large--color {
  color: #000;
}
.text-large span {
  color: #E1307E;
  font-family: "zenKaku-black", sans-serif;
  font-size: 130%;
}
.text-large b {
  color: #fff;
  background: #E1307E;
}

.description {
  color: #fff;
  font-size: clamp(1rem, 0.9234693878rem + 0.3265306122vw, 1.25rem);
  font-family: "zenKaku-bold", sans-serif;
  line-height: 1.8;
  margin: 0 auto clamp(1.875rem, 1.3010204082rem + 2.4489795918vw, 3.75rem);
}
.description--black {
  color: #000;
}
@media screen and (min-width: 768px) {
  .description {
    text-align: center;
  }
}

.list {
  display: grid;
  gap: clamp(0.625rem, 0.4336734694rem + 0.8163265306vw, 1.25rem);
}
.list__lead {
  font-family: "zenKaku-bold", sans-serif;
  font-size: clamp(1rem, 0.8469387755rem + 0.6530612245vw, 1.5rem);
  line-height: 1.3;
  padding-left: 1.1em;
  text-indent: -1.1em;
}
.list__lead::before {
  content: "■";
  color: #E1307E;
  font-size: 80%;
}
.list__lead--white {
  color: white;
}
.list__text {
  font-family: "zenKaku-medium", sans-serif;
}

.en-title {
  position: absolute;
  width: clamp(11.25rem, 7.806122449rem + 14.693877551vw, 22.5rem);
  top: 0;
  left: 0;
  translate: 0 -80%;
}

.en-title-r {
  position: absolute;
  width: clamp(11.25rem, 6.6581632653rem + 19.5918367347vw, 26.25rem);
  top: 0;
  right: clamp(1.25rem, 0.1020408163rem + 4.8979591837vw, 5rem);
  translate: 0 -100%;
}
.en-title-r--height {
  translate: 0 -70%;
}

.text {
  font-family: "zenKaku-medium", sans-serif;
}
.text:has(+ .text) {
  margin-bottom: clamp(0.9375rem, 0.6505102041rem + 1.2244897959vw, 1.875rem);
}

.not-found {
  color: #fff;
}

.cmn-title {
  background: #fff;
  padding: clamp(5rem, 4.2346938776rem + 3.2653061224vw, 7.5rem) 20px 20px;
}
.cmn-title__text {
  font-family: "oswald";
  font-size: clamp(2.625rem, 2.318877551rem + 1.306122449vw, 3.625rem);
  text-align: center;
}
.cmn-title__text span {
  color: #E1307E;
}
.cmn-title__text--ja {
  font-family: "zenKaku-bold", sans-serif;
  font-size: clamp(1.75rem, 1.4821428571rem + 1.1428571429vw, 2.625rem);
}

.breadcrumbs {
  display: none;
  max-width: 1660px;
  padding: 0 clamp(1.25rem, 1.0586734694rem + 0.8163265306vw, 1.875rem);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    display: block;
  }
}
.breadcrumbs__text {
  font-family: "zenKaku-medium", sans-serif;
  font-size: 14px;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 clamp(0.625rem, 0.4336734694rem + 0.8163265306vw, 1.25rem);
  color: #fff;
  font-family: "zenKaku-medium", sans-serif;
  font-size: clamp(1rem, 0.9617346939rem + 0.1632653061vw, 1.125rem);
}
.btn::after {
  content: "";
  width: clamp(3.75rem, 3.3673469388rem + 1.6326530612vw, 5rem);
  aspect-ratio: 8/1;
  border-right: 3px solid #E1307E;
  border-bottom: 2px solid #E1307E;
  -webkit-transform: skewX(40deg);
          transform: skewX(40deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  .btn:hover::after {
    -webkit-transform: translateX(10px) skewX(40deg);
            transform: translateX(10px) skewX(40deg);
  }
}
.btn--black {
  color: #000;
}
.btn--center {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: clamp(1.25rem, 0.8673469388rem + 1.6326530612vw, 2.5rem) auto 0;
}

.btn2 {
  display: grid;
  grid-template-columns: 1fr clamp(2.5rem, 2.1173469388rem + 1.6326530612vw, 3.75rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 clamp(0.625rem, 0.4336734694rem + 0.8163265306vw, 1.25rem);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: clamp(18.75rem, 17.9846938776rem + 3.2653061224vw, 21.25rem);
  min-height: clamp(3rem, 2.6556122449rem + 1.4693877551vw, 4.125rem);
  background: #fff;
  border-radius: 60px;
  font-family: "zenKaku-bold", sans-serif;
  font-size: clamp(1rem, 0.9234693878rem + 0.3265306122vw, 1.25rem);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 10px clamp(1.25rem, 0.8673469388rem + 1.6326530612vw, 2.5rem);
}
.btn2::after {
  content: "";
  width: clamp(2.5rem, 2.1173469388rem + 1.6326530612vw, 3.75rem);
  aspect-ratio: 8/1;
  border-right: 3px solid #E1307E;
  border-bottom: 2px solid #E1307E;
  -webkit-transform: skewX(40deg);
          transform: skewX(40deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.btn2--color {
  background: #E1307E;
  color: #fff;
}
.btn2--color::after {
  border-color: #fff;
}
@media (hover: hover) {
  .btn2:hover::after {
    -webkit-transform: translateX(10px) skewX(40deg);
            transform: translateX(10px) skewX(40deg);
  }
}

.gtranslate_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
.gtranslate_wrapper a:nth-child(2) {
  position: relative;
}
.gtranslate_wrapper a:nth-child(2)::after {
  position: absolute;
  content: "/";
  right: -20px;
}

.intro__inner {
  display: grid;
  gap: 30px clamp(1.25rem, 0.1020408163rem + 4.8979591837vw, 5rem);
  max-width: 1360px;
}
@media screen and (min-width: 768px) {
  .intro__inner {
    grid-template-columns: clamp(18.75rem, 14.9234693878rem + 16.3265306122vw, 31.25rem) 1fr;
  }
}
.intro__title {
  color: #fff;
  font-size: clamp(2.25rem, 1.7142857143rem + 2.2857142857vw, 4rem);
  line-height: 1.4;
}
.intro__title span {
  color: #E1307E;
}

.cmn-service__en-title {
  left: initial;
  right: 0;
  translate: 0 -8%;
}
@media screen and (min-width: 768px) {
  .cmn-service__en-title {
    translate: 0 -20%;
  }
}
.cmn-service__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 20px clamp(1.25rem, -0.2806122449rem + 6.5306122449vw, 6.25rem);
}
@media screen and (min-width: 768px) {
  .cmn-service__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.cmn-service__text-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  container-type: inline-size;
}
.cmn-service__list {
  display: grid;
}
@container (min-width: 600px) {
  .cmn-service__list {
    grid-template-columns: 1fr 1fr;
  }
}
.cmn-service__item {
  position: relative;
}
.cmn-service__item::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  top: 50%;
  right: 15px;
  translate: 0 -50%;
  rotate: -45deg;
}
@container (min-width: 600px) {
  .cmn-service__item::before {
    display: none;
  }
}
@container (min-width: 600px) {
  .cmn-service__item:first-of-type {
    grid-column: span 2;
  }
}
.cmn-service__link {
  position: relative;
  color: #fff;
  display: grid;
  grid-template-columns: clamp(3.125rem, 2.7423469388rem + 1.6326530612vw, 4.375rem) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.9375rem, 0.8418367347rem + 0.4081632653vw, 1.25rem);
  font-size: clamp(1rem, 0.8852040816rem + 0.4897959184vw, 1.375rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.4;
  border: 2px solid #fff;
  margin: -2px 0 0 -2px;
  padding: clamp(0.625rem, 0.4336734694rem + 0.8163265306vw, 1.25rem) clamp(1.25rem, 0.8673469388rem + 1.6326530612vw, 2.5rem);
  z-index: 1;
  overflow: hidden;
}
@container (min-width: 600px) {
  .cmn-service__link {
    text-align: center;
  }
}
.cmn-service__link::before, .cmn-service__link::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  top: 0;
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cmn-service__link::before {
  left: 0;
  translate: -100% 0;
}
.cmn-service__link::after {
  right: 0;
  translate: 100% 0;
}
@media (hover: hover) {
  .cmn-service__link:hover::before, .cmn-service__link:hover::after {
    translate: 0 0;
  }
}
@container (min-width: 600px) {
  .cmn-service__item:first-of-type .cmn-service__link {
    grid-template-columns: clamp(3.125rem, 2.7423469388rem + 1.6326530612vw, 4.375rem) auto;
    place-content: center;
  }
}
@media screen and (min-width: 768px) {
  .cmn-service__img-wrap {
    width: 35vw;
    margin-left: auto;
    margin-right: calc(50% - 50vw);
  }
}
.cmn-service__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.support {
  position: relative;
  background: #fff;
  padding: clamp(0.625rem, 0.5293367347rem + 0.4081632653vw, 0.9375rem) 0;
  z-index: 1;
}
.support__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 clamp(0.625rem, 0.4336734694rem + 0.8163265306vw, 1.25rem);
  font-size: clamp(1rem, 0.9617346939rem + 0.1632653061vw, 1.125rem);
}
.support__btn::after {
  content: "";
  width: clamp(3.75rem, 3.3673469388rem + 1.6326530612vw, 5rem);
  aspect-ratio: 8/1;
  border-right: 3px solid #E1307E;
  border-bottom: 2px solid #E1307E;
  -webkit-transform: skewX(40deg);
          transform: skewX(40deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  .support__btn:hover::after {
    -webkit-transform: translateX(10px) skewX(40deg);
            transform: translateX(10px) skewX(40deg);
  }
}
.support__btn-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  font-family: "zenKaku-medium", sans-serif;
  font-size: clamp(1rem, 0.9234693878rem + 0.3265306122vw, 1.25rem);
  line-height: 1.2;
}
.support__btn-text span {
  color: #E1307E;
  font-family: "zenKaku-black", sans-serif;
}

.event__list {
  display: grid;
  gap: clamp(0.9375rem, 0.6505102041rem + 1.2244897959vw, 1.875rem) 0;
}
@media screen and (min-width: 768px) {
  .event__list {
    grid-template-columns: 1fr 1fr;
  }
}
.event__link {
  display: grid;
  border: 2px solid #fff;
  margin: -2px 0 0 -2px;
}
@media (hover: hover) {
  .event__link:hover .event__img {
    scale: 1.05;
  }
}
.event__img-wrap {
  position: relative;
  aspect-ratio: 3/1;
  overflow: hidden;
}
.event__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.event__icon {
  position: absolute;
  width: clamp(3.125rem, 2.7423469388rem + 1.6326530612vw, 4.375rem);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.event__text {
  color: #fff;
  font-size: clamp(1.125rem, 1.0484693878rem + 0.3265306122vw, 1.375rem);
  font-weight: bold;
  text-align: center;
  padding: clamp(0.3125rem, 0.2168367347rem + 0.4081632653vw, 0.625rem);
}

.card {
  display: grid;
  gap: clamp(1.25rem, 1.0586734694rem + 0.8163265306vw, 1.875rem);
}
@media screen and (min-width: 768px) {
  .card {
    grid-template-columns: repeat(3, 1fr);
  }
}
.card__link {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.625rem, 0.5293367347rem + 0.4081632653vw, 0.9375rem);
  height: 100%;
  padding: clamp(0.9375rem, 0.6505102041rem + 1.2244897959vw, 1.875rem);
}
@media (hover: hover) {
  .card__link:hover .card__img-wrap img {
    scale: 1.05;
  }
}
.card__img-wrap {
  aspect-ratio: 5/3;
  overflow: hidden;
}
.card__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.card__title {
  font-family: "zenKaku-bold", sans-serif;
  font-size: clamp(1rem, 0.9234693878rem + 0.3265306122vw, 1.25rem);
  font-weight: bold;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.card__tag-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
}
.card__tag {
  background: #CCC;
  clip-path: polygon(calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%, 0 0);
  font-family: "zenKaku-medium", sans-serif;
  font-size: clamp(0.875rem, 0.8367346939rem + 0.1632653061vw, 1rem);
  padding: 3px 20px 3px clamp(0.3125rem, 0.2168367347rem + 0.4081632653vw, 0.625rem);
}
.card__tag::before {
  content: "#";
  color: #E1307E;
}

.cmn-news .container {
  max-width: 1160px;
}
.cmn-news__list {
  display: grid;
  gap: clamp(0.625rem, 0.4336734694rem + 0.8163265306vw, 1.25rem);
}
.cmn-news__link {
  display: block;
  background: #fff;
  padding: clamp(0.9375rem, 0.8418367347rem + 0.4081632653vw, 1.25rem);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  .cmn-news__link:hover {
    translate: 10px 0;
  }
}
.cmn-news__top-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px clamp(0.3125rem, 0.2168367347rem + 0.4081632653vw, 0.625rem);
  margin-bottom: clamp(0.625rem, 0.5293367347rem + 0.4081632653vw, 0.9375rem);
}
.cmn-news__label {
  color: #fff;
  background: #E1307E;
  border-radius: 40px;
  font-family: "zenKaku-medium", sans-serif;
  line-height: 1;
  padding: 5px clamp(0.9375rem, 0.8418367347rem + 0.4081632653vw, 1.25rem);
}
.cmn-news__date {
  font-family: "oswald";
  font-size: clamp(1rem, 0.9617346939rem + 0.1632653061vw, 1.125rem);
}
.cmn-news__title {
  font-family: "zenKaku-medium", sans-serif;
  font-size: clamp(1rem, 0.9234693878rem + 0.3265306122vw, 1.25rem);
  font-weight: bold;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.cmn-contact {
  position: relative;
  z-index: 1;
}
.cmn-contact::after {
  content: "";
  position: absolute;
  background: url(../../assets/img/splash-right.png) no-repeat center center/contain;
  width: clamp(12.5rem, 9.6301020408rem + 12.2448979592vw, 21.875rem);
  aspect-ratio: 7/12;
  top: 0;
  right: 0;
  z-index: -1;
}
.cmn-contact .container {
  position: relative;
  max-width: 1260px;
}
.cmn-contact__inner {
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px clamp(1.25rem, -0.2806122449rem + 6.5306122449vw, 6.25rem);
}
@media screen and (min-width: 768px) {
  .cmn-contact__inner {
    grid-template-columns: 1fr 340px;
  }
}
.cmn-contact__text {
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "zenKaku-medium", sans-serif;
  font-size: clamp(1rem, 0.9234693878rem + 0.3265306122vw, 1.25rem);
  font-weight: bold;
  margin: 0 auto clamp(0.625rem, 0.4336734694rem + 0.8163265306vw, 1.25rem);
}
@media screen and (min-width: 768px) {
  .cmn-contact__text {
    margin: 0 0 clamp(0.625rem, 0.4336734694rem + 0.8163265306vw, 1.25rem);
  }
}
.cmn-contact__list {
  display: grid;
  gap: clamp(0.3125rem, 0.2168367347rem + 0.4081632653vw, 0.625rem);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto clamp(0.625rem, 0.4336734694rem + 0.8163265306vw, 1.25rem);
}
@media screen and (min-width: 768px) {
  .cmn-contact__list {
    margin: 0 0 clamp(0.625rem, 0.4336734694rem + 0.8163265306vw, 1.25rem);
  }
}
.cmn-contact__item {
  color: #fff;
  font-family: "zenKaku-medium", sans-serif;
  font-size: clamp(1rem, 0.9234693878rem + 0.3265306122vw, 1.25rem);
  font-weight: bold;
  line-height: 1.4;
  padding-left: 1.3em;
  text-indent: -1.3em;
}
.cmn-contact__item::before {
  content: "■";
  color: #E1307E;
}
.cmn-contact__strong {
  color: #E1307E;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1.25rem, 0.943877551rem + 1.306122449vw, 2.25rem);
  font-weight: bold;
  line-height: 1.4;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .cmn-contact__strong {
    margin: 0;
  }
}
.cmn-contact__btn-wrap {
  display: grid;
  place-content: center;
  gap: clamp(0.625rem, 0.4336734694rem + 0.8163265306vw, 1.25rem);
}

.bg {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  z-index: -1;
}
.bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bg--movie::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  background-image: radial-gradient(#000 5%, transparent 20%), radial-gradient(#000 5%, transparent 20%);
  background-size: 6px 6px;
  background-position: 0 0, 3px 3px;
  top: 0;
  left: 0;
}
.bg--star {
  background-image: url(../img/bg-event.jpg);
}
.bg--live {
  background-image: url(../img/bg-works.jpg);
}
.bg--black {
  background-color: #232323;
}
.bg.active {
  opacity: 1;
}

.post-type-archive-works .bg--default,
.single-works .bg--default,
.tax-event-tag .bg--default {
  background-image: url(../img/bg-works.jpg);
}
.post-type-archive-works .bg--default video,
.single-works .bg--default video,
.tax-event-tag .bg--default video {
  display: none;
}

.post-type-archive-works .bg--movie::after,
.single-works .bg--movie::after,
.tax-event-tag .bg--movie::after {
  display: none;
}

.mv {
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  min-height: clamp(26.25rem, 20.8928571429rem + 22.8571428571vw, 43.75rem);
}
.mv__movie {
  position: relative;
  width: 100%;
  height: 100%;
}
.mv__movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv__movie::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  background-image: radial-gradient(#000 5%, transparent 20%), radial-gradient(#000 5%, transparent 20%);
  background-size: 6px 6px;
  background-position: 0 0, 3px 3px;
  top: 0;
  left: 0;
}
.mv__title-wrap {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 45%;
  translate: -50% -50%;
}
.mv__en {
  display: block;
  width: clamp(18.75rem, 5.3571428571rem + 57.1428571429vw, 62.5rem);
  margin: 0 auto;
}
.mv__title {
  width: clamp(18.75rem, 11.0969387755rem + 32.6530612245vw, 43.75rem);
  margin: -6% auto 0;
}
.mv__lead {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: clamp(1.875rem, -0.0382653061rem + 8.1632653061vw, 8.125rem);
  font-weight: bold;
  line-height: 1.4;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .mv__lead {
    font-size: clamp(1.375rem, -0.2130102041rem + 6.7755102041vw, 6.5625rem);
    line-height: 1.1;
  }
}

.translated-ltr .header__logo a img {
  content: url("../../assets/img/logo-k-en.png");
}
.translated-ltr .front-page .header__logo a img {
  content: url("../../assets/img/logo-en.png");
}
.translated-ltr .mv__title img {
  content: url("../../assets/img/mv-text-en.png");
}
.translated-ltr .mv__lead {
  font-size: clamp(1.875rem, 0.9183673469rem + 4.0816326531vw, 5rem);
}/*# sourceMappingURL=common.css.map */