@charset "UTF-8";

:root {
  --NotoSansJP: "Noto Sans JP", "Hiragino Sans", Meiryo, sans-serif;
  --LibreBaskerville: "Libre Baskerville", Georgia, serif;
  --WanpakuRuika-08: wanpaku-ruika, "Hiragino Sans", Meiryo, sans-serif;
  --Termina: termina, "Hiragino Sans", Meiryo, sans-serif;
  --VDL-MegaMaru-R: vdl-megamaru, "Hiragino Sans", Meiryo, sans-serif;
  --MonopinJ: monopin-j, "Hiragino Sans", Meiryo, sans-serif;
}
html {
  min-width: 320px;
  font-size: calc(10 / 375 * 100vw);
  overflow: auto;
}
@media screen and (min-width: 768px) {
  html {
    font-size: min(10 / 1280 * 100vw, 62.5%);
    scroll-padding-top: 12.6em;
  }
}
@media screen and (min-width: 1920px) {
  html {
    font-size: calc(10 / 1920 * 100vw);
  }
}
html:not(.nosmooth) {
  scroll-behavior: smooth;
}
body {
  padding: 0 3.75rem;
  font-family: var(--NotoSansJP);
  font-size: 1.2rem;
  color: rgb(72, 68, 68);
  background-color: rgb(0, 0, 0);
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  body {
    padding: 0;
    font-size: 1.6rem;
  }
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgb(255, 255, 255, 0);
  pointer-events: none;
  translate: 0 -100%;
}
html:not(.loaded) body::before {
  translate: 0 0;
  background-color: rgb(255, 255, 255);
  -webkit-backdrop-filter: saturate(4) blur(16px);
  backdrop-filter: saturate(4) blur(16px);
}
html.loaded body::before {
  transition:
    0.8s background-color ease-in,
    0s translate linear 0.8s,
    0.4s -webkit-backdrop-filter ease-out 0.4s;
  transition:
    0.8s background-color ease-in,
    0.4s backdrop-filter ease-out 0.4s,
    0s translate linear 0.8s;
  transition:
    0.8s background-color ease-in,
    0.4s backdrop-filter ease-out 0.4s,
    0s translate linear 0.8s,
    0.4s -webkit-backdrop-filter ease-out 0.4s;
}
html.loaded.page-exit body::before {
  translate: 0 0;
  background-color: rgb(255, 255, 255);
  -webkit-backdrop-filter: saturate(4) blur(16px);
  backdrop-filter: saturate(4) blur(16px);
  transition:
    0.4s background-color ease-out 0.4s,
    0.8s -webkit-backdrop-filter ease-in;
  transition:
    0.4s background-color ease-out 0.4s,
    0.8s backdrop-filter ease-in;
  transition:
    0.4s background-color ease-out 0.4s,
    0.8s backdrop-filter ease-in,
    0.8s -webkit-backdrop-filter ease-in;
}
#wrapper {
  margin: 0 auto;
  max-width: 110rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
section p {
  text-align: justify;
  font-feature-settings: "palt";
}
nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
img,
svg,
video,
object,
canvas {
  max-width: 100%;
  height: auto;
}
img,
svg {
  vertical-align: middle;
}
svg {
  fill: currentColor;
}
label[for] {
  cursor: pointer;
}
a {
  text-decoration: none;
  color: inherit;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
a,
button:not(:disabled) {
  transition: opacity 0.2s ease-out;
}
a:hover,
button:not(:disabled):hover {
  opacity: 0.75;
}
br.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  br.pc {
    display: inline;
  }
  br.sp {
    display: none;
  }
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* header */
#wrapper > header {
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 7.4rem;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
}
@media screen and (max-width: 767px) {
  /* sp only */
  #wrapper > header {
    pointer-events: none;
  }
  #wrapper > header a,
  #wrapper > header label {
    pointer-events: auto;
  }
}
@media screen and (min-width: 768px) {
  #wrapper > header {
    padding: 0 0 0 2.5em;
    margin: 0 auto;
    width: 100%;
    min-height: 12.6rem;
    font-size: 1.6rem;
    transition: 0.4s all ease-out;
  }
  #wrapper > header.min {
    margin-top: 2.4rem;
    margin-bottom: 2.4rem;
    width: min(1400 / 1440 * 100%, 100vw - 8rem);
    min-height: 7.8rem;
    border-radius: 6px;
    font-size: 1.4rem;
    background-color: rgb(255, 255, 255);
  }
}
#wrapper > header::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -10;
  -webkit-filter: blur(2.8rem);
  filter: blur(2.8rem);
  background-color: rgb(255, 255, 255, 0.4);
  pointer-events: none;
  will-change: filter;
  transform: translateZ(0);
}
@media screen and (min-width: 768px) {
  #wrapper > header::after {
    top: -6rem;
    bottom: -2.4rem;
    left: -6rem;
    right: -6rem;
    -webkit-filter: blur(3rem);
    filter: blur(3rem);
    transition: 0.4s opacity ease-out;
  }
  #wrapper > header.min::after {
    opacity: 0;
  }
}
#wrapper > header h1 {
  margin: 0;
}
#wrapper > header .logo {
  width: 12.6rem;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  #wrapper > header .logo {
    width: 21.7rem;
    position: static;
    z-index: auto;
    transition: 0.4s width ease-out;
  }
  #wrapper > header.min .logo {
    width: 15.8rem;
  }
}
#wrapper > header .logo a {
  display: block;
}
#wrapper > header .logo img {
  width: 100%;
}

/*  globalnav  */
#drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  /* sp only */
  #wrapper > header label {
    display: inline-block;
    width: 3.4rem;
    height: 3.4rem;
    position: relative;
    z-index: 10;
    cursor: pointer;
  }
  #wrapper > header label::before,
  #wrapper > header label::after {
    content: "";
  }
  #wrapper > header label::before,
  #wrapper > header label::after,
  #wrapper > header label span {
    margin: auto;
    display: inline-block;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(112, 112, 112);
  }
  #wrapper > header label span {
    white-space: nowrap;
    overflow: hidden;
  }
  #wrapper > header label span::before {
    content: "";
    display: inline-block;
    width: 100%;
  }
  #drawer:not(:checked) + header label::before {
    translate: 0 -1rem;
    transition:
      0.3s rotate linear 0s,
      0.3s translate ease-out 0.3s;
  }
  #drawer:not(:checked) + header label::after {
    translate: 0 1rem;
    transition:
      0.3s rotate linear 0s,
      0.3s translate ease-out 0.3s;
  }
  #drawer:not(:checked) + header span {
    transition: 0s scale linear 0.3s;
  }
  #drawer:checked + header label::before {
    rotate: 37deg;
    transition:
      0.3s translate linear 0s,
      0.3s rotate ease-out 0.3s;
  }
  #drawer:checked + header label::after {
    rotate: -37deg;
    transition:
      0.3s translate linear 0s,
      0.3s rotate ease-out 0.3s;
  }
  #drawer:checked + header span {
    scale: 0 1;
    transition: 0s scale linear 0.3s;
  }
  #globalnav {
    padding: 7.4rem 3.75rem;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(255, 255, 255);
    overflow: auto;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    transition: 0.6s translate ease-out;
  }
  #drawer:not(:checked) + header #globalnav {
    translate: 100% 0;
  }
  #globalnav ul {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 27rem;
    height: 100%;
  }
  #globalnav li:not(.policy) {
    border-bottom: 1px solid rgb(54, 54, 54);
  }
  #globalnav li:not(:first-of-type) {
    margin-top: 1.8rem;
  }
  #globalnav li:not(.policy) a {
    padding: 0.45em 0;
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.9;
    letter-spacing: 0.02em;
    color: rgb(72, 68, 68);
  }
  #globalnav li:not(.policy) a::before {
    content: attr(data-enname);
    margin-right: 1.3rem;
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: rgb(28, 28, 28);
  }
  #globalnav .policy {
    padding-top: 1.6rem;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    text-align: end;
    color: rgb(28, 28, 28);
  }
  #globalnav .policy + .policy {
    padding-top: 0;
  }
  #globalnav li:last-of-type.policy {
    padding: 1em;
    line-height: 1;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  #globalnav .policy a {
    padding: 0.8rem 0;
    display: block;
    text-align: start;
  }
}
@media screen and (min-width: 768px) {
  /* pc only */
  #wrapper > header label {
    display: none;
  }
  #globalnav {
    padding: 0 0.875em;
  }
  #globalnav ul {
    padding: 0 1.875em;
    display: flex;
    align-items: center;
  }
  #globalnav li a {
    padding: 1.3em 1.875em;
    display: block;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: calc(0.32 / 16 * 1em);
  }
  #globalnav .policy {
    display: none;
  }
}

/*  footer  */
#wrapper > footer {
  padding: 5.8rem calc(50vw - 50%) 2.2rem calc(50vw - 50%);
  margin: 0 calc(50% - 50vw);
  position: relative;
  z-index: 80;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #wrapper > footer {
    /* padding: 6.7rem 0 0 0; */
    padding: 8rem 0 0 0;
  }
}
#wrapper > footer .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 43.8rem;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  #wrapper > footer .container {
    padding-left: 10rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 62rem;
    grid-template-rows: auto auto;
    width: 120rem;
    box-sizing: border-box;
  }
  #siteinfo {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  #sitemap {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  #sitepolicy {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
}

/* footer bg */
#wrapper > footer .bg {
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: -250%;
  right: -250%;
  z-index: -10;
  height: 100svh;
  max-width: 143.8rem;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  #wrapper > footer .bg {
    left: -50%;
    right: -50%;
    max-width: 192rem;
  }
}
#wrapper > footer .bg .image {
  height: 100%;
  background-color: rgb(83, 83, 83);
}
#wrapper > footer .bg .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left 50% top calc(100svh - 100dvh);
  object-position: left 50% top calc(100svh - 100dvh);
  mix-blend-mode: multiply;
}
@media screen and (min-width: 768px) {
  #wrapper > footer .bg .image img {
    -o-object-position: center bottom;
    object-position: center bottom;
  }
}

/* footer siteinfo */
#siteinfo .logo {
  padding: 1.2rem 0;
  width: 16.9rem;
}
@media screen and (min-width: 768px) {
  #siteinfo .logo {
    width: 27.5rem;
  }
}
#siteinfo .logo img {
  width: 100%;
}
#siteinfo dl {
  padding: 0.4em 0;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  #siteinfo dl {
    padding: 0.27em 0;
    font-size: 1.3rem;
    line-height: 1.54;
  }
}
#siteinfo dt {
  padding: 0.2em 0;
  font-size: 1.7rem;
  line-height: 1.4;
  color: rgb(255, 255, 255);
}
@media screen and (min-width: 768px) {
  #siteinfo dt {
    padding: 0.4em 0;
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
#siteinfo dd {
  padding: 0.4em 0;
  margin: 0;
  color: rgb(255, 255, 255);
}
@media screen and (min-width: 768px) {
  #siteinfo dd {
    padding: 0.27em 0;
  }
}
/* footer sitemap */
#sitemap {
  margin-top: auto;
}
@media screen and (min-width: 768px) {
  #sitemap {
    margin-top: 0;
  }
}
#sitemap .tagline {
  padding: 2.4rem 0;
}

@media screen and (min-width: 768px) {
  #sitemap .tagline {
    padding: 2rem 0;
  }
}
#sitemap .tagline .image {
  width: 18.9rem;
}
@media screen and (min-width: 768px) {
  #sitemap .tagline .image {
    width: 30.8rem;
  }
}
#sitemap .tagline .image img {
  width: 100%;
}
#sitemap ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  #sitemap > ul {
    padding: 2.4rem 0 0 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -moz-column-count: 3;
    column-count: 3;
    -moz-column-gap: 3rem;
    column-gap: 3rem;
  }
  #sitemap > ul > li:not(.secret) > ul {
    padding: 0.6rem 0;
  }
}
#sitemap li:not(.secret) {
  display: none;
}
@media screen and (min-width: 768px) {
  #sitemap li:not(.secret) {
    display: block;
  }
  #sitemap > ul > li:not(.secret) {
    display: list-item;
    width: 17.6rem;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
  }
  #sitemap > ul > li:not(.secret):not(:has(ul)) {
    margin-bottom: 1.75rem;
  }
  #sitemap li:not(.secret) a {
    padding: 0.17em 0;
    display: block;
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: rgb(255, 255, 255);
    white-space: nowrap;
  }
  #sitemap > ul > li:not(.secret) > a {
    padding: 0.4em 0;
    font-size: 1.6rem;
    border-bottom: 1px solid;
  }
  #sitemap > ul > li:not(.secret) li a::before {
    content: "\30FB";
  }
}
#sitemap li.secret {
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
}
@media screen and (min-width: 768px) {
  #sitemap li.secret {
    right: 1.4rem;
    bottom: 0;
  }
}
#sitemap li.secret a {
  display: inline-block;
  width: 8.7rem;
  height: 8.7rem;
}

/* sitepolicy */
@media screen and (min-width: 768px) {
  #sitepolicy {
    padding-top: 1.3rem;
  }
}
#sitepolicy ul {
  padding: 0.35em 0;
  margin: 0;
  list-style: none;
  font-size: 1.4rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  #sitepolicy ul {
    padding: 1rem 0;
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5em 3rem;
  }
}
#sitepolicy li {
  letter-spacing: 0.05em;
  color: rgb(180, 180, 180);
}
#sitepolicy ul li:last-of-type {
  padding: 0.5em 6rem 0.5em 0;
  font-size: calc(12 / 16 * 1em);
}
@media screen and (min-width: 768px) {
  #sitepolicy ul li:last-of-type {
    padding: 0;
    flex-basis: 100%;
    text-align: end;
  }
}
#sitepolicy li a {
  display: block;
}

/* components */

/* cmn_header */
.cmn_header {
  padding: 7.4rem calc(50vw - 50%) 0 calc(50vw - 50%);
  margin: 0 calc(50% - 50vw);
  display: flex;
  align-items: center;
  min-height: 22rem;
  box-sizing: border-box;
  background-color: rgb(255, 255, 255);
}
@media screen and (min-width: 768px) {
  .cmn_header {
    padding-top: 12.6rem;
    min-height: 33rem;
  }
}
.cmn_header h1,
.cmn_header .hd {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.cmn_header h1 .ja,
.cmn_header .hd .ja {
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1;
  color: rgb(72, 68, 68);
}
@media screen and (min-width: 768px) {
  .cmn_header h1 .ja,
  .cmn_header .hd .ja {
    font-size: 1.6rem;
  }
}
.cmn_header h1 .en,
.cmn_header .hd .en {
  order: -10;
  font-family: var(--LibreBaskerville);
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.8;
  color: rgb(72, 68, 68);
}
@media screen and (min-width: 768px) {
  .cmn_header h1 .en,
  .cmn_header .hd .en {
    font-size: 4.5rem;
  }
}
.cmn_header .bg {
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: -250%;
  right: -250%;
  z-index: -10;
  max-width: 143.8rem;
  height: 100lvh;
  opacity: 0.9;
  background-color: rgb(83, 83, 83);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .cmn_header .bg {
    bottom: 0;
    left: -50%;
    right: -50%;
    max-width: 192rem;
    height: auto;
  }
}
.cmn_header .bg .image {
  height: 100%;
  mix-blend-mode: multiply;
}
.cmn_header .bg .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}
@media screen and (min-width: 768px) {
  .cmn_header .bg .image img {
    -o-object-position: center bottom;
    object-position: center bottom;
  }
}

/* cmn_sticky */
@media screen and (min-width: 768px) {
  .cmn_sticky {
    display: flex;
    align-items: flex-start;
  }
  .cmn_sticky > nav {
    flex-grow: 1;
  }
  .cmn_sticky > nav + * {
    flex-basis: 82rem;
    box-sizing: border-box;
  }
}
.cmn_sticky > nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .cmn_sticky > nav {
    padding-right: 2.4rem;
    padding-bottom: 1.4rem;
    display: block;
    box-sizing: border-box;
    position: -webkit-sticky;
    position: sticky;
    top: 12.6rem;
  }
  .cmn_sticky > nav ul {
    padding: 0.9em 0;
    margin: 0;
    list-style: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .cmn_sticky > nav li {
    padding: 0.25em 0;
  }
  .cmn_sticky > nav li a {
    padding: 0.25em 0;
    display: flex;
    align-items: center;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: rgb(255, 255, 255);
  }
  .cmn_sticky > nav li a:not(.current) {
    opacity: 0.75;
  }
  .cmn_sticky > nav ul:not(:has(a.current)) a.previous,
  .cmn_sticky > nav ul:not(:has(a.previous)):not(:has(a.current)) a,
  .cmn_sticky > nav li a:hover {
    opacity: 1;
  }
  .cmn_sticky > nav li a::before {
    content: "";
    margin-top: 0.1em;
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background: url(../images/ico_arrow_w7.svg) no-repeat 0% 50% / auto 1rem;
  }
}
