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

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*add reset styles*/
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/*Break Point
------------------------------*/
/*font
---------------------------------*/
/*color
---------------------------------*/
/* Text Reveal Animation
------------------------------------------------*/
@-webkit-keyframes textAnime_w {
  0% {
    color: transparent;
    background: transparent;
  }
  50% {
    color: transparent;
    background: transparent;
  }
  51% {
    color: #161616;
    background: #fff;
  }
  100% {
    color: #161616;
    background: #fff;
  }
}
@keyframes textAnime_w {
  0% {
    color: transparent;
    background: transparent;
  }
  50% {
    color: transparent;
    background: transparent;
  }
  51% {
    color: #161616;
    background: #fff;
  }
  100% {
    color: #161616;
    background: #fff;
  }
}
@-webkit-keyframes barAnime {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  68% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@keyframes barAnime {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  68% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
.u-reveal-mask {
  position: relative;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  opacity: 0;
  /* Black bar element */
}
.u-reveal-mask::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #000;
}
.u-reveal-mask.is-active {
  opacity: 1;
  -webkit-animation: textAnime_w 1s forwards;
          animation: textAnime_w 1s forwards;
}
.u-reveal-mask.is-active::before {
  -webkit-animation: barAnime 1s forwards;
          animation: barAnime 1s forwards;
}

body {
  color: #40220f;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  overflow-x: clip;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

main {
  background-color: #f7f8f8;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.header:has(.is-active) .header__icon-white {
  display: none !important;
}
.header.-active .header__icon-white {
  display: none !important;
}
.header:not(:has(.is-active)):not(.-active) {
  background-color: transparent;
}
.header:not(:has(.is-active)):not(.-active) .header__icon-black {
  display: none !important;
}
.header:not(:has(.is-active)):not(.-active) .header__cv-text {
  color: #fff;
}
.header:not(:has(.is-active)):not(.-active) .header__hamburger span {
  background-color: #fff;
}

.mv {
  position: relative;
  margin-bottom: 80px;
}

.search-wrap {
  position: absolute;
  left: 50%;
  top: 80px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
@media print, screen and (min-width: 701px) {
  .search-wrap {
    top: 100px;
  }
}

.section-sub-heading {
  padding-top: 20px;
  margin-top: 20px;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.section-sub-heading::before {
  content: "";
  display: block;
  height: 1px;
  width: 40px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
}

.section-text {
  text-align: center;
  font-size: 13px;
  line-height: 2;
  margin-top: 20px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.section-text2 {
  font-size: 12px;
  line-height: 1.75;
  margin-top: 20px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.landmark-img {
  margin-top: 30px;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
@media print, screen and (min-width: 701px) {
  .landmark-img {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.value-heading {
  text-align: center;
  font-size: 18px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: bold;
  margin-top: 30px;
}

.points-img {
  margin-top: 30px;
}

.landscape-img {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  margin-top: 30px;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 701px) {
  .landscape-img {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.tieup__img {
  -webkit-transform: translateX(-30px) scale(1.15);
          transform: translateX(-30px) scale(1.15);
}

.point2-img {
  -webkit-transform: translateX(-25px) scale(1.05);
          transform: translateX(-25px) scale(1.05);
  margin-top: -60px;
}

.kids {
  margin-top: 40px;
}

.kids-heading {
  font-size: 16px;
  margin-top: 10px;
  font-weight: bold;
}

.tieup {
  margin-top: 40px;
}

.niko-and {
  margin-top: 40px;
}

.niko-and__img {
  margin-top: 20px;
}

.-long-rinsetu-wrap {
  margin-top: 20px;
}

.long-rinsetu {
  margin-top: 20px;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  overflow-x: scroll;
  width: 100vw;
  max-width: 700px;
  position: relative;
}
@media print, screen and (min-width: 701px) {
  .long-rinsetu {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
.long-rinsetu img {
  width: 150vw;
  max-width: none;
}
@media print, screen and (min-width: 701px) {
  .long-rinsetu img {
    width: 50vw;
  }
}

.long-rinsetu-wrap {
  position: relative;
}

.long-map-icon {
  margin-top: 30px;
}