@charset "UTF-8";
/* --------------------------------

  CSS Reset

-------------------------------- */
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 300;
  font-style: normal;
}

article, aside, footer, header, nav, section, main, figure, figcaption {
  display: block;
}

:root {
  --font-family: 'Noto Sans JP', sans-serif;
  --color-text: #000;
  --color-link: #2a67bd;
  --color-hover: #42a0d9;
  --color-base: #2a67bd;
  --color-main: #1066ae;
  --color-sub1: #565655;
  --color-sub2: #1e1e1e;
  --color-sub3: #fafafa;
  --color-sub4: #e1e1e1;
  --color-sub5: #ecf5fc;
  --color-grd1: rgba(0, 0, 0, 0);
  --color-grd2: rgba(0, 0, 0, 1);
  --transition: 0.3s;
  --inner-width: 110rem;
  --inner-width2: 160rem;
  --inner-width3: 192rem;
  --box-shadow: 0 0 3px 0 rgba(0, 0, 0, .3);
  --box-shadow2: 0 0 14px 0 rgba(0, 0, 0, .8);
}

* {
  scroll-behavior: auto !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

a {
  color: var(--color-link);
  border: none;
  text-decoration: none;
}

a:hover {
  color: var(--color-hover);
  text-decoration: underline;
}

img, video, iframe {
  max-width: 100%;
}

img {
  height: auto;
  border: none;
  vertical-align: top;
}

b, strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
blockquote::before,
blockquote::after,
q:before,
q:after,
q::before,
q::after {
  content: "";
  content: none;
}

a, area, button, [role=button], input:not([type=range]), label, select, summary, textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

button {
  border: none;
  background: none;
}
button:hover, button:active, button:focus {
  outline: none;
}
button:active, button:focus {
  box-shadow: none;
}

/* --------------------------------

  トップページ

-------------------------------- */
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  line-height: 1.5;
  font-size: 1.4rem;
  font-family: var(--font-family);
  color: var(--color-text);
  text-align: left;
  letter-spacing: 0.05em;
  background-color: #fff;
}
@media screen and (min-width: 768px), print {
  body {
    font-size: 1.6rem;
  }
}

.nav {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s;
}
.nav-open .nav {
  opacity: 1;
  pointer-events: auto;
}
.nav-container {
  display: flex;
  height: 100%;
  padding: 8rem 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.nav-inner {
  position: relative;
  margin: auto;
  z-index: 10;
}
.nav-item {
  width: 20rem;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s, transform 0.4s;
  transition-delay: calc(var(--i) * var(--delay-step, 0.1s));
}
.nav-open .nav-item {
  opacity: 1;
  transform: translateY(0);
}
.nav-item + .nav-item {
  margin-top: 2rem;
}
.nav-link {
  display: flex;
  align-items: center;
  position: relative;
  height: 5.6rem;
  padding: 0 0 0 3rem;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--color-main);
  border-radius: 10em;
  background-color: #fff;
}
.nav-link::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3rem;
  width: 1rem;
  height: 1rem;
  margin: auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: right var(--transition);
}
.nav-link[href]:hover {
  text-decoration: none;
  color: var(--color-main);
}
@media (hover: hover) and (pointer: fine) {
  .nav-link[href]:hover::before {
    right: 2.5rem;
  }
}
.nav-logo {
  width: 22rem;
  margin: 0 auto 5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.4s;
}
.nav-open .nav-logo {
  opacity: 1;
  transform: none;
}
.nav-logo img {
  width: 100%;
}
.nav-policy {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}
.nav-policy-item + .nav-policy-item {
  margin-left: 3rem;
}
.nav-policy-link {
  font-size: 1.2rem;
  color: #fff;
}
.nav-policy-link[href]:hover {
  color: #fff;
}
.nav-app {
  margin: 4rem 0 0;
  padding: 2.5rem 1rem;
  text-align: center;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.nav-app-text {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  color: #fff;
}
.nav-app-list {
  display: flex;
  justify-content: center;
}
.nav-app-item + .nav-app-item {
  margin-left: 1rem;
}
.nav-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  z-index: 999;
  cursor: pointer;
  transition: 0.4s;
}
.nav-open .nav-button {
  opacity: 0;
}
.nav-button svg {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.nav-close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 6rem;
  height: 6rem;
  z-index: 10;
  cursor: pointer;
}
.nav-close svg {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.nav-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-main);
  cursor: pointer;
  opacity: 0.9;
}
@media screen and (min-width: 768px), print {
  .nav-item {
    width: 24rem;
  }
  .nav-link {
    height: 6rem;
    font-size: 1.6rem;
  }
  .nav-logo {
    width: 25rem;
    margin-bottom: 6rem;
  }
  .nav-policy {
    margin-top: 4rem;
  }
  .nav-policy-item + .nav-policy-item {
    margin-left: 5rem;
  }
  .nav-policy-link {
    font-size: 1.6rem;
  }
  .nav-app {
    width: 54rem;
  }
  .nav-app-text {
    font-size: 1.4rem;
  }
  .nav-app-item + .nav-app-item {
    margin-left: 2rem;
  }
  .nav-button {
    bottom: 3rem;
    right: 3rem;
    width: 5rem;
    height: 5rem;
  }
  .nav-close {
    width: 8rem;
    height: 8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .nav-app {
    width: 61.5rem;
  }
  .nav-button {
    bottom: 4rem;
    right: 4rem;
    width: 6rem;
    height: 6rem;
  }
  .nav-close {
    width: 10rem;
    height: 10rem;
  }
}
@media screen and (min-width: 1100px) and (max-height: 600px), print {
  .nav-button {
    bottom: 3rem;
    right: 3rem;
    width: 5rem;
    height: 5rem;
  }
}

.loader {
  display: grid;
  place-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-main);
  z-index: 9999;
  opacity: 1;
}
.loader.is-loaded {
  animation: fadeOut 1s forwards;
  pointer-events: none;
}
.loader.is-reloaded {
  display: none;
  pointer-events: none;
}
.loader-logo {
  display: block;
  width: 18rem;
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (min-width: 768px), print {
  .loader-logo {
    width: 24rem;
  }
}
.loader-logo.is-loading {
  animation: fadeInUp 0.5s forwards;
}
.loader-logo.is-loaded {
  animation: fadeZoomOut 1s forwards;
}

.scroll-hint {
  display: grid;
  place-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 8888;
  opacity: 0;
}
@media all and (orientation: landscape) {
  .scroll-hint {
    display: none;
  }
}
.scroll-hint.is-loaded {
  animation: fadeInOut 2.5s forwards;
  pointer-events: none;
}
.scroll-hint.is-reloaded {
  display: none;
  pointer-events: none;
}
.scroll-hint-inner {
  display: grid;
  place-content: center;
  aspect-ratio: 1/1;
  width: 16rem;
  border-radius: 2rem;
  background-color: rgba(255, 255, 255, 0.85);
}
.scroll-hint-icon {
  display: block;
  width: 5rem;
  margin: -1rem auto 0;
}
.scroll-hint-label::before {
  content: attr(data-label);
  display: block;
  font-weight: 700;
  font-size: 1rem;
}
.stage {
  position: relative;
  width: 100vw;
  height: 100vh; /* fallback */
  height: 100dvh;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  transition: filter 0.8s;
}
.nav-open .stage {
  filter: saturate(0%) blur(1px);
}

.map {
  display: block;
  max-width: none;
  height: 100%;
}
@media all and (orientation: landscape) {
  .map {
    width: 100%;
  }
}
.pins.is-loaded .pin-img {
  animation-name: bounce;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  animation-iteration-count: infinite;
}
.pins.is-loaded .pin-inner {
  transform: translateY(0);
}
.pin {
  display: block;
  aspect-ratio: 203/227;
  position: absolute;
  width: 7.05vw;
  min-width: 90px;
  transform: translate(-50%, -100%);
  cursor: pointer;
  z-index: 10;
}
.pin-inner {
  display: block;
  transform: translateY(-100vh);
  transition: transform 0.5s;
}
.pin-img {
  display: block;
  width: 100%;
  transform-origin: center bottom;
}

.modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh; /* fallback */
  height: 100dvh;
  padding: 1.5rem;
  z-index: 1000;
  backdrop-filter: blur(3px);
}
.modal-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.modal-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
}
.modal-media {
  position: relative;
  background-color: #ccc;
}
.modal-media .u-img-wrap {
  aspect-ratio: 3/2;
}
.modal-main {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.modal-content {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  padding: 3rem 3rem 0;
}
.modal-header {
  margin-bottom: 3rem;
  line-height: 1.4;
  font-size: 2rem;
}
.modal-body {
  margin-bottom: 3rem;
  line-height: 1.8;
  font-size: 1.6rem;
}
.modal-footer {
  margin-top: auto;
  padding-bottom: 3rem;
  text-align: right;
}
.modal-label {
  display: block;
  margin-bottom: calc(3rem - 0.075em);
  margin-right: -3rem;
  line-height: 1em;
  font-size: 2.6em;
  color: var(--color-base);
}
.modal-heading {
  display: inline-block;
  vertical-align: top;
  padding: 0.5ch 2ch 0.6ch;
  line-height: 1.2;
  font-weight: 300;
  font-size: 1em;
  color: #fff;
  letter-spacing: 0.2em;
  background-color: var(--color-sub1);
}
.modal-title {
  padding: 1.4ch 1ch 1.4ch 2ch;
  line-height: 1.3;
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--color-base);
  border: 1px solid currentColor;
}
.modal-title:not(:first-child) {
  margin-top: 3.5rem;
}
.modal-title:not(:last-child) {
  margin-bottom: 2.5rem;
}
.modal-detail {
  padding-left: 2.2rem;
}
.modal-detail dt {
  position: relative;
  font-weight: 400;
  color: var(--color-base);
}
.modal-detail dt::before {
  content: "●";
  display: block;
  position: absolute;
  top: 0;
  left: -2.2rem;
}
.modal-detail dd:not(:last-child) {
  margin-bottom: 2rem;
}
.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 5rem;
  height: 5rem;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}
.modal-close svg {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767.98px) {
  .modal-media {
    transition: transform 0.6s, opacity 0.6s;
    transform: scale(0.9);
    opacity: 0;
  }
  .modal-content {
    transform: translateY(10%);
    transition: transform 0.6s, opacity 0.6s;
    opacity: 0;
  }
  .modal.is-open .modal-media {
    transform: none;
    opacity: 1;
  }
  .modal.is-open .modal-content {
    transform: none;
    opacity: 1;
  }
}
@media screen and (min-width: 768px), print {
  .modal {
    padding: 3rem;
  }
  .modal-inner {
    flex-direction: row-reverse;
    box-shadow: var(--box-shadow2);
  }
  .modal-media {
    width: 50%;
    transition: transform 0.6s, opacity 0.6s;
    transform: scale(0.9);
    opacity: 0;
  }
  .modal-media .u-img-wrap {
    aspect-ratio: auto;
    height: 100%;
  }
  .modal-main {
    position: relative;
  }
  .modal-content {
    transform: translateX(-10%);
    transition: transform 0.6s;
  }
  .modal-label {
    font-size: 3em;
  }
  .modal-close {
    top: 4rem;
    right: calc(50% + 1rem);
    width: 6rem;
    height: 6rem;
    background: none;
  }
  .modal.is-open .modal-media {
    transform: scale(1);
    opacity: 1;
  }
  .modal.is-open .modal-content {
    transform: translateX(0);
  }
}
@media screen and (min-width: 1100px), print {
  .modal {
    padding: 4rem;
  }
  .modal-inner {
    max-width: var(--inner-width3);
    margin-inline: auto;
  }
  .modal-main {
    padding: 5rem 3rem 0;
  }
  .modal-header {
    margin-bottom: 5rem;
    font-size: 3rem;
  }
  .modal-body {
    margin-bottom: 5rem;
    font-size: 1.8rem;
  }
  .modal-footer {
    padding-bottom: 6rem;
  }
  .modal-label {
    margin-bottom: calc(5rem - 0.075em);
    margin-right: -5rem;
  }
  .modal-heading {
    padding: 0.2em 2em 0.25em;
  }
  .modal-title {
    font-size: 2rem;
  }
  .modal-close {
    top: 6rem;
    right: calc(50% + 2rem);
    width: 9rem;
    height: 9rem;
  }
}
@media screen and (min-width: 1600px), print {
  .modal-label {
    font-size: 4em;
  }
}

.clouds {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 50;
  pointer-events: none;
}

.cloud {
  display: block;
  aspect-ratio: 335/1226;
  position: absolute;
  pointer-events: none;
  opacity: 0.8;
}
.cloud-img {
  display: block;
  width: 100%;
}
.cloud-sm {
  width: 7.05vw;
  min-width: 90px;
}
.cloud-lg {
  width: 13vw;
  min-width: 130px;
}

.logo {
  position: fixed;
  top: 2rem;
  left: 2rem;
  width: 14rem;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
}
.logo.is-loaded {
  animation: fadeZoomIn 1s forwards;
  pointer-events: auto;
}
.logo img {
  display: block;
}
@media screen and (min-width: 768px), print {
  .logo {
    top: 3rem;
    left: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .logo {
    right: 3rem;
    left: auto;
    width: 18rem;
  }
}

.copy {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 0 1.4rem 2rem;
  z-index: 100;
  pointer-events: none;
}
.copy small {
  display: block;
  line-height: 1.2;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px), print {
  .copy {
    padding: 0 0 2.4rem 3rem;
  }
  .copy small {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .copy {
    padding: 0 0 2.4rem 5rem;
  }
}

.moving-image {
  will-change: transform;
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}

.paused .pin-img {
  animation-play-state: paused;
}
.c-link-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 1.2rem 4.6rem 1.2rem 3rem;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  border-radius: 10em;
  background-color: var(--color-link);
  transition: color var(--transition), border-color var(--transition), background-color var(--transition);
}
@media screen and (min-width: 1100px), print {
  .c-link-button {
    padding: 1.8rem 7rem 1.8rem 5rem;
    font-size: 1.8rem;
  }
}
.c-link-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2.6rem;
  width: 0.85rem;
  height: 0.85rem;
  margin: auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
@media screen and (min-width: 1100px), print {
  .c-link-button::before {
    right: 4rem;
    width: 1rem;
    height: 1rem;
  }
}

.c-link-button[href]:hover {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .c-link-button[href]:hover {
    color: #fff;
    border-color: var(--color-hover);
    background-color: var(--color-hover);
  }
}

.u-list-unstyled {
  list-style: none;
}

.u-list-disc {
  list-style-type: none;
}
.u-list-disc li {
  position: relative;
  padding-left: 2ch;
}
.u-list-disc li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.u-list-decimal {
  padding-left: 2.5ch;
}

.u-ft-khand {
  font-family: "Khand", sans-serif;
  font-style: normal;
  font-weight: 500;
}

.u-img-wrap {
  aspect-ratio: 4/3;
  display: block;
  position: relative;
  overflow: hidden;
}

.u-img-cover {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

@keyframes bounce {
  /* 初期 */
  0% {
    transform: translateY(0);
  }
  /* 大きく1回 */
  12% {
    transform: translateY(-20px);
  }
  24% {
    transform: translateY(0);
  }
  /* 小バウンド① */
  30% {
    transform: translateY(-10px);
  }
  34% {
    transform: translateY(2px);
  }
  /* 小バウンド② */
  38% {
    transform: translateY(-7px);
  }
  42% {
    transform: translateY(1px);
  }
  /* 小バウンド③ */
  46% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(0);
  }
  /* 50〜100% 停止 */
  100% {
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeZoomIn {
  from {
    opacity: 0;
    transform: scale(1.4);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeZoomOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(1.4);
  }
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* --------------------------------

  修正・追加用

-------------------------------- */