@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  padding: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  font-size: 16px;
  line-height: 1.6;
  color: #26292A;
  background-color: #FFFFFF;
  background-image: url("../images/bg-pattern.png");
  background-repeat: repeat;
  background-size: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  line-height: 1.4;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  margin: 0 auto;
  padding: 0 calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .container {
    max-width: calc(1440 / 1440 * 100vw);
    padding: 0 calc(40 / 1440 * 100vw);
  }
}

.onlyPc {
  display: none;
}
@media (min-width: 768px) {
  .onlyPc {
    display: inline;
  }
}

.onlySp {
  display: inline;
}
@media (min-width: 768px) {
  .onlySp {
    display: none;
  }
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: calc(36 / 375 * 100vw) calc(30 / 375 * 100vw) calc(25 / 375 * 100vw) calc(35 / 375 * 100vw);
}
@media (min-width: 768px) {
  .header {
    top: 0;
    left: 0;
    padding: calc(56 / 1440 * 100vw) calc(60 / 1440 * 100vw);
    width: 100%;
  }
}
.header__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.header__logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #FFFFFF;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .header__logo {
    padding-top: calc(4 / 1440 * 100vw);
  }
  .header__logo:hover {
    opacity: 0.8;
  }
}
.header__right {
  display: none;
}
@media (min-width: 768px) {
  .header__right {
    display: flex;
    align-items: center;
    gap: calc(30 / 1440 * 100vw);
  }
}
.header__nav {
  display: none;
}
@media (min-width: 768px) {
  .header__nav {
    display: block;
  }
}
@media (min-width: 768px) {
  .header__nav-list {
    display: flex;
    align-items: center;
    gap: calc(32 / 1440 * 100vw);
    list-style: none;
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .header__nav-item {
    position: relative;
    margin: 0;
  }
  .header__nav-item--has-dropdown:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media (min-width: 768px) {
  .header__nav-link {
    font-size: calc(16 / 1440 * 100vw);
    line-height: 1.5;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  .header__nav-link:hover {
    opacity: 0.7;
  }
}
.header__dropdown {
  display: none;
}
@media (min-width: 768px) {
  .header__dropdown {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(calc(10 / 1440 * 100vw));
    min-width: calc(240 / 1440 * 100vw);
    padding-top: calc(20 / 1440 * 100vw);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 100;
  }
}
@media (min-width: 768px) {
  .header__dropdown-list {
    background: #FFFFFF;
    border-radius: calc(8 / 1440 * 100vw);
    list-style: none;
    margin: 0;
    padding: calc(16 / 1440 * 100vw) calc(24 / 1440 * 100vw);
    box-shadow: 0 calc(4 / 1440 * 100vw) calc(20 / 1440 * 100vw) rgba(0, 0, 0, 0.15);
  }
}
@media (min-width: 768px) {
  .header__dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(16 / 1440 * 100vw) 0;
    text-decoration: none;
    color: #26292A;
    transition: opacity 0.3s ease;
    cursor: pointer;
  }
  .header__dropdown-link:hover {
    opacity: 0.7;
  }
}
@media (min-width: 768px) {
  .header__dropdown-text {
    font-size: calc(16 / 1440 * 100vw);
    line-height: 1.5;
  }
}
@media (min-width: 768px) {
  .header__dropdown-arrow {
    width: calc(20 / 1440 * 100vw);
    height: calc(7 / 1440 * 100vw);
    background: url("../images/icn-next.svg") no-repeat center;
    background-size: contain;
  }
}
.header__contact {
  display: none;
}
@media (min-width: 768px) {
  .header__contact {
    display: inline-flex;
  }
}
.header__hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(45 / 375 * 100vw);
  height: calc(45 / 375 * 100vw);
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger[aria-expanded=true] .headerHamburger__icon {
  background-image: url("../images/btn-menu-close.svg");
}
.header__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  z-index: 1001;
  padding: calc(10 / 375 * 100vw);
}
@media (min-width: 768px) {
  .header__mobile-menu {
    display: none;
  }
}
.header__mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.header__mobile-inner {
  background: #26292A;
  border-radius: calc(30 / 375 * 100vw);
}
.header__mobile-header {
  display: flex;
  justify-content: space-between;
  padding: calc(26 / 375 * 100vw) calc(20 / 375 * 100vw) calc(20 / 375 * 100vw) calc(25 / 375 * 100vw);
}
.header__mobile-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #FFFFFF;
}
.header__mobile-close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(45 / 375 * 100vw);
  height: calc(45 / 375 * 100vw);
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.header__mobile-nav {
  padding: 0 calc(30 / 375 * 100vw) calc(120 / 375 * 100vw);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-image: url(../images/bg-mobile-nav.png);
  background-size: 100% auto;
}
.header__mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__mobile-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header__mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(20 / 375 * 100vw) 0;
  text-decoration: none;
}
.header__mobile-link::after {
  content: "";
  width: calc(18 / 375 * 100vw);
  height: calc(6 / 375 * 100vw);
  background: url("../images/arrow-menu.png") no-repeat center;
  background-size: contain;
}
.header__mobile-sub {
  list-style: none;
  margin: 0;
  padding: 0 0 calc(25 / 375 * 100vw) 0;
}
.header__mobile-sub-item:not(:first-of-type) {
  margin-top: calc(15 / 375 * 100vw);
}
.header__mobile-sub-link {
  display: flex;
  align-items: center;
  line-height: 1.1;
  gap: calc(20 / 375 * 100vw);
  text-decoration: none;
}
.header__mobile-sub-link::after {
  content: "";
  width: calc(18 / 375 * 100vw);
  height: calc(6 / 375 * 100vw);
  background: url("../images/arrow-menu.png") no-repeat center;
  background-size: contain;
  opacity: 0.7;
}
.header__mobile-contact-wrap {
  margin-top: calc(32 / 375 * 100vw);
}

.headerLogo {
  font-size: calc(14 / 375 * 100vw);
  line-height: 1.6;
  font-weight: 500;
}
@media (min-width: 768px) {
  .headerLogo {
    font-size: calc(18 / 1440 * 100vw);
  }
}
.headerLogo span {
  font-size: calc(11 / 375 * 100vw);
}
@media (min-width: 768px) {
  .headerLogo span {
    font-size: calc(13 / 1440 * 100vw);
  }
}

.headerHamburger__icon {
  width: calc(45 / 375 * 100vw);
  height: calc(45 / 375 * 100vw);
  background: url("../images/btn-menu-open.svg") no-repeat center;
  background-size: contain;
  transition: opacity 0.3s ease;
}

.headerMobileClose__icon {
  width: calc(45 / 375 * 100vw);
  height: calc(45 / 375 * 100vw);
  background: url("../images/btn-menu-close.svg") no-repeat center;
  background-size: contain;
}

.headerMobileLink__text {
  font-size: calc(16 / 375 * 100vw);
  color: #FFFFFF;
}

.headerMobileSubLink__text {
  font-size: calc(16 / 375 * 100vw);
  color: rgba(255, 255, 255, 0.7);
}

.footer {
  background: #26292A;
  color: #FFFFFF;
  padding: calc(65 / 375 * 100vw) calc(15 / 375 * 100vw) calc(30 / 375 * 100vw);
}
@media (min-width: 768px) {
  .footer {
    padding: calc(80 / 1440 * 100vw) calc(80 / 1440 * 100vw);
  }
}
@media (min-width: 768px) {
  .footer__inner {
    margin: 0 auto;
    width: calc(1240 / 1440 * 100vw);
    margin-inline: auto;
  }
}
.footer__main {
  display: flex;
  flex-direction: column;
  gap: calc(50 / 375 * 100vw);
  padding: 0 calc(5 / 375 * 100vw);
}
@media (min-width: 768px) {
  .footer__main {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: calc(40 / 1440 * 100vw);
    padding: 0;
  }
}
.footer__brand {
  flex-shrink: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__brand {
    text-align: left;
  }
}
.footer__right {
  display: flex;
  flex-direction: column;
  gap: calc(32 / 375 * 100vw);
}
@media (min-width: 768px) {
  .footer__right {
    flex-direction: column;
    align-items: flex-end;
    gap: calc(5 / 1440 * 100vw);
  }
}
.footer__nav {
  flex: 1;
}
.footer__contact {
  margin-top: calc(8 / 375 * 100vw);
}
@media (min-width: 768px) {
  .footer__contact {
    margin-top: 0;
    display: flex;
    justify-content: flex-end;
  }
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: calc(16 / 375 * 100vw);
  padding-top: calc(18 / 375 * 100vw);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: calc(24 / 375 * 100vw);
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: calc(24 / 1440 * 100vw);
    padding-top: calc(20 / 1440 * 100vw);
    margin-top: calc(49 / 1440 * 100vw);
  }
}
.footer__disclaimer {
  font-size: calc(12 / 375 * 100vw);
  color: #FFFFFF;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .footer__disclaimer {
    font-size: calc(12 / 1440 * 100vw);
  }
}
.footer__copyright {
  font-size: calc(12 / 375 * 100vw);
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  font-family: "Cormorant Garamond", serif;
}
@media (min-width: 768px) {
  .footer__copyright {
    font-size: calc(12 / 1440 * 100vw);
  }
}

.footerBrand {
  font-size: calc(20 / 375 * 100vw);
  text-align: center;
  line-height: 1.2;
  font-weight: 500;
}
@media (min-width: 768px) {
  .footerBrand {
    letter-spacing: 0.03em;
    line-height: 1.4;
    text-align: left;
    font-size: calc(19 / 1440 * 100vw);
  }
}
.footerBrand span {
  font-size: calc(14 / 375 * 100vw);
  letter-spacing: 0.07em;
}
@media (min-width: 768px) {
  .footerBrand span {
    letter-spacing: 0.03em;
    text-align: left;
    font-size: calc(14 / 1440 * 100vw);
  }
}

.footerNav__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(25 / 375 * 100vw) calc(4 / 375 * 100vw);
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .footerNav__list {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: calc(80 / 1440 * 100vw);
  }
}
.footerNav__list:nth-child(2) {
  padding: calc(28 / 375 * 100vw) 0 0;
}
@media (min-width: 768px) {
  .footerNav__list:nth-child(2) {
    align-items: center;
    padding: calc(30 / 1440 * 100vw) 0 0;
  }
}
.footerNav__item {
  position: relative;
}
.footerNav__link {
  font-size: calc(16 / 375 * 100vw);
  color: #FFFFFF;
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .footerNav__link {
    line-height: 1.5;
    font-size: calc(16 / 1440 * 100vw);
  }
}
.footerNav__link:hover {
  opacity: 0.7;
}
.footerNav__link--label:hover {
  opacity: 1;
}
.footerNav__sub {
  list-style: none;
  margin: calc(12 / 375 * 100vw) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: calc(10 / 375 * 100vw);
}
@media (min-width: 768px) {
  .footerNav__sub {
    margin: calc(12 / 1440 * 100vw) 0 0;
    gap: calc(5 / 1440 * 100vw);
  }
}
.footerNav__sub a {
  font-size: calc(16 / 375 * 100vw);
  color: #9C9C9C;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .footerNav__sub a {
    font-size: calc(14 / 1440 * 100vw);
  }
}
.footerNav__sub a:hover {
  opacity: 0.7;
}

.footerContact__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(10 / 375 * 100vw);
  width: 100%;
  padding: calc(16 / 375 * 100vw) calc(24 / 375 * 100vw);
  background: #B3A47C;
  border-radius: calc(50 / 375 * 100vw);
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .footerContact__btn {
    width: auto;
    padding: calc(11 / 1440 * 100vw) calc(27 / 1440 * 100vw) calc(11 / 1440 * 100vw) calc(28 / 1440 * 100vw);
    border-radius: calc(50 / 1440 * 100vw);
    gap: calc(10 / 1440 * 100vw);
    font-size: calc(16 / 1440 * 100vw);
  }
}
.footerContact__btn:hover {
  opacity: 0.8;
}
.footerContact__btn::before {
  content: "";
  display: block;
  width: calc(20 / 375 * 100vw);
  height: calc(20 / 375 * 100vw);
  background: url("../images/icon-mail.svg") no-repeat center;
  background-size: 100% auto;
}
@media (min-width: 768px) {
  .footerContact__btn::before {
    width: calc(16 / 1440 * 100vw);
    height: calc(13 / 1440 * 100vw);
  }
}
.footerContact__text {
  font-size: calc(16 / 375 * 100vw);
  font-weight: 500;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .footerContact__text {
    font-size: calc(16 / 1440 * 100vw);
  }
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: calc(8 / 375 * 100vw);
  padding: calc(14 / 375 * 100vw) calc(28 / 375 * 100vw);
  font-size: calc(14 / 375 * 100vw);
  color: #FFFFFF;
  background: #B3A47C;
  border-radius: calc(30 / 375 * 100vw);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .btn-contact {
    gap: calc(10 / 1440 * 100vw);
    width: auto;
    padding: calc(11 / 1440 * 100vw) calc(29 / 1440 * 100vw);
    font-size: calc(16 / 1440 * 100vw);
    border-radius: calc(30 / 1440 * 100vw);
  }
}
.btn-contact::before {
  content: "";
  width: calc(16 / 375 * 100vw);
  height: calc(16 / 375 * 100vw);
  background: url("../images/icn-contact.svg") no-repeat center;
  background-size: contain;
}
@media (min-width: 768px) {
  .btn-contact::before {
    width: calc(16 / 1440 * 100vw);
    height: calc(16 / 1440 * 100vw);
  }
}
.btn-contact:hover {
  opacity: 0.8;
}

.middleHero {
  padding: calc(10 / 375 * 100vw);
}
@media (min-width: 768px) {
  .middleHero {
    padding: calc(30 / 1440 * 100vw);
  }
}
.middleHero__inner {
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: calc(120 / 375 * 100vw);
  height: calc(260 / 375 * 100vw);
  border-radius: calc(15 / 375 * 100vw);
  background-color: #26292A;
}
@media (min-width: 768px) {
  .middleHero__inner {
    padding-top: calc(148 / 1440 * 100vw);
    border-radius: calc(16 / 1440 * 100vw);
    height: calc(328 / 1440 * 100vw);
  }
}
.middleHero__inner::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  content: "";
  display: block;
  width: 100%;
  height: calc(94 / 375 * 100vw);
  background-image: url("../images/bg-middleHero-sp.png");
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
  mix-blend-mode: color-burn;
}
@media (min-width: 768px) {
  .middleHero__inner::before {
    height: calc(154 / 1440 * 100vw);
    background-image: url("../images/bg-middleHero.png");
  }
}
.middleHero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(6 / 375 * 100vw);
}
@media (min-width: 768px) {
  .middleHero__title {
    gap: calc(6 / 1440 * 100vw);
  }
}
.middleHero__ja {
  font-size: calc(28 / 375 * 100vw);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .middleHero__ja {
    font-size: calc(32 / 1440 * 100vw);
  }
}
.middleHero__en {
  font-size: calc(14 / 375 * 100vw);
  font-family: "Cormorant Garamond", serif;
  color: #FFFFFF;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .middleHero__en {
    font-size: calc(16 / 1440 * 100vw);
  }
}
.middleHero--hasImage .middleHero__inner {
  background-size: cover;
  background-position: center;
}

.top-hero {
  position: relative;
  padding: calc(10 / 375 * 100vw) calc(10 / 375 * 100vw) calc(15 / 375 * 100vw);
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .top-hero {
    padding: calc(30 / 1440 * 100vw);
  }
}
.top-hero__inner {
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  width: 100%;
  height: calc(792 / 375 * 100vw);
  overflow: hidden;
  border-radius: calc(30 / 375 * 100vw);
  padding: calc(25 / 375 * 100vw) calc(20 / 375 * 100vw);
  background-color: #010101;
}
@media (min-width: 768px) {
  .top-hero__inner {
    display: block;
    height: calc(600 / 1440 * 100vw);
    padding: 0;
    border-radius: calc(16 / 1440 * 100vw);
  }
}
.top-hero__slider {
  position: absolute;
  top: calc(80 / 375 * 100vw);
  left: 0;
  width: 100%;
  height: calc(445 / 375 * 100vw);
  border-radius: unset;
}
@media (min-width: 768px) {
  .top-hero__slider {
    border-radius: inherit;
    top: 0;
    height: 100%;
  }
}
.top-hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease-in-out;
  border-radius: inherit;
  will-change: opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.top-hero__slide.is-active {
  opacity: 1;
  z-index: 3;
}
.top-hero__slide.is-leaving {
  opacity: 0;
  z-index: 2;
}
.top-hero__image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}
.top-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  will-change: transform;
  backface-visibility: hidden;
}
.top-hero__image::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  content: "";
  display: block;
  width: 100%;
  height: calc(146 / 375 * 100vw);
  background: linear-gradient(180deg, #000000 1.83%, rgba(0, 0, 0, 0) 99.89%);
}
@media (min-width: 768px) {
  .top-hero__image::before {
    display: none;
  }
}
.top-hero__image::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  content: "";
  display: block;
  width: 100%;
  height: calc(146 / 375 * 100vw);
  background: linear-gradient(360deg, #000000 1.83%, rgba(0, 0, 0, 0) 99.89%);
}
@media (min-width: 768px) {
  .top-hero__image::after {
    display: none;
  }
}
.top-hero__slide.is-active .top-hero__image img {
  animation: heroZoom 6s ease-out forwards;
}
.top-hero__slide.is-leaving .top-hero__image img {
  transform: scale(1.1);
}
.top-hero__slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
  border-radius: inherit;
}
.top-hero__title {
  position: relative;
  z-index: 10;
  line-height: 1.6;
  color: #FFFFFF;
  font-size: calc(36 / 375 * 100vw);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: calc(10 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-hero__title {
    position: absolute;
    top: 50%;
    left: calc(30 / 1440 * 100vw);
    transform: translateY(-50%);
    font-size: calc(42 / 1440 * 100vw);
    margin-bottom: 0;
  }
}
.top-hero__description {
  position: relative;
  z-index: 10;
  color: #FFFFFF;
  font-size: calc(14 / 375 * 100vw);
  line-height: 2.5;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .top-hero__description {
    position: absolute;
    bottom: calc(30 / 1440 * 100vw);
    left: calc(30 / 1440 * 100vw);
    font-size: calc(16 / 1440 * 100vw);
  }
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.top-solution {
  position: relative;
  overflow: hidden;
  padding: calc(60 / 375 * 100vw) 0 0;
}
@media (min-width: 768px) {
  .top-solution {
    padding: calc(80 / 1440 * 100vw) calc(80 / 1440 * 100vw) calc(80 / 1440 * 100vw) calc(120 / 1440 * 100vw);
  }
}
.top-solution__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(57 / 375 * 100vw);
  padding: 0 calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-solution__inner {
    padding: 0;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: flex-start;
    gap: calc(60 / 1440 * 100vw);
  }
}
.top-solution__title {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  gap: calc(8 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-solution__title {
    gap: calc(10 / 1440 * 100vw);
    font-size: calc(30 / 1440 * 100vw);
  }
}
@media (min-width: 768px) {
  .top-solution__lead {
    padding-top: calc(17 / 1440 * 100vw);
  }
}
.top-solution__list-wrap {
  overflow: hidden;
  margin: calc(40 / 375 * 100vw) calc(-16 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .top-solution__list-wrap {
    margin: calc(94 / 1440 * 100vw) calc(-120 / 1440 * 100vw) 0;
  }
}

.top-service {
  padding: calc(40 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .top-service {
    padding: calc(2 / 1440 * 100vw) 0 calc(60 / 1440 * 100vw);
  }
}
.top-service__container {
  margin: 0 auto;
  padding: 0 calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-service__container {
    width: calc(1440 / 1440 * 100vw);
    padding: 0 calc(50 / 1440 * 100vw);
  }
}
.top-service__header {
  margin-bottom: calc(50 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-service__header {
    margin-bottom: calc(60 / 1440 * 100vw);
  }
}
.top-service__title {
  font-size: calc(28 / 375 * 100vw);
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .top-service__title {
    font-size: calc(38 / 1440 * 100vw);
  }
}
.top-service__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(68 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-service__steps {
    align-items: flex-start;
    flex-direction: row;
    justify-content: center;
    gap: calc(70 / 1440 * 100vw);
  }
}
.top-service__step {
  position: relative;
  text-align: center;
  width: 100%;
}
.top-service__step:not(:last-of-type)::after {
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translateY(calc(33 / 375 * 100vw)) translateX(50%);
  content: "";
  display: block;
  width: calc(10 / 375 * 100vw);
  height: calc(12 / 375 * 100vw);
  background-image: url(../images/arrow-step-bottom.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .top-service__step:not(:last-of-type)::after {
    top: 50%;
    right: calc(-27 / 1440 * 100vw);
    transform: translateY(-50%) translateX(100%);
    width: calc(18 / 1440 * 100vw);
    height: calc(18 / 1440 * 100vw);
    background-image: url(../images/arrow-step.svg);
  }
}

.top-relation {
  display: flex;
  flex-direction: row;
  flex-direction: column;
  margin-top: calc(40 / 375 * 100vw);
  gap: calc(2 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-relation {
    margin-top: 0;
    flex-direction: row;
    gap: calc(2 / 1440 * 100vw);
  }
}
.top-relation__item {
  position: relative;
  display: block;
  height: calc(140 / 375 * 100vw);
  text-decoration: none;
  background-image: url("../images/bg-relation1.png");
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .top-relation__item {
    flex: 1;
    height: calc(200 / 1440 * 100vw);
  }
}
.top-relation__item:nth-child(2) {
  background-image: url("../images/bg-relation2.png");
}
.top-relation__item::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  display: block;
  background-image: url("../images/arrow-relation.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  bottom: calc(20 / 375 * 100vw);
  right: calc(20 / 375 * 100vw);
  width: calc(45 / 375 * 100vw);
  height: calc(45 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-relation__item::after {
    bottom: calc(24 / 1440 * 100vw);
    right: calc(30 / 1440 * 100vw);
    width: calc(58 / 1440 * 100vw);
    height: calc(58 / 1440 * 100vw);
  }
}
.top-relation__item:hover .top-relation__bg {
  transform: scale(1.05);
}
.top-relation__content {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: calc(8 / 375 * 100vw);
  height: 100%;
  padding: calc(18 / 375 * 100vw) calc(85 / 375 * 100vw) calc(18 / 375 * 100vw);
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .top-relation__content {
    gap: calc(24 / 1440 * 100vw);
    padding: calc(30 / 1440 * 100vw) calc(120 / 1440 * 100vw) calc(20 / 1440 * 100vw);
  }
}
.top-relation__content .credit {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: calc(17 / 375 * 100vw) calc(15 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-relation__content .credit {
    bottom: 0;
    left: 0;
    padding: calc(17 / 1440 * 100vw) calc(15 / 1440 * 100vw);
  }
}
.top-relation__title {
  font-size: calc(24 / 375 * 100vw);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: calc(5 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-relation__title {
    font-size: calc(28 / 1440 * 100vw);
    margin-bottom: calc(9 / 1440 * 100vw);
  }
}
.top-relation__subtitle {
  font-size: calc(14 / 375 * 100vw);
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .top-relation__subtitle {
    font-size: calc(16 / 1440 * 100vw);
  }
}

.top-works {
  position: relative;
  z-index: 10;
  background: #FFFFFF;
  padding: calc(80 / 375 * 100vw) 0 calc(40 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-works {
    padding: calc(80 / 1440 * 100vw) 0 0 calc(50 / 1440 * 100vw);
  }
}
.top-works--content {
  padding: calc(80 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .top-works--content {
    padding: calc(80 / 1440 * 100vw) 0 calc(115 / 1440 * 100vw) calc(50 / 1440 * 100vw);
  }
}
.top-works--usage {
  padding: calc(80 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .top-works--usage {
    padding: calc(80 / 1440 * 100vw) 0 calc(80 / 1440 * 100vw) calc(50 / 1440 * 100vw);
  }
}
.top-works__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: calc(16 / 375 * 100vw);
  padding: calc(40 / 375 * 100vw) calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-works__inner {
    flex-direction: row;
    gap: calc(60 / 1440 * 100vw);
    padding: 0;
  }
}
.top-works__inner::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  content: "";
  display: block;
  width: calc(100% - 32 / 375 * 100vw);
  height: 100%;
  background: #B3A47C;
  border-radius: calc(8 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-works__inner::before {
    display: none;
  }
}
.top-works__inner::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  content: "";
  display: block;
  width: calc(100% - 32 / 375 * 100vw);
  height: calc(211 / 375 * 100vw);
  background-image: url(../images/bg-top-works-sp.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  border-radius: calc(8 / 375 * 100vw);
  mix-blend-mode: plus-lighter;
  opacity: 0.05;
}
@media (min-width: 768px) {
  .top-works__inner::after {
    display: none;
  }
}
.top-works__main {
  flex: 1;
  min-width: 0;
}
.top-works__header {
  position: relative;
  display: block;
  text-align: center;
}
@media (min-width: 768px) {
  .top-works__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #B3A47C;
    border-radius: calc(4 / 1440 * 100vw);
    padding: calc(178 / 1440 * 100vw) 0 0;
    width: calc(245 / 1440 * 100vw);
    height: calc(630 / 1440 * 100vw);
  }
}
.top-works__header::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: none;
  width: 100%;
  height: calc(154 / 1440 * 100vw);
  background-size: 100% auto;
  background-image: url(../images/bg-top-works.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  mix-blend-mode: plus-lighter;
  opacity: 0.1;
}
@media (min-width: 768px) {
  .top-works__header::before {
    display: block;
  }
}
@media (min-width: 768px) {
  .top-works--archive .top-works__header {
    padding: calc(60 / 1440 * 100vw) 0 0;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .top-works--content .top-works__header {
    padding: calc(100 / 1440 * 100vw) 0 0;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .top-works--usage .top-works__header {
    padding: calc(100 / 1440 * 100vw) 0 0;
    text-align: left;
  }
}
.top-works__title {
  writing-mode: horizontal-tb;
  font-size: calc(28 / 375 * 100vw);
  font-weight: 500;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .top-works__title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: calc(32 / 1440 * 100vw);
    letter-spacing: 0.5em;
  }
}
.top-works__title--two-line {
  gap: calc(8 / 375 * 100vw);
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .top-works__title--two-line {
    gap: calc(12 / 1440 * 100vw);
  }
}
.top-works__title--two-line span {
  display: block;
}
.top-works__more {
  display: none;
}
@media (min-width: 768px) {
  .top-works__more {
    position: absolute;
    bottom: calc(50 / 1440 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: opacity 0.3s ease;
    gap: calc(14 / 1440 * 100vw);
    border-radius: 40px;
    width: calc(140 / 1440 * 100vw);
    height: calc(45 / 1440 * 100vw);
    padding: 0 calc(10 / 1440 * 100vw) 0 calc(20 / 1440 * 100vw);
    letter-spacing: 0.03em;
    font-size: calc(14 / 1440 * 100vw);
    background-color: #FFFFFF;
    white-space: nowrap;
  }
}
.top-works__more::after {
  content: "";
  display: block;
  background-image: url(../images/arrow-more.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: calc(18 / 375 * 100vw);
  height: calc(6 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-works__more::after {
    width: calc(24 / 1440 * 100vw);
    height: calc(24 / 1440 * 100vw);
  }
}
.top-works__more:hover {
  opacity: 0.8;
}
.top-works__more-sp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(10 / 375 * 100vw);
  width: calc(160 / 375 * 100vw);
  margin: calc(24 / 375 * 100vw) auto 0;
  padding: calc(12 / 375 * 100vw) calc(16 / 375 * 100vw);
  background: #FFFFFF;
  border-radius: calc(40 / 375 * 100vw);
  font-size: calc(14 / 375 * 100vw);
  color: #26292A;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .top-works__more-sp {
    display: none;
  }
}
.top-works__more-sp::after {
  content: "";
  display: block;
  width: calc(24 / 375 * 100vw);
  height: calc(24 / 375 * 100vw);
  background: url(../images/arrow-more.svg) no-repeat center;
  background-size: contain;
}
.top-works__more-sp:hover {
  opacity: 0.8;
}
.top-works__carousel-wrap {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0 calc(-20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-works__carousel-wrap {
    margin: 0;
  }
}
.top-works__carousel-wrap::-webkit-scrollbar {
  display: none;
}
.top-works__card {
  flex-shrink: 0;
  width: calc(275 / 375 * 100vw);
  background: #FFFFFF;
  border: none;
  border-radius: calc(6 / 375 * 100vw);
  overflow: hidden;
  box-shadow: 0 calc(4 / 375 * 100vw) calc(20 / 375 * 100vw) rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .top-works__card {
    border: 1px solid #DADADA;
    border-radius: calc(8 / 1440 * 100vw);
    width: calc(360 / 1440 * 100vw);
    box-shadow: none;
  }
}
.top-works__nav--sp {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: calc(16 / 375 * 100vw);
  padding: calc(24 / 375 * 100vw) calc(40 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .top-works__nav--sp {
    display: none;
  }
}
.top-works__nav--pc {
  display: none;
}
@media (min-width: 768px) {
  .top-works__nav--pc {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: calc(40 / 1440 * 100vw);
    padding: calc(32 / 1440 * 100vw) calc(40 / 1440 * 100vw) 0 0;
  }
}
.top-works__arrows {
  display: flex;
  align-items: center;
  gap: calc(50 / 1440 * 100vw);
}
.top-works__indicators {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
@media (min-width: 768px) {
  .top-works__indicators {
    width: 100%;
  }
}
.top-works__indicator {
  flex: 1;
  width: auto;
  height: calc(2 / 375 * 100vw);
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}
@media (min-width: 768px) {
  .top-works__indicator {
    height: 0.0694444444vw;
    background: #DADADA;
  }
}
.top-works__indicator:hover {
  background: rgba(255, 255, 255, 0.6);
}
@media (min-width: 768px) {
  .top-works__indicator:hover {
    background: #A0A0A0;
  }
}
.top-works__indicator.is-active {
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .top-works__indicator.is-active {
    background: #676767;
  }
}
.top-works__empty {
  color: #FFFFFF;
  text-align: center;
  padding: calc(40 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .top-works__empty {
    color: #26292A;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: calc(60 / 1440 * 100vw) 0;
  }
}

.top-news {
  position: relative;
  z-index: 10;
  padding: calc(0 / 375 * 100vw) 0;
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .top-news {
    padding: calc(40 / 1440 * 100vw) 0 0 calc(50 / 1440 * 100vw);
  }
}
.top-news__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: calc(16 / 375 * 100vw);
  padding: calc(40 / 375 * 100vw) calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-news__inner {
    flex-direction: row;
    gap: calc(60 / 1440 * 100vw);
    padding: 0;
  }
}
.top-news__inner::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  content: "";
  display: block;
  width: calc(100% - 32 / 375 * 100vw);
  height: 100%;
  background: #26292A;
  border-radius: calc(8 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-news__inner::before {
    display: none;
  }
}
.top-news__inner::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  content: "";
  display: block;
  width: calc(100% - 32 / 375 * 100vw);
  height: calc(211 / 375 * 100vw);
  background-image: url(../images/bg-top-news-sp.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  border-radius: calc(8 / 375 * 100vw);
  mix-blend-mode: color-burn;
  opacity: 0.21;
}
@media (min-width: 768px) {
  .top-news__inner::after {
    display: none;
  }
}
.top-news__main {
  flex: 1;
  min-width: 0;
}
.top-news__header {
  position: relative;
  display: block;
  text-align: center;
}
@media (min-width: 768px) {
  .top-news__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #26292A;
    border-radius: calc(4 / 1440 * 100vw);
    padding: calc(178 / 1440 * 100vw) 0 0;
    width: calc(245 / 1440 * 100vw);
    height: calc(630 / 1440 * 100vw);
  }
}
.top-news__header::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: none;
  width: 100%;
  height: calc(154 / 1440 * 100vw);
  background-size: 100% auto;
  background-image: url(../images/bg-top-news.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  mix-blend-mode: color-burn;
}
@media (min-width: 768px) {
  .top-news__header::before {
    display: block;
  }
}
.top-news__title {
  writing-mode: horizontal-tb;
  font-size: calc(24 / 375 * 100vw);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.15em;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .top-news__title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: calc(32 / 1440 * 100vw);
  }
}
.top-news__more {
  display: none;
}
@media (min-width: 768px) {
  .top-news__more {
    position: absolute;
    bottom: calc(50 / 1440 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: opacity 0.3s ease;
    gap: calc(14 / 1440 * 100vw);
    border-radius: 40px;
    width: calc(140 / 1440 * 100vw);
    height: calc(45 / 1440 * 100vw);
    padding: 0 calc(10 / 1440 * 100vw) 0 calc(20 / 1440 * 100vw);
    letter-spacing: 0.03em;
    font-size: calc(14 / 1440 * 100vw);
    background-color: #FFFFFF;
    white-space: nowrap;
  }
}
.top-news__more::after {
  content: "";
  display: block;
  background-image: url(../images/arrow-more.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: calc(18 / 375 * 100vw);
  height: calc(6 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-news__more::after {
    width: calc(24 / 1440 * 100vw);
    height: calc(24 / 1440 * 100vw);
  }
}
.top-news__more:hover {
  opacity: 0.8;
}
.top-news__carousel-wrap {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0 calc(-20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-news__carousel-wrap {
    margin: 0;
  }
}
.top-news__carousel-wrap::-webkit-scrollbar {
  display: none;
}
.top-news__card {
  flex-shrink: 0;
  width: calc(275 / 375 * 100vw);
  background: #FFFFFF;
  border: none;
  border-radius: calc(6 / 375 * 100vw);
  overflow: hidden;
  box-shadow: 0 calc(4 / 375 * 100vw) calc(20 / 375 * 100vw) rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .top-news__card {
    border: 1px solid #DADADA;
    border-radius: calc(8 / 1440 * 100vw);
    width: calc(360 / 1440 * 100vw);
    box-shadow: none;
  }
}
.top-news__nav--sp {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: calc(16 / 375 * 100vw);
  padding: calc(24 / 375 * 100vw) calc(40 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .top-news__nav--sp {
    display: none;
  }
}
.top-news__nav--pc {
  display: none;
}
@media (min-width: 768px) {
  .top-news__nav--pc {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: calc(40 / 1440 * 100vw);
    padding: calc(32 / 1440 * 100vw) calc(40 / 1440 * 100vw) 0 0;
  }
}
.top-news__arrows {
  display: flex;
  align-items: center;
  gap: calc(50 / 1440 * 100vw);
}
.top-news__indicators {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
@media (min-width: 768px) {
  .top-news__indicators {
    width: 100%;
  }
}
.top-news__indicator {
  flex: 1;
  width: auto;
  height: calc(2 / 375 * 100vw);
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}
@media (min-width: 768px) {
  .top-news__indicator {
    height: 0.0694444444vw;
    background: #DADADA;
  }
}
.top-news__indicator:hover {
  background: rgba(255, 255, 255, 0.6);
}
@media (min-width: 768px) {
  .top-news__indicator:hover {
    background: #A0A0A0;
  }
}
.top-news__indicator.is-active {
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .top-news__indicator.is-active {
    background: #676767;
  }
}
.top-news__more-sp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(10 / 375 * 100vw);
  width: calc(160 / 375 * 100vw);
  margin: calc(24 / 375 * 100vw) auto 0;
  padding: calc(12 / 375 * 100vw) calc(16 / 375 * 100vw);
  background: #FFFFFF;
  border-radius: calc(40 / 375 * 100vw);
  font-size: calc(14 / 375 * 100vw);
  color: #26292A;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .top-news__more-sp {
    display: none;
  }
}
.top-news__more-sp::after {
  content: "";
  display: block;
  width: calc(24 / 375 * 100vw);
  height: calc(24 / 375 * 100vw);
  background: url(../images/arrow-more.svg) no-repeat center;
  background-size: contain;
}
.top-news__more-sp:hover {
  opacity: 0.8;
}
.top-news__empty {
  color: #FFFFFF;
  text-align: center;
  padding: calc(40 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .top-news__empty {
    color: #26292A;
    padding: calc(60 / 1440 * 100vw) 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.top-column {
  padding: calc(40 / 375 * 100vw) 0 calc(100 / 375 * 100vw);
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .top-column {
    padding: calc(40 / 1440 * 100vw) 0 calc(200 / 1440 * 100vw) calc(50 / 1440 * 100vw);
  }
}
.top-column__inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: calc(16 / 375 * 100vw);
  padding: calc(40 / 375 * 100vw) calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-column__inner {
    flex-direction: row;
    gap: calc(60 / 1440 * 100vw);
    padding: 0;
  }
}
.top-column__inner::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  content: "";
  display: block;
  width: calc(100% - 32 / 375 * 100vw);
  height: 100%;
  background: #678B8F;
  border-radius: calc(8 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-column__inner::before {
    display: none;
  }
}
.top-column__inner::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  content: "";
  display: block;
  width: calc(100% - 32 / 375 * 100vw);
  height: calc(211 / 375 * 100vw);
  background-image: url(../images/bg-top-column-sp.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  border-radius: calc(8 / 375 * 100vw);
  mix-blend-mode: plus-lighter;
  opacity: 0.05;
}
@media (min-width: 768px) {
  .top-column__inner::after {
    display: none;
  }
}
.top-column__main {
  flex: 1;
  min-width: 0;
}
.top-column__header {
  position: relative;
  display: block;
  text-align: center;
}
@media (min-width: 768px) {
  .top-column__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #678B8F;
    border-radius: calc(4 / 1440 * 100vw);
    padding: calc(178 / 1440 * 100vw) 0 0;
    width: calc(245 / 1440 * 100vw);
    height: calc(595 / 1440 * 100vw);
  }
}
.top-column__header::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: none;
  width: 100%;
  height: calc(154 / 1440 * 100vw);
  background-size: 100% auto;
  background-image: url(../images/bg-top-column.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  mix-blend-mode: plus-lighter;
}
@media (min-width: 768px) {
  .top-column__header::before {
    display: block;
  }
}
.top-column__title {
  writing-mode: horizontal-tb;
  font-size: calc(24 / 375 * 100vw);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.15em;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .top-column__title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: calc(32 / 1440 * 100vw);
  }
}
.top-column__more {
  display: none;
}
@media (min-width: 768px) {
  .top-column__more {
    position: absolute;
    bottom: calc(50 / 1440 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: opacity 0.3s ease;
    gap: calc(14 / 1440 * 100vw);
    border-radius: 40px;
    width: calc(140 / 1440 * 100vw);
    height: calc(45 / 1440 * 100vw);
    padding: 0 calc(10 / 1440 * 100vw) 0 calc(20 / 1440 * 100vw);
    letter-spacing: 0.03em;
    font-size: calc(14 / 1440 * 100vw);
    background-color: #FFFFFF;
    white-space: nowrap;
  }
}
.top-column__more::after {
  content: "";
  display: block;
  background-image: url(../images/arrow-more.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: calc(18 / 375 * 100vw);
  height: calc(6 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-column__more::after {
    width: calc(24 / 1440 * 100vw);
    height: calc(24 / 1440 * 100vw);
  }
}
.top-column__more:hover {
  opacity: 0.8;
}
.top-column__carousel-wrap {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0 calc(-20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-column__carousel-wrap {
    margin: 0;
  }
}
.top-column__carousel-wrap::-webkit-scrollbar {
  display: none;
}
.top-column__card {
  flex-shrink: 0;
  width: calc(275 / 375 * 100vw);
  background: #FFFFFF;
  border: none;
  border-radius: calc(6 / 375 * 100vw);
  overflow: hidden;
  box-shadow: 0 calc(4 / 375 * 100vw) calc(20 / 375 * 100vw) rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .top-column__card {
    border: 1px solid #DADADA;
    border-radius: calc(8 / 1440 * 100vw);
    width: calc(360 / 1440 * 100vw);
    box-shadow: none;
  }
}
.top-column__nav--sp {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: calc(16 / 375 * 100vw);
  padding: calc(24 / 375 * 100vw) calc(40 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .top-column__nav--sp {
    display: none;
  }
}
.top-column__nav--pc {
  display: none;
}
@media (min-width: 768px) {
  .top-column__nav--pc {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: calc(40 / 1440 * 100vw);
    padding: calc(32 / 1440 * 100vw) calc(40 / 1440 * 100vw) 0 0;
  }
}
.top-column__arrows {
  display: flex;
  align-items: center;
  gap: calc(50 / 1440 * 100vw);
}
.top-column__indicators {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
@media (min-width: 768px) {
  .top-column__indicators {
    width: 100%;
  }
}
.top-column__indicator {
  flex: 1;
  width: auto;
  height: calc(2 / 375 * 100vw);
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}
@media (min-width: 768px) {
  .top-column__indicator {
    height: 0.0694444444vw;
    background: #DADADA;
  }
}
.top-column__indicator:hover {
  background: rgba(255, 255, 255, 0.6);
}
@media (min-width: 768px) {
  .top-column__indicator:hover {
    background: #A0A0A0;
  }
}
.top-column__indicator.is-active {
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .top-column__indicator.is-active {
    background: #676767;
  }
}
.top-column__more-sp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(10 / 375 * 100vw);
  width: calc(160 / 375 * 100vw);
  margin: calc(24 / 375 * 100vw) auto 0;
  padding: calc(12 / 375 * 100vw) calc(16 / 375 * 100vw);
  background: #FFFFFF;
  border-radius: calc(40 / 375 * 100vw);
  font-size: calc(14 / 375 * 100vw);
  color: #26292A;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .top-column__more-sp {
    display: none;
  }
}
.top-column__more-sp::after {
  content: "";
  display: block;
  width: calc(24 / 375 * 100vw);
  height: calc(24 / 375 * 100vw);
  background: url(../images/arrow-more.svg) no-repeat center;
  background-size: contain;
}
.top-column__more-sp:hover {
  opacity: 0.8;
}
.top-column__empty {
  color: #FFFFFF;
  text-align: center;
  padding: calc(40 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .top-column__empty {
    color: #26292A;
    padding: calc(60 / 1440 * 100vw) 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.top-about {
  position: relative;
}
.top-about__upper {
  padding: calc(80 / 375 * 100vw) calc(0 / 375 * 100vw) calc(40 / 375 * 100vw) calc(40 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-about__upper {
    padding: calc(60 / 1440 * 100vw) 0 calc(30 / 1440 * 100vw);
  }
}
.top-about__upper-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: calc(21 / 375 * 100vw);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .top-about__upper-inner {
    flex-direction: row;
    align-items: flex-start;
    padding-left: calc(120 / 1440 * 100vw);
    gap: calc(40 / 1440 * 100vw);
  }
}
.top-about__vertical {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  transform: translateX(-50%) translateY(calc(-20 / 375 * 100vw));
}
@media (min-width: 768px) {
  .top-about__vertical {
    position: unset;
    transform: unset;
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
    padding-top: calc(10 / 1440 * 100vw);
  }
}
.top-about__image {
  position: relative;
  width: 100%;
  height: calc(255 / 375 * 100vw);
  order: -1;
}
@media (min-width: 768px) {
  .top-about__image {
    transform: translateY(calc(-140 / 1440 * 100vw));
    margin-bottom: calc(-140 / 1440 * 100vw);
    width: calc(720 / 1440 * 100vw);
    height: calc(644 / 1440 * 100vw);
    flex-shrink: 0;
    order: 0;
  }
}
.top-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(4 / 375 * 100vw) 0 0 calc(4 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-about__image img {
    border-radius: calc(8 / 1440 * 100vw) 0 0 calc(8 / 1440 * 100vw);
  }
}
.top-about__image .credit {
  font-size: calc(8 / 375 * 100vw);
  bottom: calc(10 / 375 * 100vw);
  right: calc(10 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-about__image .credit {
    font-size: calc(10 / 1440 * 100vw);
    bottom: calc(17 / 1440 * 100vw);
    right: calc(15 / 1440 * 100vw);
  }
}
.top-about__content {
  flex: 1;
  padding-right: calc(40 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-about__content {
    padding-right: 0;
  }
}
.top-about__title {
  font-size: calc(24 / 375 * 100vw);
  font-weight: 500;
  margin-bottom: calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-about__title {
    font-size: calc(38 / 1440 * 100vw);
    margin-bottom: calc(40 / 1440 * 100vw);
  }
}
.top-about__text {
  font-size: calc(16 / 375 * 100vw);
  line-height: 2;
}
@media (min-width: 768px) {
  .top-about__text {
    font-size: calc(18 / 1440 * 100vw);
  }
}
.top-about__mission {
  padding: calc(20 / 375 * 100vw) calc(16 / 375 * 100vw) calc(78 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-about__mission {
    padding: calc(20 / 1440 * 100vw) calc(171 / 1440 * 100vw) calc(107 / 1440 * 100vw) calc(214 / 1440 * 100vw);
  }
}
.top-about__mission-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(28 / 375 * 100vw);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .top-about__mission-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: calc(122 / 1440 * 100vw);
  }
}
.top-about__figure {
  width: calc(295 / 375 * 100vw);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .top-about__figure {
    width: calc(475 / 1440 * 100vw);
  }
}
.top-about__figure img {
  width: 100%;
  height: auto;
}
.top-about__restore {
  position: relative;
}
.top-about__restore-header {
  position: relative;
}
@media (min-width: 768px) {
  .top-about__restore-header {
    display: flex;
    justify-content: center;
    background-image: url("../images/bg-about-bar.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    height: calc(435 / 1440 * 100vw);
    padding: calc(26 / 1440 * 100vw) 0;
  }
}
.top-about__restore-header::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(320 / 375 * 100vw);
  background: url("../images/bg-about-bar-sp.jpg") no-repeat center;
  background-size: cover;
}
@media (min-width: 768px) {
  .top-about__restore-header::before {
    display: none;
  }
}
.top-about__restore-header .credit {
  top: calc(280 / 375 * 100vw);
  right: calc(10 / 375 * 100vw);
  bottom: unset;
  font-size: calc(6 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-about__restore-header .credit {
    top: unset;
    bottom: calc(17 / 1440 * 100vw);
    right: calc(15 / 1440 * 100vw);
    font-size: calc(8 / 1440 * 100vw);
  }
}
.top-about__restore-body {
  padding: calc(18 / 375 * 100vw) calc(20 / 375 * 100vw) calc(160 / 375 * 100vw);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  background-image: url("../images/bg-about-sp.png");
}
@media (min-width: 768px) {
  .top-about__restore-body {
    background-image: url("../images/bg-about.png");
    padding: calc(50 / 1440 * 100vw) 0 calc(180 / 1440 * 100vw);
    text-align: center;
  }
}

.top-links {
  padding: calc(80 / 375 * 100vw) calc(20 / 375 * 100vw);
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .top-links {
    padding: calc(80 / 1440 * 100vw) 0 calc(20 / 1440 * 100vw);
    background: #FFFFFF;
  }
}
@media (min-width: 768px) {
  .top-links__inner {
    max-width: calc(710 / 1440 * 100vw);
    margin: 0 auto;
  }
}
.top-links__title {
  font-size: calc(28 / 375 * 100vw);
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  color: #26292A;
  margin-bottom: calc(30 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-links__title {
    font-size: calc(32 / 1440 * 100vw);
    margin-bottom: calc(50 / 1440 * 100vw);
  }
}
.top-links__items {
  display: grid;
  flex-direction: column;
  gap: calc(10 / 375 * 100vw);
}
@media (min-width: 768px) {
  .top-links__items {
    grid-template-columns: 1fr 1fr;
    gap: calc(30 / 1440 * 100vw);
  }
}
.top-links__item {
  width: 100%;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .top-links__item:hover {
    opacity: 0.8;
  }
}

@media (min-width: 768px) {
  .cm-contact {
    padding: calc(30 / 1440 * 100vw) calc(30 / 1440 * 100vw) calc(80 / 1440 * 100vw);
  }
}
.cm-contact--white {
  background: #FFFFFF;
}
.cm-contact--digital-archive {
  margin-top: 80px;
}
.cm-contact__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background-image: url("../images/bg-contact-sp.png");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 10;
  margin: 0 auto;
  padding: calc(36 / 375 * 100vw) calc(20 / 375 * 100vw) calc(24 / 375 * 100vw);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .cm-contact__inner {
    background-image: url("../images/bg-contact.png");
    align-items: center;
    width: calc(1094 / 1440 * 100vw);
    height: calc(207 / 1440 * 100vw);
    border-radius: calc(7 / 1440 * 100vw);
    padding: 0 calc(105 / 1440 * 100vw) 0 calc(90 / 1440 * 100vw);
  }
}
.cm-contact__inner:hover {
  opacity: 0.8;
}
.cm-contact__inner:hover::after {
  transform: translateX(calc(5 / 375 * 100vw));
}
@media (min-width: 768px) {
  .cm-contact__inner:hover::after {
    transform: translateX(calc(8 / 1440 * 100vw));
  }
}
.cm-contact__inner::after {
  content: "";
  display: block;
  width: calc(45 / 375 * 100vw);
  height: calc(45 / 375 * 100vw);
  background: url("../images/arrow-contact.svg") no-repeat center;
  background-size: 100% auto;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .cm-contact__inner::after {
    width: calc(64 / 1440 * 100vw);
    height: calc(64 / 1440 * 100vw);
  }
}
.cm-contact__inner .credit {
  bottom: 0;
  right: 0;
  padding: calc(12 / 375 * 100vw) calc(21 / 375 * 100vw);
  font-size: calc(6 / 375 * 100vw);
}
@media (min-width: 768px) {
  .cm-contact__inner .credit {
    padding: calc(17 / 1440 * 100vw) calc(15 / 1440 * 100vw);
    font-size: calc(8 / 1440 * 100vw);
  }
}
.cm-contact__content {
  color: #FFFFFF;
}
.cm-contact__lead {
  font-size: calc(24 / 375 * 100vw);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: calc(5 / 375 * 100vw);
}
@media (min-width: 768px) {
  .cm-contact__lead {
    line-height: 1.6;
    font-size: calc(36 / 1440 * 100vw);
    margin-bottom: calc(0 / 1440 * 100vw);
  }
}
.cm-contact__en {
  font-size: calc(14 / 375 * 100vw);
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: 500;
}
@media (min-width: 768px) {
  .cm-contact__en {
    font-size: calc(14 / 1440 * 100vw);
  }
}

.is-sp {
  display: block;
}
@media (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

.is-pc {
  display: none;
}
@media (min-width: 768px) {
  .is-pc {
    display: block;
  }
}

span.is-sp,
a.is-sp,
br.is-sp {
  display: inline;
}
@media (min-width: 768px) {
  span.is-sp,
  a.is-sp,
  br.is-sp {
    display: none;
  }
}

span.is-pc,
a.is-pc,
br.is-pc {
  display: none;
}
@media (min-width: 768px) {
  span.is-pc,
  a.is-pc,
  br.is-pc {
    display: inline;
  }
}

.topSolutionTitle__line {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: calc(24 / 375 * 100vw);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #BE9F4E;
  background: #FFFFFF;
  padding: calc(10 / 375 * 100vw) calc(6 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topSolutionTitle__line {
    letter-spacing: 0.1em;
    font-size: calc(30 / 1440 * 100vw);
    padding: calc(14 / 1440 * 100vw) calc(10 / 1440 * 100vw);
  }
}
.topSolutionTitle__line--txt {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .topSolutionTitleLead {
    display: flex;
    flex-direction: row-reverse;
    gap: calc(30 / 1440 * 100vw);
  }
}
.topSolutionTitleLead__item {
  display: block;
  font-size: calc(16 / 375 * 100vw);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #26292A;
  line-height: 2;
  text-align: center;
}
@media (min-width: 768px) {
  .topSolutionTitleLead__item {
    letter-spacing: 0.2em;
    line-height: 1;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-align: left;
    font-size: calc(16 / 1440 * 100vw);
  }
}
.topSolutionTitleLead__item--space {
  margin-top: calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topSolutionTitleLead__item--space {
    margin-top: 0;
  }
}

.topSolutionList__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  will-change: transform;
}
.topSolutionList__item {
  position: relative;
  flex-shrink: 0;
  width: calc(260 / 375 * 100vw);
  height: calc(173 / 375 * 100vw);
  margin-right: calc(4 / 375 * 100vw);
  border-radius: calc(6 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topSolutionList__item {
    width: calc(371 / 1440 * 100vw);
    height: calc(246 / 1440 * 100vw);
    margin-right: calc(6 / 1440 * 100vw);
    border-radius: calc(6 / 1440 * 100vw);
  }
}
.topSolutionList__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(6 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topSolutionList__item img {
    border-radius: calc(6 / 1440 * 100vw);
  }
}
.topSolutionList__item .credit {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: calc(17 / 375 * 100vw) calc(15 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topSolutionList__item .credit {
    bottom: 0;
    right: 0;
    padding: calc(17 / 1440 * 100vw) calc(15 / 1440 * 100vw);
  }
}

.topServiceStep__text {
  font-size: calc(16 / 375 * 100vw);
  line-height: 1.75;
  color: rgba(38, 41, 42, 0.8);
  text-align: left;
  margin-top: calc(20 / 375 * 100vw);
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .topServiceStep__text {
    font-size: calc(16 / 1440 * 100vw);
    margin-top: calc(20 / 1440 * 100vw);
    letter-spacing: 0.0385em;
  }
}
.topServiceStep__icon {
  width: calc(326 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topServiceStep__icon {
    width: auto;
  }
}

.topWorksCarousel__track {
  display: flex;
  gap: calc(10 / 375 * 100vw);
  padding: calc(6 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .topWorksCarousel__track {
    gap: calc(24 / 1440 * 100vw);
    padding: calc(8 / 1440 * 100vw) calc(40 / 1440 * 100vw) calc(8 / 1440 * 100vw) 0;
  }
}
.topWorksCarousel__track::before {
  content: "";
  flex-shrink: 0;
  width: calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topWorksCarousel__track::before {
    display: none;
    width: calc(40 / 1440 * 100vw);
  }
}
.topWorksCarousel__track::after {
  content: "";
  flex-shrink: 0;
  width: calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topWorksCarousel__track::after {
    width: calc(40 / 1440 * 100vw);
  }
}

.topWorksCard__link {
  display: block;
  text-decoration: none;
  color: #26292A;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .topWorksCard__link:hover {
    opacity: 0.8;
  }
}
.topWorksCard__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10.6;
  overflow: hidden;
}
.topWorksCard__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
  transition: transform 0.6s ease;
}
.topWorksCard__link:hover .topWorksCard__image img {
  transform: scale(1.05);
}
.topWorksCard__content {
  padding: calc(16 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topWorksCard__content {
    padding: calc(20 / 1440 * 100vw);
  }
}
.topWorksCard__meta {
  display: flex;
  align-items: center;
  gap: calc(8 / 375 * 100vw);
  margin-bottom: calc(12 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topWorksCard__meta {
    gap: calc(16 / 1440 * 100vw);
    margin-bottom: calc(12 / 1440 * 100vw);
  }
}
.topWorksCard__date {
  display: none;
}
@media (min-width: 768px) {
  .topWorksCard__date {
    display: block;
    font-size: calc(20 / 1440 * 100vw);
  }
}
.topWorksCard__cat {
  font-size: calc(12 / 375 * 100vw);
  color: #26292A;
  padding: calc(6 / 375 * 100vw) calc(12 / 375 * 100vw);
  line-height: 1;
  background: rgba(38, 41, 42, 0.08);
  border-radius: calc(4 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topWorksCard__cat {
    font-size: calc(16 / 1440 * 100vw);
    padding: calc(6 / 1440 * 100vw) calc(15 / 1440 * 100vw);
    border-radius: 0;
  }
}
.topWorksCard__title {
  font-size: calc(16 / 375 * 100vw);
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: calc(8 / 375 * 100vw);
  display: flex;
  align-items: flex-start;
  gap: calc(6 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topWorksCard__title {
    font-size: calc(20 / 1440 * 100vw);
    margin-bottom: calc(5 / 1440 * 100vw);
    gap: calc(8 / 1440 * 100vw);
  }
}
.topWorksCard__title::before {
  content: "";
  width: calc(6 / 375 * 100vw);
  height: calc(6 / 375 * 100vw);
  border-radius: 50%;
  background-color: #B3A47C;
  flex-shrink: 0;
  margin-top: calc(12 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topWorksCard__title::before {
    width: calc(6 / 1440 * 100vw);
    height: calc(6 / 1440 * 100vw);
    margin-top: calc(15 / 1440 * 100vw);
  }
}
.topWorksCard__excerpt {
  font-size: calc(13 / 375 * 100vw);
  line-height: 1.75;
  color: rgba(38, 41, 42, 0.7);
  margin-bottom: calc(16 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topWorksCard__excerpt {
    font-size: calc(16 / 1440 * 100vw);
    margin-bottom: calc(20 / 1440 * 100vw);
  }
}
.topWorksCard__btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: calc(8 / 375 * 100vw);
  font-size: calc(13 / 375 * 100vw);
  line-height: 1.5;
}
@media (min-width: 768px) {
  .topWorksCard__btn {
    gap: calc(10 / 1440 * 100vw);
    font-size: calc(14 / 1440 * 100vw);
  }
}
.topWorksCard__btn::after {
  content: "";
  width: calc(18 / 375 * 100vw);
  height: calc(6 / 375 * 100vw);
  background: url("../images/arrow-card-btn.svg") no-repeat center;
  background-size: contain;
}
@media (min-width: 768px) {
  .topWorksCard__btn::after {
    width: calc(18 / 1440 * 100vw);
    height: calc(6 / 1440 * 100vw);
  }
}

.topWorksNav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(44 / 375 * 100vw);
  height: calc(44 / 375 * 100vw);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: calc(20 / 375 * 100vw) calc(7 / 375 * 100vw);
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  filter: brightness(0) invert(1);
}
@media (min-width: 768px) {
  .topWorksNav__btn {
    width: calc(56 / 1440 * 100vw);
    height: calc(56 / 1440 * 100vw);
    background-size: calc(20 / 1440 * 100vw) calc(7 / 1440 * 100vw);
    border-color: #26292A;
    filter: none;
  }
}
.topWorksNav__btn--prev {
  background-image: url("../images/icn-prev.svg");
}
.topWorksNav__btn--next {
  background-image: url("../images/icn-next.svg");
}
@media (min-width: 768px) {
  .topWorksNav__btn:hover {
    opacity: 0.8;
  }
}

.topNewsCarousel__track {
  display: flex;
  gap: calc(10 / 375 * 100vw);
  padding: calc(6 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .topNewsCarousel__track {
    gap: calc(24 / 1440 * 100vw);
    padding: calc(8 / 1440 * 100vw) calc(40 / 1440 * 100vw) calc(8 / 1440 * 100vw) 0;
  }
}
.topNewsCarousel__track::before {
  content: "";
  flex-shrink: 0;
  width: calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topNewsCarousel__track::before {
    display: none;
  }
}
.topNewsCarousel__track::after {
  content: "";
  flex-shrink: 0;
  width: calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topNewsCarousel__track::after {
    width: calc(40 / 1440 * 100vw);
  }
}

.topNewsCard__link {
  display: block;
  text-decoration: none;
  color: #26292A;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .topNewsCard__link:hover {
    opacity: 0.8;
  }
}
.topNewsCard__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.topNewsCard__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.topNewsCard__link:hover .topNewsCard__image img {
  transform: scale(1.05);
}
.topNewsCard__content {
  padding: calc(12 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topNewsCard__content {
    padding: calc(20 / 1440 * 100vw);
  }
}
.topNewsCard__meta {
  display: flex;
  align-items: center;
  gap: calc(8 / 375 * 100vw);
  margin-bottom: calc(10 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topNewsCard__meta {
    gap: calc(16 / 1440 * 100vw);
    margin-bottom: calc(12 / 1440 * 100vw);
  }
}
.topNewsCard__cat {
  font-size: calc(11 / 375 * 100vw);
  color: #26292A;
  padding: calc(4 / 375 * 100vw) calc(10 / 375 * 100vw);
  line-height: 1;
  background: rgba(38, 41, 42, 0.08);
}
@media (min-width: 768px) {
  .topNewsCard__cat {
    font-size: calc(16 / 1440 * 100vw);
    padding: calc(6 / 1440 * 100vw) calc(15 / 1440 * 100vw);
  }
}
.topNewsCard__title {
  font-size: calc(14 / 375 * 100vw);
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: calc(12 / 375 * 100vw);
  display: flex;
  align-items: flex-start;
  gap: calc(6 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topNewsCard__title {
    font-size: calc(20 / 1440 * 100vw);
    margin-bottom: calc(20 / 1440 * 100vw);
    gap: calc(8 / 1440 * 100vw);
  }
}
.topNewsCard__title::before {
  content: "";
  width: calc(6 / 375 * 100vw);
  height: calc(6 / 375 * 100vw);
  border-radius: 50%;
  background-color: #26292A;
  flex-shrink: 0;
  margin-top: calc(9 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topNewsCard__title::before {
    width: calc(6 / 1440 * 100vw);
    height: calc(6 / 1440 * 100vw);
    margin-top: calc(15 / 1440 * 100vw);
  }
}
.topNewsCard__btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: calc(8 / 375 * 100vw);
  font-size: calc(12 / 375 * 100vw);
  line-height: 1.5;
}
@media (min-width: 768px) {
  .topNewsCard__btn {
    gap: calc(10 / 1440 * 100vw);
    font-size: calc(14 / 1440 * 100vw);
  }
}
.topNewsCard__btn::after {
  content: "";
  width: calc(14 / 375 * 100vw);
  height: calc(5 / 375 * 100vw);
  background: url("../images/arrow-card-btn.svg") no-repeat center;
  background-size: contain;
}
@media (min-width: 768px) {
  .topNewsCard__btn::after {
    width: calc(18 / 1440 * 100vw);
    height: calc(6 / 1440 * 100vw);
  }
}

.topNewsNav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(44 / 375 * 100vw);
  height: calc(44 / 375 * 100vw);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: calc(20 / 375 * 100vw) calc(7 / 375 * 100vw);
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  filter: brightness(0) invert(1);
}
@media (min-width: 768px) {
  .topNewsNav__btn {
    width: calc(56 / 1440 * 100vw);
    height: calc(56 / 1440 * 100vw);
    background-size: calc(20 / 1440 * 100vw) calc(7 / 1440 * 100vw);
    border-color: #26292A;
    filter: none;
  }
}
.topNewsNav__btn--prev {
  background-image: url("../images/icn-prev.svg");
}
.topNewsNav__btn--next {
  background-image: url("../images/icn-next.svg");
}
@media (min-width: 768px) {
  .topNewsNav__btn:hover {
    opacity: 0.8;
  }
}

.topColumnCarousel__track {
  display: flex;
  gap: calc(10 / 375 * 100vw);
  padding: calc(6 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .topColumnCarousel__track {
    gap: calc(24 / 1440 * 100vw);
    padding: calc(8 / 1440 * 100vw) calc(40 / 1440 * 100vw) calc(8 / 1440 * 100vw) 0;
  }
}
.topColumnCarousel__track::before {
  content: "";
  flex-shrink: 0;
  width: calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topColumnCarousel__track::before {
    display: none;
  }
}
.topColumnCarousel__track::after {
  content: "";
  flex-shrink: 0;
  width: calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topColumnCarousel__track::after {
    width: calc(40 / 1440 * 100vw);
  }
}

.topColumnCard__link {
  display: block;
  text-decoration: none;
  color: #26292A;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .topColumnCard__link:hover {
    opacity: 0.8;
  }
}
.topColumnCard__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.topColumnCard__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.topColumnCard__link:hover .topColumnCard__image img {
  transform: scale(1.05);
}
.topColumnCard__content {
  padding: calc(12 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topColumnCard__content {
    padding: calc(20 / 1440 * 100vw);
  }
}
.topColumnCard__meta {
  display: flex;
  align-items: center;
  gap: calc(8 / 375 * 100vw);
  margin-bottom: calc(10 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topColumnCard__meta {
    gap: calc(16 / 1440 * 100vw);
    margin-bottom: calc(12 / 1440 * 100vw);
  }
}
.topColumnCard__date {
  font-size: calc(14 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topColumnCard__date {
    font-size: calc(20 / 1440 * 100vw);
  }
}
.topColumnCard__cat {
  font-size: calc(11 / 375 * 100vw);
  color: #26292A;
  padding: calc(4 / 375 * 100vw) calc(10 / 375 * 100vw);
  line-height: 1;
  background: rgba(38, 41, 42, 0.08);
}
@media (min-width: 768px) {
  .topColumnCard__cat {
    font-size: calc(16 / 1440 * 100vw);
    padding: calc(6 / 1440 * 100vw) calc(15 / 1440 * 100vw);
  }
}
.topColumnCard__title {
  font-size: calc(14 / 375 * 100vw);
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: calc(12 / 375 * 100vw);
  display: flex;
  align-items: flex-start;
  gap: calc(6 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topColumnCard__title {
    font-size: calc(20 / 1440 * 100vw);
    margin-bottom: calc(20 / 1440 * 100vw);
    gap: calc(8 / 1440 * 100vw);
  }
}
.topColumnCard__title::before {
  content: "";
  width: calc(6 / 375 * 100vw);
  height: calc(6 / 375 * 100vw);
  border-radius: 50%;
  background-color: #678B8F;
  flex-shrink: 0;
  margin-top: calc(9 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topColumnCard__title::before {
    width: calc(6 / 1440 * 100vw);
    height: calc(6 / 1440 * 100vw);
    margin-top: calc(15 / 1440 * 100vw);
  }
}
.topColumnCard__btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: calc(8 / 375 * 100vw);
  font-size: calc(12 / 375 * 100vw);
  line-height: 1.5;
}
@media (min-width: 768px) {
  .topColumnCard__btn {
    gap: calc(10 / 1440 * 100vw);
    font-size: calc(14 / 1440 * 100vw);
  }
}
.topColumnCard__btn::after {
  content: "";
  width: calc(14 / 375 * 100vw);
  height: calc(5 / 375 * 100vw);
  background: url("../images/arrow-card-btn.svg") no-repeat center;
  background-size: contain;
}
@media (min-width: 768px) {
  .topColumnCard__btn::after {
    width: calc(18 / 1440 * 100vw);
    height: calc(6 / 1440 * 100vw);
  }
}

.topColumnNav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(44 / 375 * 100vw);
  height: calc(44 / 375 * 100vw);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: calc(20 / 375 * 100vw) calc(7 / 375 * 100vw);
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  filter: brightness(0) invert(1);
}
@media (min-width: 768px) {
  .topColumnNav__btn {
    width: calc(56 / 1440 * 100vw);
    height: calc(56 / 1440 * 100vw);
    background-size: calc(20 / 1440 * 100vw) calc(7 / 1440 * 100vw);
    border-color: #26292A;
    filter: none;
  }
}
.topColumnNav__btn--prev {
  background-image: url("../images/icn-prev.svg");
}
.topColumnNav__btn--next {
  background-image: url("../images/icn-next.svg");
}
@media (min-width: 768px) {
  .topColumnNav__btn:hover {
    opacity: 0.8;
  }
}

.topAboutVertical__text {
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
  color: #FFFFFF;
  background: #26292A;
  font-size: calc(18 / 375 * 100vw);
  font-weight: 500;
  padding: calc(10 / 375 * 100vw) calc(4 / 375 * 100vw) calc(5 / 375 * 100vw);
  border-radius: calc(3 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topAboutVertical__text {
    letter-spacing: 0.1em;
    font-size: calc(24 / 1440 * 100vw);
    padding: calc(18 / 1440 * 100vw) calc(4 / 1440 * 100vw) calc(12 / 1440 * 100vw);
    border-radius: calc(3 / 1440 * 100vw);
  }
}

.topAboutMission__content {
  color: #26292A;
  padding: 0 calc(24 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topAboutMission__content {
    padding: calc(82 / 1440 * 100vw) 0 0 0;
  }
}
.topAboutMission__title {
  font-size: calc(24 / 375 * 100vw);
  font-weight: 500;
  margin-bottom: calc(20 / 375 * 100vw);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .topAboutMission__title {
    font-size: calc(38 / 1440 * 100vw);
    margin-bottom: calc(40 / 1440 * 100vw);
  }
}
.topAboutMission__text {
  font-size: calc(16 / 375 * 100vw);
  line-height: 2;
}
@media (min-width: 768px) {
  .topAboutMission__text {
    font-size: calc(18 / 1440 * 100vw);
  }
}

.topAboutRestore__title {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: calc(5 / 375 * 100vw);
  align-items: flex-start;
  padding: calc(20 / 375 * 100vw) calc(20 / 375 * 100vw) calc(20 / 375 * 100vw) calc(70 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topAboutRestore__title {
    padding: 0;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: calc(10 / 1440 * 100vw);
    transform: translateX(calc(20 / 1440 * 100vw));
  }
}
.topAboutRestore__titleItem {
  font-size: calc(24 / 375 * 100vw);
  font-weight: 500;
  color: #BE9F4E;
  background: #FFFFFF;
  padding: calc(10 / 375 * 100vw) calc(8 / 375 * 100vw);
  line-height: 1.1;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .topAboutRestore__titleItem {
    line-height: 1.3;
    writing-mode: vertical-rl;
    font-size: calc(30 / 1440 * 100vw);
    padding: calc(10 / 1440 * 100vw) calc(5 / 1440 * 100vw) calc(5 / 1440 * 100vw);
    letter-spacing: 0.12em;
  }
}
.topAboutRestore__titleEn {
  position: absolute;
  top: 0;
  left: calc(20 / 375 * 100vw);
  transform: translateY(calc(-24 / 375 * 100vw));
  writing-mode: vertical-rl;
  font-size: calc(18 / 375 * 100vw);
  color: #FFFFFF;
  background: #26292A;
  font-weight: 500;
  border-radius: calc(3 / 375 * 100vw);
  padding: calc(10 / 375 * 100vw) calc(6 / 375 * 100vw);
  letter-spacing: 0.2em;
}
@media (min-width: 768px) {
  .topAboutRestore__titleEn {
    position: unset;
    transform: translateY(0%);
    border: 1px solid #FFFFFF;
    letter-spacing: 0.16em;
    font-size: calc(20 / 1440 * 100vw);
    border-radius: calc(3 / 1440 * 100vw);
    padding: calc(9 / 1440 * 100vw) calc(6 / 1440 * 100vw);
    margin-left: calc(7 / 1440 * 100vw);
  }
}

.topAboutRestoreBody__text {
  font-size: calc(16 / 375 * 100vw);
  line-height: 2;
  color: #26292A;
  letter-spacing: 0.04em;
  margin-bottom: calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .topAboutRestoreBody__text {
    font-size: calc(18 / 1440 * 100vw);
    margin-bottom: calc(30 / 1440 * 100vw);
    letter-spacing: 0.03em;
  }
}
.topAboutRestoreBody__text:last-child {
  margin-bottom: 0;
}

.credit {
  position: absolute;
  bottom: calc(25 / 375 * 100vw);
  right: calc(15 / 375 * 100vw);
  z-index: 10;
  font-weight: 500;
  line-height: 1.5;
  font-size: calc(8 / 375 * 100vw);
  color: #FFFFFF;
  width: fit-content;
  text-align: left;
}
@media (min-width: 768px) {
  .credit {
    font-size: calc(10 / 1440 * 100vw);
    bottom: calc(30 / 1440 * 100vw);
    right: calc(35 / 1440 * 100vw);
  }
}

.site-policy-page {
  background-color: #FFFFFF;
}

.policy {
  padding: calc(30 / 375 * 100vw) calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .policy {
    padding: calc(50 / 1440 * 100vw) 0;
  }
}
@media (min-width: 768px) {
  .policy__inner {
    width: calc(850 / 1440 * 100vw);
    margin: 0 auto;
  }
}
.policy__lead {
  font-size: calc(16 / 375 * 100vw);
  line-height: 1.75;
  color: #26292A;
  font-weight: 500;
  margin-bottom: calc(38 / 375 * 100vw);
}
@media (min-width: 768px) {
  .policy__lead {
    font-size: calc(16 / 1440 * 100vw);
    margin-bottom: calc(60 / 1440 * 100vw);
    padding: 0 calc(50 / 1440 * 100vw);
  }
}
.policy__section {
  padding: calc(40 / 375 * 100vw) 0;
  border-top: 2px dashed #DADADA;
}
@media (min-width: 768px) {
  .policy__section {
    padding: calc(50 / 1440 * 100vw);
  }
}
.policy__section:last-of-type {
  border-bottom: 2px dashed #DADADA;
}
.policy__heading {
  font-size: calc(20 / 375 * 100vw);
  font-weight: 500;
  line-height: 1.75;
  color: #26292A;
  margin-bottom: calc(15 / 375 * 100vw);
}
@media (min-width: 768px) {
  .policy__heading {
    font-size: calc(20 / 1440 * 100vw);
    margin-bottom: calc(15 / 1440 * 100vw);
  }
}
.policy__content p {
  font-size: calc(16 / 375 * 100vw);
  line-height: 1.75;
  color: #26292A;
}
@media (min-width: 768px) {
  .policy__content p {
    font-size: calc(16 / 1440 * 100vw);
  }
}
.policy__list {
  list-style: none;
  padding: 0;
  margin: calc(25 / 375 * 100vw) 0 0 0;
}
@media (min-width: 768px) {
  .policy__list {
    margin: calc(20 / 1440 * 100vw) 0 0 calc(20 / 1440 * 100vw);
  }
}
.policy__list li {
  position: relative;
  font-size: calc(16 / 375 * 100vw);
  line-height: 1.75;
  color: #26292A;
  padding-left: calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .policy__list li {
    font-size: calc(16 / 1440 * 100vw);
    padding-left: calc(20 / 1440 * 100vw);
  }
}
.policy__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #26292A;
}
.policy__date {
  font-size: calc(16 / 375 * 100vw);
  line-height: 1.75;
  color: #26292A;
  font-weight: 500;
  margin-top: calc(38 / 375 * 100vw);
}
@media (min-width: 768px) {
  .policy__date {
    font-size: calc(16 / 1440 * 100vw);
    margin-top: calc(60 / 1440 * 100vw);
    padding: 0 calc(50 / 1440 * 100vw);
  }
}

.columnArchive {
  padding: calc(30 / 375 * 100vw) calc(20 / 375 * 100vw) calc(60 / 375 * 100vw);
}
@media (min-width: 768px) {
  .columnArchive {
    padding: calc(50 / 1440 * 100vw) calc(40 / 1440 * 100vw) calc(100 / 1440 * 100vw);
  }
}
@media (min-width: 768px) {
  .columnArchive__inner {
    width: calc(1140 / 1440 * 100vw);
    margin: 0 auto;
  }
}
.columnArchive__empty {
  text-align: center;
  font-size: calc(14 / 375 * 100vw);
  color: #26292A;
  padding: calc(40 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .columnArchive__empty {
    font-size: calc(16 / 1440 * 100vw);
    padding: calc(60 / 1440 * 100vw) 0;
  }
}
.columnArchive__grid {
  padding-top: calc(60 / 375 * 100vw);
}
@media (min-width: 768px) {
  .columnArchive__grid {
    padding-top: calc(80 / 1440 * 100vw);
  }
}

.columnFilter__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: calc(10 / 375 * 100vw);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .columnFilter__list {
    justify-content: center;
    gap: calc(15 / 1440 * 100vw);
  }
}
.columnFilter__link {
  display: flex;
  align-items: center;
  gap: calc(10 / 375 * 100vw);
  padding: calc(6 / 375 * 100vw) calc(14 / 375 * 100vw);
  font-size: calc(16 / 375 * 100vw);
  background-color: transparent;
  border-radius: calc(4 / 375 * 100vw);
  text-decoration: none;
  transition: all 0.3s ease;
  color: #BBBBBB;
  border: 1px solid #DADADA;
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  .columnFilter__link {
    padding: calc(8 / 1440 * 100vw) calc(20 / 1440 * 100vw);
    font-size: calc(18 / 1440 * 100vw);
    border-radius: calc(4 / 1440 * 100vw);
    gap: calc(10 / 1440 * 100vw);
  }
}
.columnFilter__link::before {
  content: "";
  display: block;
  width: calc(22 / 375 * 100vw);
  height: calc(22 / 375 * 100vw);
  background-image: url(../images/icn-radio.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .columnFilter__link::before {
    width: calc(22 / 1440 * 100vw);
    height: calc(22 / 1440 * 100vw);
  }
}
.columnFilter__link:hover {
  border-color: #A0A0A0;
}
.columnFilter__link.is-active {
  color: #26292A;
  border: 1px solid #26292A;
  background-color: #FFFFFF;
}
.columnFilter__link.is-active::before {
  background-image: url(../images/icn-radio-active.svg);
}

.columnGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(20 / 375 * 100vw);
  margin-bottom: calc(60 / 375 * 100vw);
}
@media (min-width: 768px) {
  .columnGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: calc(60 / 1440 * 100vw) calc(30 / 1440 * 100vw);
    margin-bottom: calc(120 / 1440 * 100vw);
  }
}
.columnCard__link {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .columnCard__link:hover {
    opacity: 0.8;
  }
}
.columnCard__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 335/223;
  border-radius: calc(4 / 375 * 100vw);
}
@media (min-width: 768px) {
  .columnCard__image {
    aspect-ratio: 360/240;
    border-radius: calc(6 / 1440 * 100vw) calc(6 / 1440 * 100vw) 0 0;
  }
}
.columnCard__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.columnCard__content {
  background-color: #FFFFFF;
  padding: calc(15 / 375 * 100vw) calc(20 / 375 * 100vw) calc(15 / 375 * 100vw);
  border: 1px solid #DADADA;
  border-radius: 0 0 calc(8 / 375 * 100vw) calc(8 / 375 * 100vw);
}
@media (min-width: 768px) {
  .columnCard__content {
    padding: calc(16 / 1440 * 100vw) calc(20 / 1440 * 100vw) calc(15 / 1440 * 100vw);
    border-radius: 0 0 calc(8 / 1440 * 100vw) calc(8 / 1440 * 100vw);
  }
}
.columnCard__meta {
  display: flex;
  align-items: center;
  gap: calc(12 / 375 * 100vw);
  margin-bottom: calc(10 / 375 * 100vw);
}
@media (min-width: 768px) {
  .columnCard__meta {
    gap: calc(15 / 1440 * 100vw);
    margin-bottom: calc(10 / 1440 * 100vw);
  }
}
.columnCard__date {
  font-size: calc(18 / 375 * 100vw);
  font-family: "Cormorant Garamond", serif;
  color: #26292A;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .columnCard__date {
    font-size: calc(20 / 1440 * 100vw);
  }
}
.columnCard__cat {
  font-size: calc(12 / 375 * 100vw);
  color: #26292A;
  padding: calc(6 / 375 * 100vw) calc(12 / 375 * 100vw);
  line-height: 1;
  background: rgba(38, 41, 42, 0.08);
  border-radius: calc(4 / 375 * 100vw);
}
@media (min-width: 768px) {
  .columnCard__cat {
    font-size: calc(16 / 1440 * 100vw);
    padding: calc(6 / 1440 * 100vw) calc(15 / 1440 * 100vw);
    border-radius: 0;
  }
}
.columnCard__title {
  display: flex;
  align-items: flex-start;
  gap: calc(5 / 375 * 100vw);
  margin-bottom: calc(10 / 375 * 100vw);
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .columnCard__title {
    gap: calc(10 / 1440 * 100vw);
    font-size: calc(20 / 1440 * 100vw);
    margin-bottom: calc(15 / 1440 * 100vw);
  }
}
.columnCard__title span {
  font-size: calc(18 / 375 * 100vw);
  font-weight: 500;
  color: #26292A;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .columnCard__title span {
    font-size: calc(20 / 1440 * 100vw);
  }
}
.columnCard__title::before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: calc(6 / 375 * 100vw);
  height: calc(6 / 375 * 100vw);
  transform: translateY(calc(14 / 375 * 100vw));
  border-radius: 50%;
  background-color: #678B8F;
}
@media (min-width: 768px) {
  .columnCard__title::before {
    transform: translateY(calc(16 / 1440 * 100vw));
    width: calc(6 / 1440 * 100vw);
    height: calc(6 / 1440 * 100vw);
  }
}
.columnCard__btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: calc(10 / 375 * 100vw);
  font-size: calc(13 / 375 * 100vw);
  color: #26292A;
  text-decoration: none;
}
@media (min-width: 768px) {
  .columnCard__btn {
    gap: calc(10 / 1440 * 100vw);
    font-size: calc(13 / 1440 * 100vw);
  }
}
.columnCard__btn::after {
  content: "";
  display: inline-block;
  width: calc(20 / 375 * 100vw);
  height: calc(20 / 375 * 100vw);
  background-image: url("../images/arrow-columnCard.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .columnCard__btn::after {
    width: calc(20 / 1440 * 100vw);
    height: calc(20 / 1440 * 100vw);
  }
}

.columnPagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(16 / 375 * 100vw);
}
@media (min-width: 768px) {
  .columnPagination {
    gap: calc(24 / 1440 * 100vw);
  }
}
.columnPagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(40 / 375 * 100vw);
  height: calc(40 / 375 * 100vw);
  color: #26292A;
  border: 1px solid #DADADA;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .columnPagination__arrow {
    width: calc(48 / 1440 * 100vw);
    height: calc(48 / 1440 * 100vw);
  }
}
.columnPagination__arrow svg {
  width: calc(20 / 375 * 100vw);
  height: calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .columnPagination__arrow svg {
    width: calc(24 / 1440 * 100vw);
    height: calc(24 / 1440 * 100vw);
  }
}
.columnPagination__arrow:hover:not(.is-disabled) {
  border-color: #26292A;
  background-color: #26292A;
  color: #FFFFFF;
}
.columnPagination__arrow.is-disabled {
  opacity: 0.3;
  cursor: default;
}
.columnPagination__numbers {
  display: flex;
  align-items: center;
  gap: calc(8 / 375 * 100vw);
}
@media (min-width: 768px) {
  .columnPagination__numbers {
    gap: calc(12 / 1440 * 100vw);
  }
}
.columnPagination__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(40 / 375 * 100vw);
  height: calc(40 / 375 * 100vw);
  font-size: calc(14 / 375 * 100vw);
  font-family: "Cormorant Garamond", serif;
  color: #26292A;
  border: 1px solid #DADADA;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .columnPagination__number {
    width: calc(48 / 1440 * 100vw);
    height: calc(48 / 1440 * 100vw);
    font-size: calc(16 / 1440 * 100vw);
  }
}
.columnPagination__number:hover:not(.is-current) {
  border-color: #26292A;
}
.columnPagination__number.is-current {
  color: #FFFFFF;
  background-color: #26292A;
  border-color: #26292A;
}

.columnHero {
  padding: calc(10 / 375 * 100vw);
}
@media (min-width: 768px) {
  .columnHero {
    padding: calc(30 / 1440 * 100vw);
  }
}
.columnHero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  border-radius: calc(15 / 375 * 100vw);
  background-color: #26292A;
  overflow: hidden;
}
@media (min-width: 768px) {
  .columnHero__inner {
    height: calc(600 / 1440 * 100vw);
    padding: calc(21 / 1440 * 100vw) calc(50 / 1440 * 100vw);
    border-radius: calc(15 / 1440 * 100vw);
  }
}
.columnHero__img {
  width: 100%;
  height: calc(320 / 375 * 100vw);
  margin-bottom: calc(-12 / 375 * 100vw);
}
@media (min-width: 768px) {
  .columnHero__img {
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
}
.columnHero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.columnHero__img::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.columnHero__content {
  position: relative;
  z-index: 5;
  max-width: 1000px;
  padding: 0 calc(20 / 375 * 100vw) calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .columnHero__content {
    padding: 0;
  }
}
.columnHero__title {
  font-size: calc(26 / 375 * 100vw);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: calc(10 / 375 * 100vw);
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .columnHero__title {
    font-size: calc(36 / 1440 * 100vw);
    margin-bottom: calc(10 / 1440 * 100vw);
  }
}
.columnHero__meta {
  display: flex;
  align-items: center;
  gap: calc(12 / 375 * 100vw);
}
@media (min-width: 768px) {
  .columnHero__meta {
    gap: calc(15 / 1440 * 100vw);
  }
}
.columnHero__date {
  font-size: calc(16 / 375 * 100vw);
  font-family: "Cormorant Garamond", serif;
  color: #FFFFFF;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .columnHero__date {
    font-size: calc(20 / 1440 * 100vw);
  }
}
.columnHero__cat {
  display: inline-block;
  padding: calc(6 / 375 * 100vw) calc(15 / 375 * 100vw);
  font-size: calc(14 / 375 * 100vw);
  line-height: 1;
  background-color: #678B8F;
  border-radius: calc(40 / 375 * 100vw);
}
@media (min-width: 768px) {
  .columnHero__cat {
    padding: calc(6 / 1440 * 100vw) calc(15 / 1440 * 100vw);
    font-size: calc(16 / 1440 * 100vw);
    border-radius: calc(40 / 1440 * 100vw);
  }
}
.columnHero--hasImage .columnHero__inner {
  background-size: cover;
  background-position: center;
}

.columnContent {
  padding: calc(82 / 375 * 100vw) calc(20 / 375 * 100vw) calc(50 / 375 * 100vw);
  background-color: #fff;
}
@media (min-width: 768px) {
  .columnContent {
    width: calc(1380 / 1440 * 100vw);
    margin: 0 auto calc(90 / 1440 * 100vw);
    padding: calc(80 / 1440 * 100vw) 0 calc(50 / 1440 * 100vw);
    border-radius: calc(16 / 1440 * 100vw);
  }
}
@media (min-width: 768px) {
  .columnContent__inner {
    width: calc(752 / 1440 * 100vw);
    margin: 0 auto;
  }
}
.columnContent h2 {
  display: flex;
  align-items: flex-start;
  font-size: calc(20 / 375 * 100vw);
  font-weight: 700;
  color: #26292A;
  line-height: 1.75;
  padding-bottom: calc(10 / 375 * 100vw);
  gap: calc(10 / 375 * 100vw);
  border-bottom: 1px dashed #DADADA;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .columnContent h2 {
    gap: calc(15 / 1440 * 100vw);
    font-size: calc(24 / 1440 * 100vw);
    padding-bottom: calc(20 / 1440 * 100vw);
  }
}
.columnContent h2::before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: calc(6 / 375 * 100vw);
  height: calc(6 / 375 * 100vw);
  transform: translateY(calc(14 / 375 * 100vw));
  border-radius: 50%;
  background-color: #B3A47C;
}
@media (min-width: 768px) {
  .columnContent h2::before {
    transform: translateY(calc(17 / 1440 * 100vw));
    width: calc(8 / 1440 * 100vw);
    height: calc(8 / 1440 * 100vw);
  }
}
.columnContent h3 {
  font-size: calc(18 / 375 * 100vw);
  font-weight: 700;
  color: #26292A;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .columnContent h3 {
    font-size: calc(20 / 1440 * 100vw);
  }
}
.columnContent h4 {
  font-size: calc(16 / 375 * 100vw);
  font-weight: 500;
  color: #26292A;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .columnContent h4 {
    font-size: calc(18 / 1440 * 100vw);
  }
}
.columnContent .wp-block-group {
  border: 1px solid #DADADA;
  border-radius: calc(8 / 375 * 100vw);
  padding: calc(30 / 375 * 100vw) calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .columnContent .wp-block-group {
    padding: calc(30 / 1440 * 100vw) calc(20 / 1440 * 100vw);
    border-radius: calc(8 / 1440 * 100vw);
  }
}
.columnContent .wp-block-group ul {
  margin: 0;
}
.columnContent p {
  font-size: calc(16 / 375 * 100vw);
  color: #26292A;
  line-height: 1.75;
  margin-bottom: calc(24 / 375 * 100vw);
}
@media (min-width: 768px) {
  .columnContent p {
    font-size: calc(16 / 1440 * 100vw);
    margin-bottom: calc(25 / 1440 * 100vw);
  }
}
.columnContent p:last-child {
  margin-bottom: 0;
}
.columnContent p .has-inline-color {
  font-weight: bold;
}
.columnContent strong {
  color: #26292A;
}
.columnContent em {
  font-style: normal;
  background: linear-gradient(transparent 60%, rgba(196, 165, 91, 0.3) 60%);
}
.columnContent ul,
.columnContent ol {
  padding-left: calc(24 / 375 * 100vw);
}
@media (min-width: 768px) {
  .columnContent ul,
  .columnContent ol {
    padding-left: calc(32 / 1440 * 100vw);
  }
}
.columnContent ul {
  list-style: disc;
}
.columnContent ol {
  list-style: decimal;
}
.columnContent li {
  font-size: calc(15 / 375 * 100vw);
  color: #26292A;
  line-height: 2;
  margin-bottom: calc(12 / 375 * 100vw);
}
@media (min-width: 768px) {
  .columnContent li {
    font-size: calc(16 / 1440 * 100vw);
    margin-bottom: calc(16 / 1440 * 100vw);
  }
}
.columnContent li:last-child {
  margin-bottom: 0;
}
.columnContent img {
  max-width: 100%;
  height: auto;
  border-radius: calc(8 / 375 * 100vw);
  margin: calc(32 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .columnContent img {
    border-radius: calc(8 / 1440 * 100vw);
    margin: calc(48 / 1440 * 100vw) 0;
  }
}
.columnContent figure {
  margin: calc(32 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .columnContent figure {
    margin: calc(30 / 1440 * 100vw) 0;
  }
}
.columnContent figure img {
  margin: 0;
}
.columnContent figure figcaption {
  font-size: calc(13 / 375 * 100vw);
  color: rgba(38, 41, 42, 0.7);
  text-align: center;
  margin-top: calc(12 / 375 * 100vw);
}
@media (min-width: 768px) {
  .columnContent figure figcaption {
    font-size: calc(14 / 1440 * 100vw);
    margin-top: calc(16 / 1440 * 100vw);
  }
}
.columnContent blockquote {
  margin: calc(32 / 375 * 100vw) 0;
  padding: calc(24 / 375 * 100vw);
  background-color: rgba(38, 41, 42, 0.03);
  border-radius: calc(8 / 375 * 100vw);
}
@media (min-width: 768px) {
  .columnContent blockquote {
    margin: calc(48 / 1440 * 100vw) 0;
    padding: calc(32 / 1440 * 100vw);
    border-radius: calc(8 / 1440 * 100vw);
  }
}
.columnContent blockquote p {
  font-size: calc(14 / 375 * 100vw);
  color: rgba(38, 41, 42, 0.8);
}
@media (min-width: 768px) {
  .columnContent blockquote p {
    font-size: calc(15 / 1440 * 100vw);
  }
}
.columnContent blockquote p:last-child {
  margin-bottom: 0;
}
.columnContent a {
  color: #678B8F;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.columnContent a:hover {
  opacity: 0.7;
}
.columnContent hr {
  border: none;
  border-top: 1px solid #DADADA;
  margin: calc(40 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .columnContent hr {
    margin: calc(56 / 1440 * 100vw) 0;
  }
}
.columnContent .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  border-radius: 0;
}
.columnContent .alignwide {
  width: calc(100% + 40 / 375 * 100vw);
  max-width: calc(100% + 40 / 375 * 100vw);
  margin-left: calc(-20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .columnContent .alignwide {
    width: calc(100% + 160 / 1440 * 100vw);
    max-width: calc(100% + 160 / 1440 * 100vw);
    margin-left: calc(-80 / 1440 * 100vw);
  }
}
.columnContent .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.columnContent .wp-block-gallery {
  display: grid;
  gap: calc(16 / 375 * 100vw);
  margin: calc(32 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .columnContent .wp-block-gallery {
    gap: calc(20 / 1440 * 100vw);
    margin: calc(48 / 1440 * 100vw) 0;
  }
}
.columnContent .wp-block-gallery.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.columnContent .wp-block-gallery.columns-3 {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .columnContent .wp-block-gallery.columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.columnContent .wp-block-gallery figure {
  margin: 0;
}
.columnContent .wp-block-button {
  margin: calc(32 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .columnContent .wp-block-button {
    margin: calc(40 / 1440 * 100vw) 0;
  }
}
.columnContent .wp-block-button .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(14 / 375 * 100vw) calc(32 / 375 * 100vw);
  font-size: calc(14 / 375 * 100vw);
  color: #FFFFFF;
  background-color: #26292A;
  border-radius: calc(30 / 375 * 100vw);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .columnContent .wp-block-button .wp-block-button__link {
    padding: calc(16 / 1440 * 100vw) calc(40 / 1440 * 100vw);
    font-size: calc(15 / 1440 * 100vw);
    border-radius: calc(30 / 1440 * 100vw);
  }
}
.columnContent .wp-block-button .wp-block-button__link:hover {
  opacity: 0.8;
}
.columnContent table {
  width: 100%;
  border-collapse: collapse;
  margin: calc(32 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .columnContent table {
    margin: calc(48 / 1440 * 100vw) 0;
  }
}
.columnContent table th,
.columnContent table td {
  padding: calc(12 / 375 * 100vw) calc(16 / 375 * 100vw);
  font-size: calc(14 / 375 * 100vw);
  color: #26292A;
  border: 1px solid #DADADA;
  text-align: left;
}
@media (min-width: 768px) {
  .columnContent table th,
  .columnContent table td {
    padding: calc(16 / 1440 * 100vw) calc(20 / 1440 * 100vw);
    font-size: calc(15 / 1440 * 100vw);
  }
}
.columnContent table th {
  font-weight: 500;
  background-color: rgba(38, 41, 42, 0.03);
}

.newsArchive {
  padding: calc(30 / 375 * 100vw) calc(20 / 375 * 100vw) calc(60 / 375 * 100vw);
}
@media (min-width: 768px) {
  .newsArchive {
    padding: calc(50 / 1440 * 100vw) calc(40 / 1440 * 100vw) calc(100 / 1440 * 100vw);
  }
}
@media (min-width: 768px) {
  .newsArchive__inner {
    margin: 0 auto;
    width: calc(1140 / 1440 * 100vw);
  }
}
.newsArchive__empty {
  text-align: center;
  font-size: calc(14 / 375 * 100vw);
  color: #26292A;
  padding: calc(40 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .newsArchive__empty {
    font-size: calc(16 / 1440 * 100vw);
    padding: calc(60 / 1440 * 100vw) 0;
  }
}
.newsArchive__grid {
  padding-top: calc(60 / 375 * 100vw);
}
@media (min-width: 768px) {
  .newsArchive__grid {
    padding-top: calc(70 / 1440 * 100vw);
  }
}

.newsFilter__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: calc(10 / 375 * 100vw);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .newsFilter__list {
    justify-content: center;
    gap: calc(15 / 1440 * 100vw);
  }
}
.newsFilter__link {
  display: flex;
  align-items: center;
  gap: calc(10 / 375 * 100vw);
  padding: calc(7 / 375 * 100vw) calc(20 / 375 * 100vw);
  font-size: calc(14 / 375 * 100vw);
  background-color: transparent;
  border-radius: calc(4 / 375 * 100vw);
  text-decoration: none;
  transition: all 0.3s ease;
  color: #BBBBBB;
  border: 1px solid #DADADA;
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  .newsFilter__link {
    padding: calc(7 / 1440 * 100vw) calc(16 / 1440 * 100vw);
    font-size: calc(18 / 1440 * 100vw);
    border-radius: calc(4 / 1440 * 100vw);
    gap: calc(10 / 1440 * 100vw);
  }
}
.newsFilter__link::before {
  content: "";
  display: block;
  width: calc(22 / 375 * 100vw);
  height: calc(22 / 375 * 100vw);
  background-image: url(../images/icn-radio.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .newsFilter__link::before {
    width: calc(22 / 1440 * 100vw);
    height: calc(22 / 1440 * 100vw);
  }
}
.newsFilter__link:hover {
  color: #26292A;
}
.newsFilter__link.is-active {
  color: #26292A;
  border: 1px solid #26292A;
  background-color: #FFFFFF;
}
.newsFilter__link.is-active::before {
  background-image: url(../images/icn-radio-active.svg);
}

.newsGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(20 / 375 * 100vw);
  margin-bottom: calc(60 / 375 * 100vw);
}
@media (min-width: 768px) {
  .newsGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: calc(60 / 1440 * 100vw) calc(30 / 1440 * 100vw);
    margin-bottom: calc(120 / 1440 * 100vw);
  }
}
.newsCard__link {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .newsCard__link:hover {
    opacity: 0.8;
  }
}
.newsCard__image {
  position: relative;
  width: 100%;
  aspect-ratio: 335/223;
  border-radius: calc(8 / 375 * 100vw) calc(8 / 375 * 100vw) 0 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .newsCard__image {
    aspect-ratio: 360/240;
    border-radius: calc(8 / 1440 * 100vw) calc(8 / 1440 * 100vw) 0 0;
  }
}
.newsCard__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsCard__content {
  background-color: #FFFFFF;
  padding: calc(15 / 375 * 100vw) calc(20 / 375 * 100vw) calc(45 / 375 * 100vw);
  border: 1px solid #DADADA;
  border-radius: 0 0 calc(8 / 375 * 100vw) calc(8 / 375 * 100vw);
}
@media (min-width: 768px) {
  .newsCard__content {
    padding: calc(20 / 1440 * 100vw) calc(20 / 1440 * 100vw) calc(15 / 1440 * 100vw);
    border-radius: 0 0 calc(8 / 1440 * 100vw) calc(8 / 1440 * 100vw);
  }
}
.newsCard__meta {
  display: flex;
  align-items: center;
  gap: calc(12 / 375 * 100vw);
  margin-bottom: calc(10 / 375 * 100vw);
}
@media (min-width: 768px) {
  .newsCard__meta {
    gap: calc(15 / 1440 * 100vw);
    margin-bottom: calc(10 / 1440 * 100vw);
  }
}
.newsCard__date {
  font-size: calc(18 / 375 * 100vw);
  font-family: "Cormorant Garamond", serif;
  color: #26292A;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .newsCard__date {
    font-size: calc(20 / 1440 * 100vw);
  }
}
.newsCard__cat {
  font-size: calc(12 / 375 * 100vw);
  color: #26292A;
  padding: calc(6 / 375 * 100vw) calc(12 / 375 * 100vw);
  line-height: 1;
  background: rgba(38, 41, 42, 0.08);
  border-radius: calc(4 / 375 * 100vw);
}
@media (min-width: 768px) {
  .newsCard__cat {
    font-size: calc(16 / 1440 * 100vw);
    padding: calc(6 / 1440 * 100vw) calc(15 / 1440 * 100vw);
    border-radius: 0;
  }
}
.newsCard__title {
  display: flex;
  align-items: flex-start;
  gap: calc(5 / 375 * 100vw);
  margin-bottom: calc(16 / 375 * 100vw);
}
@media (min-width: 768px) {
  .newsCard__title {
    gap: calc(5 / 1440 * 100vw);
    font-size: calc(18 / 1440 * 100vw);
    margin-bottom: calc(20 / 1440 * 100vw);
  }
}
.newsCard__title span {
  font-size: calc(16 / 375 * 100vw);
  font-weight: 500;
  color: #26292A;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .newsCard__title span {
    font-size: calc(18 / 1440 * 100vw);
  }
}
.newsCard__title::before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: calc(6 / 375 * 100vw);
  height: calc(6 / 375 * 100vw);
  transform: translateY(calc(14 / 375 * 100vw));
  border-radius: 50%;
  background-color: #678B8F;
}
@media (min-width: 768px) {
  .newsCard__title::before {
    transform: translateY(calc(16 / 1440 * 100vw));
    width: calc(6 / 1440 * 100vw);
    height: calc(6 / 1440 * 100vw);
  }
}
.newsCard__btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: calc(8 / 375 * 100vw);
  font-size: calc(14 / 375 * 100vw);
  color: #26292A;
  text-decoration: none;
}
@media (min-width: 768px) {
  .newsCard__btn {
    gap: calc(10 / 1440 * 100vw);
    font-size: calc(15 / 1440 * 100vw);
  }
}
.newsCard__btn::after {
  content: "";
  display: inline-block;
  width: calc(20 / 375 * 100vw);
  height: calc(20 / 375 * 100vw);
  background-image: url("../images/arrow-columnCard.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .newsCard__btn::after {
    width: calc(20 / 1440 * 100vw);
    height: calc(20 / 1440 * 100vw);
  }
}

.newsPagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(16 / 375 * 100vw);
}
@media (min-width: 768px) {
  .newsPagination {
    gap: calc(24 / 1440 * 100vw);
  }
}
.newsPagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(40 / 375 * 100vw);
  height: calc(40 / 375 * 100vw);
  color: #26292A;
  border: 1px solid #DADADA;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .newsPagination__arrow {
    width: calc(48 / 1440 * 100vw);
    height: calc(48 / 1440 * 100vw);
  }
}
.newsPagination__arrow svg {
  width: calc(20 / 375 * 100vw);
  height: calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .newsPagination__arrow svg {
    width: calc(24 / 1440 * 100vw);
    height: calc(24 / 1440 * 100vw);
  }
}
.newsPagination__arrow:hover:not(.is-disabled) {
  border-color: #26292A;
  background-color: #26292A;
  color: #FFFFFF;
}
.newsPagination__arrow.is-disabled {
  opacity: 0.3;
  cursor: default;
}
.newsPagination__numbers {
  display: flex;
  align-items: center;
  gap: calc(8 / 375 * 100vw);
}
@media (min-width: 768px) {
  .newsPagination__numbers {
    gap: calc(12 / 1440 * 100vw);
  }
}
.newsPagination__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(40 / 375 * 100vw);
  height: calc(40 / 375 * 100vw);
  font-size: calc(14 / 375 * 100vw);
  font-family: "Cormorant Garamond", serif;
  color: #26292A;
  border: 1px solid #DADADA;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .newsPagination__number {
    width: calc(48 / 1440 * 100vw);
    height: calc(48 / 1440 * 100vw);
    font-size: calc(16 / 1440 * 100vw);
  }
}
.newsPagination__number:hover:not(.is-current) {
  border-color: #26292A;
}
.newsPagination__number.is-current {
  color: #FFFFFF;
  background-color: #26292A;
  border-color: #26292A;
}

.worksArchive {
  padding: calc(40 / 375 * 100vw) calc(20 / 375 * 100vw) calc(60 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksArchive {
    padding: calc(50 / 1440 * 100vw) calc(40 / 1440 * 100vw) calc(100 / 1440 * 100vw);
  }
}
@media (min-width: 768px) {
  .worksArchive__inner {
    margin: 0 auto;
    width: calc(1140 / 1440 * 100vw);
  }
}
@media (min-width: 768px) {
  .worksArchive__filter {
    margin: 0 auto;
    width: calc(750 / 1440 * 100vw);
  }
}
.worksArchive__empty {
  text-align: center;
  font-size: calc(14 / 375 * 100vw);
  color: #26292A;
  padding: calc(40 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .worksArchive__empty {
    font-size: calc(16 / 1440 * 100vw);
    padding: calc(60 / 1440 * 100vw) 0;
  }
}
.worksArchive__grid {
  padding-top: calc(60 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksArchive__grid {
    padding-top: calc(22 / 1440 * 100vw);
  }
}

.worksFilter {
  display: flex;
  flex-direction: column;
  gap: calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksFilter {
    gap: calc(40 / 1440 * 100vw);
  }
}
.worksFilter__row {
  display: flex;
  flex-direction: column;
  gap: calc(12 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksFilter__row {
    flex-direction: row;
    align-items: flex-start;
    gap: calc(32 / 1440 * 100vw);
  }
}
.worksFilter__label {
  font-size: calc(18 / 375 * 100vw);
  font-weight: 500;
  color: #26292A;
  line-height: 1.75;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .worksFilter__label {
    font-size: calc(22 / 1440 * 100vw);
    width: calc(115 / 1440 * 100vw);
  }
}
.worksFilter__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: calc(10 / 375 * 100vw);
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
@media (min-width: 768px) {
  .worksFilter__list {
    gap: calc(15 / 1440 * 100vw);
  }
}
.worksFilter__link {
  display: flex;
  align-items: center;
  gap: calc(10 / 375 * 100vw);
  padding: calc(7 / 375 * 100vw) calc(17 / 375 * 100vw);
  font-size: calc(14 / 375 * 100vw);
  background-color: transparent;
  border-radius: calc(4 / 375 * 100vw);
  text-decoration: none;
  transition: all 0.3s ease;
  color: #BBBBBB;
  border: 1px solid #DADADA;
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  .worksFilter__link {
    padding: calc(7 / 1440 * 100vw) calc(19 / 1440 * 100vw);
    font-size: calc(18 / 1440 * 100vw);
    border-radius: calc(4 / 1440 * 100vw);
    gap: calc(10 / 1440 * 100vw);
  }
}
.worksFilter__link::before {
  content: "";
  display: block;
  width: calc(22 / 375 * 100vw);
  height: calc(22 / 375 * 100vw);
  background-image: url(../images/icn-radio.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .worksFilter__link::before {
    width: calc(22 / 1440 * 100vw);
    height: calc(22 / 1440 * 100vw);
  }
}
.worksFilter__link:hover {
  color: #26292A;
}
.worksFilter__link.is-active {
  color: #26292A;
  border: 1px solid #26292A;
  background-color: #FFFFFF;
}
.worksFilter__link.is-active::before {
  background-image: url(../images/icn-radio-active.svg);
}

.worksGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(20 / 375 * 100vw);
  margin-bottom: calc(60 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: calc(60 / 1440 * 100vw) calc(30 / 1440 * 100vw);
    margin-bottom: calc(120 / 1440 * 100vw);
  }
}
.worksCard__link {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .worksCard__link:hover {
    opacity: 0.8;
  }
}
.worksCard__image {
  position: relative;
  width: 100%;
  aspect-ratio: 335/223;
  border-radius: calc(4 / 375 * 100vw);
  overflow: hidden;
}
@media (min-width: 768px) {
  .worksCard__image {
    aspect-ratio: 360/240;
    border-radius: calc(8 / 1440 * 100vw) calc(8 / 1440 * 100vw) 0 0;
  }
}
.worksCard__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.worksCard__content {
  background-color: #FFFFFF;
  padding: calc(15 / 375 * 100vw) calc(20 / 375 * 100vw) calc(45 / 375 * 100vw);
  border: 1px solid #DADADA;
  border-radius: 0 0 calc(8 / 375 * 100vw) calc(8 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksCard__content {
    padding: calc(20 / 1440 * 100vw) calc(20 / 1440 * 100vw) calc(15 / 1440 * 100vw);
    border-radius: 0 0 calc(8 / 1440 * 100vw) calc(8 / 1440 * 100vw);
  }
}
.worksCard__meta {
  display: flex;
  align-items: center;
  gap: calc(12 / 375 * 100vw);
  margin-bottom: calc(10 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksCard__meta {
    gap: calc(15 / 1440 * 100vw);
    margin-bottom: calc(10 / 1440 * 100vw);
  }
}
.worksCard__date {
  font-size: calc(18 / 375 * 100vw);
  font-family: "Cormorant Garamond", serif;
  color: #26292A;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .worksCard__date {
    font-size: calc(20 / 1440 * 100vw);
  }
}
.worksCard__cat {
  font-size: calc(12 / 375 * 100vw);
  color: #26292A;
  padding: calc(6 / 375 * 100vw) calc(12 / 375 * 100vw);
  line-height: 1;
  background: rgba(38, 41, 42, 0.08);
  border-radius: calc(4 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksCard__cat {
    font-size: calc(16 / 1440 * 100vw);
    padding: calc(6 / 1440 * 100vw) calc(15 / 1440 * 100vw);
    border-radius: 0;
  }
}
.worksCard__title {
  display: flex;
  align-items: flex-start;
  gap: calc(5 / 375 * 100vw);
  margin-bottom: calc(16 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksCard__title {
    gap: calc(5 / 1440 * 100vw);
    font-size: calc(18 / 1440 * 100vw);
    margin-bottom: calc(20 / 1440 * 100vw);
  }
}
.worksCard__title span {
  font-size: calc(16 / 375 * 100vw);
  font-weight: 500;
  color: #26292A;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .worksCard__title span {
    font-size: calc(18 / 1440 * 100vw);
  }
}
.worksCard__title::before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: calc(6 / 375 * 100vw);
  height: calc(6 / 375 * 100vw);
  transform: translateY(calc(14 / 375 * 100vw));
  border-radius: 50%;
  background-color: #678B8F;
}
@media (min-width: 768px) {
  .worksCard__title::before {
    transform: translateY(calc(16 / 1440 * 100vw));
    width: calc(6 / 1440 * 100vw);
    height: calc(6 / 1440 * 100vw);
  }
}
.worksCard__btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: calc(8 / 375 * 100vw);
  font-size: calc(14 / 375 * 100vw);
  color: #26292A;
  text-decoration: none;
}
@media (min-width: 768px) {
  .worksCard__btn {
    gap: calc(10 / 1440 * 100vw);
    font-size: calc(15 / 1440 * 100vw);
  }
}
.worksCard__btn::after {
  content: "";
  display: inline-block;
  width: calc(20 / 375 * 100vw);
  height: calc(20 / 375 * 100vw);
  background-image: url("../images/arrow-columnCard.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .worksCard__btn::after {
    width: calc(20 / 1440 * 100vw);
    height: calc(20 / 1440 * 100vw);
  }
}

.worksPagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(16 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksPagination {
    gap: calc(24 / 1440 * 100vw);
  }
}
.worksPagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(40 / 375 * 100vw);
  height: calc(40 / 375 * 100vw);
  color: #26292A;
  border: 1px solid #DADADA;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .worksPagination__arrow {
    width: calc(48 / 1440 * 100vw);
    height: calc(48 / 1440 * 100vw);
  }
}
.worksPagination__arrow svg {
  width: calc(20 / 375 * 100vw);
  height: calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksPagination__arrow svg {
    width: calc(24 / 1440 * 100vw);
    height: calc(24 / 1440 * 100vw);
  }
}
.worksPagination__arrow:hover:not(.is-disabled) {
  border-color: #26292A;
  background-color: #26292A;
  color: #FFFFFF;
}
.worksPagination__arrow.is-disabled {
  opacity: 0.3;
  cursor: default;
}
.worksPagination__numbers {
  display: flex;
  align-items: center;
  gap: calc(8 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksPagination__numbers {
    gap: calc(12 / 1440 * 100vw);
  }
}
.worksPagination__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(40 / 375 * 100vw);
  height: calc(40 / 375 * 100vw);
  font-size: calc(14 / 375 * 100vw);
  font-family: "Cormorant Garamond", serif;
  color: #26292A;
  border: 1px solid #DADADA;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .worksPagination__number {
    width: calc(48 / 1440 * 100vw);
    height: calc(48 / 1440 * 100vw);
    font-size: calc(16 / 1440 * 100vw);
  }
}
.worksPagination__number:hover:not(.is-current) {
  border-color: #26292A;
}
.worksPagination__number.is-current {
  color: #FFFFFF;
  background-color: #26292A;
  border-color: #26292A;
}

.publicVenue {
  position: relative;
  background-color: #F5F5F5;
  padding: 0 calc(20 / 375 * 100vw) calc(60 / 375 * 100vw);
}
@media (min-width: 768px) {
  .publicVenue {
    padding: 0 calc(120 / 1440 * 100vw) calc(100 / 1440 * 100vw);
  }
}
.publicVenue__header {
  display: flex;
  justify-content: center;
  margin-bottom: calc(38 / 375 * 100vw);
}
@media (min-width: 768px) {
  .publicVenue__header {
    margin-bottom: calc(64 / 1440 * 100vw);
  }
}
.publicVenue__label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: calc(18 / 375 * 100vw);
  font-weight: 500;
  color: #FFFFFF;
  background-color: #26292A;
  padding: calc(12 / 375 * 100vw) calc(5 / 375 * 100vw);
  border-radius: calc(4 / 375 * 100vw);
  letter-spacing: 0.15em;
  margin-top: calc(-18 / 375 * 100vw);
  margin-bottom: calc(-18 / 375 * 100vw);
}
@media (min-width: 768px) {
  .publicVenue__label {
    font-size: calc(24 / 1440 * 100vw);
    padding: calc(12 / 1440 * 100vw) calc(4 / 1440 * 100vw);
    border-radius: calc(3 / 1440 * 100vw);
    margin-top: calc(-30 / 1440 * 100vw);
    margin-bottom: calc(-30 / 1440 * 100vw);
  }
}
@media (min-width: 768px) {
  .publicVenue__inner {
    width: calc(1080 / 1440 * 100vw);
    margin: 0 auto;
  }
}
.publicVenue__lead {
  font-size: calc(16 / 375 * 100vw);
  font-weight: 500;
  line-height: 1.75;
  color: #26292A;
  text-align: center;
  margin-bottom: calc(40 / 375 * 100vw);
}
@media (min-width: 768px) {
  .publicVenue__lead {
    line-height: 2;
    letter-spacing: 0.05em;
    font-size: calc(18 / 1440 * 100vw);
    margin-bottom: calc(80 / 1440 * 100vw);
  }
}
.publicVenue__list {
  display: flex;
  flex-direction: column;
  gap: calc(60 / 375 * 100vw);
}
@media (min-width: 768px) {
  .publicVenue__list {
    gap: calc(60 / 1440 * 100vw);
  }
}

.publicVenueItem {
  display: flex;
  flex-direction: column;
  gap: calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .publicVenueItem {
    flex-direction: row;
    align-items: flex-start;
    gap: calc(40 / 1440 * 100vw);
  }
}
.publicVenueItem:not(:first-of-type) {
  border-top: 1px solid #DADADA;
  padding-top: calc(60 / 375 * 100vw);
}
@media (min-width: 768px) {
  .publicVenueItem:not(:first-of-type) {
    padding-top: calc(60 / 1440 * 100vw);
  }
}
.publicVenueItem__image {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .publicVenueItem__image {
    width: calc(440 / 1440 * 100vw);
    flex-shrink: 0;
  }
}
.publicVenueItem__image img {
  width: 100%;
  height: auto;
  border-radius: calc(8 / 375 * 100vw);
}
@media (min-width: 768px) {
  .publicVenueItem__image img {
    border-radius: calc(8 / 1440 * 100vw);
  }
}
.publicVenueItem__image .credit {
  bottom: 0;
  right: 0;
  padding: calc(12 / 375 * 100vw) calc(10 / 375 * 100vw);
  font-size: calc(8 / 375 * 100vw);
}
@media (min-width: 768px) {
  .publicVenueItem__image .credit {
    padding: calc(12 / 1440 * 100vw) calc(10 / 1440 * 100vw);
    font-size: calc(8 / 1440 * 100vw);
  }
}
.publicVenueItem__content {
  flex: 1;
}
@media (min-width: 768px) {
  .publicVenueItem__content {
    padding-top: calc(11 / 1440 * 100vw);
  }
}
.publicVenueItem__title {
  display: flex;
  align-items: center;
  gap: calc(10 / 375 * 100vw);
  font-size: calc(20 / 375 * 100vw);
  font-weight: 500;
  color: #26292A;
  line-height: 1.75;
  margin-bottom: calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .publicVenueItem__title {
    gap: calc(8 / 1440 * 100vw);
    font-size: calc(24 / 1440 * 100vw);
    margin-bottom: calc(20 / 1440 * 100vw);
  }
}
.publicVenueItem__title::before {
  content: "";
  width: calc(6 / 375 * 100vw);
  height: calc(6 / 375 * 100vw);
  background-color: #C4A55B;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .publicVenueItem__title::before {
    width: calc(8 / 1440 * 100vw);
    height: calc(8 / 1440 * 100vw);
  }
}
.publicVenueItem__info {
  margin: 0;
}
@media (min-width: 768px) {
  .publicVenueItem__info {
    padding-left: calc(25 / 1440 * 100vw);
  }
}
.publicVenueItem__row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .publicVenueItem__row {
    flex-direction: row;
  }
}
.publicVenueItem__row:not(:first-of-type) {
  margin-top: calc(10 / 375 * 100vw);
}
@media (min-width: 768px) {
  .publicVenueItem__row:not(:first-of-type) {
    margin-top: calc(2 / 1440 * 100vw);
  }
}
.publicVenueItem__row dt {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
  font-size: calc(16 / 375 * 100vw);
  font-weight: 500;
  color: #26292A;
  background-color: #EEEEEE;
  padding: calc(10 / 375 * 100vw);
  text-align: center;
  line-height: 1;
}
@media (min-width: 768px) {
  .publicVenueItem__row dt {
    width: calc(147 / 1440 * 100vw);
    font-size: calc(16 / 1440 * 100vw);
    padding: calc(15 / 1440 * 100vw);
  }
}
.publicVenueItem__row dd {
  flex: 1;
  font-size: calc(16 / 375 * 100vw);
  color: #26292A;
  line-height: 1.8;
  padding: calc(12 / 375 * 100vw) 0;
  text-align: center;
  margin: 0;
}
@media (min-width: 768px) {
  .publicVenueItem__row dd {
    text-align: left;
    font-size: calc(16 / 1440 * 100vw);
    padding: calc(8 / 1440 * 100vw) calc(15 / 1440 * 100vw);
  }
}
.publicVenueItem__row dd ul {
  list-style: none;
  padding: 0 0 0 calc(50 / 375 * 100vw);
  margin: 0;
  text-align: left;
}
@media (min-width: 768px) {
  .publicVenueItem__row dd ul {
    padding: 0;
  }
}
.publicVenueItem__row dd ul li {
  position: relative;
  padding-left: calc(16 / 375 * 100vw);
  line-height: 2.1;
}
@media (min-width: 768px) {
  .publicVenueItem__row dd ul li {
    padding-left: calc(18 / 1440 * 100vw);
  }
}
.publicVenueItem__row dd ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.publicVenueItem__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin-inline: auto;
  gap: calc(11 / 375 * 100vw);
  font-size: calc(14 / 375 * 100vw);
  color: #26292A;
  text-decoration: none;
  transition: opacity 0.3s ease;
  letter-spacing: 0.03em;
  margin-top: calc(26 / 375 * 100vw);
  border-radius: 40px;
  border: 1px solid #DADADA;
  padding: calc(10 / 375 * 100vw) calc(15 / 375 * 100vw);
}
@media (min-width: 768px) {
  .publicVenueItem__link {
    margin-inline: unset;
    width: auto;
    padding: 0;
    justify-content: flex-end;
    gap: calc(10 / 1440 * 100vw);
    font-size: calc(14 / 1440 * 100vw);
    margin-top: calc(24 / 1440 * 100vw);
    border: none;
  }
}
.publicVenueItem__link:hover {
  opacity: 0.7;
}
.publicVenueItem__link::after {
  content: "";
  display: inline-block;
  width: calc(24 / 375 * 100vw);
  height: calc(24 / 375 * 100vw);
  background-image: url("../images/arrow-columnCard.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .publicVenueItem__link::after {
    width: calc(20 / 1440 * 100vw);
    height: calc(20 / 1440 * 100vw);
  }
}

.worksHero {
  padding: calc(10 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksHero {
    padding: calc(30 / 1440 * 100vw);
  }
}
.worksHero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  border-radius: calc(15 / 375 * 100vw);
  background-color: #060707;
  overflow: hidden;
}
@media (min-width: 768px) {
  .worksHero__inner {
    height: calc(600 / 1440 * 100vw);
    padding: calc(21 / 1440 * 100vw) calc(50 / 1440 * 100vw);
    border-radius: calc(15 / 1440 * 100vw);
  }
}
.worksHero__img {
  position: relative;
  width: 100%;
  height: calc(320 / 375 * 100vw);
  margin-bottom: calc(-12 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksHero__img {
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
}
.worksHero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.worksHero__img::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  content: "";
  display: block;
  width: 100%;
  height: calc(146 / 375 * 100vw);
  background: linear-gradient(180deg, #000000 1.83%, rgba(0, 0, 0, 0) 99.89%);
}
@media (min-width: 768px) {
  .worksHero__img::before {
    display: none;
  }
}
.worksHero__img::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  content: "";
  display: block;
  width: 100%;
  height: calc(146 / 375 * 100vw);
  background: linear-gradient(360deg, #000000 1.83%, rgba(0, 0, 0, 0) 99.89%);
}
@media (min-width: 768px) {
  .worksHero__img::after {
    display: none;
  }
}
.worksHero__content {
  position: relative;
  z-index: 5;
  max-width: 1000px;
  padding: 0 calc(20 / 375 * 100vw) calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksHero__content {
    padding: 0;
  }
}
.worksHero__title {
  font-size: calc(26 / 375 * 100vw);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: calc(10 / 375 * 100vw);
  letter-spacing: 0.05em;
  display: inline;
  width: fit-content;
  background-color: rgba(0, 0, 0, 0.4901960784);
}
@media (min-width: 768px) {
  .worksHero__title {
    font-size: calc(36 / 1440 * 100vw);
    margin-bottom: calc(10 / 1440 * 100vw);
  }
}
.worksHero__meta {
  display: flex;
  align-items: center;
  gap: calc(12 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksHero__meta {
    gap: calc(15 / 1440 * 100vw);
  }
}
.worksHero__date {
  font-size: calc(16 / 375 * 100vw);
  font-family: "Cormorant Garamond", serif;
  color: #FFFFFF;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .worksHero__date {
    font-size: calc(20 / 1440 * 100vw);
  }
}
.worksHero__cat {
  display: inline-block;
  padding: calc(6 / 375 * 100vw) calc(15 / 375 * 100vw);
  font-size: calc(14 / 375 * 100vw);
  line-height: 1;
  background-color: #678B8F;
  border-radius: calc(40 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksHero__cat {
    padding: calc(6 / 1440 * 100vw) calc(15 / 1440 * 100vw);
    font-size: calc(16 / 1440 * 100vw);
    border-radius: calc(40 / 1440 * 100vw);
  }
}
.worksHero--hasImage .worksHero__inner {
  background-size: cover;
  background-position: center;
}

.worksSummary {
  padding: calc(40 / 375 * 100vw) calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksSummary {
    padding: calc(30 / 1440 * 100vw) calc(40 / 1440 * 100vw) calc(60 / 1440 * 100vw);
  }
}
.worksSummary__inner {
  max-width: 900px;
  margin: 0 auto;
}
.worksSummary__row {
  display: flex;
  flex-direction: column;
  gap: calc(12 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksSummary__row {
    flex-direction: row;
    gap: calc(40 / 1440 * 100vw);
  }
}
.worksSummary__row:first-child {
  margin-bottom: calc(30 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksSummary__row:first-child {
    margin-bottom: calc(30 / 1440 * 100vw);
  }
}
.worksSummary__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.worksSummary__label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(14 / 375 * 100vw);
  font-weight: 500;
  color: #26292A;
  flex-shrink: 0;
  background-color: #DFDFDF;
  height: calc(72 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksSummary__label {
    font-size: calc(18 / 1440 * 100vw);
    width: calc(230 / 1440 * 100vw);
    height: auto;
  }
}
.worksSummary__content {
  font-size: calc(14 / 375 * 100vw);
  color: #26292A;
  font-weight: 500;
  line-height: 1.75;
  flex: 1;
}
@media (min-width: 768px) {
  .worksSummary__content {
    font-size: calc(16 / 1440 * 100vw);
  }
}

@media (min-width: 768px) {
  .worksContent {
    padding: 0 calc(20 / 1440 * 100vw);
  }
}
.worksContent__inner {
  padding: calc(80 / 375 * 100vw) calc(20 / 375 * 100vw);
  margin: 0 auto;
  background-color: #fff;
}
@media (min-width: 768px) {
  .worksContent__inner {
    width: calc(1380 / 1440 * 100vw);
    border-radius: calc(16 / 1440 * 100vw);
    padding: calc(80 / 1440 * 100vw) calc(20 / 1440 * 100vw);
  }
}
@media (min-width: 768px) {
  .worksContent__content {
    width: calc(752 / 1440 * 100vw);
    margin-inline: auto;
  }
}
.worksContent .wp-block-columns {
  gap: calc(2 / 375 * 100vw);
  border-radius: calc(16 / 375 * 100vw);
  overflow: hidden;
}
@media (min-width: 768px) {
  .worksContent .wp-block-columns {
    border-radius: calc(16 / 1440 * 100vw);
    gap: calc(2 / 1440 * 100vw);
  }
}
.worksContent .wp-block-columns figure {
  margin: 0;
}
.worksContent .wp-block-columns img {
  border-radius: unset !important;
}
.worksContent h2 {
  display: flex;
  align-items: flex-start;
  font-size: calc(20 / 375 * 100vw);
  font-weight: 900;
  color: #26292A;
  line-height: 1.6;
  margin-top: calc(48 / 375 * 100vw);
  margin-bottom: calc(25 / 375 * 100vw);
  padding-bottom: calc(10 / 375 * 100vw);
  gap: calc(10 / 375 * 100vw);
  border-bottom: 1px dashed #DADADA;
}
@media (min-width: 768px) {
  .worksContent h2 {
    gap: calc(10 / 1440 * 100vw);
    font-size: calc(24 / 1440 * 100vw);
    margin-top: calc(64 / 1440 * 100vw);
    padding-bottom: calc(20 / 1440 * 100vw);
    margin-bottom: calc(25 / 1440 * 100vw);
  }
}
.worksContent h2::before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: calc(6 / 375 * 100vw);
  height: calc(6 / 375 * 100vw);
  transform: translateY(calc(14 / 375 * 100vw));
  border-radius: 50%;
  background-color: #B3A47C;
}
@media (min-width: 768px) {
  .worksContent h2::before {
    transform: translateY(calc(16 / 1440 * 100vw));
    width: calc(6 / 1440 * 100vw);
    height: calc(6 / 1440 * 100vw);
  }
}
.worksContent h2:first-child {
  margin-top: 0;
}
.worksContent h3 {
  font-size: calc(18 / 375 * 100vw);
  font-weight: 500;
  color: #26292A;
  line-height: 1.6;
  margin-top: calc(40 / 375 * 100vw);
  margin-bottom: calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksContent h3 {
    font-size: calc(20 / 1440 * 100vw);
    margin-top: calc(48 / 1440 * 100vw);
    margin-bottom: calc(24 / 1440 * 100vw);
  }
}
.worksContent h4 {
  font-size: calc(16 / 375 * 100vw);
  font-weight: 500;
  color: #26292A;
  line-height: 1.6;
  margin-top: calc(32 / 375 * 100vw);
  margin-bottom: calc(16 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksContent h4 {
    font-size: calc(18 / 1440 * 100vw);
    margin-top: calc(40 / 1440 * 100vw);
    margin-bottom: calc(20 / 1440 * 100vw);
  }
}
.worksContent .wp-block-group {
  border: 1px solid #DADADA;
  border-radius: calc(8 / 375 * 100vw);
  padding: calc(30 / 375 * 100vw) calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksContent .wp-block-group {
    padding: calc(30 / 1440 * 100vw);
    border-radius: calc(8 / 1440 * 100vw);
  }
}
.worksContent .wp-block-group ul {
  margin: 0;
}
.worksContent p {
  font-size: calc(16 / 375 * 100vw);
  color: #26292A;
  line-height: 1.75;
  margin-bottom: calc(24 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksContent p {
    font-size: calc(16 / 1440 * 100vw);
    margin-bottom: calc(32 / 1440 * 100vw);
  }
}
.worksContent p:last-child {
  margin-bottom: 0;
}
.worksContent p .has-inline-color {
  font-weight: bold;
}
.worksContent img {
  max-width: 100%;
  height: auto;
  border-radius: calc(8 / 375 * 100vw);
  margin: calc(32 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .worksContent img {
    border-radius: calc(8 / 1440 * 100vw);
    margin: calc(48 / 1440 * 100vw) 0;
  }
}
.worksContent figure {
  margin: calc(32 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .worksContent figure {
    margin: calc(48 / 1440 * 100vw) 0;
  }
}
.worksContent figure img {
  margin: 0;
}
.worksContent figure figcaption {
  font-size: calc(12 / 375 * 100vw);
  color: #9C9C9C;
  text-align: center;
  margin-top: calc(12 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksContent figure figcaption {
    font-size: calc(14 / 1440 * 100vw);
    margin-top: calc(16 / 1440 * 100vw);
  }
}
.worksContent ul,
.worksContent ol {
  margin: calc(24 / 375 * 100vw) 0;
  padding-left: calc(24 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksContent ul,
  .worksContent ol {
    margin: calc(32 / 1440 * 100vw) 0;
    padding-left: calc(32 / 1440 * 100vw);
  }
}
.worksContent li {
  font-size: calc(14 / 375 * 100vw);
  color: #26292A;
  line-height: 1.8;
  margin-bottom: calc(8 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksContent li {
    font-size: calc(16 / 1440 * 100vw);
    margin-bottom: calc(12 / 1440 * 100vw);
  }
}
.worksContent li:last-child {
  margin-bottom: 0;
}
.worksContent blockquote {
  margin: calc(32 / 375 * 100vw) 0;
  padding: calc(24 / 375 * 100vw);
  background-color: #F5F5F5;
  border-left: calc(4 / 375 * 100vw) solid #C4A55B;
  border-radius: calc(4 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksContent blockquote {
    margin: calc(48 / 1440 * 100vw) 0;
    padding: calc(32 / 1440 * 100vw);
    border-left-width: calc(4 / 1440 * 100vw);
    border-radius: calc(4 / 1440 * 100vw);
  }
}
.worksContent blockquote p {
  margin-bottom: 0;
}

.worksCategories {
  padding: 0 calc(20 / 375 * 100vw) calc(60 / 375 * 100vw);
}
@media (min-width: 768px) {
  .worksCategories {
    padding: 0 calc(40 / 1440 * 100vw) calc(100 / 1440 * 100vw);
  }
}
.worksCategories__inner {
  max-width: 900px;
  margin: 0 auto;
}
.worksCategories__list {
  display: flex;
  flex-wrap: wrap;
  gap: calc(12 / 375 * 100vw);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .worksCategories__list {
    gap: calc(16 / 1440 * 100vw);
  }
}
.worksCategories__link {
  display: inline-block;
  padding: calc(8 / 375 * 100vw) calc(20 / 375 * 100vw);
  font-size: calc(14 / 375 * 100vw);
  color: #26292A;
  background-color: #F5F5F5;
  border-radius: calc(40 / 375 * 100vw);
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .worksCategories__link {
    padding: calc(10 / 1440 * 100vw) calc(24 / 1440 * 100vw);
    font-size: calc(14 / 1440 * 100vw);
    border-radius: calc(40 / 1440 * 100vw);
  }
}
.worksCategories__link:hover {
  background-color: #678B8F;
}

.newsHero {
  padding: calc(10 / 375 * 100vw);
}
@media (min-width: 768px) {
  .newsHero {
    padding: calc(30 / 1440 * 100vw);
  }
}
.newsHero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: calc(320 / 375 * 100vw);
  padding: calc(20 / 375 * 100vw);
  border-radius: calc(15 / 375 * 100vw);
  background-color: #26292A;
  background-image: url("../images/bg-middleHero-sp.png");
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .newsHero__inner {
    height: calc(600 / 1440 * 100vw);
    padding: calc(48 / 1440 * 100vw) calc(80 / 1440 * 100vw);
    border-radius: calc(15 / 1440 * 100vw);
    background-image: url("../images/bg-middleHero.png");
  }
}
.newsHero__content {
  max-width: 1000px;
}
.newsHero__title {
  font-size: calc(26 / 375 * 100vw);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: calc(10 / 375 * 100vw);
}
@media (min-width: 768px) {
  .newsHero__title {
    font-size: calc(36 / 1440 * 100vw);
    margin-bottom: calc(10 / 1440 * 100vw);
  }
}
.newsHero__meta {
  display: flex;
  align-items: center;
  gap: calc(12 / 375 * 100vw);
}
@media (min-width: 768px) {
  .newsHero__meta {
    gap: calc(16 / 1440 * 100vw);
  }
}
.newsHero__date {
  font-size: calc(16 / 375 * 100vw);
  font-family: "Cormorant Garamond", serif;
  color: #FFFFFF;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .newsHero__date {
    font-size: calc(20 / 1440 * 100vw);
  }
}
.newsHero__cat {
  display: inline-block;
  padding: calc(6 / 375 * 100vw) calc(15 / 375 * 100vw);
  font-size: calc(14 / 375 * 100vw);
  line-height: 1;
  background-color: #26292A;
  border-radius: calc(40 / 375 * 100vw);
}
@media (min-width: 768px) {
  .newsHero__cat {
    padding: calc(6 / 1440 * 100vw) calc(15 / 1440 * 100vw);
    font-size: calc(16 / 1440 * 100vw);
    border-radius: calc(40 / 1440 * 100vw);
  }
}

.newsContent {
  padding: calc(48 / 375 * 100vw) calc(20 / 375 * 100vw) calc(60 / 375 * 100vw);
}
@media (min-width: 768px) {
  .newsContent {
    padding: calc(80 / 1440 * 100vw) calc(40 / 1440 * 100vw) calc(120 / 1440 * 100vw);
  }
}
.newsContent__inner {
  max-width: 800px;
  margin: 0 auto;
}
.newsContent h2 {
  display: flex;
  align-items: flex-start;
  font-size: calc(20 / 375 * 100vw);
  font-weight: 900;
  color: #26292A;
  line-height: 1.6;
  margin-top: calc(48 / 375 * 100vw);
  margin-bottom: calc(25 / 375 * 100vw);
  padding-bottom: calc(10 / 375 * 100vw);
  gap: calc(10 / 375 * 100vw);
  border-bottom: 1px dashed #DADADA;
}
@media (min-width: 768px) {
  .newsContent h2 {
    gap: calc(10 / 1440 * 100vw);
    font-size: calc(24 / 1440 * 100vw);
    margin-top: calc(64 / 1440 * 100vw);
    padding-bottom: calc(20 / 1440 * 100vw);
    margin-bottom: calc(25 / 1440 * 100vw);
  }
}
.newsContent h2::before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: calc(6 / 375 * 100vw);
  height: calc(6 / 375 * 100vw);
  transform: translateY(calc(14 / 375 * 100vw));
  border-radius: 50%;
  background-color: #678B8F;
}
@media (min-width: 768px) {
  .newsContent h2::before {
    transform: translateY(calc(16 / 1440 * 100vw));
    width: calc(6 / 1440 * 100vw);
    height: calc(6 / 1440 * 100vw);
  }
}
.newsContent h2:first-child {
  margin-top: 0;
}
.newsContent h3 {
  font-size: calc(18 / 375 * 100vw);
  font-weight: 500;
  color: #26292A;
  line-height: 1.6;
  margin-top: calc(40 / 375 * 100vw);
  margin-bottom: calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .newsContent h3 {
    font-size: calc(20 / 1440 * 100vw);
    margin-top: calc(48 / 1440 * 100vw);
    margin-bottom: calc(24 / 1440 * 100vw);
  }
}
.newsContent h4 {
  font-size: calc(16 / 375 * 100vw);
  font-weight: 500;
  color: #26292A;
  line-height: 1.6;
  margin-top: calc(32 / 375 * 100vw);
  margin-bottom: calc(16 / 375 * 100vw);
}
@media (min-width: 768px) {
  .newsContent h4 {
    font-size: calc(18 / 1440 * 100vw);
    margin-top: calc(40 / 1440 * 100vw);
    margin-bottom: calc(20 / 1440 * 100vw);
  }
}
.newsContent .wp-block-group {
  border: 1px solid #DADADA;
  border-radius: calc(8 / 375 * 100vw);
  padding: calc(30 / 375 * 100vw) calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .newsContent .wp-block-group {
    padding: calc(30 / 1440 * 100vw);
    border-radius: calc(8 / 1440 * 100vw);
  }
}
.newsContent .wp-block-group ul {
  margin: 0;
}
.newsContent p {
  font-size: calc(16 / 375 * 100vw);
  color: #26292A;
  line-height: 1.75;
  margin-bottom: calc(24 / 375 * 100vw);
}
@media (min-width: 768px) {
  .newsContent p {
    font-size: calc(16 / 1440 * 100vw);
    margin-bottom: calc(32 / 1440 * 100vw);
  }
}
.newsContent p:last-child {
  margin-bottom: 0;
}
.newsContent p .has-inline-color {
  font-weight: bold;
}
.newsContent strong {
  font-weight: 500;
  color: #26292A;
}
.newsContent em {
  font-style: normal;
  background: linear-gradient(transparent 60%, rgba(196, 165, 91, 0.3) 60%);
}
.newsContent ul,
.newsContent ol {
  margin: calc(24 / 375 * 100vw) 0;
  padding-left: calc(24 / 375 * 100vw);
}
@media (min-width: 768px) {
  .newsContent ul,
  .newsContent ol {
    margin: calc(32 / 1440 * 100vw) 0;
    padding-left: calc(32 / 1440 * 100vw);
  }
}
.newsContent ul {
  list-style: disc;
}
.newsContent ol {
  list-style: decimal;
}
.newsContent li {
  font-size: calc(15 / 375 * 100vw);
  color: #26292A;
  line-height: 2;
  margin-bottom: calc(12 / 375 * 100vw);
}
@media (min-width: 768px) {
  .newsContent li {
    font-size: calc(16 / 1440 * 100vw);
    margin-bottom: calc(16 / 1440 * 100vw);
  }
}
.newsContent li:last-child {
  margin-bottom: 0;
}
.newsContent img {
  max-width: 100%;
  height: auto;
  border-radius: calc(8 / 375 * 100vw);
  margin: calc(32 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .newsContent img {
    border-radius: calc(8 / 1440 * 100vw);
    margin: calc(48 / 1440 * 100vw) 0;
  }
}
.newsContent figure {
  margin: calc(32 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .newsContent figure {
    margin: calc(48 / 1440 * 100vw) 0;
  }
}
.newsContent figure img {
  margin: 0;
}
.newsContent figure figcaption {
  font-size: calc(13 / 375 * 100vw);
  color: rgba(38, 41, 42, 0.7);
  text-align: center;
  margin-top: calc(12 / 375 * 100vw);
}
@media (min-width: 768px) {
  .newsContent figure figcaption {
    font-size: calc(14 / 1440 * 100vw);
    margin-top: calc(16 / 1440 * 100vw);
  }
}
.newsContent blockquote {
  margin: calc(32 / 375 * 100vw) 0;
  padding: calc(24 / 375 * 100vw);
  background-color: rgba(38, 41, 42, 0.03);
  border-radius: calc(8 / 375 * 100vw);
}
@media (min-width: 768px) {
  .newsContent blockquote {
    margin: calc(48 / 1440 * 100vw) 0;
    padding: calc(32 / 1440 * 100vw);
    border-radius: calc(8 / 1440 * 100vw);
  }
}
.newsContent blockquote p {
  font-size: calc(14 / 375 * 100vw);
  color: rgba(38, 41, 42, 0.8);
}
@media (min-width: 768px) {
  .newsContent blockquote p {
    font-size: calc(15 / 1440 * 100vw);
  }
}
.newsContent blockquote p:last-child {
  margin-bottom: 0;
}
.newsContent a {
  color: #678B8F;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.newsContent a:hover {
  opacity: 0.7;
}
.newsContent hr {
  border: none;
  border-top: 1px solid #DADADA;
  margin: calc(40 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .newsContent hr {
    margin: calc(56 / 1440 * 100vw) 0;
  }
}
.newsContent .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  border-radius: 0;
}
.newsContent .alignwide {
  width: calc(100% + 40 / 375 * 100vw);
  max-width: calc(100% + 40 / 375 * 100vw);
  margin-left: calc(-20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .newsContent .alignwide {
    width: calc(100% + 160 / 1440 * 100vw);
    max-width: calc(100% + 160 / 1440 * 100vw);
    margin-left: calc(-80 / 1440 * 100vw);
  }
}
.newsContent .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.newsContent .wp-block-gallery {
  display: grid;
  gap: calc(16 / 375 * 100vw);
  margin: calc(32 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .newsContent .wp-block-gallery {
    gap: calc(20 / 1440 * 100vw);
    margin: calc(48 / 1440 * 100vw) 0;
  }
}
.newsContent .wp-block-gallery.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.newsContent .wp-block-gallery.columns-3 {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .newsContent .wp-block-gallery.columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.newsContent .wp-block-gallery figure {
  margin: 0;
}
.newsContent .wp-block-button {
  margin: calc(32 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .newsContent .wp-block-button {
    margin: calc(40 / 1440 * 100vw) 0;
  }
}
.newsContent .wp-block-button .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(14 / 375 * 100vw) calc(32 / 375 * 100vw);
  font-size: calc(14 / 375 * 100vw);
  color: #FFFFFF;
  background-color: #26292A;
  border-radius: calc(30 / 375 * 100vw);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .newsContent .wp-block-button .wp-block-button__link {
    padding: calc(16 / 1440 * 100vw) calc(40 / 1440 * 100vw);
    font-size: calc(15 / 1440 * 100vw);
    border-radius: calc(30 / 1440 * 100vw);
  }
}
.newsContent .wp-block-button .wp-block-button__link:hover {
  opacity: 0.8;
}
.newsContent table {
  width: 100%;
  border-collapse: collapse;
  margin: calc(32 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .newsContent table {
    margin: calc(48 / 1440 * 100vw) 0;
  }
}
.newsContent table th,
.newsContent table td {
  padding: calc(12 / 375 * 100vw) calc(16 / 375 * 100vw);
  font-size: calc(14 / 375 * 100vw);
  color: #26292A;
  border: 1px solid #DADADA;
  text-align: left;
}
@media (min-width: 768px) {
  .newsContent table th,
  .newsContent table td {
    padding: calc(16 / 1440 * 100vw) calc(20 / 1440 * 100vw);
    font-size: calc(15 / 1440 * 100vw);
  }
}
.newsContent table th {
  font-weight: 500;
  background-color: rgba(38, 41, 42, 0.03);
}

@media (min-width: 768px) {
  .page-digital-archive .cm-contact {
    padding-top: calc(120 / 1440 * 100vw);
  }
}

.archiveHero {
  padding: calc(10 / 375 * 100vw);
}
@media (min-width: 768px) {
  .archiveHero {
    padding: calc(30 / 1440 * 100vw);
  }
}
.archiveHero__inner {
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: calc(203 / 375 * 100vw);
  height: calc(430 / 375 * 100vw);
  border-radius: calc(15 / 375 * 100vw);
  background-color: #26292A;
  background-image: url("../images/bg-hero-digital-archive.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .archiveHero__inner {
    padding-top: calc(294 / 1440 * 100vw);
    border-radius: calc(15 / 1440 * 100vw);
    height: calc(600 / 1440 * 100vw);
  }
}
.archiveHero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(8 / 375 * 100vw);
}
@media (min-width: 768px) {
  .archiveHero__title {
    gap: calc(16 / 1440 * 100vw);
  }
}
.archiveHero__ja {
  font-size: calc(28 / 375 * 100vw);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
@media (min-width: 768px) {
  .archiveHero__ja {
    letter-spacing: 0.1em;
    font-size: calc(32 / 1440 * 100vw);
  }
}
.archiveHero__en {
  font-size: calc(14 / 375 * 100vw);
  font-family: "Cormorant Garamond", serif;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .archiveHero__en {
    letter-spacing: 0.1em;
    font-size: calc(16 / 1440 * 100vw);
  }
}
.archiveHero .credit {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: calc(5 / 375 * 100vw);
}
@media (min-width: 768px) {
  .archiveHero .credit {
    writing-mode: unset;
    text-orientation: unset;
    font-size: calc(10 / 1440 * 100vw);
  }
}

.archiveIntro {
  padding: 0 calc(20 / 375 * 100vw) calc(80 / 375 * 100vw);
  text-align: center;
}
@media (min-width: 768px) {
  .archiveIntro {
    padding: 0 calc(40 / 1440 * 100vw) calc(80 / 1440 * 100vw);
  }
}
.archiveIntro__inner {
  position: relative;
  z-index: 5;
  margin-bottom: calc(44 / 375 * 100vw);
  margin-top: calc(-40 / 375 * 100vw);
}
@media (min-width: 768px) {
  .archiveIntro__inner {
    margin-top: calc(-60 / 1440 * 100vw);
    margin-bottom: calc(18 / 1440 * 100vw);
  }
}
.archiveIntro__lead {
  font-size: calc(16 / 375 * 100vw);
  line-height: 2;
  color: #26292A;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .archiveIntro__lead {
    font-size: calc(18 / 1440 * 100vw);
  }
}

.archiveIntroTitle {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: flex-start;
  gap: calc(8 / 375 * 100vw);
}
@media (min-width: 768px) {
  .archiveIntroTitle {
    gap: calc(10 / 1440 * 100vw);
  }
}
.archiveIntroTitle__line {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: calc(24 / 375 * 100vw);
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.1;
  color: #BE9F4E;
  background: #FFFFFF;
  padding: calc(8 / 375 * 100vw) calc(6 / 375 * 100vw);
}
@media (min-width: 768px) {
  .archiveIntroTitle__line {
    line-height: 1.6;
    font-size: calc(30 / 1440 * 100vw);
    padding: calc(14 / 1440 * 100vw) calc(2 / 1440 * 100vw);
  }
}

.archiveFeatures {
  position: relative;
}
.archiveFeatures__list {
  display: flex;
  flex-direction: column;
}
.archiveFeatures__item {
  position: sticky;
  top: -70%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #26292A;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .archiveFeatures__item {
    top: -50%;
  }
}
.archiveFeatures__item[data-feature="01"] {
  z-index: 1;
}
.archiveFeatures__item[data-feature="02"] {
  z-index: 2;
}
.archiveFeatures__item[data-feature="03"] {
  z-index: 3;
}
.archiveFeatures__itemInner {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: calc(80 / 375 * 100vw) calc(20 / 375 * 100vw);
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .archiveFeatures__itemInner {
    width: calc(1200 / 1440 * 100vw);
    padding: calc(128 / 1440 * 100vw) 0;
  }
}
.archiveFeatures__header {
  display: flex;
  align-items: flex-start;
  gap: calc(20 / 375 * 100vw);
  margin-bottom: calc(38 / 375 * 100vw);
}
@media (min-width: 768px) {
  .archiveFeatures__header {
    gap: calc(30 / 1440 * 100vw);
    margin-bottom: calc(76 / 1440 * 100vw);
  }
}
.archiveFeatures__label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: calc(18 / 375 * 100vw);
  font-weight: 500;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  padding: calc(12 / 375 * 100vw) calc(3 / 375 * 100vw);
  border-radius: calc(4 / 375 * 100vw);
}
@media (min-width: 768px) {
  .archiveFeatures__label {
    font-size: calc(24 / 1440 * 100vw);
    padding: calc(16 / 1440 * 100vw) calc(3 / 1440 * 100vw);
    border-radius: calc(3 / 1440 * 100vw);
  }
}
.archiveFeatures__title {
  display: flex;
  flex-direction: column;
  letter-spacing: 0.03em;
}
.archiveFeatures__titleSub {
  font-size: calc(18 / 375 * 100vw);
  font-weight: 500;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .archiveFeatures__titleSub {
    font-size: calc(28 / 1440 * 100vw);
  }
}
.archiveFeatures__titleMain {
  font-size: calc(28 / 375 * 100vw);
  font-weight: 500;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .archiveFeatures__titleMain {
    font-size: calc(38 / 1440 * 100vw);
  }
}
.archiveFeatures__content {
  display: flex;
  flex-direction: column-reverse;
  gap: calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .archiveFeatures__content {
    flex-direction: row;
    align-items: flex-start;
    gap: calc(40 / 1440 * 100vw);
  }
}
.archiveFeatures__text {
  flex: 1;
}
.archiveFeatures__image {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .archiveFeatures__image {
    width: calc(590 / 1440 * 100vw);
    flex-shrink: 0;
  }
}
.archiveFeatures__image img {
  width: 100%;
  height: auto;
}
.archiveFeatures__image .credit {
  bottom: 0;
  right: 0;
  padding: calc(15 / 375 * 100vw) calc(15 / 375 * 100vw);
}
@media (min-width: 768px) {
  .archiveFeatures__image .credit {
    padding: calc(15 / 1440 * 100vw) calc(15 / 1440 * 100vw);
  }
}

.archiveFeaturesText__number {
  display: block;
  font-size: calc(32 / 375 * 100vw);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .archiveFeaturesText__number {
    font-size: calc(40 / 1440 * 100vw);
    margin-bottom: calc(20 / 1440 * 100vw);
  }
}
.archiveFeaturesText__title {
  font-size: calc(24 / 375 * 100vw);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: calc(20 / 375 * 100vw);
  padding-bottom: calc(18 / 375 * 100vw);
  border-bottom: 1px solid #bbb;
}
@media (min-width: 768px) {
  .archiveFeaturesText__title {
    font-size: calc(32 / 1440 * 100vw);
    margin-bottom: calc(30 / 1440 * 100vw);
    padding-bottom: calc(30 / 1440 * 100vw);
  }
}
.archiveFeaturesText__desc {
  font-size: calc(16 / 375 * 100vw);
  color: #FFFFFF;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .archiveFeaturesText__desc {
    font-size: calc(18 / 1440 * 100vw);
  }
}

.archiveFlow {
  position: relative;
  padding: calc(80 / 375 * 100vw) calc(40 / 375 * 100vw) calc(110 / 375 * 100vw);
  background-color: #F5F5F5;
}
@media (min-width: 768px) {
  .archiveFlow {
    padding: calc(80 / 1440 * 100vw) calc(314 / 1440 * 100vw) calc(120 / 1440 * 100vw) calc(180 / 1440 * 100vw);
  }
}
@media (min-width: 768px) {
  .archiveFlow__inner {
    display: flex;
    gap: calc(90 / 1440 * 100vw);
  }
}
.archiveFlow__header {
  position: absolute;
  top: calc(40 / 375 * 100vw);
  left: calc(20 / 375 * 100vw);
  z-index: 5;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .archiveFlow__header {
    position: unset;
  }
}
.archiveFlow__label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: calc(18 / 375 * 100vw);
  font-weight: 500;
  color: #FFFFFF;
  background-color: #26292A;
  padding: calc(12 / 375 * 100vw) calc(4 / 375 * 100vw);
  border-radius: calc(4 / 375 * 100vw);
  letter-spacing: 0.08em;
}
@media (min-width: 768px) {
  .archiveFlow__label {
    font-size: calc(24 / 1440 * 100vw);
    padding: calc(16 / 1440 * 100vw) calc(4 / 1440 * 100vw);
    border-radius: calc(4 / 1440 * 100vw);
  }
}
.archiveFlow__list {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .archiveFlow__list {
    padding-top: calc(80 / 1440 * 100vw);
  }
}

.archiveFlowItem {
  display: flex;
  flex-direction: column-reverse;
  gap: calc(15 / 375 * 100vw);
}
@media (min-width: 768px) {
  .archiveFlowItem {
    flex-direction: row;
    align-items: center;
    gap: calc(60 / 1440 * 100vw);
  }
}
.archiveFlowItem:not(:last-child) {
  position: relative;
  margin-bottom: calc(90 / 375 * 100vw);
}
@media (min-width: 768px) {
  .archiveFlowItem:not(:last-child) {
    margin-bottom: calc(80 / 1440 * 100vw);
  }
}
.archiveFlowItem:not(:last-child)::after {
  position: absolute;
  bottom: calc(-40 / 375 * 100vw);
  left: 50%;
  transform: translateY(100%) translateX(-50%);
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: calc(6 / 375 * 100vw) solid transparent;
  border-right: calc(6 / 375 * 100vw) solid transparent;
  border-top: calc(14 / 375 * 100vw) solid #26292A;
}
@media (min-width: 768px) {
  .archiveFlowItem:not(:last-child)::after {
    bottom: calc(-42 / 1440 * 100vw);
    left: calc(222 / 1440 * 100vw);
    transform: translateY(100%);
    border-left-width: calc(6 / 1440 * 100vw);
    border-right-width: calc(6 / 1440 * 100vw);
    border-top-width: calc(14 / 1440 * 100vw);
  }
}
.archiveFlowItem__main {
  flex: 1;
}
.archiveFlowItem__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: calc(16 / 375 * 100vw);
  margin-bottom: calc(16 / 375 * 100vw);
}
@media (min-width: 768px) {
  .archiveFlowItem__header {
    gap: calc(30 / 1440 * 100vw);
    margin-bottom: calc(42 / 1440 * 100vw);
  }
}
.archiveFlowItem__num {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FFFFFF;
  padding: calc(8 / 375 * 100vw) calc(16 / 375 * 100vw);
  border-radius: calc(4 / 375 * 100vw);
}
@media (min-width: 768px) {
  .archiveFlowItem__num {
    padding: calc(8 / 1440 * 100vw) calc(18 / 1440 * 100vw);
    border-radius: calc(4 / 1440 * 100vw);
  }
}
.archiveFlowItem__label {
  font-size: calc(12 / 375 * 100vw);
  font-family: "Cormorant Garamond", serif;
  color: #9C9C9C;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .archiveFlowItem__label {
    font-size: calc(16 / 1440 * 100vw);
  }
}
.archiveFlowItem__number {
  font-size: calc(24 / 375 * 100vw);
  font-weight: 500;
  color: #26292A;
  line-height: 1;
}
@media (min-width: 768px) {
  .archiveFlowItem__number {
    font-size: calc(32 / 1440 * 100vw);
  }
}
.archiveFlowItem__title {
  font-size: calc(20 / 375 * 100vw);
  font-weight: 500;
  color: #26292A;
  line-height: 1.5;
  letter-spacing: 0.085em;
}
@media (min-width: 768px) {
  .archiveFlowItem__title {
    font-size: calc(24 / 1440 * 100vw);
  }
}
.archiveFlowItem__text {
  font-size: calc(16 / 375 * 100vw);
  color: #26292A;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .archiveFlowItem__text {
    font-size: calc(16 / 1440 * 100vw);
  }
}
.archiveFlowItem__image {
  position: relative;
  width: 100%;
  height: calc(196 / 375 * 100vw);
}
@media (min-width: 768px) {
  .archiveFlowItem__image {
    width: calc(300 / 1440 * 100vw);
    height: auto;
    flex-shrink: 0;
  }
}
.archiveFlowItem__image img {
  width: 100%;
  height: auto;
  border-radius: calc(6 / 375 * 100vw);
}
@media (min-width: 768px) {
  .archiveFlowItem__image img {
    border-radius: calc(6 / 1440 * 100vw);
  }
}
.archiveFlowItem__image .credit--left {
  bottom: 0;
  left: 50%;
  transform: translateX(-100%);
  padding: calc(10 / 375 * 100vw) calc(10 / 375 * 100vw) calc(10 / 375 * 100vw) calc(0 / 375 * 100vw);
  font-size: calc(8 / 375 * 100vw);
}
@media (min-width: 768px) {
  .archiveFlowItem__image .credit--left {
    padding: calc(10 / 1440 * 100vw) calc(10 / 1440 * 100vw) calc(10 / 1440 * 100vw) 0;
    font-size: calc(8 / 1440 * 100vw);
    white-space: nowrap;
  }
}
.archiveFlowItem__image .credit--right {
  bottom: 0;
  right: 0;
  padding: calc(10 / 375 * 100vw) calc(10 / 375 * 100vw);
  font-size: calc(5 / 375 * 100vw);
}
@media (min-width: 768px) {
  .archiveFlowItem__image .credit--right {
    padding: calc(10 / 1440 * 100vw) calc(10 / 1440 * 100vw);
    font-size: calc(8 / 1440 * 100vw);
  }
}
.archiveFlowItem__image .credit--small {
  font-size: calc(6 / 375 * 100vw);
}
@media (min-width: 768px) {
  .archiveFlowItem__image .credit--small {
    font-size: calc(6 / 1440 * 100vw);
  }
}

.contentHero {
  padding: calc(10 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentHero {
    padding: calc(30 / 1440 * 100vw);
  }
}
.contentHero__inner {
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: calc(212 / 375 * 100vw);
  height: calc(430 / 375 * 100vw);
  border-radius: calc(15 / 375 * 100vw);
  background-color: #26292A;
  background-image: url("../images/bg-hero-creative-content.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .contentHero__inner {
    padding-top: calc(294 / 1440 * 100vw);
    border-radius: calc(15 / 1440 * 100vw);
    height: calc(600 / 1440 * 100vw);
  }
}
.contentHero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(8 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentHero__title {
    gap: calc(16 / 1440 * 100vw);
  }
}
.contentHero__ja {
  font-size: calc(28 / 375 * 100vw);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
@media (min-width: 768px) {
  .contentHero__ja {
    letter-spacing: 0.1em;
    font-size: calc(32 / 1440 * 100vw);
  }
}
.contentHero__en {
  font-size: calc(14 / 375 * 100vw);
  font-family: "Cormorant Garamond", serif;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .contentHero__en {
    letter-spacing: 0.1em;
    font-size: calc(16 / 1440 * 100vw);
  }
}
.contentHero .credit {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: calc(5 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentHero .credit {
    writing-mode: unset;
    text-orientation: unset;
    font-size: calc(10 / 1440 * 100vw);
  }
}

.contentIntro {
  padding: 0 calc(20 / 375 * 100vw) calc(90 / 375 * 100vw);
  text-align: center;
}
@media (min-width: 768px) {
  .contentIntro {
    padding: 0 calc(40 / 1440 * 100vw) calc(80 / 1440 * 100vw);
  }
}
.contentIntro__inner {
  position: relative;
  z-index: 5;
  margin-bottom: calc(44 / 375 * 100vw);
  margin-top: calc(-40 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentIntro__inner {
    margin-top: calc(-60 / 1440 * 100vw);
    margin-bottom: calc(18 / 1440 * 100vw);
  }
}
.contentIntro__lead {
  font-size: calc(16 / 375 * 100vw);
  line-height: 2;
  color: #26292A;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .contentIntro__lead {
    font-size: calc(18 / 1440 * 100vw);
  }
}

.contentIntroTitle {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: flex-start;
  gap: calc(8 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentIntroTitle {
    gap: calc(10 / 1440 * 100vw);
  }
}
.contentIntroTitle__line {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: calc(24 / 375 * 100vw);
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.1;
  color: #BE9F4E;
  background: #FFFFFF;
  padding: calc(8 / 375 * 100vw) calc(6 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentIntroTitle__line {
    line-height: 1.6;
    font-size: calc(30 / 1440 * 100vw);
    padding: calc(14 / 1440 * 100vw) calc(2 / 1440 * 100vw);
  }
}

.contentFeatures {
  position: relative;
}
.contentFeatures__list {
  display: flex;
  flex-direction: column;
}
.contentFeatures__item {
  position: sticky;
  top: -70%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #26292A;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .contentFeatures__item {
    top: -50%;
  }
}
.contentFeatures__item[data-feature="01"] {
  z-index: 1;
}
.contentFeatures__item[data-feature="02"] {
  z-index: 2;
}
.contentFeatures__item[data-feature="03"] {
  z-index: 3;
}
.contentFeatures__itemInner {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: calc(80 / 375 * 100vw) calc(20 / 375 * 100vw);
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .contentFeatures__itemInner {
    width: calc(1200 / 1440 * 100vw);
    padding: calc(128 / 1440 * 100vw) 0;
  }
}
.contentFeatures__header {
  display: flex;
  align-items: flex-start;
  gap: calc(20 / 375 * 100vw);
  margin-bottom: calc(38 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentFeatures__header {
    gap: calc(30 / 1440 * 100vw);
    margin-bottom: calc(76 / 1440 * 100vw);
  }
}
.contentFeatures__label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: calc(18 / 375 * 100vw);
  font-weight: 500;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  padding: calc(12 / 375 * 100vw) calc(3 / 375 * 100vw);
  border-radius: calc(4 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentFeatures__label {
    font-size: calc(24 / 1440 * 100vw);
    padding: calc(16 / 1440 * 100vw) calc(3 / 1440 * 100vw);
    border-radius: calc(3 / 1440 * 100vw);
  }
}
.contentFeatures__title {
  display: flex;
  flex-direction: column;
  letter-spacing: 0.03em;
}
.contentFeatures__titleSub {
  font-size: calc(18 / 375 * 100vw);
  font-weight: 500;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .contentFeatures__titleSub {
    font-size: calc(28 / 1440 * 100vw);
  }
}
.contentFeatures__titleMain {
  font-size: calc(28 / 375 * 100vw);
  font-weight: 500;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .contentFeatures__titleMain {
    font-size: calc(38 / 1440 * 100vw);
  }
}
.contentFeatures__content {
  display: flex;
  flex-direction: column-reverse;
  gap: calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentFeatures__content {
    flex-direction: row;
    align-items: flex-start;
    gap: calc(40 / 1440 * 100vw);
  }
}
.contentFeatures__text {
  flex: 1;
}
.contentFeatures__image {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .contentFeatures__image {
    width: calc(590 / 1440 * 100vw);
    height: calc(590 / 1440 * 100vw);
    flex-shrink: 0;
  }
}
.contentFeatures__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contentFeatures__image .credit {
  bottom: 0;
  right: 0;
  padding: calc(15 / 375 * 100vw) calc(15 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentFeatures__image .credit {
    padding: calc(15 / 1440 * 100vw) calc(15 / 1440 * 100vw);
  }
}

.contentFeaturesText__number {
  display: block;
  font-size: calc(32 / 375 * 100vw);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentFeaturesText__number {
    font-size: calc(40 / 1440 * 100vw);
    margin-bottom: calc(20 / 1440 * 100vw);
  }
}
.contentFeaturesText__title {
  font-size: calc(24 / 375 * 100vw);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: calc(20 / 375 * 100vw);
  padding-bottom: calc(18 / 375 * 100vw);
  border-bottom: 1px solid #bbb;
}
@media (min-width: 768px) {
  .contentFeaturesText__title {
    font-size: calc(32 / 1440 * 100vw);
    margin-bottom: calc(30 / 1440 * 100vw);
    padding-bottom: calc(30 / 1440 * 100vw);
  }
}
.contentFeaturesText__desc {
  font-size: calc(16 / 375 * 100vw);
  color: #FFFFFF;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .contentFeaturesText__desc {
    font-size: calc(18 / 1440 * 100vw);
  }
}

.contentFlow {
  position: relative;
  padding: calc(60 / 375 * 100vw) calc(40 / 375 * 100vw) calc(110 / 375 * 100vw);
  background-color: #F5F5F5;
}
@media (min-width: 768px) {
  .contentFlow {
    padding: calc(80 / 1440 * 100vw) calc(314 / 1440 * 100vw) calc(120 / 1440 * 100vw) calc(180 / 1440 * 100vw);
  }
}
@media (min-width: 768px) {
  .contentFlow__inner {
    display: flex;
    gap: calc(90 / 1440 * 100vw);
  }
}
.contentFlow__header {
  position: absolute;
  top: calc(20 / 375 * 100vw);
  left: calc(20 / 375 * 100vw);
  z-index: 5;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .contentFlow__header {
    position: unset;
  }
}
.contentFlow__label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: calc(18 / 375 * 100vw);
  font-weight: 500;
  color: #FFFFFF;
  background-color: #26292A;
  padding: calc(12 / 375 * 100vw) calc(4 / 375 * 100vw);
  border-radius: calc(4 / 375 * 100vw);
  letter-spacing: 0.08em;
}
@media (min-width: 768px) {
  .contentFlow__label {
    font-size: calc(24 / 1440 * 100vw);
    padding: calc(16 / 1440 * 100vw) calc(4 / 1440 * 100vw);
    border-radius: calc(4 / 1440 * 100vw);
  }
}
.contentFlow__list {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .contentFlow__list {
    padding-top: calc(80 / 1440 * 100vw);
  }
}

.contentFlowItem {
  display: flex;
  flex-direction: column-reverse;
  gap: calc(15 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentFlowItem {
    flex-direction: row;
    align-items: center;
    gap: calc(60 / 1440 * 100vw);
  }
}
.contentFlowItem:not(:last-child) {
  position: relative;
  margin-bottom: calc(90 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentFlowItem:not(:last-child) {
    margin-bottom: calc(80 / 1440 * 100vw);
  }
}
.contentFlowItem:not(:last-child)::after {
  position: absolute;
  bottom: calc(-40 / 375 * 100vw);
  left: 50%;
  transform: translateY(100%) translateX(-50%);
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: calc(6 / 375 * 100vw) solid transparent;
  border-right: calc(6 / 375 * 100vw) solid transparent;
  border-top: calc(14 / 375 * 100vw) solid #26292A;
}
@media (min-width: 768px) {
  .contentFlowItem:not(:last-child)::after {
    bottom: calc(-42 / 1440 * 100vw);
    left: calc(222 / 1440 * 100vw);
    transform: translateY(100%);
    border-left-width: calc(6 / 1440 * 100vw);
    border-right-width: calc(6 / 1440 * 100vw);
    border-top-width: calc(14 / 1440 * 100vw);
  }
}
.contentFlowItem__main {
  flex: 1;
}
.contentFlowItem__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: calc(16 / 375 * 100vw);
  margin-bottom: calc(16 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentFlowItem__header {
    gap: calc(30 / 1440 * 100vw);
    margin-bottom: calc(42 / 1440 * 100vw);
  }
}
.contentFlowItem__num {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FFFFFF;
  padding: calc(8 / 375 * 100vw) calc(16 / 375 * 100vw);
  border-radius: calc(4 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentFlowItem__num {
    padding: calc(8 / 1440 * 100vw) calc(18 / 1440 * 100vw);
    border-radius: calc(4 / 1440 * 100vw);
  }
}
.contentFlowItem__label {
  font-size: calc(12 / 375 * 100vw);
  font-family: "Cormorant Garamond", serif;
  color: #9C9C9C;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .contentFlowItem__label {
    font-size: calc(16 / 1440 * 100vw);
  }
}
.contentFlowItem__number {
  font-size: calc(24 / 375 * 100vw);
  font-weight: 500;
  color: #26292A;
  line-height: 1;
}
@media (min-width: 768px) {
  .contentFlowItem__number {
    font-size: calc(32 / 1440 * 100vw);
  }
}
.contentFlowItem__title {
  font-size: calc(20 / 375 * 100vw);
  font-weight: 500;
  color: #26292A;
  line-height: 1.5;
  letter-spacing: 0.085em;
}
@media (min-width: 768px) {
  .contentFlowItem__title {
    font-size: calc(24 / 1440 * 100vw);
  }
}
.contentFlowItem__text {
  font-size: calc(16 / 375 * 100vw);
  color: #26292A;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .contentFlowItem__text {
    font-size: calc(16 / 1440 * 100vw);
  }
}
.contentFlowItem__image {
  position: relative;
  width: 100%;
  height: calc(196 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentFlowItem__image {
    width: calc(300 / 1440 * 100vw);
    height: auto;
    flex-shrink: 0;
  }
}
.contentFlowItem__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(6 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentFlowItem__image img {
    border-radius: calc(6 / 1440 * 100vw);
  }
}
.contentFlowItem__image .credit {
  bottom: 0;
  right: 0;
  padding: calc(10 / 375 * 100vw) calc(10 / 375 * 100vw);
  font-size: calc(5 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentFlowItem__image .credit {
    padding: calc(10 / 1440 * 100vw) calc(10 / 1440 * 100vw);
    font-size: calc(8 / 1440 * 100vw);
  }
}

.contentSupport {
  padding: calc(80 / 375 * 100vw) calc(20 / 375 * 100vw);
  background-color: #F5F5F5;
}
@media (min-width: 768px) {
  .contentSupport {
    padding: calc(120 / 1440 * 100vw) 0;
  }
}
@media (min-width: 768px) {
  .contentSupport__inner {
    width: calc(1200 / 1440 * 100vw);
    margin: 0 auto;
  }
}
.contentSupport__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: calc(25 / 375 * 100vw);
  margin-bottom: calc(42 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentSupport__header {
    gap: calc(34 / 1440 * 100vw);
    margin-bottom: calc(50 / 1440 * 100vw);
  }
}
.contentSupport__label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: calc(18 / 375 * 100vw);
  font-weight: 500;
  color: #FFFFFF;
  background-color: #26292A;
  padding: calc(14 / 375 * 100vw) calc(6 / 375 * 100vw);
  border-radius: calc(4 / 375 * 100vw);
  letter-spacing: 0.08em;
}
@media (min-width: 768px) {
  .contentSupport__label {
    font-size: calc(24 / 1440 * 100vw);
    padding: calc(18 / 1440 * 100vw) calc(4 / 1440 * 100vw) calc(14 / 1440 * 100vw);
    border-radius: calc(4 / 1440 * 100vw);
  }
}
.contentSupport__title {
  display: flex;
  flex-direction: column;
  gap: calc(8 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentSupport__title {
    text-align: center;
    gap: calc(12 / 1440 * 100vw);
  }
}
.contentSupport__titleSub {
  font-size: calc(18 / 375 * 100vw);
  font-weight: 500;
  color: #26292A;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .contentSupport__titleSub {
    line-height: 1.5;
    font-size: calc(28 / 1440 * 100vw);
  }
}
.contentSupport__titleMain {
  font-size: calc(28 / 375 * 100vw);
  font-weight: 500;
  color: #26292A;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .contentSupport__titleMain {
    font-size: calc(38 / 1440 * 100vw);
  }
}
.contentSupport__list {
  display: flex;
  flex-direction: column;
  gap: calc(50 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentSupport__list {
    gap: calc(50 / 1440 * 100vw);
  }
}

.contentSupportItem {
  display: flex;
  flex-direction: column-reverse;
  gap: calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentSupportItem {
    flex-direction: row;
    align-items: center;
    gap: calc(0 / 1440 * 100vw);
  }
}
.contentSupportItem__content {
  flex: 1;
}
.contentSupportItem__title {
  position: relative;
  display: flex;
  align-items: center;
  gap: calc(10 / 375 * 100vw);
  font-size: calc(20 / 375 * 100vw);
  font-weight: 900;
  color: #26292A;
  line-height: 1.75;
  margin-bottom: calc(20 / 375 * 100vw);
  padding-bottom: calc(10 / 375 * 100vw);
  border-bottom: 1px dashed #DADADA;
}
@media (min-width: 768px) {
  .contentSupportItem__title {
    gap: calc(20 / 1440 * 100vw);
    font-size: calc(24 / 1440 * 100vw);
    margin-bottom: calc(20 / 1440 * 100vw);
    padding-bottom: calc(20 / 1440 * 100vw);
  }
}
.contentSupportItem__title::before {
  content: "";
  width: calc(6 / 375 * 100vw);
  height: calc(6 / 375 * 100vw);
  background-color: #C4A55B;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .contentSupportItem__title::before {
    width: calc(8 / 1440 * 100vw);
    height: calc(8 / 1440 * 100vw);
  }
}
.contentSupportItem__text {
  font-size: calc(16 / 375 * 100vw);
  color: #26292A;
  font-weight: 500;
  line-height: 2;
}
@media (min-width: 768px) {
  .contentSupportItem__text {
    padding-right: calc(50 / 1440 * 100vw);
    font-size: calc(16 / 1440 * 100vw);
  }
}
.contentSupportItem__image {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .contentSupportItem__image {
    width: calc(575 / 1440 * 100vw);
    flex-shrink: 0;
  }
}
.contentSupportItem__image img {
  width: 100%;
  height: auto;
  border-radius: calc(8 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentSupportItem__image img {
    border-radius: calc(8 / 1440 * 100vw);
  }
}
.contentSupportItem__image .credit--left {
  bottom: 0;
  left: 50%;
  transform: translateX(-100%);
  padding: calc(10 / 375 * 100vw) calc(10 / 375 * 100vw);
  font-size: calc(5 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentSupportItem__image .credit--left {
    padding: calc(10 / 1440 * 100vw) calc(10 / 1440 * 100vw);
    font-size: calc(8 / 1440 * 100vw);
  }
}
.contentSupportItem__image .credit--right {
  bottom: 0;
  right: 0;
  padding: calc(10 / 375 * 100vw) calc(10 / 375 * 100vw);
  font-size: calc(5 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contentSupportItem__image .credit--right {
    padding: calc(10 / 1440 * 100vw) calc(10 / 1440 * 100vw);
    font-size: calc(8 / 1440 * 100vw);
  }
}

@media (min-width: 768px) {
  .page-contact .cm-contact {
    margin-top: calc(80 / 1440 * 100vw);
  }
}

.contactForm {
  padding: calc(30 / 375 * 100vw) calc(0 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contactForm {
    padding: calc(50 / 1440 * 100vw) 0 0;
  }
}
.contactForm__header {
  text-align: center;
  margin-bottom: calc(40 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contactForm__header {
    margin-bottom: calc(50 / 1440 * 100vw);
  }
}
.contactForm__title {
  font-size: calc(24 / 375 * 100vw);
  font-weight: 500;
  color: #26292A;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-bottom: calc(30 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contactForm__title {
    font-size: calc(38 / 1440 * 100vw);
    margin-bottom: calc(30 / 1440 * 100vw);
  }
}
.contactForm__lead {
  font-size: calc(16 / 375 * 100vw);
  color: #26292A;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .contactForm__lead {
    font-size: calc(16 / 1440 * 100vw);
  }
}
.contactForm__embed {
  background-color: #FFFFFF;
  padding: calc(80 / 375 * 100vw) calc(20 / 375 * 100vw);
  margin-bottom: calc(50 / 375 * 100vw);
  margin-top: calc(70 / 375 * 100vw);
  border-radius: calc(16 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contactForm__embed {
    padding: calc(80 / 1440 * 100vw) calc(60 / 1440 * 100vw);
    margin-bottom: calc(50 / 1440 * 100vw);
    margin-top: calc(70 / 1440 * 100vw);
    width: calc(1380 / 1440 * 100vw);
    border-radius: calc(16 / 1440 * 100vw);
    margin-inline: auto;
  }
}
.contactForm__subtitle {
  font-size: calc(22 / 375 * 100vw);
  font-weight: 400;
  color: #26292A;
  text-align: center;
  line-height: 1.75;
  margin-bottom: calc(80 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contactForm__subtitle {
    font-size: calc(24 / 1440 * 100vw);
    margin-bottom: calc(50 / 1440 * 100vw);
  }
}
.contactForm__note {
  font-size: calc(16 / 375 * 100vw);
  color: #26292A;
  text-align: center;
  line-height: 1.75;
  margin-top: calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contactForm__note {
    font-size: calc(16 / 1440 * 100vw);
    margin-top: calc(20 / 1440 * 100vw);
  }
}
.contactForm__note .highlight {
  color: #9A3938;
}

.contactNotice {
  border: 1px solid #BBBBBB;
  padding: calc(30 / 375 * 100vw) calc(25 / 375 * 100vw) calc(30 / 375 * 100vw) calc(20 / 375 * 100vw);
  border-radius: calc(8 / 375 * 100vw);
  height: calc(402 / 375 * 100vw);
  overflow-y: auto;
  margin: 0 calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contactNotice {
    padding: calc(40 / 1440 * 100vw) calc(60 / 1440 * 100vw) calc(40 / 1440 * 100vw) calc(50 / 1440 * 100vw);
    width: calc(750 / 1440 * 100vw);
    height: calc(387 / 1440 * 100vw);
    border-radius: calc(8 / 1440 * 100vw);
    margin-inline: auto;
  }
}
.contactNotice__title {
  font-size: calc(20 / 375 * 100vw);
  font-weight: 500;
  color: #26292A;
  text-align: center;
  line-height: 1.75;
  margin-bottom: calc(16 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contactNotice__title {
    font-size: calc(20 / 1440 * 100vw);
    margin-bottom: calc(20 / 1440 * 100vw);
  }
}
.contactNotice__content p {
  font-size: calc(16 / 375 * 100vw);
  color: #26292A;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 1.5em;
}
@media (min-width: 768px) {
  .contactNotice__content p {
    font-size: calc(16 / 1440 * 100vw);
  }
}
.contactNotice__content p:last-child {
  margin-bottom: 0;
}

.privacyAgree {
  text-align: center;
  margin-top: calc(30 / 375 * 100vw);
}
@media (min-width: 768px) {
  .privacyAgree {
    margin-top: calc(30 / 1440 * 100vw);
  }
}
.privacyAgree__checkbox {
  display: inline-flex;
  align-items: center;
  gap: calc(12 / 375 * 100vw);
  cursor: pointer;
}
@media (min-width: 768px) {
  .privacyAgree__checkbox {
    gap: calc(14 / 1440 * 100vw);
  }
}
.privacyAgree__checkbox input[type=checkbox] {
  display: none;
}
.privacyAgree__checkmark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(20 / 375 * 100vw);
  height: calc(20 / 375 * 100vw);
  border: 1px solid #DADADA;
  background-color: #FFFFFF;
  background-position: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border-radius: calc(4 / 375 * 100vw);
}
@media (min-width: 768px) {
  .privacyAgree__checkmark {
    border-radius: calc(4 / 1440 * 100vw);
    width: calc(22 / 1440 * 100vw);
    height: calc(22 / 1440 * 100vw);
  }
}
input[type=checkbox]:checked + .privacyAgree__checkmark {
  background-image: url("../images/icn-check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: calc(12 / 375 * 100vw) auto;
}
@media (min-width: 768px) {
  input[type=checkbox]:checked + .privacyAgree__checkmark {
    background-size: calc(12 / 1440 * 100vw) auto;
  }
}
.privacyAgree__label {
  font-size: calc(18 / 375 * 100vw);
  font-weight: 500;
  color: #26292A;
}
@media (min-width: 768px) {
  .privacyAgree__label {
    font-size: calc(18 / 1440 * 100vw);
  }
}

.contactInfo {
  border-top: 1px solid #DADADA;
  border-bottom: 1px solid #DADADA;
  padding-top: calc(65 / 375 * 100vw);
  padding-bottom: calc(65 / 375 * 100vw);
  margin-top: calc(80 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contactInfo {
    width: calc(680 / 1440 * 100vw);
    margin-inline: auto;
    padding-top: calc(25 / 1440 * 100vw);
    padding-bottom: calc(25 / 1440 * 100vw);
    padding-left: calc(115 / 1440 * 100vw);
    padding-right: calc(115 / 1440 * 100vw);
    margin-top: calc(80 / 1440 * 100vw);
  }
}
.contactInfo__list {
  display: flex;
  flex-direction: column;
  gap: calc(30 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contactInfo__list {
    gap: calc(30 / 1440 * 100vw);
  }
}
.contactInfo__item {
  display: flex;
  flex-direction: column;
  font-size: calc(18 / 375 * 100vw);
  color: #26292A;
}
@media (min-width: 768px) {
  .contactInfo__item {
    font-size: calc(18 / 1440 * 100vw);
  }
}
.contactInfo__item dt {
  display: flex;
  align-items: center;
  color: #26292A;
  flex-shrink: 0;
  gap: calc(10 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contactInfo__item dt {
    gap: calc(10 / 1440 * 100vw);
  }
}
.contactInfo__item dt::before {
  content: "";
  width: calc(8 / 375 * 100vw);
  height: calc(8 / 375 * 100vw);
  border-radius: 50%;
  background-color: #C4A55B;
}
@media (min-width: 768px) {
  .contactInfo__item dt::before {
    width: calc(8 / 1440 * 100vw);
    height: calc(8 / 1440 * 100vw);
  }
}
.contactInfo__item dd {
  margin: 0;
  word-break: break-all;
  padding-left: calc(17 / 375 * 100vw);
  line-height: 1.75;
}
@media (min-width: 768px) {
  .contactInfo__item dd {
    padding-left: calc(17 / 1440 * 100vw);
  }
}
.contactInfo__item dd a {
  color: #6ABDDB;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.contactInfo__item dd a:hover {
  opacity: 0.7;
}

.contactFaq {
  padding: calc(60 / 375 * 100vw) calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contactFaq {
    padding: calc(30 / 1440 * 100vw) calc(40 / 1440 * 100vw);
  }
}
@media (min-width: 768px) {
  .contactFaq__inner {
    width: calc(750 / 1440 * 100vw);
    margin: 0 auto;
  }
}
.contactFaq__header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(25 / 375 * 100vw);
  margin-bottom: calc(60 / 375 * 100vw);
}
@media (min-width: 768px) {
  .contactFaq__header {
    gap: calc(34 / 1440 * 100vw);
    margin-bottom: calc(35 / 1440 * 100vw);
  }
}
.contactFaq__label {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: calc(18 / 375 * 100vw);
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: #FFFFFF;
  background-color: #26292A;
  padding: calc(16 / 375 * 100vw) calc(8 / 375 * 100vw);
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .contactFaq__label {
    font-size: calc(24 / 1440 * 100vw);
    padding: calc(20 / 1440 * 100vw) calc(5 / 1440 * 100vw);
  }
}
.contactFaq__title {
  font-size: calc(28 / 375 * 100vw);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .contactFaq__title {
    font-size: calc(38 / 1440 * 100vw);
  }
}
.contactFaq__list {
  display: flex;
  flex-direction: column;
  gap: calc(1 / 375 * 100vw);
}

.faqItem__question {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: calc(12 / 375 * 100vw);
  width: 100%;
  padding: calc(20 / 375 * 100vw) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
  border-bottom: 2px dashed #DADADA;
}
@media (min-width: 768px) {
  .faqItem__question {
    gap: calc(20 / 1440 * 100vw);
    padding: calc(24 / 1440 * 100vw) calc(24 / 1440 * 100vw) calc(24 / 1440 * 100vw) 0;
  }
}
.faqItem__question:hover {
  background-color: rgba(245, 245, 245, 0.5);
}
.faqItem__question[aria-expanded=true] .faqItem__toggle::after {
  transform: translate(-50%, -50%) rotate(180deg);
}
.faqItem__icon {
  font-size: calc(16 / 375 * 100vw);
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  flex-shrink: 0;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .faqItem__icon {
    font-size: calc(20 / 1440 * 100vw);
  }
}
.faqItem__text {
  flex: 1;
  font-size: calc(14 / 375 * 100vw);
  font-weight: 400;
  color: #26292A;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .faqItem__text {
    font-size: calc(20 / 1440 * 100vw);
  }
}
.faqItem__toggle {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: calc(20 / 375 * 100vw);
  height: calc(20 / 375 * 100vw);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .faqItem__toggle {
    width: calc(24 / 1440 * 100vw);
    height: calc(24 / 1440 * 100vw);
  }
}
.faqItem__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-left: calc(5 / 375 * 100vw) solid transparent;
  border-right: calc(5 / 375 * 100vw) solid transparent;
  border-top: calc(7 / 375 * 100vw) solid #26292A;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .faqItem__toggle::after {
    border-left: calc(5 / 1440 * 100vw) solid transparent;
    border-right: calc(5 / 1440 * 100vw) solid transparent;
    border-top: calc(10 / 1440 * 100vw) solid #26292A;
  }
}
.faqItem__answer {
  display: none;
}
.faqItem__answerInner {
  display: flex;
  gap: calc(12 / 375 * 100vw);
  padding: calc(20 / 375 * 100vw) 0;
}
@media (min-width: 768px) {
  .faqItem__answerInner {
    gap: calc(16 / 1440 * 100vw);
    padding: calc(24 / 1440 * 100vw) 0;
  }
}
.faqItem__answerIcon {
  font-size: calc(16 / 375 * 100vw);
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: #C4A55B;
  flex-shrink: 0;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .faqItem__answerIcon {
    font-size: calc(20 / 1440 * 100vw);
  }
}
.faqItem__answerText {
  font-size: calc(14 / 375 * 100vw);
  color: #26292A;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .faqItem__answerText {
    font-size: calc(16 / 1440 * 100vw);
  }
}

.mktoForm {
  width: 100% !important;
  font-family: "Zen Old Mincho", serif !important;
  font-size: calc(14 / 375 * 100vw) !important;
  color: #26292A !important;
  padding: 0 !important;
}
@media (min-width: 768px) {
  .mktoForm {
    width: calc(680 / 1440 * 100vw) !important;
    margin-inline: auto !important;
    font-size: calc(14 / 1440 * 100vw) !important;
  }
}
.mktoForm * {
  box-sizing: border-box !important;
}
.mktoForm .mktoFormRow {
  margin-bottom: calc(42 / 375 * 100vw) !important;
}
@media (min-width: 768px) {
  .mktoForm .mktoFormRow {
    margin-bottom: calc(32 / 1440 * 100vw) !important;
  }
}
.mktoForm .mktoFormRow .mktoFormCol {
  width: 100% !important;
}
.mktoForm .mktoFormRow:has(.mktoFormCol + .mktoFormCol) {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: calc(16 / 375 * 100vw) !important;
}
@media (min-width: 768px) {
  .mktoForm .mktoFormRow:has(.mktoFormCol + .mktoFormCol) {
    gap: calc(24 / 1440 * 100vw) !important;
  }
}
.mktoForm .mktoFormRow:has(.mktoFormCol + .mktoFormCol) .mktoFormCol {
  flex: 1 !important;
  min-width: calc(140 / 375 * 100vw) !important;
}
@media (min-width: 768px) {
  .mktoForm .mktoFormRow:has(.mktoFormCol + .mktoFormCol) .mktoFormCol {
    min-width: calc(200 / 1440 * 100vw) !important;
  }
}
.mktoForm .mktoFormCol {
  margin-bottom: 0 !important;
}
.mktoForm .mktoOffset,
.mktoForm .mktoGutter {
  display: none !important;
}
.mktoForm .mktoFieldWrap {
  width: 100% !important;
}
.mktoForm .mktoFieldDescriptor {
  margin-bottom: 0 !important;
}
.mktoForm .mktoLabel {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  font-size: calc(18 / 375 * 100vw) !important;
  font-weight: 400 !important;
  color: #26292A !important;
  margin-bottom: calc(14 / 375 * 100vw) !important;
  padding: 0 !important;
}
@media (min-width: 768px) {
  .mktoForm .mktoLabel {
    font-size: calc(18 / 1440 * 100vw) !important;
    margin-bottom: calc(14 / 1440 * 100vw) !important;
  }
}
.mktoForm .mktoAsterix {
  order: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: calc(2 / 375 * 100vw) calc(10 / 375 * 100vw) !important;
  margin-left: calc(15 / 375 * 100vw) !important;
  font-size: calc(14 / 375 * 100vw) !important;
  font-weight: 400 !important;
  color: #FFFFFF !important;
  background-color: #9A3938 !important;
  border-radius: calc(2 / 375 * 100vw) !important;
}
@media (min-width: 768px) {
  .mktoForm .mktoAsterix {
    padding: calc(1 / 1440 * 100vw) calc(13 / 1440 * 100vw) !important;
    margin-left: calc(15 / 1440 * 100vw) !important;
    font-size: calc(14 / 1440 * 100vw) !important;
    border-radius: calc(2 / 1440 * 100vw) !important;
  }
}
.mktoForm .mktoAsterix {
  font-size: 0 !important;
}
.mktoForm .mktoAsterix::after {
  content: "必須" !important;
  font-size: calc(14 / 375 * 100vw) !important;
}
@media (min-width: 768px) {
  .mktoForm .mktoAsterix::after {
    font-size: calc(11 / 1440 * 100vw) !important;
  }
}
.mktoForm input.mktoField[type=text],
.mktoForm input.mktoField[type=email],
.mktoForm input.mktoField[type=tel],
.mktoForm select.mktoField,
.mktoForm textarea.mktoField {
  width: 100% !important;
  padding: calc(26 / 375 * 100vw) calc(16 / 375 * 100vw) !important;
  font-size: calc(16 / 375 * 100vw) !important;
  font-family: "Zen Old Mincho", serif !important;
  color: #26292A !important;
  border: 1px solid #DADADA !important;
  border-radius: calc(4 / 375 * 100vw) !important;
  background-color: #FFFFFF !important;
  transition: border-color 0.3s ease !important;
}
@media (min-width: 768px) {
  .mktoForm input.mktoField[type=text],
  .mktoForm input.mktoField[type=email],
  .mktoForm input.mktoField[type=tel],
  .mktoForm select.mktoField,
  .mktoForm textarea.mktoField {
    padding: calc(18 / 1440 * 100vw) calc(18 / 1440 * 100vw) !important;
    font-size: calc(16 / 1440 * 100vw) !important;
    border-radius: calc(4 / 1440 * 100vw) !important;
  }
}
.mktoForm input.mktoField[type=text]:focus,
.mktoForm input.mktoField[type=email]:focus,
.mktoForm input.mktoField[type=tel]:focus,
.mktoForm select.mktoField:focus,
.mktoForm textarea.mktoField:focus {
  outline: none !important;
  border-color: #C4A55B !important;
}
.mktoForm input.mktoField[type=text]::placeholder,
.mktoForm input.mktoField[type=email]::placeholder,
.mktoForm input.mktoField[type=tel]::placeholder,
.mktoForm select.mktoField::placeholder,
.mktoForm textarea.mktoField::placeholder {
  color: #BBBBBB !important;
}
.mktoForm select.mktoField {
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%2326292A' d='M5 6L0 0h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right calc(16 / 375 * 100vw) center !important;
  padding-right: calc(40 / 375 * 100vw) !important;
  cursor: pointer !important;
}
@media (min-width: 768px) {
  .mktoForm select.mktoField {
    background-position: right calc(18 / 1440 * 100vw) center !important;
    padding-right: calc(44 / 1440 * 100vw) !important;
  }
}
.mktoForm textarea.mktoField {
  min-height: calc(150 / 375 * 100vw) !important;
  resize: vertical !important;
}
@media (min-width: 768px) {
  .mktoForm textarea.mktoField {
    min-height: calc(180 / 1440 * 100vw) !important;
  }
}
.mktoForm .mktoRadioList,
.mktoForm .mktoCheckboxList {
  display: flex !important;
  flex-direction: column !important;
  gap: calc(10 / 375 * 100vw) !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}
@media (min-width: 768px) {
  .mktoForm .mktoRadioList,
  .mktoForm .mktoCheckboxList {
    gap: calc(12 / 1440 * 100vw) !important;
  }
}
.mktoForm .mktoRadioList input[type=radio],
.mktoForm .mktoRadioList input[type=checkbox],
.mktoForm .mktoCheckboxList input[type=radio],
.mktoForm .mktoCheckboxList input[type=checkbox] {
  position: absolute !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
}
.mktoForm .mktoRadioList label,
.mktoForm .mktoCheckboxList label {
  display: inline-flex !important;
  align-items: flex-start !important;
  font-size: calc(18 / 375 * 100vw) !important;
  font-weight: 400 !important;
  color: #26292A !important;
  cursor: pointer !important;
  position: relative !important;
  padding-left: calc(32 / 375 * 100vw) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}
@media (min-width: 768px) {
  .mktoForm .mktoRadioList label,
  .mktoForm .mktoCheckboxList label {
    font-size: calc(16 / 1440 * 100vw) !important;
    padding-left: calc(30 / 1440 * 100vw) !important;
  }
}
.mktoForm .mktoRadioList label::before,
.mktoForm .mktoCheckboxList label::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: calc(3 / 375 * 100vw) !important;
  width: calc(22 / 375 * 100vw) !important;
  height: calc(22 / 375 * 100vw) !important;
  border: 1px solid #DADADA !important;
  border-radius: 50% !important;
  background-color: #FFFFFF !important;
  transition: all 0.2s ease !important;
}
@media (min-width: 768px) {
  .mktoForm .mktoRadioList label::before,
  .mktoForm .mktoCheckboxList label::before {
    top: calc(3 / 1440 * 100vw) !important;
    width: calc(22 / 1440 * 100vw) !important;
    height: calc(22 / 1440 * 100vw) !important;
  }
}
.mktoForm .mktoRadioList label::after,
.mktoForm .mktoCheckboxList label::after {
  content: "" !important;
  position: absolute !important;
  left: calc(5 / 375 * 100vw) !important;
  top: calc(8 / 375 * 100vw) !important;
  width: calc(12 / 375 * 100vw) !important;
  height: calc(12 / 375 * 100vw) !important;
  border-radius: 50% !important;
  background-color: #C4A55B !important;
  opacity: 0 !important;
  transition: opacity 0.2s ease !important;
}
@media (min-width: 768px) {
  .mktoForm .mktoRadioList label::after,
  .mktoForm .mktoCheckboxList label::after {
    left: calc(5 / 1440 * 100vw) !important;
    top: calc(8 / 1440 * 100vw) !important;
    width: calc(12 / 1440 * 100vw) !important;
    height: calc(12 / 1440 * 100vw) !important;
  }
}
.mktoForm .mktoRadioList input[type=radio]:checked + label::before,
.mktoForm .mktoRadioList input[type=checkbox]:checked + label::before,
.mktoForm .mktoCheckboxList input[type=radio]:checked + label::before,
.mktoForm .mktoCheckboxList input[type=checkbox]:checked + label::before {
  border-color: #DADADA !important;
}
.mktoForm .mktoRadioList input[type=radio]:checked + label::after,
.mktoForm .mktoRadioList input[type=checkbox]:checked + label::after,
.mktoForm .mktoCheckboxList input[type=radio]:checked + label::after,
.mktoForm .mktoCheckboxList input[type=checkbox]:checked + label::after {
  opacity: 1 !important;
}
.mktoForm .mktoCheckboxList label::before {
  border-radius: calc(2 / 375 * 100vw) !important;
}
@media (min-width: 768px) {
  .mktoForm .mktoCheckboxList label::before {
    border-radius: calc(2 / 1440 * 100vw) !important;
  }
}
.mktoForm .mktoCheckboxList label::after {
  left: calc(5 / 375 * 100vw) !important;
  top: calc(5 / 375 * 100vw) !important;
  width: calc(5 / 375 * 100vw) !important;
  height: calc(9 / 375 * 100vw) !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  border: solid #26292A !important;
  border-width: 0 2px 2px 0 !important;
  transform: rotate(45deg) !important;
}
@media (min-width: 768px) {
  .mktoForm .mktoCheckboxList label::after {
    left: calc(5 / 1440 * 100vw) !important;
    top: calc(5 / 1440 * 100vw) !important;
    width: calc(5 / 1440 * 100vw) !important;
    height: calc(9 / 1440 * 100vw) !important;
  }
}
.mktoForm .mktoInstruction {
  display: block !important;
  font-size: calc(12 / 375 * 100vw) !important;
  color: #dc3545 !important;
  margin-top: calc(6 / 375 * 100vw) !important;
}
@media (min-width: 768px) {
  .mktoForm .mktoInstruction {
    font-size: calc(12 / 1440 * 100vw) !important;
    margin-top: calc(8 / 1440 * 100vw) !important;
  }
}
.mktoForm .mktoClear {
  clear: both !important;
  height: 0 !important;
}
.mktoForm .mktoButtonRow {
  display: flex;
  justify-content: center;
  width: 100% !important;
  text-align: center !important;
  margin-top: calc(20 / 375 * 100vw) !important;
}
@media (min-width: 768px) {
  .mktoForm .mktoButtonRow {
    margin-top: calc(50 / 1440 * 100vw) !important;
  }
}
.mktoForm .mktoButtonWrap {
  margin-left: 0 !important;
}
.mktoForm .mktoButton {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: calc(240 / 375 * 100vw) !important;
  padding: calc(18 / 375 * 100vw) calc(60 / 375 * 100vw) !important;
  font-size: calc(16 / 375 * 100vw) !important;
  font-weight: 400 !important;
  font-family: "Zen Old Mincho", serif !important;
  color: #FFFFFF !important;
  background: #26292A !important;
  border: none !important;
  border-radius: calc(50 / 375 * 100vw) !important;
  cursor: pointer !important;
  transition: opacity 0.3s ease !important;
  margin-inline: auto !important;
}
@media (min-width: 768px) {
  .mktoForm .mktoButton {
    width: calc(240 / 1440 * 100vw) !important;
    padding: calc(18 / 1440 * 100vw) calc(80 / 1440 * 100vw) !important;
    font-size: calc(16 / 1440 * 100vw) !important;
    border-radius: calc(50 / 1440 * 100vw) !important;
  }
}
.mktoForm .mktoButton:hover:not(:disabled) {
  opacity: 0.8 !important;
}
.mktoForm .mktoButton:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}
.mktoForm input[type=hidden] {
  display: none !important;
}

.onlyPc {
  display: none;
}
@media (min-width: 768px) {
  .onlyPc {
    display: inline;
  }
}

.inquiryThanks {
  padding: calc(80 / 375 * 100vw) calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .inquiryThanks {
    padding: calc(80 / 1440 * 100vw) calc(40 / 1440 * 100vw);
  }
}
.inquiryThanks__inner {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}
.inquiryThanks__title {
  font-size: calc(24 / 375 * 100vw);
  font-weight: 500;
  color: #26292A;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-bottom: calc(30 / 375 * 100vw);
}
@media (min-width: 768px) {
  .inquiryThanks__title {
    font-size: calc(38 / 1440 * 100vw);
    margin-bottom: calc(30 / 1440 * 100vw);
  }
}
.inquiryThanks__message {
  font-size: calc(16 / 375 * 100vw);
  color: #26292A;
  line-height: 1.75;
  margin-bottom: calc(30 / 375 * 100vw);
}
@media (min-width: 768px) {
  .inquiryThanks__message {
    font-size: calc(16 / 1440 * 100vw);
    margin-bottom: calc(80 / 1440 * 100vw);
  }
}
.inquiryThanks__action {
  display: flex;
  justify-content: center;
}
.inquiryThanks__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(240 / 375 * 100vw);
  padding: calc(17 / 375 * 100vw) 0;
  font-size: calc(18 / 375 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  font-family: "Zen Old Mincho", serif;
  color: #FFFFFF;
  background: #26292A;
  border: none;
  border-radius: calc(50 / 375 * 100vw);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .inquiryThanks__button {
    width: calc(280 / 1440 * 100vw);
    padding: calc(22 / 1440 * 100vw) calc(80 / 1440 * 100vw);
    font-size: calc(16 / 1440 * 100vw);
    border-radius: calc(50 / 1440 * 100vw);
  }
}
.inquiryThanks__button:hover {
  opacity: 0.8;
}

.middleHero--404 .middleHero__title {
  gap: calc(4 / 375 * 100vw);
}
@media (min-width: 768px) {
  .middleHero--404 .middleHero__title {
    gap: calc(4 / 1440 * 100vw);
  }
}
.middleHero--404 .middleHero__code {
  font-size: calc(48 / 375 * 100vw);
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .middleHero--404 .middleHero__code {
    font-size: calc(64 / 1440 * 100vw);
  }
}

.notFound {
  padding: calc(80 / 375 * 100vw) calc(20 / 375 * 100vw);
}
@media (min-width: 768px) {
  .notFound {
    padding: calc(80 / 1440 * 100vw) calc(40 / 1440 * 100vw);
  }
}
.notFound__inner {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}
.notFound__title {
  font-size: calc(18 / 375 * 100vw);
  font-weight: 500;
  color: #26292A;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-bottom: calc(16 / 375 * 100vw);
}
@media (min-width: 768px) {
  .notFound__title {
    font-size: calc(18 / 1440 * 100vw);
    margin-bottom: calc(16 / 1440 * 100vw);
  }
}
.notFound__message {
  font-size: calc(16 / 375 * 100vw);
  color: #26292A;
  line-height: 1.75;
  margin-bottom: calc(30 / 375 * 100vw);
}
@media (min-width: 768px) {
  .notFound__message {
    font-size: calc(16 / 1440 * 100vw);
    margin-bottom: calc(80 / 1440 * 100vw);
  }
}
.notFound__action {
  display: flex;
  justify-content: center;
}
.notFound__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(240 / 375 * 100vw);
  padding: calc(17 / 375 * 100vw) 0;
  font-size: calc(18 / 375 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  font-family: "Zen Old Mincho", serif;
  color: #FFFFFF;
  background: #26292A;
  border: none;
  border-radius: calc(50 / 375 * 100vw);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .notFound__button {
    width: calc(280 / 1440 * 100vw);
    padding: calc(22 / 1440 * 100vw) calc(80 / 1440 * 100vw);
    font-size: calc(16 / 1440 * 100vw);
    border-radius: calc(50 / 1440 * 100vw);
  }
}
.notFound__button:hover {
  opacity: 0.8;
}

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