@charset "UTF-8";
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
}

body {
  overflow-x: hidden;
  padding-left: 0;
  padding-right: 0;
}

.bg {
  background: -webkit-gradient(linear, left top, left bottom, from(#fafafa), color-stop(45%, #f8f8f8), color-stop(70%, #ececec), to(#cfcfcf));
  background: linear-gradient(to bottom, #fafafa 0%, #f8f8f8 45%, #ececec 70%, #cfcfcf 100%);
}

.hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

.fadeItem {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.fadeItem.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-char-fade {
  --opacity: 0;
}
.js-char-fade.is-show {
  --opacity: 1;
}
.js-char-fade .char {
  display: inline-block;
  opacity: var(--opacity);
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  -webkit-transition-delay: calc(0.08s * var(--char-index));
          transition-delay: calc(0.08s * var(--char-index));
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: #999;
}
.breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.breadcrumb span {
  color: #666;
}
.breadcrumb a::after {
  content: ">";
  margin-left: 10px;
  color: #999;
}

.view-more {
  position: relative;
  display: inline-block;
  min-width: 150px;
  padding-bottom: 12px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-decoration: none;
}
.view-more::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}
.view-more:hover::before {
  width: 100%;
}
.view-more::after {
  content: "↗";
  position: absolute;
  right: 0;
  bottom: 10px;
  -webkit-transition: -webkit-transform 0.6s ease 0.1s;
  transition: -webkit-transform 0.6s ease 0.1s;
  transition: transform 0.6s ease 0.1s;
  transition: transform 0.6s ease 0.1s, -webkit-transform 0.6s ease 0.1s;
}
.view-more:hover::after {
  -webkit-transform: translate(10px, -10px);
          transform: translate(10px, -10px);
}

.view-more {
  position: relative;
}
.view-more span {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
}
.view-more:hover span {
  -webkit-animation: viewmore-text 0.6s linear;
          animation: viewmore-text 0.6s linear;
}

@-webkit-keyframes viewmore-text {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes viewmore-text {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.floating-instagram {
  display: none;
}
@media screen and (min-width: 768px) {
  .floating-instagram {
    display: block;
    position: fixed;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 999;
    width: 40px;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  }
}
.floating-instagram img {
  display: block;
  width: 100%;
  height: auto;
}
.floating-instagram:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-50%) scale(1.08);
          transform: translateY(-50%) scale(1.08);
}

.top-parallax {
  position: relative;
  color: #fff;
}

.top-parallax__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.top-parallax__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0.55);
          filter: brightness(0.55);
}

/* =====================
  Header
===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  color: #000;
}
.site-header--top {
  color: #fff;
}
.site-header--top .site-header__logo {
  display: none;
}

.site-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 24px;
  height: 72px;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .site-header__inner {
    height: 138px;
    padding: 0 36px 0 42px;
    gap: 28px;
  }
}

.site-header__logo {
  display: block;
  margin-right: auto;
  padding-top: 50px;
}
.site-header__logo img {
  display: block;
  width: 58px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .site-header__logo img {
    width: 76px;
  }
}

.site-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .site-header__list {
    gap: 22px;
  }
}
.site-header__list li a {
  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;
  min-width: 100px;
  height: 30px;
  border: 1px solid currentColor;
  border-radius: 10px;
  color: currentColor;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-decoration: none;
  -webkit-transition: background-color 0.35s ease, color 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: background-color 0.35s ease, color 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
}
@media (hover: hover) {
  .site-header__list li a:hover {
    background: #fff;
    color: #333;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
}
.site-header__list li a:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .site-header__list li a {
    font-size: 14px;
    height: 36px;
    padding: 0 14px;
  }
}

.site-header__link {
  color: currentColor;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.global-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  overflow-y: auto;
  background: rgba(84, 152, 150, 0.96);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.8s ease, visibility 0.8s ease;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.global-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.global-menu__inner {
  width: 100%;
  min-height: 100svh;
  margin: 0 auto;
  padding: 48px 18px 40px;
  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;
}
@media screen and (min-width: 768px) {
  .global-menu__inner {
    max-width: 640px;
    min-height: 100vh;
    padding: 100px 20px 70px;
  }
}

.global-menu__logo {
  display: block;
  width: 70px;
}
@media screen and (min-width: 768px) {
  .global-menu__logo {
    width: 92px;
  }
}
.global-menu__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.global-menu__cta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .global-menu__cta {
    gap: 18px;
    margin-top: 54px;
  }
}

.global-menu__cta-item {
  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: 14px;
  min-height: 62px;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.06em;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-transition: background-color 0.35s ease, border-color 0.35s ease;
  transition: background-color 0.35s ease, border-color 0.35s ease;
}
@media screen and (min-width: 768px) {
  .global-menu__cta-item {
    gap: 22px;
    min-height: 92px;
    font-size: 15px;
    padding-left: 0;
    padding-right: 0;
  }
}
.global-menu__cta-item img {
  width: 28px;
  height: auto;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
@media screen and (min-width: 768px) {
  .global-menu__cta-item img {
    width: 40px;
  }
}
.global-menu__cta-item::after {
  content: "↗";
  margin-left: auto;
  font-size: 14px;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
@media screen and (min-width: 768px) {
  .global-menu__cta-item::after {
    margin-left: 16px;
    font-size: 18px;
  }
}
@media (hover: hover) {
  .global-menu__cta-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.95);
  }
  .global-menu__cta-item:hover::after {
    -webkit-transform: translate(4px, -4px);
            transform: translate(4px, -4px);
  }
}

.global-menu__nav {
  width: 100%;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .global-menu__nav {
    display: grid;
    grid-template-columns: 176px 140px 200px;
    gap: 36px;
    margin-top: 50px;
  }
}

.global-menu__title {
  position: relative;
  padding-bottom: 18px;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .global-menu__title {
    padding-bottom: 20px;
    font-size: 14px;
  }
}
.global-menu__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}
@media screen and (min-width: 768px) {
  .global-menu__title::after {
    width: 176px;
  }
}

.global-menu__column {
  width: 100%;
}
.global-menu__column:not(:first-child) {
  margin-top: 42px;
}
@media screen and (min-width: 768px) {
  .global-menu__column:not(:first-child) {
    margin-top: 0;
  }
}
.global-menu__column:nth-child(2) .global-menu__title::after {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .global-menu__column:nth-child(2) .global-menu__title::after {
    width: 380px;
  }
}

.global-menu__list {
  margin-top: 16px;
}
.global-menu__list li:not(:first-child) {
  margin-top: 14px;
}
.global-menu__list a {
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .global-menu__list a:hover {
    opacity: 0.65;
  }
}
@media screen and (min-width: 768px) {
  .global-menu__list a {
    line-height: 1.3;
  }
}
.global-menu__list--plain {
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .global-menu__list--plain {
    margin-top: 54px;
  }
}

.global-menu__column--plain {
  margin-top: 0;
}

.global-menu__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
  width: 100%;
  margin-top: 52px;
}
@media screen and (min-width: 768px) {
  .global-menu__sns {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 18px;
    margin-top: 88px;
  }
}
.global-menu__sns a {
  display: block;
  width: 28px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (hover: hover) {
  .global-menu__sns a:hover {
    opacity: 0.65;
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}
.global-menu__sns img {
  display: block;
  width: 100%;
  height: auto;
}

.global-menu__logo,
.global-menu__cta,
.global-menu__nav,
.global-menu__sns {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-filter: blur(4px);
          filter: blur(4px);
  -webkit-transition: opacity 0.9s ease, -webkit-transform 0.9s ease, -webkit-filter 0.9s ease;
  transition: opacity 0.9s ease, -webkit-transform 0.9s ease, -webkit-filter 0.9s ease;
  transition: opacity 0.9s ease, transform 0.9s ease, filter 0.9s ease;
  transition: opacity 0.9s ease, transform 0.9s ease, filter 0.9s ease, -webkit-transform 0.9s ease, -webkit-filter 0.9s ease;
}

.global-menu.is-open .global-menu__logo,
.global-menu.is-open .global-menu__cta,
.global-menu.is-open .global-menu__nav,
.global-menu.is-open .global-menu__sns {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-filter: blur(0);
          filter: blur(0);
}
.global-menu.is-open .global-menu__cta {
  -webkit-transition-delay: 0.08s;
          transition-delay: 0.08s;
}
.global-menu.is-open .global-menu__nav {
  -webkit-transition-delay: 0.16s;
          transition-delay: 0.16s;
}
.global-menu.is-open .global-menu__sns {
  -webkit-transition-delay: 0.24s;
          transition-delay: 0.24s;
}

body.is-menu-open {
  overflow: hidden;
}
body.is-menu-open .site-header__logo,
body.is-menu-open .site-header__nav {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header__menu {
  position: relative;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  z-index: 1001;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .site-header__menu {
    width: 44px;
    height: 44px;
  }
}
.site-header__menu span {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 1px;
  background: currentColor;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-header__menu span:first-child {
  top: 4px;
}
@media screen and (min-width: 768px) {
  .site-header__menu span:first-child {
    top: 14px;
  }
}
.site-header__menu span:last-child {
  top: 16px;
}
@media screen and (min-width: 768px) {
  .site-header__menu span:last-child {
    top: 26px;
  }
}
.site-header__menu.is-open span:first-child {
  top: 10px;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .site-header__menu.is-open span:first-child {
    top: 20px;
  }
}
.site-header__menu.is-open span:last-child {
  top: 10px;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .site-header__menu.is-open span:last-child {
    top: 20px;
  }
}

.top-parallax__content {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  color: #fff;
  overflow: visible;
  background: #000;
}

.hero__bg {
  position: sticky;
  top: 0;
  height: 100svh;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  margin-top: -100svh;
}

.hero__bg-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transition: opacity 1.6s ease;
  transition: opacity 1.6s ease;
}

.hero__bg-item.is-active {
  opacity: 1;
}

.hero__bg-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0.55);
          filter: brightness(0.55);
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__panel {
  min-height: 100vh;
  padding: 80px 20px;
  text-align: center;
}
.hero__panel--intro {
  height: 100svh;
  min-height: 100svh;
  padding: 0;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero__intro-inner {
  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;
}

.hero__catch {
  font-size: 20px;
  letter-spacing: 0.08em;
  padding-left: 10px;
}

.hero__logo {
  margin-top: 40px;
}
.hero__logo img {
  width: 130px;
}

.hero__title {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.hero__text {
  margin-top: 56px;
  line-height: 2.4;
  letter-spacing: 0.08em;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .hero__text {
    font-size: 16px;
  }
}

.hero__button {
  margin-top: 88px;
}
.hero__button .view-more {
  color: #fff;
  text-align: left;
}

/* =====================
  Event
===================== */
.event {
  position: relative;
  background: #549896;
  color: #fff;
  padding: 96px 20px 80px;
}
.event::before {
  content: "";
  position: absolute;
  left: 0;
  top: -600px;
  width: 100%;
  height: 600px;
  pointer-events: none;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(84, 152, 150, 0)), color-stop(20%, rgba(84, 152, 150, 0.03)), color-stop(45%, rgba(84, 152, 150, 0.12)), color-stop(75%, rgba(84, 152, 150, 0.3)), to(rgb(84, 152, 150)));
  background: linear-gradient(to bottom, rgba(84, 152, 150, 0) 0%, rgba(84, 152, 150, 0.03) 20%, rgba(84, 152, 150, 0.12) 45%, rgba(84, 152, 150, 0.3) 75%, rgb(84, 152, 150) 100%);
}

.event__inner {
  width: 100%;
  margin: 0 auto;
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  .event__inner {
    max-width: 1080px;
  }
}

.event__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.event__title {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .event__title {
    font-size: 48px;
  }
}

.event__subtitle {
  font-size: 13px;
  padding-top: 10px;
  letter-spacing: 0.08em;
}

.event__content {
  display: grid;
  gap: 32px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .event__content {
    grid-template-columns: 43% 1fr;
    gap: 28px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.event__main-link {
  color: inherit;
  text-decoration: none;
}

.event__main-image {
  overflow: hidden;
}
.event__main-image img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.event__main-title {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .event__main-title {
    font-size: 17px;
  }
}

.event__side {
  display: grid;
  gap: 28px;
}

.event__item-link {
  display: grid;
  gap: 16px;
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .event__item-link {
    grid-template-columns: 240px 1fr;
    gap: 24px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.event__item-image {
  overflow: hidden;
}
.event__item-image img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

@media (hover: hover) {
  .event__main-link:hover .event__main-image img,
  .event__item-link:hover .event__item-image img {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
}
.event__item-title {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.event__info {
  margin-top: 14px;
}

.event__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.event__info-item:not(:first-child) {
  margin-top: 8px;
}
.event__info-item img {
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.event__info-item span {
  font-size: 12px;
  line-height: 1.6;
}

.event__button {
  margin-top: 56px;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .event__button {
    margin-top: 64px;
  }
}
.event__button .view-more {
  color: #fff;
  text-align: left;
}

.top-image {
  width: 100%;
}
.top-image img {
  display: block;
  width: 100%;
  height: auto;
}
/* =====================
  works
===================== */
.works {
  color: #000;
  padding: 96px 20px 80px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .works {
    padding: 88px 0 96px;
  }
}

.works__inner {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .works__inner {
    padding-left: 10%;
  }
}

.works__heading {
  display: block;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  .works__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1080px;
    margin: 0 auto;
  }
}

.works__heading-text {
  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: 8px;
}
@media screen and (min-width: 768px) {
  .works__heading-text {
    -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;
    gap: 18px;
  }
}

.works__title {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .works__title {
    font-size: 48px;
  }
}

.works__subtitle {
  font-size: 13px;
  letter-spacing: 0.08em;
}

.works__button {
  display: none;
}
@media screen and (min-width: 768px) {
  .works__button {
    display: block;
  }
}
.works__button .view-more {
  color: #000;
}

.works__button-sp {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .works__button-sp {
    display: none;
  }
}
.works__button-sp .view-more {
  color: #000;
  text-align: left;
}

.works__slider {
  position: relative;
  margin-top: 40px;
  overflow: visible;
}

.works__link {
  color: inherit;
  text-decoration: none;
}

.works__image {
  overflow: hidden;
}
.works__image img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

@media (hover: hover) {
  .works__link:hover .works__image img {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
}
.works__label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 18px;
  padding: 6px 10px;
  background: #E8E8E8;
  font-size: 11px;
}

.works__name {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.works__pagination {
  position: static;
  margin-top: 32px;
  text-align: center;
}
.works__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background: #fff;
  opacity: 1;
}
.works__pagination .swiper-pagination-bullet-active {
  background: #5aa19d;
}

.works__next {
  display: none;
}
@media screen and (min-width: 768px) {
  .works__next {
    display: block;
  }
}
.works__next .swiper-navigation-icon {
  display: none;
}
.works__next {
  width: 48px;
  height: 48px;
  right: 40px;
  top: 50%;
  margin-top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/arrow-next.png") center center/contain no-repeat;
}
.works__next::after {
  display: none;
}
.works__next {
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
@media (hover: hover) {
  .works__next:hover {
    opacity: 0.75;
    -webkit-transform: translateY(-50%) translateX(4px);
            transform: translateY(-50%) translateX(4px);
  }
}
.works__next .swiper-button-next::after {
  display: none !important;
  content: none !important;
}

/* =====================
 lineup
===================== */
.lineup {
  color: #000;
  padding: 96px 20px 80px;
}
@media screen and (min-width: 768px) {
  .lineup {
    padding: 104px 80px 96px;
  }
}

.lineup__inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .lineup__inner {
    max-width: 1080px;
  }
}

.lineup__heading {
  text-align: center;
}

.lineup__title {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .lineup__title {
    font-size: 48px;
  }
}

.lineup__subtitle {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.lineup__cards {
  display: grid;
  gap: 32px;
  margin-top: 56px;
}
@media screen and (min-width: 768px) {
  .lineup__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.lineup__card {
  position: relative;
}

.lineup__link {
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}
.lineup__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
.lineup__link img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}

.lineup__body {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .lineup__body {
    left: 40px;
    bottom: 34px;
  }
}

.lineup__kana {
  font-size: 12px;
  letter-spacing: 0.08em;
}

.lineup__name {
  margin-top: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .lineup__name {
    font-size: 60px;
  }
}

.lineup__text {
  margin-top: 20px;
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .lineup__text {
    font-size: 14px;
  }
}

.lineup__button {
  margin-top: 56px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .lineup__button {
    margin-top: 64px;
  }
}
.lineup__button .view-more {
  color: #000;
  text-align: left;
}

/* =====================
  performance
===================== */
.performance {
  position: relative;
  padding: 100px 20px;
  color: #fff;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .performance {
    padding: 120px 0;
  }
}

.performance__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.performance__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.performance__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.performance__inner {
  position: relative;
  z-index: 1;
}

.performance__heading {
  text-align: center;
}

.performance__title {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .performance__title {
    font-size: 56px;
  }
}

.performance__subtitle {
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .performance__subtitle {
    margin-top: 20px;
  }
}

.performance__content {
  padding-top: 60px;
  max-width: 550px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .performance__content {
    margin-top: 80px;
    max-width: 100%;
  }
}
.performance__content img {
  display: block;
  width: 100%;
  height: auto;
}

.performance__button {
  padding-top: 60px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .performance__button {
    max-width: 1080px;
    margin-top: 64px;
  }
}
.performance__button .view-more {
  color: #fff;
  text-align: left;
}

/* =====================
 blog
===================== */
.top-blog {
  background: #549896;
  color: #fff;
  padding: 96px 20px 100px;
}
@media screen and (min-width: 768px) {
  .top-blog {
    padding: 112px 80px 110px;
  }
}

.blog__inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .blog__inner {
    max-width: 1080px;
  }
}

.blog__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.blog__heading-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 18px;
}

.blog__title {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .blog__title {
    font-size: 48px;
  }
}

.blog__subtitle {
  font-size: 13px;
  letter-spacing: 0.08em;
}

.blog__button {
  display: none;
}
@media screen and (min-width: 768px) {
  .blog__button {
    display: block;
  }
}
.blog__button .view-more {
  color: #fff;
  text-align: left;
}

.blog__button-sp {
  margin-top: 48px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .blog__button-sp {
    display: none;
  }
}
.blog__button-sp .view-more {
  color: #fff;
  text-align: left;
}

.blog__list {
  display: grid;
  gap: 32px;
  margin-top: 56px;
}
@media screen and (min-width: 768px) {
  .blog__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
  }
}

.blog__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog__image {
  aspect-ratio: 358/240;
  overflow: hidden;
}
.blog__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}

.blog__link:hover .blog__image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.blog__date {
  display: block;
  margin-top: 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .blog__date {
    font-size: 16px;
  }
}

.blog__card-title {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .blog__card-title {
    font-size: 16px;
  }
}

/* =====================
 news
===================== */
.news {
  background: #549896;
  color: #fff;
  padding: 96px 20px 100px;
}
@media screen and (min-width: 768px) {
  .news {
    padding: 112px 80px 130px;
  }
}

.news__inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .news__inner {
    max-width: 1080px;
  }
}

.news__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.news__heading-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}

.news__title {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .news__title {
    font-size: 48px;
  }
}

.news__subtitle {
  font-size: 13px;
  letter-spacing: 0.08em;
  padding-top: 10px;
}

.news__button {
  display: none;
}
@media screen and (min-width: 768px) {
  .news__button {
    display: block;
  }
}
.news__button .view-more {
  color: #fff;
  text-align: left;
}

.news__button-sp {
  margin-top: 48px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news__button-sp {
    display: none;
  }
}
.news__button-sp .view-more {
  color: #fff;
  text-align: left;
}

.news__list {
  margin-top: 56px;
}

.news__item {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.7);
}

.news__link {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 24px 36px 24px 0;
  color: inherit;
  text-decoration: none;
  -webkit-transition: background-color 0.35s ease;
  transition: background-color 0.35s ease;
}
@media screen and (min-width: 768px) {
  .news__link {
    grid-template-columns: 120px 1fr 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
    padding: 26px 16px;
  }
}

@media (hover: hover) {
  .news__link:hover {
    background: rgba(255, 255, 255, 0.08);
  }
  .news__link:hover .news__arrow img {
    -webkit-transform: translate(8px, -8px);
            transform: translate(8px, -8px);
  }
}
.news__date {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.news__item-title {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .news__item-title {
    font-size: 16px;
  }
}

.news__arrow {
  position: absolute;
  right: 0;
  top: 66px;
  width: 14px;
  height: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.news__arrow img {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
@media screen and (min-width: 768px) {
  .news__arrow {
    top: 26px;
    position: static;
    justify-self: end;
  }
}

.news__link:hover .news__arrow img {
  -webkit-transform: translate(8px, -8px);
          transform: translate(8px, -8px);
}

/* =====================
  cta
===================== */
.cta-links {
  background: #f4f5f6;
  padding: 80px 20px;
}
@media screen and (min-width: 768px) {
  .cta-links {
    padding: 120px 80px;
  }
}

.cta-links__inner {
  display: grid;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .cta-links__inner {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1080px;
  }
}

.cta-links__item {
  display: grid;
  grid-template-columns: 30px 105px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 36px 12px;
  text-align: left;
  text-decoration: none;
  color: #000;
  border-top: 1px solid #d7d7d7;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.cta-links__item:last-child {
  border-bottom: 1px solid #d7d7d7;
}
@media screen and (min-width: 768px) {
  .cta-links__item {
    display: block;
    text-align: center;
    padding: 0 30px;
    gap: 8px;
    border-top: 0;
    border-bottom: 0;
    border-left: 1px solid #d7d7d7;
  }
  .cta-links__item:last-child {
    border-right: 1px solid #d7d7d7;
    border-bottom: 0;
  }
}
@media (hover: hover) {
  .cta-links__item:hover {
    opacity: 0.45;
  }
  .cta-links__item:hover .cta-links__icon img {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
}

.cta-links__icon {
  width: 40px;
}
@media screen and (min-width: 768px) {
  .cta-links__icon {
    width: auto;
    height: 72px;
    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;
  }
}
.cta-links__icon img {
  width: auto;
  margin: 0;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
@media screen and (min-width: 768px) {
  .cta-links__icon img {
    width: auto;
    margin: 0 auto;
  }
}

.cta-links__item:nth-of-type(1) .cta-links__icon img {
  height: 42px;
}
@media screen and (min-width: 768px) {
  .cta-links__item:nth-of-type(1) .cta-links__icon img {
    height: 71px;
  }
}
.cta-links__item:nth-of-type(2) .cta-links__icon img {
  height: 29px;
}
@media screen and (min-width: 768px) {
  .cta-links__item:nth-of-type(2) .cta-links__icon img {
    height: 49px;
  }
}
.cta-links__item:nth-of-type(3) .cta-links__icon img {
  height: 38px;
}
@media screen and (min-width: 768px) {
  .cta-links__item:nth-of-type(3) .cta-links__icon img {
    height: 58px;
  }
}

.cta-links__title {
  margin-top: 0;
  font-size: 16px;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .cta-links__title {
    margin-top: 20px;
    font-size: 18px;
  }
}

.cta-links__text {
  margin-top: 0;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .cta-links__text {
    max-width: 220px;
    margin: 20px auto 0;
    line-height: 2;
  }
}

/* =====================
  Footer
===================== */
.footer {
  background: #484848;
  color: #fff;
  padding: 50px 20px 70px;
}
@media screen and (min-width: 860px) {
  .footer {
    padding: 88px 80px 76px;
  }
}
.footer a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .footer a:hover {
    opacity: 0.6;
  }
}

.footer__inner {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (min-width: 860px) {
  .footer__inner {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: clamp(32px, 5vw, 80px);
    max-width: 980px;
  }
}

.footer__info {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: 22px;
     -moz-column-gap: 22px;
          column-gap: 22px;
}
@media screen and (min-width: 860px) {
  .footer__info {
    display: block;
  }
}

.footer__logo {
  display: block;
  width: 82px;
}
.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 860px) {
  .footer__text {
    display: contents;
  }
}

.footer__company {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 860px) {
  .footer__company {
    margin-top: 40px;
    font-size: 13px;
  }
}

.footer__address {
  margin-top: 12px;
  font-style: normal;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 860px) {
  .footer__address {
    margin-top: 24px;
    font-size: 12px;
  }
}

.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
@media screen and (min-width: 860px) {
  .footer__sns {
    margin-top: 24px;
  }
}
.footer__sns a {
  display: block;
  width: 20px;
}
@media screen and (min-width: 860px) {
  .footer__sns a {
    width: 24px;
  }
}
.footer__sns img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__nav {
  margin-top: 56px;
}
@media screen and (min-width: 860px) {
  .footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 0;
  }
}

.footer__nav-column:not(:first-child):not(.footer__nav-column--plain) {
  margin-top: 54px;
}
@media screen and (min-width: 860px) {
  .footer__nav-column:not(:first-child):not(.footer__nav-column--plain) {
    margin-top: 0;
  }
}
@media screen and (min-width: 860px) {
  .footer__nav-column {
    margin-top: 0;
  }
}

.footer__nav-title {
  position: relative;
  padding-bottom: 18px;
  font-size: 14px;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 860px) {
  .footer__nav-title {
    padding-bottom: 14px;
    font-size: 13px;
  }
}
.footer__nav-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(90, 161, 157, 0.8);
}
@media screen and (min-width: 860px) {
  .footer__nav-title::after {
    width: 140px;
  }
}

@media screen and (min-width: 860px) {
  .footer__nav-column:nth-child(2) .footer__nav-title::after {
    width: calc(100% + 150px);
    max-width: 400px;
  }
}

.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 18px;
  margin-top: 24px;
}
@media screen and (min-width: 860px) {
  .footer__nav-list {
    gap: 18px 48px;
    display: block;
    margin-top: 18px;
  }
}
@media screen and (min-width: 860px) {
  .footer__nav-list li:not(:first-child) {
    margin-top: 16px;
  }
}
.footer__nav-list a {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-decoration: none;
}
@media screen and (min-width: 860px) {
  .footer__nav-list a {
    font-size: 12px;
  }
}
.footer__nav-list--plain {
  margin-top: 0px;
}
@media screen and (min-width: 860px) {
  .footer__nav-list--plain {
    margin-top: 50px;
  }
}

.footer__nav-column--plain {
  margin-top: 10px;
}
@media screen and (min-width: 860px) {
  .footer__nav-column--plain {
    margin-top: 0;
  }
}

.footer__copy {
  margin-top: 70px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (min-width: 860px) {
  .footer__copy {
    margin-top: 40px;
    font-size: 11px;
    text-align: right;
  }
}

.concept-page {
  color: #333;
}
.concept-page .concept-hero__top {
  background-color: #F0F1F4;
  padding-top: 100px;
}
@media screen and (min-width: 768px) {
  .concept-page .concept-hero__top {
    padding-top: 120px;
  }
}
.concept-page .concept-hero__breadcrumb {
  padding-left: 20px;
  padding-right: 20px;
}
.concept-page .concept-hero__inner {
  position: relative;
  color: #fff;
}
.concept-page .concept-hero__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
}
.concept-page .concept-hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0.75);
          filter: brightness(0.75);
}
.concept-page .concept-hero__content {
  position: relative;
  z-index: 1;
}
.concept-page .concept-hero__panel {
  min-height: 100vh;
  padding: 120px 20px;
  text-align: center;
}
.concept-page .concept-hero__panel--first {
  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;
}
.concept-page .concept-hero__panel--second {
  position: relative;
  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: 24px;
  min-height: 120vh;
  line-height: 2.4;
  background: transparent;
}
.concept-page .concept-hero__panel--second::before {
  content: "";
  position: absolute;
  inset: -60vh 0 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(20%, rgba(0, 0, 0, 0.12)), color-stop(40%, rgba(0, 0, 0, 0.35)), color-stop(60%, rgba(0, 0, 0, 0.55)), color-stop(80%, rgba(0, 0, 0, 0.65)), to(rgba(0, 0, 0, 0.85)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.12) 20%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.65) 80%, rgba(0, 0, 0, 0.85) 100%);
}
.concept-page .concept-hero__panel p {
  font-size: 10px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .concept-page .concept-hero__panel p {
    font-size: 15px;
  }
}
.concept-page .concept-hero__small {
  position: absolute;
  top: 76px;
  left: 8%;
  font-size: 24px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .concept-page .concept-hero__small {
    top: 120px;
  }
}
.concept-page .concept-hero__panel .concept-hero__small {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .concept-page .concept-hero__panel .concept-hero__small {
    font-size: 32px;
  }
}
.concept-page .concept-hero__image {
  position: absolute;
  width: 282px;
  top: 30px;
  left: 8%;
  z-index: 1;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .concept-page .concept-hero__image {
    width: 520px;
  }
}
.concept-page .concept-hero__image img {
  display: block;
  width: 100%;
  height: auto;
}
.concept-page .concept-hero__title {
  margin-top: 40px;
}
.concept-page .concept-hero__title {
  font-size: 26px;
  font-weight: 400;
}
.concept-page .concept__top-image {
  width: 100%;
}
.concept-page .concept__top-image img {
  display: block;
  width: 100%;
  height: auto;
}
.concept-page .concept-message {
  background: #FFFFFF;
}
.concept-page .concept-message__wrapper {
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .concept-page .concept-message__wrapper {
    max-width: 1200px;
  }
}
.concept-page .concept-message__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 20px 0;
}
@media screen and (min-width: 768px) {
  .concept-page .concept-message__content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.concept-page .concept-message__title {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .concept-page .concept-message__title {
    font-size: 20px;
  }
}
.concept-page .concept-message__text {
  margin-top: 32px;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .concept-page .concept-message__text {
    margin-top: 0;
  }
}
.concept-page .concept-message__text p {
  font-size: 13px;
  line-height: 1.9;
}
.concept-page .concept-message__text p:not(:first-child) {
  margin-top: 20px;
}
.concept-page .concept-message__image {
  width: calc(100% - 80px);
  margin-top: 60px;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .concept-page .concept-message__image {
    width: 499px;
    margin-top: 120px;
    margin-right: 180px;
  }
}
.concept-page .concept-message__image img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .concept-page .concept-message__row {
    display: grid;
    grid-template-columns: 499px 1fr;
    gap: 70px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1060px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 768px) {
  .concept-page .concept-message__inner--second {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: none;
    margin: 0;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .concept-page .concept-message__content--second {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .concept-page .concept-message__content--second .concept-message__text {
    margin-top: 36px;
  }
}
.concept-page .concept-message__image--left {
  width: calc(100% - 80px);
  margin: 0;
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .concept-page .concept-message__image--left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 499px;
    margin: 0;
    padding-top: 0;
  }
}
.concept-page .design-section {
  background: #f0f1f4;
  padding: 80px 0 90px;
}
@media screen and (max-width: 767px) {
  .concept-page .design-section {
    padding: 42px 0 70px;
  }
}
.concept-page .design-section__inner {
  width: min(100%, 900px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .concept-page .design-section__inner {
    width: min(100%, 358px);
  }
}
@media screen and (min-width: 768px) {
  .concept-page .design-section__lead {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 120px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.concept-page .design-section__heading h2 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}
.concept-page .design-section__heading p {
  margin-top: 20px;
  font-size: 13px;
}
.concept-page .design-section__lead-text {
  margin-top: 34px;
  font-size: 13px;
  line-height: 2.2;
}
@media screen and (min-width: 768px) {
  .concept-page .design-section__lead-text {
    margin-top: 0;
  }
}
.concept-page .design-section__item {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .concept-page .design-section__item {
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 70px;
    margin-top: 88px;
  }
}
@media screen and (min-width: 768px) {
  .concept-page .design-section__item--01 {
    grid-template-columns: 240px 1fr;
  }
}
@media screen and (min-width: 768px) {
  .concept-page .design-section__item--01 .design-section__body {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (min-width: 768px) {
  .concept-page .design-section__item--01 .design-section__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (min-width: 768px) {
  .concept-page .design-section__item--02 {
    grid-template-columns: 1fr 240px;
  }
}
@media screen and (min-width: 768px) {
  .concept-page .design-section__item--02 .design-section__image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (min-width: 768px) {
  .concept-page .design-section__item--02 .design-section__body {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.concept-page .design-section__body {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .concept-page .design-section__body {
    margin-top: 0;
  }
}
.concept-page .design-section__body h3 {
  margin-top: 38px;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .concept-page .design-section__body h3 {
    margin-top: 24px;
    font-size: 16px;
  }
}
.concept-page .design-section__body p {
  margin-top: 26px;
  font-size: 13px;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .concept-page .design-section__body p {
    margin-top: 18px;
    font-size: 12px;
  }
}
.concept-page .design-section__number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #5e9c9c;
  border-radius: 50%;
  color: #5e9c9c;
  font-size: 14px;
}
.concept-page .design-section__image {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .concept-page .design-section__image {
    margin-top: 0;
  }
}
.concept-page .design-section__image img {
  display: block;
  width: 100%;
  height: auto;
}
.concept-page .design-section__item--01 .design-section__image img {
  aspect-ratio: 560/330;
  -o-object-fit: cover;
     object-fit: cover;
}
.concept-page .design-section__item--02 .design-section__image img {
  aspect-ratio: 400/238;
  -o-object-fit: cover;
     object-fit: cover;
}
.concept-page .design-section__banner {
  position: relative;
  display: block;
  width: min(100%, 400px);
  aspect-ratio: 358/210;
  margin: 80px auto 0;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .concept-page .design-section__banner {
    width: 500px;
    aspect-ratio: 500/210;
    margin-top: 110px;
  }
}
.concept-page .design-section__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.concept-page .design-section__banner > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
@media (hover: hover) {
  .concept-page .design-section__banner:hover > img {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
  .concept-page .design-section__banner:hover .design-section__banner-arrow {
    -webkit-transform: translate(10px, calc(-50% - 10px));
            transform: translate(10px, calc(-50% - 10px));
  }
}
.concept-page .design-section__banner-text {
  position: absolute;
  left: 38px;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
}
.concept-page .design-section__banner-text strong {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}
.concept-page .design-section__banner-text span {
  display: block;
  font-size: 12px;
}
.concept-page .design-section__banner-arrow {
  position: absolute;
  right: 30px;
  top: 50%;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
.concept-page .design-section__banner-arrow img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-page {
  color: #333;
}
.contact-page .contact {
  background: #F0F1F4;
  padding: 100px 0 80px;
}
@media screen and (min-width: 768px) {
  .contact-page .contact {
    padding: 150px 0 100px;
  }
}
.contact-page .contact__inner {
  width: 90%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact-page .contact__inner {
    width: min(86%, 860px);
  }
}
.contact-page .contact__head {
  position: relative;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .contact-page .contact__head {
    padding-bottom: 70px;
  }
}
.contact-page .contact__title-wrap {
  position: relative;
  margin-top: 42px;
}
.contact-page .contact__title-en {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Montserrat", sans-serif;
  font-size: 64px;
  line-height: 1;
  color: rgba(72, 72, 72, 0.06);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .contact-page .contact__title-en {
    font-size: clamp(72px, 9.375vw, 120px);
  }
}
.contact-page .contact__title {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .contact-page .contact__title {
    font-size: 40px;
  }
}
.contact-page .contact-form,
.contact-page .wpcf7 {
  position: relative;
  z-index: 1;
}
.contact-page .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.contact-page .contact-form__row {
  display: block;
  padding: 18px 0;
  border-top: 1px dotted #d3d3d3;
}
.contact-page .contact-form__row:last-of-type {
  border-bottom: 1px dotted #d3d3d3;
}
@media screen and (min-width: 768px) {
  .contact-page .contact-form__row {
    display: grid;
    grid-template-columns: 200px 1fr;
    -webkit-column-gap: 28px;
       -moz-column-gap: 28px;
            column-gap: 28px;
    padding: 24px 0;
  }
}
.contact-page .contact-form__head {
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 1.7;
  color: #555;
  padding-top: 0;
}
.contact-page .contact-form__head span {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 5px;
  background: #6aa5a1;
  color: #fff;
  font-size: 10px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .contact-page .contact-form__head {
    margin-bottom: 0;
    font-size: 13px;
    padding-top: 4px;
  }
}
.contact-page .contact-form__body {
  width: 100%;
}
.contact-page .contact-form__checks {
  margin-bottom: 18px;
}
.contact-page .contact-form__checks .wpcf7-form-control {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .contact-page .contact-form__checks .wpcf7-form-control {
    grid-template-columns: repeat(3, -webkit-max-content);
    grid-template-columns: repeat(3, max-content);
    -webkit-column-gap: 42px;
       -moz-column-gap: 42px;
            column-gap: 42px;
    row-gap: 14px;
  }
}
.contact-page .contact-form__checks .wpcf7-list-item {
  margin: 0;
}
.contact-page .contact-form__checks label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  font-size: 11px;
  color: #555;
  line-height: 1.4;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .contact-page .contact-form__checks label {
    font-size: 13px;
  }
}
.contact-page .contact-form__checks input[type=checkbox] {
  width: 19px;
  height: 19px;
  accent-color: #cfcfcf;
}
.contact-page .contact-form__checks--route .wpcf7-form-control {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
}
@media screen and (min-width: 768px) {
  .contact-page .contact-form__checks--route .wpcf7-form-control {
    grid-template-columns: repeat(4, -webkit-max-content);
    grid-template-columns: repeat(4, max-content);
    -webkit-column-gap: 48px;
       -moz-column-gap: 48px;
            column-gap: 48px;
    row-gap: 14px;
  }
}
.contact-page .contact-form__input,
.contact-page .contact-form__textarea {
  width: 100%;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.contact-page .contact-form__input {
  height: 46px;
  padding: 0 12px;
}
@media screen and (min-width: 768px) {
  .contact-page .contact-form__input {
    height: 48px;
  }
}
.contact-page .contact-form__input--middle {
  max-width: none;
}
@media screen and (min-width: 768px) {
  .contact-page .contact-form__input--middle {
    max-width: 330px;
  }
}
.contact-page .contact-form__textarea {
  height: 150px;
  padding: 12px;
  resize: vertical;
}
@media screen and (min-width: 768px) {
  .contact-page .contact-form__textarea {
    height: 160px;
  }
}
.contact-page .contact-form__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  max-width: none;
}
.contact-page .contact-form__name > p {
  display: contents;
}
.contact-page .contact-form__name .wpcf7-form-control-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
}
.contact-page .contact-form__name .contact-form__input {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact-page .contact-form__name {
    gap: 10px;
    max-width: 430px;
  }
}
.contact-page .contact-form__submit {
  margin-top: 34px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-page .contact-form__submit {
    margin-top: 38px;
  }
}
.contact-page .contact-form__submit p {
  margin-bottom: 18px;
  font-size: 12px;
  line-height: 1.9;
  color: #555;
}
.contact-page .contact-form__submit .wpcf7-submit {
  width: 86%;
  max-width: 260px;
  height: 54px;
  border: 1px solid #333;
  border-radius: 999px;
  background: #333;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.18em;
  cursor: pointer;
  -webkit-transition: background-color 0.35s ease, color 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: background-color 0.35s ease, color 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
}
@media screen and (min-width: 768px) {
  .contact-page .contact-form__submit .wpcf7-submit {
    width: 250px;
    max-width: none;
  }
}
.contact-page .contact-form__submit .wpcf7-submit:hover {
  background: #fff;
  color: #333;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.contact-page .contact-form__submit .wpcf7-submit:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.contact-page .wpcf7-spinner {
  display: none;
}
.contact-page .contact-form__privacy {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-page .contact-form__privacy:hover {
  opacity: 0.7;
}
.contact-page .u-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .contact-page .u-sp {
    display: none;
  }
}
.contact-page .u-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .contact-page .u-pc {
    display: block;
  }
}

.event-page {
  color: #000;
}
.event-page .event-list {
  background: #F0F1F4;
  padding: 100px 0 80px;
}
@media screen and (min-width: 768px) {
  .event-page .event-list {
    padding: 150px 0 100px;
  }
}
.event-page .event-list__inner {
  width: clamp(0px, 91.7948717949vw, 600px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .event-page .event-list__inner {
    width: clamp(0px, 89.0625vw, 1140px);
    max-width: 1140px;
  }
}
.event-page .event-list__head {
  position: relative;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .event-page .event-list__head {
    padding-bottom: 70px;
  }
}
.event-page .event-list__title-wrap {
  position: relative;
  margin-top: 42px;
}
.event-page .event-list__title-en {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(72px, 9.375vw, 120px);
  line-height: 1;
  color: rgba(72, 72, 72, 0.06);
  pointer-events: none;
}
.event-page .event-list__page-title {
  position: relative;
  z-index: 1;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .event-page .event-list__page-title {
    font-size: 40px;
  }
}
.event-page .event-list__cards {
  display: grid;
  gap: 38px;
}
@media screen and (min-width: 768px) {
  .event-page .event-list__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(40px, 4.6875vw, 60px) clamp(20px, 2.34375vw, 30px);
  }
}
.event-page .event-list__card {
  height: 100%;
}
.event-page .event-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.event-page .event-list__image {
  position: relative;
  aspect-ratio: 358/236;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .event-page .event-list__image {
    aspect-ratio: 260/172;
  }
}
.event-page .event-list__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.event-page .event-list__closed {
  position: absolute;
  inset: 0;
  z-index: 2;
  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;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.08em;
}
.event-page .event-list__link:hover .event-list__image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.event-page .event-list__body {
  margin-top: 18px;
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .event-page .event-list__body {
    margin-top: 16px;
  }
}
.event-page .event-list__title {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 3.2em;
}
@media screen and (min-width: 768px) {
  .event-page .event-list__title {
    font-size: clamp(14px, 1.25vw, 16px);
  }
}
.event-page .event-list__info {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}
.event-page .event-list__info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .event-page .event-list__info li {
    font-size: clamp(12px, 1.015625vw, 13px);
  }
}
.event-page .event-list__info li img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.event-page .event-list__pagination {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
}
@media screen and (min-width: 768px) {
  .event-page .event-list__pagination {
    margin-top: 80px;
  }
}
.event-page .event-list__page {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111;
  font-size: 20px;
  text-decoration: none;
}
.event-page .event-list__page.is-current {
  background: #6b9f9d;
  color: #fff;
}

.request-page {
  color: #333;
}
.request-page .request {
  padding: 100px 0 70px;
  background-color: #F0F1F4;
}
@media screen and (min-width: 768px) {
  .request-page .request {
    padding: 150px 0 100px;
  }
}
.request-page .request__inner {
  margin: 0 auto;
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .request-page .request__inner {
    width: 100%;
    max-width: 1080px;
  }
}
.request-page .request__head {
  position: relative;
  padding-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .request-page .request__head {
    padding-bottom: 56px;
  }
}
.request-page .request__title-wrap {
  position: relative;
  margin-top: 42px;
}
.request-page .request__title-en {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(72px, 9.375vw, 120px);
  line-height: 1;
  color: rgba(72, 72, 72, 0.06);
  pointer-events: none;
}
.request-page .request__page-title {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .request-page .request__page-title {
    font-size: 26px;
  }
}
.request-page .request__lead {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 12px;
  line-height: 1.9;
  padding-top: 50px;
  color: #555;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .request-page .request__lead {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 28px;
    padding-top: 70px;
  }
}
.request-page .request-catalog {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 34px;
}
@media screen and (min-width: 768px) {
  .request-page .request-catalog {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
  }
}
.request-page .request-catalog__item {
  background: #fff;
  text-align: center;
  padding: 18px 16px 22px;
}
.request-page .request-catalog__item + .request-catalog__item {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .request-page .request-catalog__item {
    padding: 20px 16px 24px;
  }
  .request-page .request-catalog__item + .request-catalog__item {
    margin-top: 0;
  }
}
.request-page .request-catalog__image {
  height: auto;
  min-height: 120px;
  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;
}
.request-page .request-catalog__image img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.request-page .request-catalog__image--01 img {
  width: 150px;
}
@media screen and (min-width: 768px) {
  .request-page .request-catalog__image--01 img {
    width: 231px;
  }
}
.request-page .request-catalog__image--02 img {
  width: 190px;
}
@media screen and (min-width: 768px) {
  .request-page .request-catalog__image--02 img {
    width: 287px;
  }
}
.request-page .request-catalog__image--03 img {
  width: 150px;
}
@media screen and (min-width: 768px) {
  .request-page .request-catalog__image--03 img {
    width: 184px;
  }
}
@media screen and (min-width: 768px) {
  .request-page .request-catalog__image {
    height: 200px;
    min-height: 0;
  }
}
.request-page .request-catalog__item p {
  margin-top: 12px;
  font-size: 10px;
  line-height: 1.7;
  color: #555;
}
@media screen and (min-width: 768px) {
  .request-page .request-catalog__item p {
    margin-top: 14px;
    font-size: 11px;
  }
}
.request-page .request-catalog__item h3 {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 400;
  color: #333;
}
@media screen and (min-width: 768px) {
  .request-page .request-catalog__item h3 {
    font-size: 14px;
  }
}
.request-page .request-form {
  position: relative;
  z-index: 1;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .request-page .request-form {
    width: min(86%, 860px);
  }
}
.request-page .wpcf7 {
  position: relative;
  z-index: 1;
}
.request-page .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.request-page .request-form__row {
  display: block;
  padding: 18px 0;
  border-top: 1px dotted #d3d3d3;
}
.request-page .request-form__row:last-of-type {
  border-bottom: 1px dotted #d3d3d3;
}
@media screen and (min-width: 768px) {
  .request-page .request-form__row {
    display: grid;
    grid-template-columns: 200px 1fr;
    -webkit-column-gap: 28px;
       -moz-column-gap: 28px;
            column-gap: 28px;
    padding: 24px 0;
  }
}
.request-page .request-form__head {
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 1.7;
  color: #555;
  padding-top: 0;
}
.request-page .request-form__head span {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 5px;
  background: #6aa5a1;
  color: #fff;
  font-size: 10px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .request-page .request-form__head {
    margin-bottom: 0;
    font-size: 13px;
    padding-top: 4px;
  }
}
.request-page .request-form__body {
  width: 100%;
}
.request-page .request-form__catalog-checks .wpcf7-form-control {
  display: grid;
  gap: 12px;
}
.request-page .request-form__catalog-checks .wpcf7-list-item {
  margin: 0;
}
.request-page .request-form__catalog-checks label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 9px;
  font-size: 12px;
  color: #555;
  line-height: 1.7;
}
.request-page .request-form__catalog-checks input[type=checkbox] {
  width: 19px;
  height: 19px;
  accent-color: #cfcfcf;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .request-page .request-form__catalog-checks label {
    font-size: 13px;
  }
}
.request-page .request-form__checks {
  margin-bottom: 18px;
}
.request-page .request-form__checks .wpcf7-form-control {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.request-page .request-form__checks .wpcf7-list-item {
  margin: 0;
}
.request-page .request-form__checks label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  font-size: 11px;
  color: #555;
  line-height: 1.4;
  white-space: nowrap;
}
.request-page .request-form__checks input[type=checkbox] {
  width: 19px;
  height: 19px;
  accent-color: #cfcfcf;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .request-page .request-form__checks .wpcf7-form-control {
    grid-template-columns: repeat(3, -webkit-max-content);
    grid-template-columns: repeat(3, max-content);
    -webkit-column-gap: 42px;
       -moz-column-gap: 42px;
            column-gap: 42px;
    row-gap: 14px;
  }
  .request-page .request-form__checks label {
    font-size: 13px;
  }
}
.request-page .request-form__checks--route .wpcf7-form-control {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
}
@media screen and (min-width: 768px) {
  .request-page .request-form__checks--route .wpcf7-form-control {
    grid-template-columns: repeat(4, -webkit-max-content);
    grid-template-columns: repeat(4, max-content);
    -webkit-column-gap: 48px;
       -moz-column-gap: 48px;
            column-gap: 48px;
    row-gap: 14px;
  }
}
.request-page .request-form__input,
.request-page .request-form__textarea {
  width: 100%;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.request-page .request-form__input {
  height: 46px;
  padding: 0 12px;
}
@media screen and (min-width: 768px) {
  .request-page .request-form__input {
    height: 48px;
  }
}
.request-page .request-form__input--middle {
  max-width: none;
}
@media screen and (min-width: 768px) {
  .request-page .request-form__input--middle {
    max-width: 330px;
  }
}
.request-page .request-form__textarea {
  height: 150px;
  padding: 12px;
  resize: vertical;
}
@media screen and (min-width: 768px) {
  .request-page .request-form__textarea {
    height: 160px;
  }
}
.request-page .request-form__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  max-width: none;
}
.request-page .request-form__name > p {
  display: contents;
}
.request-page .request-form__name .wpcf7-form-control-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
}
.request-page .request-form__name .request-form__input {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .request-page .request-form__name {
    gap: 10px;
    max-width: 430px;
  }
}
.request-page .request-form__submit {
  margin-top: 34px;
  text-align: center;
}
.request-page .request-form__submit p {
  margin-bottom: 18px;
  font-size: 12px;
  line-height: 1.9;
  color: #555;
}
.request-page .request-form__submit .wpcf7-submit {
  width: 86%;
  max-width: 260px;
  height: 54px;
  border: 1px solid #333;
  border-radius: 999px;
  background: #333;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.18em;
  cursor: pointer;
  -webkit-transition: background-color 0.35s ease, color 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: background-color 0.35s ease, color 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
}
.request-page .request-form__submit .wpcf7-submit:hover {
  background: #fff;
  color: #333;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.request-page .request-form__submit .wpcf7-submit:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (min-width: 768px) {
  .request-page .request-form__submit {
    margin-top: 38px;
  }
  .request-page .request-form__submit .wpcf7-submit {
    width: 250px;
    max-width: none;
  }
}
.request-page .wpcf7-spinner {
  display: none;
}
.request-page .request-form__privacy {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.request-page .request-form__privacy:hover {
  opacity: 0.7;
}
.request-page .u-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .request-page .u-sp {
    display: none;
  }
}
.request-page .u-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .request-page .u-pc {
    display: block;
  }
}

.event-detail-page {
  color: #333;
}
.event-detail-page .event-detail-hero {
  background: #f0f1f4;
  padding-top: 100px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-detail-hero {
    padding-top: 150px;
    padding-bottom: 100px;
  }
}
.event-detail-page .event-detail__breadcrumb {
  width: clamp(0px, 91.7948717949vw, 600px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-detail__breadcrumb {
    width: clamp(0px, 89.0625vw, 1140px);
    max-width: 1140px;
  }
}
.event-detail-page .event-detail-hero__inner {
  width: clamp(0px, 91.7948717949vw, 600px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-detail-hero__inner {
    width: clamp(0px, 70.3125vw, 900px);
    max-width: 900px;
  }
}
.event-detail-page .event-detail-hero__label {
  display: inline-block;
  padding: 8px 12px;
  background: #6b9f9d;
  color: #fff;
  font-size: 14px;
  line-height: 1;
}
.event-detail-page .event-detail-hero__title {
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.65;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-detail-hero__title {
    margin-top: 24px;
    font-size: clamp(18px, 1.5625vw, 20px);
    line-height: 1.6;
  }
}
.event-detail-page .event-detail-hero__info {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-detail-hero__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 22px;
  }
}
.event-detail-page .event-detail-hero__info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #999;
  font-size: 14px;
  line-height: 1.5;
}
.event-detail-page .event-detail-hero__info img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.event-detail-page .event-detail-hero__gallery {
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-detail-hero__gallery {
    display: grid;
    grid-template-columns: clamp(0px, 46.40625vw, 594px) clamp(0px, 22.8125vw, 292px);
    gap: clamp(0px, 1.25vw, 16px);
  }
}
.event-detail-page .event-detail-hero__main {
  width: 91.7948717949vw;
  height: 68.9743589744vw;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-detail-hero__main {
    width: clamp(0px, 46.40625vw, 594px);
    height: clamp(0px, 34.765625vw, 445px);
  }
}
.event-detail-page .event-detail-hero__main img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.event-detail-page .event-detail-hero__thumb-swiper {
  margin-top: 3.0769230769vw;
  width: 91.7948717949vw;
  overflow: hidden;
}
.event-detail-page .event-detail-hero__thumb-swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.event-detail-page .event-detail-hero__thumb-swiper .swiper-slide {
  width: 25.3846153846vw !important;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-detail-hero__thumb-swiper {
    margin-top: 0;
    width: clamp(0px, 22.8125vw, 292px);
    height: clamp(0px, 34.765625vw, 445px);
  }
  .event-detail-page .event-detail-hero__thumb-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: clamp(0px, 10.78125vw, 138px) clamp(0px, 10.78125vw, 138px);
    grid-auto-rows: clamp(0px, 8.046875vw, 103px);
    gap: clamp(0px, 1.25vw, 16px);
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -ms-flex-line-pack: start;
        align-content: start;
    -webkit-transform: none !important;
            transform: none !important;
  }
  .event-detail-page .event-detail-hero__thumb-swiper .swiper-slide {
    width: auto !important;
    height: auto;
    margin: 0 !important;
  }
}
.event-detail-page .event-detail-hero__thumb {
  display: block;
  width: 25.3846153846vw;
  height: 19.2307692308vw;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-detail-hero__thumb {
    width: 100%;
    height: clamp(0px, 8.046875vw, 103px);
  }
}
.event-detail-page .event-detail-hero__thumb.is-active {
  outline: 2px solid #6b9f9d;
  outline-offset: -2px;
}
.event-detail-page .event-detail-hero__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.event-detail-page .event-detail-hero__button {
  margin-top: 32px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-detail-hero__button {
    margin-top: 28px;
  }
}
.event-detail-page .event-detail-hero__entry {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 230px;
  height: 54px;
  border-radius: 999px;
  background: #6b9f9d;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  padding: 0 46px 0 32px;
}
.event-detail-page .event-detail-hero__entry::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: translateY(-70%) rotate(45deg);
          transform: translateY(-70%) rotate(45deg);
}
.event-detail-page .event-detail-content {
  background: #fff;
  padding: 50px 0 70px;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-detail-content {
    padding: 80px 0 90px;
  }
}
.event-detail-page .event-detail-content__inner {
  width: clamp(0px, 91.7948717949vw, 600px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-detail-content__inner {
    width: clamp(0px, 70.3125vw, 900px);
    max-width: 900px;
  }
}
.event-detail-page .event-detail-sections {
  margin-top: 50px;
}
.event-detail-page .event-detail-section {
  padding: 50px 0;
}
.event-detail-page .event-detail-section:not(:first-child) {
  border-top: 1px solid #e5e5e5;
}
.event-detail-page .event-detail-section__text {
  position: relative;
  padding-left: 28px;
}
.event-detail-page .event-detail-section__text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: #6b9f9d;
}
.event-detail-page .event-detail-section__text h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 500;
}
.event-detail-page .event-detail-section__text p {
  margin-top: 18px;
  font-size: 14px;
  line-height: 2;
  font-weight: 400;
}
.event-detail-page .event-detail-section__image {
  margin-top: 28px;
}
.event-detail-page .event-detail-section__image img {
  display: block;
  width: 100%;
  height: auto;
}
.event-detail-page .event-detail-section__image--large {
  max-width: 900px;
}
.event-detail-page .event-detail-section__image--medium {
  max-width: 650px;
}
.event-detail-page .event-detail-section__image--small {
  max-width: 420px;
}
.event-detail-page .event-detail-content__image-small {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-detail-content__image-small {
    width: clamp(0px, 37.578125vw, 481px);
  }
}
.event-detail-page .event-detail-content__button {
  margin-top: 44px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-detail-content__button {
    margin-top: 50px;
  }
}
.event-detail-page .event-detail-info {
  background: #fff;
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-detail-info {
    padding: 70px 0;
  }
}
.event-detail-page .event-detail-info__inner {
  width: clamp(0px, 91.7948717949vw, 600px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-detail-info__inner {
    width: clamp(0px, 85.9375vw, 1100px);
    max-width: 1100px;
  }
}
.event-detail-page .event-detail-info__heading {
  color: #6b9f9d;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-detail-info__heading {
    font-size: clamp(24px, 2.1875vw, 28px);
  }
}
.event-detail-page .event-detail-info__list {
  margin-top: 24px;
  border: 1px solid #6b9f9d;
  padding: 28px;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-detail-info__list {
    padding: 38px 60px;
  }
}
.event-detail-page .event-detail-info__row {
  padding: 18px 0;
  border-bottom: 1px dashed #d8d8d8;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-detail-info__row {
    display: grid;
    grid-template-columns: 150px 1fr;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 22px 0;
  }
}
.event-detail-page .event-detail-info__row:first-child {
  padding-top: 0;
}
.event-detail-page .event-detail-info__row dt {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-detail-info__row dt {
    font-size: clamp(16px, 1.40625vw, 18px);
  }
}
.event-detail-page .event-detail-info__row dd {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-detail-info__row dd {
    margin-top: 0;
    font-size: clamp(15px, 1.25vw, 16px);
  }
}
.event-detail-page .event-detail-info__row dd span {
  display: inline-block;
  margin-right: 12px;
}
.event-detail-page .event-detail-map {
  background: #fff;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-detail-map {
    padding-bottom: 80px;
  }
}
.event-detail-page .event-detail-map__inner {
  width: clamp(0px, 91.7948717949vw, 600px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-detail-map__inner {
    width: clamp(0px, 85.9375vw, 1100px);
    max-width: 1100px;
  }
}
.event-detail-page .event-detail-map__frame {
  aspect-ratio: 1100/500;
  overflow: hidden;
}
.event-detail-page .event-detail-map__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.event-detail-page .event-reservation {
  background: #f0f1f4;
  padding: 56px 0 70px;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-reservation {
    padding: 90px 0 110px;
  }
}
.event-detail-page .event-reservation__inner {
  width: 91.7948717949vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-reservation__inner {
    width: clamp(0px, 70.3125vw, 900px);
  }
}
.event-detail-page .event-reservation__heading {
  text-align: center;
}
.event-detail-page .event-reservation__heading h2 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-reservation__heading h2 {
    font-size: clamp(38px, 3.4375vw, 44px);
  }
}
.event-detail-page .event-reservation__heading p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
}
.event-detail-page .event-reservation__form {
  margin-top: 54px;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-reservation__form {
    margin-top: 78px;
  }
}
.event-detail-page .event-reservation__row {
  padding: 18px 0;
  border-top: 1px dashed #d6d6d6;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-reservation__row {
    display: grid;
    grid-template-columns: 170px 1fr;
    -webkit-column-gap: clamp(0px, 3.515625vw, 45px);
       -moz-column-gap: clamp(0px, 3.515625vw, 45px);
            column-gap: clamp(0px, 3.515625vw, 45px);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 24px 0;
  }
}
.event-detail-page .event-reservation__row:last-of-type {
  border-bottom: 1px dashed #d6d6d6;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.event-detail-page .event-reservation__label {
  font-size: 14px;
  line-height: 1.6;
  white-space: nowrap;
}
.event-detail-page .event-reservation__label p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin: 0;
}
.event-detail-page .event-reservation__label em {
  display: inline-block;
  padding: 2px 5px;
  background: #6b9f9d;
  color: #fff;
  font-size: 11px;
  font-style: normal;
  line-height: 1.2;
}
.event-detail-page .event-reservation__field {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-reservation__field {
    margin-top: 0;
  }
}
.event-detail-page .event-reservation__field input,
.event-detail-page .event-reservation__field select,
.event-detail-page .event-reservation__field textarea {
  width: 100%;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  font-family: inherit;
}
.event-detail-page .event-reservation__field input,
.event-detail-page .event-reservation__field select {
  height: 56px;
  padding: 0 18px;
}
.event-detail-page .event-reservation__field textarea {
  height: 180px;
  padding: 16px 18px;
  resize: vertical;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-reservation__field textarea {
    height: 190px;
  }
}
.event-detail-page .event-reservation__field select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #333 50%), linear-gradient(135deg, #333 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.event-detail-page .event-reservation__field > p {
  margin: 0;
}
.event-detail-page .event-reservation__name > p {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-reservation__name > p {
    gap: 12px;
    max-width: clamp(0px, 34.375vw, 440px);
  }
}
.event-detail-page .event-reservation__name br {
  display: none;
}
.event-detail-page .event-reservation__name .wpcf7-form-control-wrap {
  display: block;
  min-width: 0;
}
.event-detail-page .event-reservation__name input,
.event-detail-page .event-reservation__name select {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-reservation__field--short {
    max-width: clamp(0px, 25.78125vw, 330px);
  }
}
.event-detail-page .event-reservation__field .wpcf7-list-item {
  margin: 0;
}
.event-detail-page .event-reservation__field .wpcf7-list-item label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: 14px;
}
.event-detail-page .event-reservation__field input[type=checkbox] {
  width: 20px;
  height: 20px;
  padding: 0;
}
.event-detail-page .event-reservation__privacy {
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  line-height: 2;
}
.event-detail-page .event-reservation__privacy a {
  color: inherit;
  text-decoration: underline;
}
.event-detail-page .event-reservation__submit {
  margin-top: 22px;
  text-align: center;
}
.event-detail-page .event-reservation__submit input[type=submit],
.event-detail-page .event-reservation__submit button {
  width: 78.4615384615vw;
  height: 58px;
  border: 1px solid #333;
  border-radius: 999px;
  background: #333;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.08em;
  cursor: pointer;
  -webkit-transition: background-color 0.35s ease, color 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: background-color 0.35s ease, color 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
}
.event-detail-page .event-reservation__submit input[type=submit]:hover,
.event-detail-page .event-reservation__submit button:hover {
  background: #fff;
  color: #333;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.event-detail-page .event-reservation__submit input[type=submit]:active,
.event-detail-page .event-reservation__submit button:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-reservation__submit input[type=submit],
  .event-detail-page .event-reservation__submit button {
    width: clamp(0px, 25vw, 320px);
    height: 64px;
    font-size: 18px;
  }
}
.event-detail-page .event-reservation__field--hope {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.event-detail-page .event-reservation__field--hope > p {
  margin: 0;
  min-width: 0;
}
.event-detail-page .event-reservation__field--hope br {
  display: none;
}
.event-detail-page .event-reservation__field--hope .wpcf7-form-control-wrap {
  display: block;
  min-width: 0;
}
.event-detail-page .event-reservation__field--hope select {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .event-detail-page .event-reservation__field--hope {
    gap: 12px;
  }
}

.lineup-page {
  background: #f1f2f4;
  color: #333;
}
.lineup-page .lineup {
  padding-top: 100px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .lineup-page .lineup {
    padding-top: 150px;
    padding-bottom: 100px;
  }
}
.lineup-page .lineup__inner {
  width: clamp(0px, 91.7948717949vw, 600px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .lineup-page .lineup__inner {
    width: clamp(0px, 84.375vw, 1080px);
    max-width: 1080px;
  }
}
.lineup-page .lineup__head {
  position: relative;
  margin-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .lineup-page .lineup__head {
    margin-bottom: 70px;
  }
}
.lineup-page .lineup__title-wrap {
  position: relative;
  margin-top: 30px;
}
.lineup-page .lineup__title-en {
  position: absolute;
  top: -34px;
  left: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(72px, 9.375vw, 120px);
  line-height: 1;
  color: rgba(72, 72, 72, 0.06);
  pointer-events: none;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .lineup-page .lineup__title-en {
    top: -52px;
    font-size: 110px;
  }
}
.lineup-page .lineup__page-title {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .lineup-page .lineup__page-title {
    font-size: 28px;
  }
}
.lineup-page .lineup__lead {
  font-size: 12px;
  line-height: 2.15;
  margin-bottom: 34px;
}
.lineup-page .lineup__lead p + p {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .lineup-page .lineup__lead {
    font-size: 13px;
    line-height: 2;
    margin-bottom: 78px;
  }
}
.lineup-page .lineup__cards {
  display: grid;
  gap: 34px;
}
@media screen and (min-width: 768px) {
  .lineup-page .lineup__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
.lineup-page .lineup-card__image {
  position: relative;
  aspect-ratio: 358/269;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .lineup-page .lineup-card__image {
    aspect-ratio: 500/560;
  }
}
.lineup-page .lineup-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(45%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.48)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.48) 100%);
}
.lineup-page .lineup-card__image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lineup-page .lineup-card__text {
  position: absolute;
  left: 18px;
  bottom: 24px;
  z-index: 1;
  color: #fff;
}
.lineup-page .lineup-card__text span {
  display: block;
  font-size: 10px;
  margin-bottom: 4px;
}
.lineup-page .lineup-card__text strong {
  display: block;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 768px) {
  .lineup-page .lineup-card__text {
    left: 38px;
    bottom: 44px;
  }
  .lineup-page .lineup-card__text strong {
    font-size: 56px;
  }
}
.lineup-page .lineup-card__desc {
  text-align: center;
  font-size: 13px;
  line-height: 2;
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .lineup-page .lineup-card__desc {
    font-size: 15px;
    margin-top: 24px;
  }
}
.lineup-page .lineup-works {
  position: relative;
  display: block;
  width: min(100%, 400px);
  aspect-ratio: 358/210;
  margin: 70px auto 0;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .lineup-page .lineup-works {
    width: 500px;
    aspect-ratio: 500/210;
    margin-top: 92px;
  }
}
.lineup-page .lineup-works::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.lineup-page .lineup-works img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.lineup-page .lineup-works__text {
  position: absolute;
  left: 38px;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
}
.lineup-page .lineup-works__text strong {
  display: block;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}
.lineup-page .lineup-works__text span {
  display: block;
  font-size: 12px;
}
.lineup-page .lineup-works__arrow {
  position: absolute;
  right: 30px;
  top: 50%;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
}
.lineup-page .lineup-works__arrow img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.lineup-page .lineup-works > img {
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.lineup-page .lineup-works .lineup-works__arrow {
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
@media (hover: hover) {
  .lineup-page .lineup-works:hover > img {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
  .lineup-page .lineup-works:hover .lineup-works__arrow {
    -webkit-transform: translate(10px, calc(-50% - 10px));
            transform: translate(10px, calc(-50% - 10px));
  }
}

.news-detail-page {
  background: #f0f1f4;
  color: #333;
}
.news-detail-page .news-detail {
  padding: 90px 0 100px;
}
@media screen and (min-width: 768px) {
  .news-detail-page .news-detail {
    padding: 100px 0;
  }
}
.news-detail-page .news-detail__breadcrumb {
  display: none;
}
@media screen and (min-width: 768px) {
  .news-detail-page .news-detail__breadcrumb {
    display: block;
    width: min(89%, 1140px);
    margin: 0 auto 70px;
  }
}
.news-detail-page .news-detail__inner {
  width: min(89%, 786px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .news-detail-page .news-detail__inner {
    width: calc(100% - 58px);
  }
}
.news-detail-page .news-detail__date {
  display: block;
  margin-bottom: 18px;
  color: #888;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.news-detail-page .news-detail__title {
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .news-detail-page .news-detail__title {
    margin-bottom: 32px;
    font-size: 17px;
  }
}
.news-detail-page .news-detail__image {
  margin-bottom: 50px;
}
.news-detail-page .news-detail__image img {
  display: block;
  width: 100%;
  height: auto;
}
.news-detail-page .news-detail__content {
  font-size: 15px;
  line-height: 2.6;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .news-detail-page .news-detail__content {
    font-size: 13px;
    line-height: 2.3;
  }
}
.news-detail-page .news-detail__content p {
  margin: 0 0 2em;
}
.news-detail-page .news-detail__content p:last-child {
  margin-bottom: 0;
}
.news-detail-page .news-detail__content h2 {
  margin: 70px 0 30px;
  font-size: 24px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .news-detail-page .news-detail__content h2 {
    font-size: 18px;
  }
}
.news-detail-page .news-detail__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
}
.news-detail-page .news-detail__back {
  margin-top: 80px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news-detail-page .news-detail__back {
    margin-top: 90px;
  }
}
.news-detail-page .news-detail__back .view-more {
  color: #222;
  text-align: left;
}

.news-page {
  background: #f0f1f4;
  color: #333;
}
.news-page .news-list {
  padding: 86px 0 94px;
}
@media screen and (min-width: 768px) {
  .news-page .news-list {
    padding: 120px 0 120px;
  }
}
.news-page .news-list__inner {
  width: clamp(0px, 91.7948717949vw, 600px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .news-page .news-list__inner {
    width: clamp(0px, 89.0625vw, 1140px);
    max-width: 1140px;
  }
}
.news-page .news-list__head {
  position: relative;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .news-page .news-list__head {
    padding-bottom: 70px;
  }
}
.news-page .news-list__title-wrap {
  position: relative;
  margin-top: 42px;
}
.news-page .news-list__title-en {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(72px, 9.375vw, 120px);
  line-height: 1;
  color: rgba(72, 72, 72, 0.06);
  pointer-events: none;
}
.news-page .news-list__page-title {
  position: relative;
  z-index: 1;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .news-page .news-list__page-title {
    font-size: 40px;
  }
}
.news-page .news-list__items {
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}
.news-page .news-list__item {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}
.news-page .news-list__link {
  position: relative;
  display: block;
  padding: 22px 16px 24px;
  color: #222;
  text-decoration: none;
  -webkit-transition: background-color 0.35s ease;
  transition: background-color 0.35s ease;
}
@media screen and (min-width: 768px) {
  .news-page .news-list__link {
    display: grid;
    grid-template-columns: 120px 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
    padding: 22px 16px;
  }
}
.news-page .news-list__link::after {
  content: "↗";
  position: absolute;
  top: 50%;
  right: 16px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
@media (hover: hover) {
  .news-page .news-list__link:hover {
    background: rgba(255, 255, 255, 0.65);
  }
  .news-page .news-list__link:hover::after {
    -webkit-transform: translate(10px, calc(-50% - 10px));
            transform: translate(10px, calc(-50% - 10px));
  }
}
.news-page .news-list__date {
  display: block;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .news-page .news-list__date {
    margin-bottom: 0;
    font-size: 13px;
  }
}
.news-page .news-list__post-title {
  padding-right: 24px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .news-page .news-list__post-title {
    font-size: 15px;
    line-height: 1.6;
  }
}
.news-page .news-list__pagination {
  margin-top: 70px;
}
@media screen and (min-width: 768px) {
  .news-page .news-list__pagination {
    margin-top: 64px;
  }
}
.news-page .news-list__pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.news-page .news-list__pagination .page-numbers li {
  list-style: none;
}
.news-page .news-list__pagination .page-numbers a,
.news-page .news-list__pagination .page-numbers span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #222;
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .news-page .news-list__pagination .page-numbers a,
  .news-page .news-list__pagination .page-numbers span {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
}
.news-page .news-list__pagination .page-numbers .current {
  border-radius: 50%;
  background: #6ba8a5;
  color: #fff;
}

.works-detail-page {
  color: #333;
}
.works-detail-page .works-detail {
  background: #f0f1f4;
  padding: 100px 0 70px;
}
@media screen and (min-width: 768px) {
  .works-detail-page .works-detail {
    padding: 150px 0 100px;
  }
}
.works-detail-page .works-detail__inner {
  width: clamp(0px, 91.7948717949vw, 600px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .works-detail-page .works-detail__inner {
    width: clamp(0px, 70.3125vw, 900px);
    max-width: 900px;
  }
}
.works-detail-page .works-detail__label {
  display: inline-block;
  margin-top: 34px;
  padding: 6px 10px;
  background: #E8E8E8;
  font-size: 11px;
  line-height: 1;
}
.works-detail-page .works-detail__title {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .works-detail-page .works-detail__title {
    font-size: 20px;
  }
}
.works-detail-page .works-detail__main-image {
  margin-top: 26px;
  width: 100%;
  aspect-ratio: 358/269;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .works-detail-page .works-detail__main-image {
    margin-top: 30px;
    aspect-ratio: 900/520;
  }
}
.works-detail-page .works-detail__main-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-detail-page .works-detail__content {
  margin-top: 28px;
  font-size: 13px;
  line-height: 2.2;
}
@media screen and (min-width: 768px) {
  .works-detail-page .works-detail__content {
    margin-top: 34px;
    font-size: 13px;
    line-height: 2.4;
  }
}
.works-detail-page .works-detail__content p + p {
  margin-top: 1.8em;
}
.works-detail-page .works-photo-gallery {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .works-detail-page .works-photo-gallery {
    margin-top: 70px;
  }
}
.works-detail-page .works-photo-gallery__title,
.works-detail-page .works-spec__title {
  color: #549896;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .works-detail-page .works-photo-gallery__title,
  .works-detail-page .works-spec__title {
    font-size: 20px;
  }
}
.works-detail-page .works-photo-gallery__main {
  margin-top: 18px;
  width: 100%;
  aspect-ratio: 358/269;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .works-detail-page .works-photo-gallery__main {
    aspect-ratio: 900/520;
  }
}
.works-detail-page .works-photo-gallery__main img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-detail-page .works-photo-gallery__caption {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
}
.works-detail-page .works-photo-gallery__thumb-swiper {
  margin-top: 26px;
  width: 100%;
  overflow: hidden;
}
.works-detail-page .works-photo-gallery__thumb-swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.works-detail-page .works-photo-gallery__thumb-swiper .swiper-slide {
  width: 22.0512820513vw !important;
  height: 22.0512820513vw !important;
  max-width: 105px;
  max-height: 105px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .works-detail-page .works-photo-gallery__thumb-swiper {
    margin-top: 28px;
  }
  .works-detail-page .works-photo-gallery__thumb-swiper .swiper-slide {
    width: 180px !important;
    height: 180px !important;
    max-width: none;
    max-height: none;
  }
}
.works-detail-page .works-photo-gallery__thumb {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
}
.works-detail-page .works-photo-gallery__thumb.is-active {
  outline: 2px solid #549896;
  outline-offset: -2px;
}
.works-detail-page .works-photo-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-detail-page .works-spec {
  margin-top: 70px;
}
@media screen and (min-width: 768px) {
  .works-detail-page .works-spec {
    margin-top: 86px;
  }
}
.works-detail-page .works-spec__list {
  margin-top: 18px;
}
.works-detail-page .works-spec__row {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .works-detail-page .works-spec__row {
    grid-template-columns: 160px 1fr;
  }
}
.works-detail-page .works-spec__row dt,
.works-detail-page .works-spec__row dd {
  min-height: 56px;
  padding: 18px 20px;
  font-size: 13px;
  line-height: 1.8;
  border-bottom: 1px solid #eef0f3;
}
.works-detail-page .works-spec__row dt {
  background: #d9dbe0;
  font-weight: 400;
  border-bottom-color: #fff;
}
.works-detail-page .works-spec__row dd {
  background: #fff;
}
.works-detail-page .works-spec__row:last-child dt,
.works-detail-page .works-spec__row:last-child dd {
  border-bottom: 0;
}
.works-detail-page .works-detail__back {
  margin-top: 70px;
  text-align: center;
}
.works-detail-page .works-detail__back .view-more {
  color: #000;
  text-align: left;
}

.works-page {
  color: #333;
}
.works-page .works-list {
  background: #f0f1f4;
  padding: 100px 0 70px;
}
@media screen and (min-width: 768px) {
  .works-page .works-list {
    padding: 150px 0 100px;
  }
}
.works-page .works-list__inner {
  width: clamp(0px, 91.7948717949vw, 600px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .works-page .works-list__inner {
    width: clamp(0px, 89.0625vw, 1140px);
    max-width: 1140px;
  }
}
.works-page .works-list__title-wrap {
  position: relative;
  margin-top: 58px;
}
@media screen and (min-width: 768px) {
  .works-page .works-list__title-wrap {
    margin-top: 70px;
  }
}
.works-page .works-list__title-en {
  position: absolute;
  top: -42px;
  left: 0;
  color: rgba(72, 72, 72, 0.06);
  font-size: clamp(72px, 9.375vw, 120px);
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .works-page .works-list__title-en {
    top: -54px;
    font-size: 110px;
  }
}
.works-page .works-list__page-title {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .works-page .works-list__page-title {
    font-size: 28px;
  }
}
.works-page .works-list__cards {
  margin-top: 60px;
  display: grid;
  gap: 34px;
}
@media screen and (min-width: 768px) {
  .works-page .works-list__cards {
    margin-top: 78px;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 64px;
  }
}
.works-page .works-list__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.works-page .works-list__image {
  width: 100%;
  aspect-ratio: 358/238;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .works-page .works-list__image {
    aspect-ratio: 360/240;
  }
}
.works-page .works-list__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
@media (hover: hover) {
  .works-page .works-list__link:hover .works-list__image img {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
}
.works-page .works-list__body {
  margin-top: 12px;
}
.works-page .works-list__label {
  display: inline-block;
  padding: 6px 10px;
  background: #E8E8E8;
  font-size: 11px;
  line-height: 1;
}
.works-page .works-list__title {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}
.works-page .works-list__pagination {
  margin-top: 64px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .works-page .works-list__pagination {
    margin-top: 90px;
  }
}
.works-page .works-list__pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
}
.works-page .works-list__pagination .page-numbers {
  display: grid;
  place-items: center;
  min-width: 32px;
  height: 32px;
  color: #333;
  font-size: 14px;
  text-decoration: none;
}
.works-page .works-list__pagination .page-numbers.current {
  border-radius: 50%;
  background: #6b9f9d;
  color: #fff;
}

.company-page {
  color: #333;
  background: #f0f1f4;
}
.company-page .company-hero {
  padding-top: 100px;
}
@media screen and (min-width: 768px) {
  .company-page .company-hero {
    padding-top: 150px;
  }
}
.company-page .company-hero__inner {
  width: clamp(0px, 91.7948717949vw, 600px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .company-page .company-hero__inner {
    width: clamp(0px, 89.0625vw, 1140px);
    max-width: 1140px;
  }
}
.company-page .company-hero__title-wrap {
  position: relative;
  margin-top: 52px;
}
.company-page .company-hero__title-en {
  position: absolute;
  top: -38px;
  left: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(72px, 9.375vw, 120px);
  line-height: 1;
  color: rgba(72, 72, 72, 0.06);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .company-page .company-hero__title-en {
    top: -58px;
    font-size: 120px;
  }
}
.company-page .company-hero__title {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .company-page .company-hero__title {
    font-size: 28px;
  }
}
.company-page .company-hero__image {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .company-page .company-hero__image {
    margin-top: 60px;
  }
}
.company-page .company-hero__image img {
  display: block;
  width: 100%;
  height: auto;
}
.company-page {
  /* ===================================== */
}
.company-page .company-outline {
  padding: 60px 0 80px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .company-page .company-outline {
    padding: 90px 0 120px;
  }
}
.company-page .company-outline__inner {
  width: clamp(0px, 91.7948717949vw, 600px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .company-page .company-outline__inner {
    width: clamp(0px, 70.3125vw, 900px);
    max-width: 900px;
  }
}
.company-page .company-outline__title {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .company-page .company-outline__title {
    font-size: 50px;
  }
}
.company-page .company-outline__sub {
  margin-top: 16px;
  font-size: 13px;
}
.company-page .company-outline__table {
  margin-top: 50px;
}
.company-page .company-outline__row {
  padding: 22px 0;
  border-bottom: 1px dashed #ddd;
}
@media screen and (min-width: 768px) {
  .company-page .company-outline__row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 40px;
  }
}
.company-page .company-outline__row dt {
  font-weight: 700;
  font-size: 16px;
}
.company-page .company-outline__row dd {
  margin-top: 12px;
  line-height: 1.8;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .company-page .company-outline__row dd {
    margin-top: 0;
    font-size: 15px;
  }
}
.company-page .company-outline__map {
  margin-top: 60px;
  aspect-ratio: 700/370;
  overflow: hidden;
}
.company-page .company-outline__map iframe {
  width: 100%;
  height: 100%;
}
.company-page {
  /* ===================================== */
}
.company-page .company-message {
  background: #f0f1f4;
  padding: 70px 0 90px;
}
@media screen and (min-width: 768px) {
  .company-page .company-message {
    padding: 100px 0 130px;
  }
}
.company-page .company-message__inner {
  width: clamp(0px, 91.7948717949vw, 600px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .company-page .company-message__inner {
    width: clamp(0px, 70.3125vw, 900px);
    max-width: 900px;
  }
}
.company-page .company-message__title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .company-page .company-message__title {
    font-size: 50px;
  }
}
.company-page .company-message__sub {
  margin-top: 16px;
  font-size: 13px;
}
.company-page .company-message__content {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .company-page .company-message__content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 70px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.company-page .company-message__image img {
  display: block;
  width: 100%;
}
.company-page .company-message__name {
  margin-top: 14px;
  text-align: right;
  font-size: 13px;
}
.company-page .company-message__name span {
  margin-left: 8px;
  font-size: 24px;
}
.company-page .company-message__text {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .company-page .company-message__text {
    margin-top: 0;
  }
}
.company-page .company-message__text h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}
.company-page .company-message__text p {
  margin-top: 34px;
  line-height: 2.4;
  font-size: 14px;
}

.page-policy {
  color: #333;
  background: #f0f1f4;
}
.page-policy .policy {
  padding: 100px 0 80px;
}
@media screen and (min-width: 768px) {
  .page-policy .policy {
    padding: 150px 0 120px;
  }
}
.page-policy .policy__inner {
  width: clamp(0px, 91.7948717949vw, 600px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-policy .policy__inner {
    width: clamp(0px, 84.375vw, 1080px);
    max-width: 1080px;
  }
}
.page-policy .policy__title-wrap {
  position: relative;
  margin-top: 58px;
}
.page-policy .policy__title-en {
  position: absolute;
  top: -42px;
  left: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(72px, 9.375vw, 120px);
  line-height: 1;
  color: rgba(72, 72, 72, 0.06);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .page-policy .policy__title-en {
    top: -56px;
    font-size: 120px;
  }
}
.page-policy .policy__page-title {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .page-policy .policy__page-title {
    font-size: 28px;
  }
}
.page-policy .policy__content {
  margin-top: 70px;
}
@media screen and (min-width: 768px) {
  .page-policy .policy__content {
    margin-top: 90px;
  }
}
.page-policy .policy__block + .policy__block {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .page-policy .policy__block + .policy__block {
    margin-top: 80px;
  }
}
.page-policy .policy__heading {
  padding-bottom: 16px;
  border-bottom: 1px solid #ddd;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .page-policy .policy__heading {
    font-size: 20px;
  }
}
.page-policy .policy__block p {
  margin-top: 24px;
  font-size: 13px;
  line-height: 2.2;
}
@media screen and (min-width: 768px) {
  .page-policy .policy__block p {
    font-size: 14px;
  }
}
.page-policy .policy__block p .policy__section ul {
  margin-top: 24px;
  padding-left: 1.5em;
}
.page-policy .policy__block p .policy__section li {
  line-height: 2;
  list-style: disc;
}
.page-policy .policy__company {
  margin-top: 80px;
  text-align: right;
}

.friend-page {
  color: #333;
}
.friend-page .friend {
  padding: 100px 0 70px;
  background-color: #f0f1f4;
}
@media screen and (min-width: 768px) {
  .friend-page .friend {
    padding: 150px 0 100px;
  }
}
.friend-page .friend__inner {
  position: relative;
  width: clamp(0px, 91.7948717949vw, 600px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .friend-page .friend__inner {
    width: clamp(0px, 70.3125vw, 900px);
    max-width: 900px;
  }
}
.friend-page .friend__head {
  position: relative;
  padding-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .friend-page .friend__head {
    padding-bottom: 56px;
  }
}
.friend-page .friend__title-wrap {
  position: relative;
  margin-top: 42px;
}
.friend-page .friend__title-en {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(72px, 9.375vw, 120px);
  line-height: 1;
  color: rgba(72, 72, 72, 0.06);
  pointer-events: none;
}
.friend-page .friend__page-title {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .friend-page .friend__page-title {
    font-size: 26px;
  }
}
.friend-page .friend__lead {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 12px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 40px;
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .friend-page .friend__lead {
    font-size: 13px;
    line-height: 1.9;
    margin-bottom: 58px;
    padding-top: 80px;
  }
}
.friend-page .friend__lead p + p {
  margin-top: 10px;
}
.friend-page .friend__lead p {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .friend-page .friend__lead p {
    text-align: center;
  }
}
.friend-page .friend__logo {
  width: 220px;
  margin: 0 auto 28px;
}
@media screen and (min-width: 768px) {
  .friend-page .friend__logo {
    width: 280px;
    margin-bottom: 34px;
  }
}
.friend-page .friend__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.friend-page .wpcf7 {
  position: relative;
  z-index: 1;
}
.friend-page .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.friend-page .friend-form {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .friend-page .friend-form {
    width: min(86%, 860px);
  }
}
.friend-page .friend-form__row {
  display: block;
  padding: 18px 0;
  border-top: 1px dotted #d3d3d3;
}
.friend-page .friend-form__row:last-of-type {
  border-bottom: 1px dotted #d3d3d3;
}
@media screen and (min-width: 768px) {
  .friend-page .friend-form__row {
    display: grid;
    grid-template-columns: 200px 1fr;
    -webkit-column-gap: 28px;
       -moz-column-gap: 28px;
            column-gap: 28px;
    padding: 24px 0;
  }
}
.friend-page .friend-form__head {
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 1.7;
  color: #555;
}
.friend-page .friend-form__head span {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 5px;
  background: #6aa5a1;
  color: #fff;
  font-size: 10px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .friend-page .friend-form__head {
    margin-bottom: 0;
    font-size: 13px;
    padding-top: 4px;
  }
}
.friend-page .friend-form__body {
  width: 100%;
}
.friend-page .friend-form__checks .wpcf7-form-control {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.friend-page .friend-form__checks .wpcf7-list-item {
  margin: 0;
}
.friend-page .friend-form__checks label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  font-size: 12px;
  color: #555;
  line-height: 1.5;
}
.friend-page .friend-form__checks input[type=radio] {
  width: 18px;
  height: 18px;
  accent-color: #cfcfcf;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .friend-page .friend-form__checks .wpcf7-form-control {
    grid-template-columns: repeat(2, -webkit-max-content);
    grid-template-columns: repeat(2, max-content);
    -webkit-column-gap: 42px;
       -moz-column-gap: 42px;
            column-gap: 42px;
  }
  .friend-page .friend-form__checks label {
    font-size: 13px;
  }
}
.friend-page .friend-form__input,
.friend-page .friend-form__textarea {
  width: 100%;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.friend-page .friend-form__input {
  height: 46px;
  padding: 0 12px;
}
@media screen and (min-width: 768px) {
  .friend-page .friend-form__input {
    height: 48px;
  }
}
.friend-page .friend-form__input--middle {
  max-width: none;
}
@media screen and (min-width: 768px) {
  .friend-page .friend-form__input--middle {
    max-width: 330px;
  }
}
.friend-page .friend-form__textarea {
  height: 150px;
  padding: 12px;
  resize: vertical;
}
@media screen and (min-width: 768px) {
  .friend-page .friend-form__textarea {
    height: 160px;
  }
}
.friend-page .friend-form__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  max-width: none;
}
.friend-page .friend-form__name > p {
  display: contents;
}
.friend-page .friend-form__name .wpcf7-form-control-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
}
.friend-page .friend-form__name .friend-form__input {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .friend-page .friend-form__name {
    gap: 10px;
    max-width: 430px;
  }
}
.friend-page .friend-form__note {
  margin: 0 0 14px;
  padding: 0;
  font-size: 12px;
  line-height: 1.8;
  color: #555;
  text-align: left;
}
.friend-page .friend-form__submit {
  margin-top: 34px;
  text-align: center;
}
.friend-page .friend-form__submit p {
  margin-bottom: 18px;
  font-size: 12px;
  line-height: 1.9;
  color: #555;
}
.friend-page .friend-form__submit .wpcf7-submit {
  width: 86%;
  max-width: 260px;
  height: 54px;
  border: 1px solid #333;
  border-radius: 999px;
  background: #333;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.18em;
  cursor: pointer;
  -webkit-transition: background-color 0.35s ease, color 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: background-color 0.35s ease, color 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
}
.friend-page .friend-form__submit .wpcf7-submit:hover {
  background: #fff;
  color: #333;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.friend-page .friend-form__submit .wpcf7-submit:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (min-width: 768px) {
  .friend-page .friend-form__submit {
    margin-top: 38px;
  }
  .friend-page .friend-form__submit .wpcf7-submit {
    width: 250px;
    max-width: none;
  }
}
.friend-page .wpcf7-spinner {
  display: none;
}
.friend-page .friend-form__privacy {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.friend-page .friend-form__privacy:hover {
  opacity: 0.7;
}

.performance-page {
  color: #333;
  background: #F0F1F4;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .performance-page {
    padding-bottom: 100px;
  }
}
.performance-page .performance-hero {
  padding: 80px 0 70px;
}
@media screen and (max-width: 767px) {
  .performance-page .performance-hero {
    padding: 48px 0 52px;
  }
}
.performance-page .performance-hero__inner {
  width: clamp(0px, 91.7948717949vw, 600px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .performance-page .performance-hero__inner {
    width: clamp(0px, 84.375vw, 1080px);
    max-width: 1080px;
  }
}
.performance-page .performance-hero__title-wrap {
  position: relative;
  margin-top: 64px;
}
.performance-page .performance-hero__title-en {
  display: block;
  color: rgba(72, 72, 72, 0.06);
  font-family: "Montserrat", sans-serif;
  font-size: 96px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .performance-page .performance-hero__title-en {
    font-size: 56px;
  }
}
.performance-page .performance-hero__title {
  margin-top: -34px;
  font-size: 28px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .performance-page .performance-hero__title {
    margin-top: -20px;
    font-size: 22px;
  }
}
.performance-page .performance-hero__lead {
  margin-top: 44px;
  font-size: 14px;
  line-height: 2;
}
.performance-page .performance-hero__link {
  margin-top: 32px;
}
.performance-page .performance-list {
  background-color: #fff;
  padding: 48px 0 96px;
}
@media screen and (max-width: 767px) {
  .performance-page .performance-list {
    padding: 28px 0 72px;
  }
}
.performance-page .performance-list__inner {
  width: min(100%, 1040px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .performance-page .performance-list__inner {
    width: min(100%, 358px);
  }
}
.performance-page .performance-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  padding: 0;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .performance-page .performance-item {
    display: block;
  }
}
.performance-page .performance-item:first-child {
  border-top: none;
}
.performance-page .performance-item + .performance-item {
  margin-top: 72px;
}
@media screen and (max-width: 767px) {
  .performance-page .performance-item + .performance-item {
    margin-top: 40px;
  }
}
.performance-page .performance-item--reverse {
  direction: rtl;
}
.performance-page .performance-item--reverse .performance-item__image,
.performance-page .performance-item--reverse .performance-item__content {
  direction: ltr;
}
.performance-page .performance-item__image {
  width: 100%;
}
.performance-page .performance-item__image img {
  display: block;
  width: 100%;
  aspect-ratio: 520/340;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .performance-page .performance-item__image {
    width: 100%;
  }
}
.performance-page .performance-item__content {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .performance-page .performance-item__content {
    max-width: none;
    margin-top: 20px;
    padding: 0;
  }
}
.performance-page .performance-item__number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #6ca7a7;
  border-radius: 50%;
  color: #6ca7a7;
  font-size: 14px;
  line-height: 1;
}
.performance-page .performance-item__title {
  margin-top: 28px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .performance-page .performance-item__title {
    display: inline-block;
    margin-top: 0;
    margin-left: 14px;
    vertical-align: middle;
    font-size: 15px;
  }
}
.performance-page .performance-item__text {
  margin-top: 24px;
  font-size: 13px;
  line-height: 2.2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .performance-page .performance-item__text {
    margin-top: 22px;
    font-size: 13px;
    line-height: 2.15;
  }
}
.performance-page .performance-faq {
  padding: 80px 0 100px;
  background: #f0f1f4;
}
@media screen and (max-width: 767px) {
  .performance-page .performance-faq {
    padding: 60px 0 70px;
  }
}
.performance-page .performance-faq__inner {
  width: min(100%, 900px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .performance-page .performance-faq__inner {
    width: min(100%, 358px);
  }
}
.performance-page .performance-faq__heading {
  text-align: center;
  margin-bottom: 56px;
}
.performance-page .performance-faq__heading h2 {
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}
.performance-page .performance-faq__heading p {
  margin-top: 18px;
  font-size: 13px;
}
.performance-page .performance-faq {
  background: #f0f1f4;
  padding: 80px 0 90px;
}
.performance-page .performance-faq__inner {
  width: min(100%, 900px);
  margin: 0 auto;
}
.performance-page .performance-faq__heading {
  margin-bottom: 56px;
  text-align: center;
}
.performance-page .performance-faq__heading h2 {
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}
.performance-page .performance-faq__heading p {
  margin-top: 16px;
  font-size: 13px;
}
.performance-page .faq-list {
  width: 100%;
}
.performance-page .faq-item {
  background: #fff;
  border-bottom: 8px solid #f0f1f4;
}
.performance-page .faq-question {
  display: grid;
  grid-template-columns: 54px 1fr 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: 86px;
  padding: 0 32px;
  border: 0;
  background: #fff;
  color: #222;
  text-align: left;
  cursor: pointer;
}
.performance-page .faq-question__mark {
  color: #5e9c9c;
  font-size: 32px;
  line-height: 1;
}
.performance-page .faq-question__text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}
.performance-page .faq-question__icon {
  position: relative;
  width: 24px;
  height: 24px;
  justify-self: end;
}
.performance-page .faq-question__icon::before,
.performance-page .faq-question__icon::after {
  content: "";
  position: absolute;
  background: #5e9c9c;
}
.performance-page .faq-question__icon::before {
  top: 50%;
  left: 0;
  width: 24px;
  height: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.performance-page .faq-question__icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 24px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.performance-page .faq-answer {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.35s ease;
  transition: max-height 0.35s ease;
  background: #fff;
}
.performance-page .faq-answer__inner {
  display: grid;
  grid-template-columns: 54px 1fr;
  padding: 28px 32px 38px;
}
.performance-page .faq-answer__inner p {
  font-size: 14px;
  line-height: 2.2;
}
.performance-page .faq-answer__mark {
  color: #5e9c9c;
  font-size: 32px;
  line-height: 1;
}
.performance-page .faq-item.is-open .faq-question {
  background: #6ca3a0;
  color: #fff;
}
.performance-page .faq-item.is-open .faq-question__mark {
  color: #fff;
}
.performance-page .faq-item.is-open .faq-question__icon::before {
  background: #fff;
}
.performance-page .faq-item.is-open .faq-question__icon::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .performance-page .performance-faq {
    padding: 52px 0 64px;
  }
  .performance-page .performance-faq__inner {
    width: min(100%, 358px);
  }
  .performance-page .performance-faq__heading {
    margin-bottom: 36px;
  }
  .performance-page .performance-faq__heading h2 {
    font-size: 42px;
  }
  .performance-page .faq-item {
    border-bottom-width: 7px;
  }
  .performance-page .faq-question {
    grid-template-columns: 38px 1fr 28px;
    min-height: 74px;
    padding: 0 18px;
  }
  .performance-page .faq-question__mark,
  .performance-page .faq-answer__mark {
    font-size: 28px;
  }
  .performance-page .faq-question__text {
    font-size: 14px;
    line-height: 1.8;
  }
  .performance-page .faq-answer__inner {
    grid-template-columns: 38px 1fr;
    padding: 20px 18px 34px;
  }
  .performance-page .faq-answer__inner p {
    font-size: 14px;
    line-height: 2.1;
  }
}
.performance-page .lineup-works {
  position: relative;
  display: block;
  width: min(100%, 400px);
  aspect-ratio: 358/210;
  margin: 0 auto;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .performance-page .lineup-works {
    width: 500px;
    aspect-ratio: 500/210;
  }
}
.performance-page .lineup-works::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.performance-page .lineup-works img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.performance-page .lineup-works__text {
  position: absolute;
  left: 38px;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
}
.performance-page .lineup-works__text strong {
  display: block;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}
.performance-page .lineup-works__text span {
  display: block;
  font-size: 12px;
}
.performance-page .lineup-works__arrow {
  position: absolute;
  right: 30px;
  top: 50%;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
}
.performance-page .lineup-works__arrow img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.performance-page .lineup-works > img {
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.performance-page .lineup-works .lineup-works__arrow {
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
@media (hover: hover) {
  .performance-page .lineup-works:hover > img {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
  .performance-page .lineup-works:hover .lineup-works__arrow {
    -webkit-transform: translate(10px, calc(-50% - 10px));
            transform: translate(10px, calc(-50% - 10px));
  }
}
.performance-page .performance-message {
  background: #fff;
  padding: 72px 20px 88px;
}
@media screen and (min-width: 768px) {
  .performance-page .performance-message {
    padding: 96px 20px 110px;
  }
}
.performance-page .performance-message__inner {
  width: min(100%, 960px);
  margin: 0 auto;
}
.performance-page .performance-message__image {
  width: min(100%, 852px);
  margin: 0 auto;
}
.performance-page .performance-message__image img {
  display: block;
  width: 100%;
  height: auto;
}
.performance-page .performance-message__text {
  margin-top: 52px;
  text-align: center;
  font-size: 13px;
  line-height: 2.2;
  letter-spacing: 0.06em;
}
.performance-page .performance-message__text p {
  margin: 0;
}
.performance-page .performance-message__text p:not(:first-child) {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .performance-page .performance-message__text {
    margin-top: 58px;
    font-size: 14px;
    line-height: 2.3;
  }
  .performance-page .performance-message__text p:not(:first-child) {
    margin-top: 28px;
  }
}
.performance-page .performance-after {
  background: #fff;
  padding: 96px 20px 120px;
}
@media screen and (max-width: 767px) {
  .performance-page .performance-after {
    padding: 64px 16px 80px;
  }
}
.performance-page .performance-after__inner {
  width: min(100%, 960px);
  margin: 0 auto;
}
.performance-page .performance-after__heading {
  text-align: center;
}
.performance-page .performance-after__heading span {
  display: block;
  color: #549896;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.performance-page .performance-after__heading h2 {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.performance-page .performance-after__content {
  margin-top: 72px;
}
@media screen and (min-width: 768px) {
  .performance-page .performance-after__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .performance-page .performance-after__content {
    margin-top: 44px;
  }
}
.performance-page .performance-after__images img {
  display: block;
  width: 100%;
  aspect-ratio: 520/306;
  -o-object-fit: cover;
     object-fit: cover;
}
.performance-page .performance-after__images img:not(:first-child) {
  margin-top: 18px;
}
.performance-page .performance-after__body {
  font-size: 13px;
  line-height: 2.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .performance-page .performance-after__body {
    margin-top: 34px;
  }
}
.performance-page .performance-after__body p {
  margin: 0;
}
.performance-page .performance-after__body p:not(:first-child) {
  margin-top: 30px;
}
.performance-page .performance-after__lead {
  font-size: 15px;
  line-height: 2;
}
.performance-page .performance-after__link {
  margin-top: 48px;
  color: #333;
  text-align: left;
}

.thanks-page {
  background-color: #f0f1f4;
  color: #000;
}
.thanks-page .thanks {
  padding: 80px 0 120px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .thanks-page .thanks {
    padding: 110px 0 150px;
  }
}
.thanks-page .thanks__inner {
  width: clamp(0px, 91.7948717949vw, 600px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .thanks-page .thanks__inner {
    width: clamp(0px, 84.375vw, 1080px);
    max-width: 1080px;
  }
}
.thanks-page .thanks__head {
  position: relative;
}
.thanks-page .thanks__title-wrap {
  position: relative;
  margin-top: 74px;
}
@media screen and (min-width: 768px) {
  .thanks-page .thanks__title-wrap {
    margin-top: 96px;
  }
}
.thanks-page .thanks__title-en {
  position: absolute;
  top: -54px;
  left: -4px;
  color: rgba(209, 209, 209, 0.18);
  font-size: 72px;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .thanks-page .thanks__title-en {
    top: -76px;
    left: -36px;
    font-size: 120px;
  }
}
.thanks-page .thanks__title {
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .thanks-page .thanks__title {
    font-size: 30px;
  }
}
.thanks-page .thanks__body {
  margin-top: 72px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .thanks-page .thanks__body {
    margin-top: 88px;
  }
}
.thanks-page .thanks__lead {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  font-size: 14px;
  line-height: 2.3;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .thanks-page .thanks__lead {
    font-size: 15px;
  }
}
.thanks-page .thanks__info {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 45px;
  padding-bottom: 45px;
  text-align: left;
  font-size: 14px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .thanks-page .thanks__info {
    padding-top: 50px;
    font-size: 15px;
  }
}
.thanks-page .thanks__button {
  margin-top: 72px;
  text-align: left;
}
.thanks-page .thanks__button .view-more {
  color: #333;
  text-align: left;
}

.blog-detail-page {
  color: #333;
  background-color: #F0F1F4;
}
.blog-detail-page .blog-detail {
  padding: 100px 0 80px;
}
@media screen and (min-width: 768px) {
  .blog-detail-page .blog-detail {
    padding: 150px 0 120px;
  }
}
.blog-detail-page .blog-detail__breadcrumb {
  width: min(90%, 1140px);
  margin: 0 auto 56px;
}
@media screen and (min-width: 768px) {
  .blog-detail-page .blog-detail__breadcrumb {
    margin-bottom: 80px;
  }
}
.blog-detail-page .blog-detail__inner {
  width: clamp(0px, 91.7948717949vw, 600px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .blog-detail-page .blog-detail__inner {
    width: clamp(0px, 70.3125vw, 900px);
    max-width: 900px;
  }
}
.blog-detail-page .blog-detail__date {
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
  color: #777;
  letter-spacing: 0.04em;
}
.blog-detail-page .blog-detail__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.blog-detail-page .blog-detail__category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  background: #6f9ea2;
  color: #fff;
  font-size: 12px;
}
.blog-detail-page .blog-detail__title {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}
.blog-detail-page .blog-detail__image {
  margin-bottom: 70px;
}
.blog-detail-page .blog-detail__image img {
  display: block;
  width: 100%;
  height: auto;
}
.blog-detail-page .blog-detail__content {
  margin-top: 10px;
}
.blog-detail-page .blog-detail__block {
  padding-top: 50px;
  border-top: 1px solid #e4e4e4;
}
.blog-detail-page .blog-detail__block:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.blog-detail-page .blog-detail__block-title {
  position: relative;
  margin-bottom: 24px;
  padding-left: 18px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .blog-detail-page .blog-detail__block-title {
    margin-bottom: 34px;
    padding-left: 24px;
    font-size: 26px;
  }
}
.blog-detail-page .blog-detail__block-title::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 2px;
  height: calc(100% - 8px);
  background: #6f9ea2;
}
.blog-detail-page .blog-detail__block-text p {
  margin-bottom: 1.8em;
  line-height: 2.2;
}
.blog-detail-page .blog-detail__block-text strong {
  font-weight: 700;
}
.blog-detail-page .blog-detail__block-text em {
  font-style: italic;
}
.blog-detail-page .blog-detail__block-text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.blog-detail-page .blog-detail__block-text ul,
.blog-detail-page .blog-detail__block-text ol {
  margin: 24px 0;
  padding-left: 1.5em;
}
.blog-detail-page .blog-detail__block-text li {
  margin-bottom: 12px;
  line-height: 2;
}
.blog-detail-page .blog-detail__block-text img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px 0;
}
.blog-detail-page .blog-detail__block-text .alignleft {
  float: none;
  margin: 30px 0;
}
@media screen and (min-width: 768px) {
  .blog-detail-page .blog-detail__block-text .alignleft {
    float: left;
    margin: 20px 30px 20px 0;
  }
}
.blog-detail-page .blog-detail__block-text .alignright {
  float: none;
  margin: 30px 0;
}
@media screen and (min-width: 768px) {
  .blog-detail-page .blog-detail__block-text .alignright {
    float: right;
    margin: 20px 0 20px 30px;
  }
}
.blog-detail-page .blog-detail__block-text .aligncenter {
  display: block;
  margin: 40px auto;
}
.blog-detail-page .blog-detail__block-text .alignnone {
  margin: 40px 0;
}
.blog-detail-page .blog-detail__block-text::after {
  content: "";
  display: block;
  clear: both;
}
.blog-detail-page .blog-detail__block-text table {
  width: 100%;
  margin: 40px 0;
  border-collapse: collapse;
}
.blog-detail-page .blog-detail__block-text th,
.blog-detail-page .blog-detail__block-text td {
  padding: 14px;
  border: 1px solid #ddd;
  line-height: 1.8;
}
.blog-detail-page .blog-detail__block-text th {
  background: #f7f7f7;
  font-weight: 400;
}
.blog-detail-page .blog-detail__block-text blockquote {
  margin: 40px 0;
  padding: 24px 28px;
  border-left: 3px solid #6f9ea2;
  background: #f8f8f8;
  line-height: 2;
}
.blog-detail-page .blog-detail__block-text iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  margin: 40px auto;
}
.blog-detail-page .blog-detail__author {
  width: 100%;
  margin: 60px auto 0;
  padding: 22px 20px;
  border: 1px solid #6f9ea2;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  cursor: pointer;
  -webkit-transform: translateY(0) translateZ(0);
          transform: translateY(0) translateZ(0);
  will-change: transform;
  -webkit-transition: -webkit-transform 0.85s cubic-bezier(0.19, 1, 0.22, 1), -webkit-box-shadow 0.85s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.85s cubic-bezier(0.19, 1, 0.22, 1), -webkit-box-shadow 0.85s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.85s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.85s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.85s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.85s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.85s cubic-bezier(0.19, 1, 0.22, 1), -webkit-box-shadow 0.85s cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (min-width: 768px) {
  .blog-detail-page .blog-detail__author {
    margin: 70px auto 0;
    width: min(100%, 600px);
    padding: 18px 30px;
    gap: 28px;
  }
}
.blog-detail-page .blog-detail__author:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  border-color: #4f868a;
}
.blog-detail-page .blog-detail__author:hover .blog-detail__author-link::after {
  -webkit-transform: translateY(-50%) translateX(6px) rotate(45deg);
          transform: translateY(-50%) translateX(6px) rotate(45deg);
}
.blog-detail-page .blog-detail__author-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  overflow: hidden;
  background: #ddd;
}
@media screen and (min-width: 768px) {
  .blog-detail-page .blog-detail__author-image {
    width: 120px;
    height: 120px;
  }
}
.blog-detail-page .blog-detail__author-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-detail-page .blog-detail__author-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.blog-detail-page .blog-detail__author-heading {
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid #6f9ea2;
  font-size: 14px;
  line-height: 1.5;
}
.blog-detail-page .blog-detail__author-info {
  display: inline-block;
}
.blog-detail-page .blog-detail__author-position {
  margin-bottom: 6px;
  font-size: 12px;
  color: #777;
}
.blog-detail-page .blog-detail__author-name {
  font-size: 16px;
  line-height: 1.5;
}
.blog-detail-page .blog-detail__author-link {
  position: relative;
  display: block;
  margin-left: 0;
  margin-top: 16px;
  padding-right: 24px;
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .blog-detail-page .blog-detail__author-link {
    display: inline-block;
    margin-left: 64px;
    margin-top: 0;
  }
}
.blog-detail-page .blog-detail__author-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.blog-detail-page .blog-detail__author-link:hover::after {
  -webkit-transform: translateY(-50%) translateX(6px) rotate(45deg);
          transform: translateY(-50%) translateX(6px) rotate(45deg);
}
.blog-detail-page .blog-detail__back {
  margin-top: 80px;
  text-align: center;
}

.blog-page {
  color: #333;
  background-color: #F0F1F4;
}
.blog-page .blog-list {
  padding: 32px 0 80px;
}
@media screen and (min-width: 768px) {
  .blog-page .blog-list {
    padding-top: 150px;
    padding-bottom: 100px;
  }
}
.blog-page .blog-list__inner {
  width: min(86%, 390px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .blog-page .blog-list__inner {
    width: min(86%, 1140px);
  }
}
.blog-page .blog-list__head {
  position: relative;
  margin-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .blog-page .blog-list__head {
    margin-bottom: 60px;
  }
}
.blog-page .blog-list__title-wrap {
  position: relative;
  margin-top: 38px;
}
@media screen and (min-width: 768px) {
  .blog-page .blog-list__title-wrap {
    margin-top: 44px;
  }
}
.blog-page .blog-list__title-en {
  position: absolute;
  top: -28px;
  left: 0;
  font-size: clamp(72px, 9.375vw, 120px);
  line-height: 1;
  color: rgba(72, 72, 72, 0.06);
  font-family: "Montserrat", sans-serif;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .blog-page .blog-list__title-en {
    top: -40px;
  }
}
.blog-page .blog-list__page-title {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .blog-page .blog-list__page-title {
    font-size: 22px;
  }
}
.blog-page .blog-list__filter {
  display: block;
  margin-top: 26px;
}
@media screen and (min-width: 768px) {
  .blog-page .blog-list__filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 34px;
    margin-top: 34px;
  }
}
.blog-page .blog-list__filter-text {
  margin-bottom: 12px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .blog-page .blog-list__filter-text {
    margin-bottom: 0;
    font-size: 14px;
  }
}
.blog-page .blog-list__select-wrap {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .blog-page .blog-list__select-wrap {
    width: 260px;
  }
}
.blog-page .blog-list__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 14px;
  height: 14px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  -webkit-transform: translateY(-70%) rotate(45deg);
          transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.blog-page .blog-list__select {
  width: 100%;
  height: 48px;
  padding: 0 56px 0 18px;
  border: 1px solid #d8d8d8;
  background: #fff;
  font-size: 13px;
  color: #333;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (min-width: 768px) {
  .blog-page .blog-list__select {
    height: 62px;
    padding-left: 28px;
    font-size: 15px;
  }
}
.blog-page .blog-list__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}
@media screen and (min-width: 768px) {
  .blog-page .blog-list__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 28px;
  }
}
.blog-page .blog-list__card {
  min-width: 0;
}
.blog-page .blog-list__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.blog-page .blog-list__link:hover .blog-list__image img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.blog-page .blog-list__link:hover .blog-list__author-arrow {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.blog-page .blog-list__image {
  aspect-ratio: 358/238;
  overflow: hidden;
  margin-bottom: 16px;
}
.blog-page .blog-list__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.blog-page .blog-list__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.blog-page .blog-list__date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.blog-page .blog-list__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 4px;
}
.blog-page .blog-list__category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 20px;
  padding: 0 8px;
  background: #6f9ea2;
  color: #fff;
  font-size: 10px;
  line-height: 1;
}
.blog-page .blog-list__title {
  min-height: 3.2em;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.blog-page .blog-list__author {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 14px 52px 14px 16px;
  min-height: 70px;
  border: 1px solid #6b9ca0;
  color: inherit;
  text-decoration: none;
}
.blog-page .blog-list__author:hover .blog-list__author-arrow {
  -webkit-transform: translateY(-50%) translateX(6px) rotate(45deg);
          transform: translateY(-50%) translateX(6px) rotate(45deg);
}
.blog-page .blog-list__author-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: #888;
}
.blog-page .blog-list__author-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-page .blog-list__author-position,
.blog-page .blog-list__author-name {
  font-size: 11px;
  line-height: 1.5;
}
.blog-page .blog-list__author-arrow {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #6b9ca0;
  border-right: 1px solid #6b9ca0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.blog-page .blog-list__pagination {
  margin-top: 72px;
}
.blog-page .blog-list__pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
}
.blog-page .blog-list__pagination .page-numbers {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111;
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
}
.blog-page .blog-list__pagination .page-numbers.current {
  background: #6b9f9d;
  color: #fff;
}
.blog-page .blog-list__pagination .page-numbers.dots {
  width: auto;
}
@media screen and (min-width: 768px) {
  .blog-page .blog-list__pagination {
    margin-top: 80px;
  }
}

.blog-list__author-title {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .blog-list__author-title {
    margin-top: 24px;
    font-size: 20px;
  }
}