@charset "UTF-8";
/*
 例：font-size: g.vw(15); デザインデータ上で375pxで作成されていて、15pxの場合
 viewport 幅に応じてスケールする（375px 幅で $size px 相当）
 iOS Safari 互換のため calc(100vw * N / 375) 形式を使用する
*/
/*
 フォントサイズ用。vw スケールに加え、ブラウザの文字サイズ設定（rem）も下限として反映する
*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

* {
  box-sizing: border-box;
}

html {
  color: #150e17;
  background-color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 100%;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.5em;
}
html.is-hamburger-active {
  overflow: hidden;
}

body {
  font-size: max(0.8125rem, 100vw * 13 / 375);
}
@media print, screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 1050px) {
  body {
    font-size: 16px;
  }
}

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: break-word;
}

table {
  border-spacing: 0;
}

button {
  outline: none;
}

.container {
  width: 100%;
  max-width: 1090px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media print, screen and (min-width: 768px) {
  .container {
    max-width: 1150px;
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media print, screen and (min-width: 1050px) {
  .container {
    max-width: 1150px;
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media print, screen and (min-width: 1450px) {
  .container {
    max-width: 1250px;
    padding-right: 100px;
    padding-left: 100px;
  }
}
.container--wide {
  max-width: 1140px;
}
@media print, screen and (min-width: 768px) {
  .container--wide {
    max-width: 1200px;
  }
}
@media print, screen and (min-width: 1050px) {
  .container--wide {
    max-width: 1200px;
  }
}
@media print, screen and (min-width: 1450px) {
  .container--wide {
    max-width: 1300px;
  }
}
.container--concept {
  max-width: 960px;
}
@media print, screen and (min-width: 768px) {
  .container--concept {
    max-width: 1020px;
  }
}
@media print, screen and (min-width: 1050px) {
  .container--concept {
    max-width: 1020px;
  }
}
@media print, screen and (min-width: 1450px) {
  .container--concept {
    max-width: 1120px;
  }
}
.container--full {
  max-width: none;
}

.heading__en {
  font-family: "Roboto", sans-serif;
  font-size: max(2.8125rem, 100vw * 45 / 375);
  font-weight: 300;
  letter-spacing: 0.05em;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .heading__en {
    font-size: 45px;
  }
}

.heading__ja {
  font-size: max(1rem, 100vw * 16 / 375);
  letter-spacing: 0.15em;
  text-align: center;
  margin-top: calc(100vw * 16 / 375);
}
@media print, screen and (min-width: 768px) {
  .heading__ja {
    font-size: 16px;
    margin-top: 16px;
  }
}

.image:not(:first-child) {
  margin-top: 50px;
}

.image:not(:last-child) {
  margin-bottom: 30px;
}

.aside {
  background-image: url("/assets/images/common/bg_footer.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 80px 0;
}

.aside__heading {
  font-size: 40px;
  line-height: 1.5em;
  font-weight: 500;
  text-transform: uppercase;
}

.aside__list {
  margin-top: 40px;
  display: flex;
  position: relative;
}

.aside__list::before,
.aside__list::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  opacity: 0.5;
}

.aside__list::before {
  border-top: 1px solid #ffffff;
  top: 0;
}

.aside__list::after {
  border-bottom: 1px solid #ffffff;
  bottom: 0;
}

.aside__list__item {
  width: 33.3%;
  position: relative;
}

.aside__list__item::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 1px;
  height: calc(100% - 2px);
  border-left: 1px solid #ffffff;
  opacity: 0.5;
}

.aside__list__item:last-child::after {
  content: "";
  position: absolute;
  top: 1px;
  right: -1px;
  width: 1px;
  height: calc(100% - 2px);
  border-right: 1px solid #ffffff;
  opacity: 0.5;
}

.aside__list__item__anchor {
  min-height: 178px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}

.aside__list__item__heading {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aside__list__item__heading__text {
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 6px;
}

.aside__list__item__date {
  font-size: 12px;
  margin-top: 10px;
}

.content {
  overflow: hidden;
}
.header {
  padding: 0;
  background-color: #0c2e16;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .header {
    padding: 11px 0;
  }
}
.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
}
.header.is-fixed::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.18) 0%, transparent 100%);
}
@media print, screen and (min-width: 768px) {
  .header.is-fixed {
    background-color: #0c2e16;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }
  .header.is-fixed::after {
    height: 24px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 45%, transparent 100%);
  }
}

.header__row {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .header__row {
    display: grid;
    justify-content: unset;
    align-items: center;
    gap: 40px;
    grid-template: "logo . nav" auto/200px 1fr auto;
  }
}

.header__logo {
  display: none;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .header__logo {
    display: flex;
    grid-area: logo;
  }
}
.header__logo img {
  width: 200px;
}

.header__nav {
  position: fixed;
  inset: 0;
  z-index: 105;
  display: flex;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s, backdrop-filter 0.4s ease;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  background-color: transparent;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.header__nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(22, 45, 24, 0.8);
  mix-blend-mode: multiply;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.is-hamburger-active .header__nav {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity 0.4s ease, visibility 0s linear 0s, backdrop-filter 0.4s ease;
}
.is-hamburger-active .header__nav::before {
  opacity: 1;
}
@media print, screen and (min-width: 768px) {
  .header__nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    position: static;
    inset: auto;
    z-index: auto;
    width: auto;
    height: auto;
    transition: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    align-items: center;
    grid-area: nav;
    margin-left: auto;
    justify-content: flex-end;
  }
  .header__nav::before {
    display: none;
  }
}

.header__nav__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100%;
  padding: 80px 20px 120px;
  opacity: 0;
  transition: opacity 0.9s ease 0.15s;
}
.is-hamburger-active .header__nav__panel {
  opacity: 1;
}
@media print, screen and (min-width: 768px) {
  .header__nav__panel {
    display: contents;
    padding: 0;
    min-height: auto;
    opacity: 1;
    transition: none;
  }
}

.header__nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin: 0;
}
@media print, screen and (min-width: 768px) {
  .header__nav__list {
    flex-direction: row;
    gap: 0;
    margin-left: -30px;
    margin-right: -30px;
  }
}

.header__nav__list__item {
  padding: 0;
}
@media print, screen and (min-width: 768px) {
  .header__nav__list__item {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.header__nav__list__item__anchor {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}
@media print, screen and (min-width: 768px) {
  .header__nav__list__item__anchor {
    position: relative;
    font-size: 16px;
  }
  .header__nav__list__item__anchor::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .header.is-fixed .header__nav__list__item__anchor.is-current::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
@media print and (hover: hover), screen and (min-width: 768px) and (hover: hover) {
  .header__nav__list__item__anchor:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

.header__nav__deco {
  position: fixed;
  bottom: 20px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  width: 90%;
  opacity: 0;
  transition: opacity 0.9s ease 0.25s;
}
.is-hamburger-active .header__nav__deco {
  opacity: 1;
}
.header__nav__deco img {
  display: block;
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 768px) {
  .header__nav__deco {
    display: none;
    opacity: 1;
    transition: none;
  }
}

.header__nav__extra {
  margin-left: 40px;
}

.header__nav__extra__list {
  display: flex;
  margin-left: -30px;
  margin-right: -30px;
}

.header__nav__extra__list__item {
  padding-left: 30px;
  padding-right: 30px;
}

.header__nav__extra__list__item__anchor {
  display: block;
  font-weight: 700;
  background-color: #E7E7E7;
  padding: 10px 20px;
  min-width: 150px;
  text-align: center;
}

.header__hamburger {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
  border: none;
  padding: 30px;
  background-color: transparent;
  color: #fff;
  line-height: 1;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger__icon {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 21px;
}

.header__hamburger__icon__line {
  display: block;
  width: 21px;
  height: 1px;
  background-color: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.is-hamburger-active .header__hamburger__icon__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.is-hamburger-active .header__hamburger__icon__line:nth-child(2) {
  opacity: 0;
}
.is-hamburger-active .header__hamburger__icon__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.footer {
  padding: calc(100vw * 40 / 375) 0 0;
}
@media print, screen and (min-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }
}

.footer__attention {
  max-width: 630px;
  margin: 0 auto;
  padding: 0 0 calc(100vw * 40 / 375);
}
@media print, screen and (min-width: 768px) {
  .footer__attention {
    padding: 0 0 63px;
  }
}

.footer__attention__anchor {
  text-align: center;
  display: block;
  position: relative;
  padding: 21px 0 21px;
  border: 1px solid #000000;
  transform: translate3d(0, 0, 0);
  box-sizing: border-box;
  font-family: "Shippori Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "メイリオ", Meiryo, serif;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  transition: opacity 0.4s ease;
}

@media (hover: hover) {
  .footer__attention__anchor:hover {
    opacity: 0.7;
  }
}
.footer__attention__icon {
  position: absolute;
  top: 50%;
  right: calc(100vw * 15 / 375);
  transform: translateY(-50%);
  width: 14px;
}
@media print, screen and (min-width: 768px) {
  .footer__attention__icon {
    top: 15px;
    right: 180px;
    transform: translateY(0);
  }
}

.footer__below {
  background-color: #0c2216;
  color: #fff;
  padding: calc(100vw * 36 / 375) 0;
  border-top: 1px dotted rgba(255, 255, 255, 0.35);
}
@media print, screen and (min-width: 768px) {
  .footer__below {
    padding: 36px 0;
  }
}

.footer__below__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: calc(100vw * 20 / 375);
}
@media print, screen and (min-width: 768px) {
  .footer__below__inner {
    gap: 40px;
  }
}

.footer__below__content {
  flex: 1;
  min-width: 0;
}

.footer__nav__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
@media print, screen and (min-width: 768px) {
  .footer__nav__list {
    flex-wrap: nowrap;
  }
}

.footer__nav__list__item {
  margin: 0 calc(100vw * 7 / 375) 0 0;
}
@media print, screen and (min-width: 768px) {
  .footer__nav__list__item {
    margin: 0;
  }
}

.footer__nav__list__item__anchor {
  display: inline-flex;
  align-items: center;
  font-size: max(0.5625rem, 100vw * 9 / 375);
  line-height: 1.5;
  padding: calc(100vw * 10 / 375) calc(100vw * 10 / 375) calc(100vw * 10 / 375) 0;
  white-space: nowrap;
  transition: opacity 0.4s ease;
}
@media print, screen and (min-width: 768px) {
  .footer__nav__list__item__anchor {
    font-size: 12px;
    padding: 10px 10px 10px 0;
  }
}
.footer__nav__list__item__anchor::after {
  content: "";
  flex-shrink: 0;
  width: calc(100vw * 9 / 375);
  height: calc(100vw * 6 / 375);
  margin-left: calc(100vw * 4 / 375);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.53 5.51'%3E%3Cg fill='none' stroke='%23fff' stroke-width='0.5'%3E%3Crect x='0.25' y='1.76' width='6.5' height='3.5'/%3E%3Cpath d='M5.23.25h3.05V2.33'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
@media print, screen and (min-width: 768px) {
  .footer__nav__list__item__anchor::after {
    width: 9px;
    height: 6px;
    margin-left: 5px;
  }
}
@media (hover: hover) {
  .footer__nav__list__item__anchor:hover {
    opacity: 0.5;
  }
}

.footer__copyright {
  margin: calc(100vw * 14 / 375) 0 0;
  font-size: max(0.625rem, 100vw * 10 / 375);
  letter-spacing: 0.02em;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 14px;
    font-size: 12px;
  }
}

.footer__logo {
  flex-shrink: 0;
  width: calc(100vw * 40 / 375);
}
@media print, screen and (min-width: 768px) {
  .footer__logo {
    width: 60px;
  }
}

.footer__logo__anchor {
  display: block;
}
.footer__logo__anchor img {
  display: block;
  width: 100%;
  height: auto;
}

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

.margin-top-none {
  margin-top: 0 !important;
}

.show-palmtop {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .show-palmtop {
    display: none;
  }
}

.show-laptop-wider {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .show-laptop-wider {
    display: block;
  }
}

.show-desktop-wider {
  display: none;
}
@media print, screen and (min-width: 1050px) {
  .show-desktop-wider {
    display: block;
  }
}

.show-desktop-lower {
  display: block;
}
@media print, screen and (min-width: 1050px) {
  .show-desktop-lower {
    display: none;
  }
}