@charset "UTF-8";
/* -----------------------------------------------
  .skipLink
----------------------------------------------- */
.skipLink {
  position: absolute;
  left: calc((100% - 190rem) / 2 + 1rem);
  top: 0.8rem;
  display: inline-block;
  font-size: 1.4rem;
  text-decoration: underline;
}
.skipLink:hover {
  text-decoration: none;
}
.skipLink:not(:focus) {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
}

@media screen and (max-width: 1900px) {
  .skipLink {
    left: 1rem;
  }
}
@media screen and (max-width: 1280px) {
  .skipLink:not(.-en):focus {
    position: static;
    padding: 0.4rem 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .skipLink.-en:focus {
    position: static;
    padding: 0.4rem 1rem;
  }
}
/* -----------------------------------------------
  .siteShortcuts
----------------------------------------------- */
.siteShortcuts {
  position: absolute;
  left: calc((100% - 190rem) / 2);
  top: 0.2rem;
  display: flex;
  gap: 10px;
  height: 0;
  padding: 0.8rem 1rem;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  font-size: 1.4rem;
  text-decoration: underline;
}
.siteShortcuts:focus-within {
  clip: auto;
  height: auto;
}
.siteShortcuts_item {
  display: block;
}
.siteShortcuts_link {
  display: block;
  text-decoration: underline;
}
.siteShortcuts_link:hover {
  text-decoration: none;
}

@media screen and (max-width: 1900px) {
  .siteShortcuts {
    left: 0;
  }
}
@media screen and (max-width: 1500px) {
  .siteShortcuts:not(.-en):focus-within {
    position: static;
  }
}
@media screen and (max-width: 768px) {
  .siteShortcuts_link {
    font-size: 1.1rem;
  }
}
/* -----------------------------------------------
  .cookieConsent
----------------------------------------------- */
.cookieConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 2rem;
  width: 100%;
  padding: 3rem 2rem;
  background: rgba(var(--primary-with-texture), 0.9) url(/images/common/noise_02.png) repeat;
  background-blend-mode: overlay;
}
.cookieConsent_text {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.6;
}
.cookieConsent_buttonGroup {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 1rem;
}
.cookieConsent_button {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  border: 2px solid rgba(var(--primary), var(--tw-bg-opacity));
  border-radius: 9999px;
  background-color: #fff;
}
.cookieConsent_button_icon {
  display: block;
}
.cookieConsent_button_label {
  display: block;
  padding-top: 0.1rem;
  color: rgba(var(--text-primary), var(--tw-text-opacity));
  font-weight: 700;
  margin-left: 1rem;
  font-size: 1.4rem;
}
@media (any-hover: hover) {
  .cookieConsent_button:hover {
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    background-color: rgba(var(--primary), var(--tw-bg-opacity));
    border: 2px solid #fff;
  }
  .cookieConsent_button:hover .cookieConsent_button_icon svg circle {
    fill: #fff;
    transition-delay: 0.1s;
  }
  .cookieConsent_button:hover .cookieConsent_button_icon svg path {
    stroke: rgba(var(--primary), var(--tw-bg-opacity));
    transition-delay: 0.1s;
  }
  .cookieConsent_button:hover .cookieConsent_button_label {
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(var(--text-white), var(--tw-text-opacity));
  }
}
.cookieConsent.is-hidden {
  display: none;
}
@media screen and (max-width: 1024px) {
  .cookieConsent {
    padding: 2rem;
  }
  .cookieConsent_buttonGroup {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .cookieConsent {
    flex-direction: column;
    padding: 1rem;
    background-image: var(--noise-texture-sp);
  }
  .cookieConsent_text {
    font-size: 1.2rem;
  }
  .cookieConsent_buttonGroup {
    width: 100%;
    flex-direction: row;
    align-items: center;
  }
  .cookieConsent_button {
    padding: 1.5rem 1rem;
  }
  .cookieConsent_button_label {
    font-size: 1.2rem;
  }
}

.cookieConsentModal {
  position: relative;
  width: unset;
  max-width: unset;
  height: unset;
  max-height: unset;
  padding: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset;
  justify-content: center;
  align-items: center;
}
.cookieConsentModal[open] {
  display: block;
}
.cookieConsentModal_scrollContainer {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.cookieConsentModal_container {
  padding-block: 4rem;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 100vh;
}
.cookieConsentModal_contents {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: min(100%, 48rem);
  background-color: #fff;
  border-radius: 8px;
  padding: 4rem;
  margin: auto;
}
.cookieConsentModal_contents p {
  font-size: 1.4rem;
}
.cookieConsentModal_contents p + p {
  margin-top: 2rem;
}
.cookieConsentModal_title {
  margin-bottom: 2rem;
  font-size: var(--h3);
  font-weight: 700;
  line-height: var(--leading-head);
}
.cookieConsentModal_button {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.5rem 3rem;
  margin-top: 2rem;
  border: 2px solid rgba(var(--primary), var(--tw-bg-opacity));
  border-radius: 9999px;
  background-color: #fff;
}
.cookieConsentModal_button_icon {
  display: block;
}
.cookieConsentModal_button_label {
  display: block;
  padding-top: 0.1rem;
  color: rgba(var(--text-primary), var(--tw-text-opacity));
  font-weight: 700;
  margin-left: 1rem;
  font-size: 1.8rem;
}
@media (any-hover: hover) {
  .cookieConsentModal_button:hover {
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    background-color: rgba(var(--primary), var(--tw-bg-opacity));
    border: 2px solid #fff;
  }
  .cookieConsentModal_button:hover .cookieConsentModal_button_icon svg circle {
    fill: #fff;
    transition-delay: 0.1s;
  }
  .cookieConsentModal_button:hover .cookieConsentModal_button_icon svg path {
    stroke: rgba(var(--primary), var(--tw-bg-opacity));
    transition-delay: 0.1s;
  }
  .cookieConsentModal_button:hover .cookieConsentModal_button_label {
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(var(--text-white), var(--tw-text-opacity));
  }
}
.cookieConsentModal_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cookieConsentModal::backdrop {
  background-color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  .cookieConsentModal_container {
    padding-block: 4rem;
  }
  .cookieConsentModal_contents {
    width: min(100% - 4rem, 48rem);
    border-radius: 4px;
    padding: 3rem;
  }
  .cookieConsentModal_button {
    margin-top: 2rem;
  }
}

body.is-open {
  position: fixed;
  left: 0;
  width: 100%;
}

footer.has-cookieConsent {
  padding-bottom: 14rem;
}

/* 英語サイトの表示崩れ対策 */
.Wrapper_w1hzfegh {
  overflow-x: hidden;
}