@charset "UTF-8";
#wrap {
  width: 1600px;
  padding: 0 0 0;
  margin: auto;
}
@media (max-width: 1600px) {
  #wrap {
    width: 100%;
    overflow: hidden;
  }
}

.site_header {
  z-index: 10;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
.site_header__main {
  padding: 30px 5%;
}
.site_header__main__brand-logo {
  width: auto;
  height: 90px;
}
@media (max-width: 1200px) {
  .site_header__main__brand-logo {
    height: 70px;
  }
}
.site_header__main__nav {
  display: flex;
  align-items: center;
  margin: auto;
  position: absolute;
  right: 5%;
  top: 0;
  bottom: 0;
}
@media (max-width: 640px) {
  .site_header__main__nav {
    display: none;
  }
}
.site_header__main__nav__pc__ul {
  display: flex;
  gap: 10px;
}
.site_header__main__nav__pc__ul li.nav__item > a {
  font-weight: 500;
  border-radius: 10px;
  padding: 1.6rem 1rem;
  transition: 0.3s all ease;
}
.site_header__main__nav__pc__ul li.nav__item > a:hover {
  background-color: #fdc600;
}
.site_header__main__nav__pc__ul li.nav__item.has-submenu:hover > a, .site_header__main__nav__pc__ul li.nav__item.has-submenu:focus-within > a {
  background-color: #fdc600;
}
.site_header__main__nav__pc__ul li.nav__item .submenu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
}
.site_header__main__nav__pc__ul li.nav__item .submenu li {
  background-color: #fdc600;
  transition: 0.3s all ease;
  overflow: hidden;
}
.site_header__main__nav__pc__ul li.nav__item .submenu li:hover {
  background-color: #fdc600;
}
.site_header__main__nav__pc__ul li.nav__item .submenu li:hover a {
  transition: 0.3s all ease;
}
.site_header__main__nav__pc__ul li.nav__item .submenu li:hover a:hover {
  background-color: #b6ab8a;
}
.site_header__main__nav__pc__ul li.nav__item .submenu li:hover a:hover:before {
  content: "＞";
}
.site_header__main__nav__pc__ul li.nav__item .submenu li a {
  display: block;
  color: #fff;
  padding: 1.2rem 2rem;
}
.site_header__main__nav__pc__ul li.nav__item .submenu li a:before {
  content: "ー";
  font-size: 1.1rem;
  font-weight: 100;
  margin: 0 5px 0 0;
}
.site_header__main__nav__pc__ul li.nav__item .submenu li:first-of-type {
  border-radius: 0 10px 0 0;
}
.site_header__main__nav__pc__ul li.nav__item .submenu li:last-of-type {
  border-radius: 0 0 10px 10px;
}
.site_header__main__nav__pc__ul .has-submenu:hover > .submenu,
.site_header__main__nav__pc__ul .has-submenu:focus-within > .submenu {
  max-height: 400px;
  opacity: 1;
  transform: translateY(14px);
}
@media (hover: none) {
  .site_header__main__nav__pc__ul .has-submenu.is-open > .submenu {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
  }
}
.site_header__main__nav__contact {
  margin: 0 0 0 10px;
}
.site_header__main__nav__contact a {
  color: #fff;
  background-color: #a4ba5f;
  border-radius: 30px;
  padding: 1rem 1.6rem;
}
.site_header__ham {
  z-index: 101;
  position: fixed;
  top: 60px;
  right: 7%;
  width: 25px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (min-width: 641px) {
  .site_header__ham {
    display: none;
  }
}
@media (max-width: 640px) {
  .site_header__ham {
    right: 10%;
  }
}
@media (max-width: 480px) {
  .site_header__ham {
    top: 50px;
    right: 8%;
  }
}
.site_header__ham span {
  z-index: 1;
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #393c41;
  transition: all 0.5s ease;
}
.site_header__ham span:nth-child(1) {
  top: 5px;
}
.site_header__ham span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.site_header__ham span:nth-child(3) {
  bottom: 5px;
}
.site_header__ham.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.site_header__ham.active span:nth-child(2) {
  opacity: 0;
}
.site_header__ham.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.site_header__ham .circle {
  cursor: pointer;
  position: absolute;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  background-color: #fdc600;
}
@media (max-width: 480px) {
  .site_header__ham .circle {
    width: 45px;
    height: 45px;
  }
}
.site_header__nav-sp {
  display: none;
  z-index: -1;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 0;
  background-color: #b6ab8a;
  transition: opacity 0.3s ease;
  padding: 100px 0;
}
.site_header__nav-sp.open {
  display: block;
  z-index: 5;
  opacity: 1;
  height: 100vh;
}
.site_header__nav-sp ul {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.site_header__nav-sp ul li {
  padding: 0 0 20px;
  text-align: center;
}
.site_header__nav-sp ul li a {
  font-size: 1.7rem;
}
.site_header__nav-sp ul li a .site_header__main__brand-logo {
  margin: 0 0 30px;
}

.site_footer {
  width: 100%;
  overflow: hidden;
  padding: 80px 0 0;
}
@media (max-width: 640px) {
  .site_footer {
    padding: 50px 0 0;
  }
}
@media (max-width: 480px) {
  .site_footer {
    padding: 30px 0 0;
  }
}
.site_footer__hero {
  display: flex;
  justify-content: center;
  gap: 25px;
  background-image: url("../images/icons/footer-top.png");
  background-size: 100% auto;
  background-repeat: repeat-x;
  background-position: center bottom -1px;
  padding: 0 0 60px;
}
@media (max-width: 480px) {
  .site_footer__hero {
    gap: 15px;
  }
}
.site_footer__hero img {
  width: auto;
  height: 100px;
}
@media (max-width: 1200px) {
  .site_footer__hero img {
    height: 80px;
  }
}
@media (max-width: 480px) {
  .site_footer__hero img {
    height: 50px;
  }
}
.site_footer__hero img:nth-of-type(2n) {
  margin: 25px 0 0;
}
.site_footer__main {
  background-color: #b6ab8a;
  padding: 180px 5% 50px;
  position: relative;
}
@media (max-width: 480px) {
  .site_footer__main {
    padding: 150px 5% 30px;
  }
}
.site_footer__main h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
}
.site_footer__main a img {
  display: inline;
  height: 150px;
  width: auto;
}
@media (max-width: 1200px) {
  .site_footer__main a img {
    height: 130px;
  }
}
.site_footer__main .operation {
  text-align: left;
  margin: 0 0 50px;
}
.site_footer__main .operation span {
  margin: 0 50px 0 0;
}
.site_footer__main .operation .no-br {
  display: none;
}
@media (max-width: 480px) {
  .site_footer__main .operation .no-br {
    display: block;
  }
}
.site_footer__main .operation a {
  text-decoration: underline;
}
.site_footer__main .copyright {
  text-align: right;
}

/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --color-bg-blue: #5794ad;
  --color-bg-dark-blue: #355697;
  --color-bg-light-blue: #c8e8f1;
  --color-bg-yellow: #cca63e;
  --color-bg-gray: #f4f4f4;
  --color-bg-light-gray: #edf2f2;
  --color-text-white: #fff;
  --color-text-blue: #5794ad;
  --color-text-dark-blue: #355697;
  --color-text-yellow: #cca63e;
  --color-text-default: #000;
  --color-text-gray: #959595;
  --color-facilities-floor-1: #b3778b;
  --color-facilities-floor-2: #6e92a7;
  --color-facilities-floor-3: #acb85f;
  --color-events-primary: #cca63e;
  --color-border-default: rgb(80, 80, 80);
  --font-size-s: 1.3rem;
  --font-size-m: 1.5rem;
  --font-size-l: 1.7rem;
  --font-family-base: "Noto Serif JP", sans-serif;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #393c41;
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.75;
  font-feature-settings: "palt";
  background-color: #a1b297;
}
@media (max-width: 1200px) {
  body {
    font-size: 1.3rem;
  }
}

a {
  cursor: pointer;
  color: #393c41;
  text-decoration: none;
}

button {
  cursor: pointer;
  background-color: #fff;
  border: var(--color-text-gray) 1px solid;
  border-radius: 3px;
  color: var(--color-text-default);
  font-weight: 500;
  font-size: 0.75em;
}

input {
  background-color: #fff;
  border: var(--color-text-gray) 1px solid;
  border-radius: 3px;
  padding: 3px 0.5em;
  font-size: 1em;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
  padding: 0;
  margin: 0;
}

details summary {
  list-style: none;
}
details summary::-webkit-details-marker {
  display: none;
}

.hero {
  background-image: url("../images/icons/yama-top.png");
  background-size: 1200px auto;
  background-repeat: no-repeat;
  background-position: center bottom -1px;
  padding: 130px 0 400px;
}
@media (max-width: 1200px) {
  .hero {
    padding: 100px 0 200px;
  }
}
@media (max-width: 640px) {
  .hero {
    padding: 120px 0 160px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 120px 0 80px;
  }
}
.hero__hero {
  width: 1200px;
  margin: auto;
  position: relative;
}
.hero__hero h2 {
  font-size: 2.4rem;
  line-height: 2.35;
  font-weight: 600;
  color: #393c41;
  position: absolute;
}
@media (min-width: 1201px) {
  .hero__hero.pc h2 {
    top: 110px;
    left: 60px;
  }
  .hero__hero.sp {
    display: none;
  }
}
@media (max-width: 1200px) {
  .hero__hero {
    width: 100%;
  }
  .hero__hero.pc {
    display: none;
  }
  .hero__hero.sp {
    display: block;
    width: 100%;
  }
  .hero__hero.sp h2 {
    font-size: 2.1rem;
    top: 70px;
    left: 50%;
    transform: translateX(120px);
  }
}
@media (max-width: 1200px) and (max-width: 640px) {
  .hero__hero.sp h2 {
    font-size: 1.9rem;
    top: 80px;
    transform: translateX(80px);
  }
}
@media (max-width: 1200px) and (max-width: 480px) {
  .hero__hero.sp h2 {
    font-size: 1.5rem;
    top: 60px;
    transform: translateX(50px);
  }
}
.hero .pocket-row {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
@media (max-width: 1600px) {
  .hero .pocket-row {
    width: 1600px;
    max-width: 100%;
    margin: 0 auto;
  }
}
.hero .pocket-row.sp {
  display: none;
}
@media (max-width: 1200px) {
  .hero .pocket-row.pc {
    display: none;
  }
  .hero .pocket-row.sp {
    display: block;
  }
}
@media (max-width: 640px) {
  .hero .pocket-row {
    flex-direction: column;
  }
}
.hero .pocket-row .pocket {
  position: relative;
  flex-shrink: 0;
}
.hero .pocket-row .pocket .pocket-fade {
  width: 100%;
  aspect-ratio: 1/1;
  position: absolute;
  overflow: hidden;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
}
.hero .pocket-row .pocket .pocket-fade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero .pocket-row .pocket .pocket-fade img.is-active {
  opacity: 1;
}
.hero .pocket-row .pocket.is-type-1 {
  width: 480px;
  height: 440px;
}
@media (max-width: 1200px) {
  .hero .pocket-row .pocket.is-type-1 {
    width: 400px;
    height: 300px;
    margin: auto;
  }
}
@media (max-width: 640px) {
  .hero .pocket-row .pocket.is-type-1 {
    width: 340px;
  }
}
@media (max-width: 480px) {
  .hero .pocket-row .pocket.is-type-1 {
    width: 250px;
    height: 260px;
  }
}
.hero .pocket-row .pocket.is-type-1 .pocket-fade {
  top: 50px;
  left: 80px;
}
@media (max-width: 1200px) {
  .hero .pocket-row .pocket.is-type-1 .pocket-fade {
    top: 20px;
    left: -150px;
  }
}
@media (max-width: 640px) {
  .hero .pocket-row .pocket.is-type-1 .pocket-fade {
    left: -120px;
  }
}
@media (max-width: 480px) {
  .hero .pocket-row .pocket.is-type-1 .pocket-fade {
    left: -100px;
  }
}
.hero .pocket-row .pocket.is-type-2 {
  width: 520px;
  height: 420px;
}
@media (max-width: 1200px) {
  .hero .pocket-row .pocket.is-type-2 {
    width: 430px;
    height: 250px;
    margin: auto;
  }
}
@media (max-width: 640px) {
  .hero .pocket-row .pocket.is-type-2 {
    width: 370px;
  }
}
@media (max-width: 480px) {
  .hero .pocket-row .pocket.is-type-2 {
    width: 280px;
    height: 220px;
  }
}
.hero .pocket-row .pocket.is-type-2 .pocket-fade {
  top: 200px;
  left: 70px;
}
@media (max-width: 1200px) {
  .hero .pocket-row .pocket.is-type-2 .pocket-fade {
    top: -50px;
    left: 200px;
  }
}
@media (max-width: 640px) {
  .hero .pocket-row .pocket.is-type-2 .pocket-fade {
    top: -40px;
    left: 120px;
  }
}
@media (max-width: 480px) {
  .hero .pocket-row .pocket.is-type-2 .pocket-fade {
    top: -60px;
    left: 80px;
  }
}
.hero .pocket-row .pocket.is-type-2 .k-1 {
  z-index: 1;
  width: 250px;
  height: auto;
  position: absolute;
  top: 140px;
}
@media (min-width: 1201px) {
  .hero .pocket-row .pocket.is-type-2 .k-1 {
    right: 30px;
  }
}
@media (max-width: 1200px) {
  .hero .pocket-row .pocket.is-type-2 .k-1 {
    top: 80px;
    left: -150px;
  }
}
@media (max-width: 640px) {
  .hero .pocket-row .pocket.is-type-2 .k-1 {
    width: 230px;
    left: -60px;
  }
}
@media (max-width: 480px) {
  .hero .pocket-row .pocket.is-type-2 .k-1 {
    width: 180px;
    top: 40px;
  }
}
.hero .pocket-row .pocket.is-type-3 {
  width: 540px;
  height: 390px;
}
@media (max-width: 1200px) {
  .hero .pocket-row .pocket.is-type-3 {
    width: 460px;
    height: 300px;
    margin: auto;
  }
}
@media (max-width: 640px) {
  .hero .pocket-row .pocket.is-type-3 {
    width: 400px;
  }
}
@media (max-width: 480px) {
  .hero .pocket-row .pocket.is-type-3 {
    width: 310px;
    height: 240px;
  }
}
.hero .pocket-row .pocket.is-type-3 .pocket-fade {
  top: -60px;
  left: -100px;
}
@media (max-width: 1200px) {
  .hero .pocket-row .pocket.is-type-3 .pocket-fade {
    top: -40px;
    left: -80px;
  }
}
@media (max-width: 480px) {
  .hero .pocket-row .pocket.is-type-3 .pocket-fade {
    top: -100px;
    left: -70px;
  }
}
.hero .pocket-row .pocket.is-type-3 .k-2 {
  z-index: 1;
  width: 230px;
  height: auto;
  position: absolute;
  bottom: -330px;
}
@media (min-width: 1201px) {
  .hero .pocket-row .pocket.is-type-3 .k-2 {
    left: 0;
  }
}
@media (max-width: 1200px) {
  .hero .pocket-row .pocket.is-type-3 .k-2 {
    width: 200px;
    bottom: -120px;
    right: -40px;
  }
}
@media (max-width: 640px) {
  .hero .pocket-row .pocket.is-type-3 .k-2 {
    width: 180px;
    bottom: -70px;
    right: -30px;
  }
}
@media (max-width: 480px) {
  .hero .pocket-row .pocket.is-type-3 .k-2 {
    width: 140px;
    bottom: 20px;
    right: -20px;
  }
}
.hero .pocket-row .pocket.is-type-3 .k-3 {
  z-index: 1;
  width: 300px;
  height: auto;
  position: absolute;
  bottom: -440px;
}
@media (min-width: 1201px) {
  .hero .pocket-row .pocket.is-type-3 .k-3 {
    left: 110px;
  }
}
@media (max-width: 1200px) {
  .hero .pocket-row .pocket.is-type-3 .k-3 {
    width: 240px;
    bottom: -200px;
    right: -160px;
  }
}
@media (max-width: 640px) {
  .hero .pocket-row .pocket.is-type-3 .k-3 {
    width: 220px;
    bottom: -150px;
    right: -140px;
  }
}
@media (max-width: 480px) {
  .hero .pocket-row .pocket.is-type-3 .k-3 {
    width: 170px;
    bottom: -30px;
    right: -100px;
  }
}
.hero .pocket-row .pocket.is-type-1 .pocket-fade {
  -webkit-mask-image: url("../images/icons/pocket-1.svg");
  mask-image: url("../images/icons/pocket-1.svg");
}
.hero .pocket-row .pocket.is-type-2 .pocket-fade {
  -webkit-mask-image: url("../images/icons/pocket-2.svg");
  mask-image: url("../images/icons/pocket-2.svg");
}
.hero .pocket-row .pocket.is-type-3 .pocket-fade {
  -webkit-mask-image: url("../images/icons/pocket-3.svg");
  mask-image: url("../images/icons/pocket-3.svg");
}

.story {
  width: 1200px;
  background-color: #fff;
  padding: 130px 0 80px;
  margin: auto;
}
@media (max-width: 1200px) {
  .story {
    width: 100%;
    padding: 70px 0 50px;
  }
}
@media (max-width: 720px) {
  .story {
    padding: 70px 0 150px;
  }
}
@media (max-width: 640px) {
  .story {
    padding: 50px 0 130px;
  }
}
@media (max-width: 480px) {
  .story {
    padding: 0 0 30px;
  }
}
.story__hero {
  position: relative;
}
.story__hero .k-4 {
  z-index: 1;
  width: 210px;
  height: auto;
  position: absolute;
  top: -200px;
  left: -30px;
}
@media (max-width: 1200px) {
  .story__hero .k-4 {
    width: 190px;
    top: -220px;
    left: -20px;
  }
}
@media (max-width: 640px) {
  .story__hero .k-4 {
    width: 180px;
    top: -180px;
  }
}
@media (max-width: 480px) {
  .story__hero .k-4 {
    width: 120px;
    top: -135px;
    left: -10px;
  }
}
.story__hero__ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 70px;
}
@media (max-width: 1200px) {
  .story__hero__ul {
    gap: 50px;
  }
}
@media (max-width: 720px) {
  .story__hero__ul {
    gap: 5px;
  }
}
.story__hero__ul__li.left {
  width: 180px;
}
@media (max-width: 1200px) {
  .story__hero__ul__li.left {
    width: 140px;
  }
}
@media (max-width: 720px) {
  .story__hero__ul__li.left {
    text-align: center;
    width: 80%;
  }
}
.story__hero__ul__li.left img {
  display: inline;
  width: 100%;
  height: auto;
}
@media (max-width: 720px) {
  .story__hero__ul__li.left img.pc {
    display: none;
  }
  .story__hero__ul__li.left img.sp {
    width: 240px;
  }
}
@media (max-width: 720px) and (max-width: 480px) {
  .story__hero__ul__li.left img.sp {
    width: 220px;
  }
}
@media (min-width: 721px) {
  .story__hero__ul__li.left img.sp {
    display: none;
  }
}
.story__hero__ul__li.right {
  width: 500px;
}
@media (max-width: 1200px) {
  .story__hero__ul__li.right {
    width: 360px;
    padding: 0 0 20px;
  }
}
@media (max-width: 720px) {
  .story__hero__ul__li.right {
    width: 80%;
  }
}
@media (max-width: 640px) {
  .story__hero__ul__li.right {
    width: 90%;
  }
}
.story__hero__ul__li.right p {
  line-height: 2.35;
  text-align: justify;
  font-weight: 500;
  padding: 50px 0 0;
}
@media (max-width: 1200px) {
  .story__hero__ul__li.right p {
    padding: 20px 0 0;
  }
}
.story__hero .k-6 {
  z-index: 1;
  width: 200px;
  height: auto;
  position: absolute;
  bottom: -250px;
  left: -30px;
}
@media (max-width: 1200px) {
  .story__hero .k-6 {
    width: 150px;
    bottom: -200px;
    left: -30px;
  }
}
@media (max-width: 720px) {
  .story__hero .k-6 {
    bottom: -300px;
  }
}
@media (max-width: 640px) {
  .story__hero .k-6 {
    width: 130px;
  }
}
@media (max-width: 480px) {
  .story__hero .k-6 {
    width: 110px;
    bottom: -200px;
  }
}
.story__hero .k-5 {
  z-index: 1;
  width: 390px;
  height: auto;
  position: absolute;
  bottom: -230px;
  left: -90px;
}
@media (max-width: 1200px) {
  .story__hero .k-5 {
    width: 280px;
    bottom: -180px;
    left: -90px;
  }
}
@media (max-width: 720px) {
  .story__hero .k-5 {
    bottom: -280px;
  }
}
@media (max-width: 640px) {
  .story__hero .k-5 {
    width: 260px;
  }
}
@media (max-width: 480px) {
  .story__hero .k-5 {
    width: 200px;
    bottom: -180px;
  }
}
.story__hero .box {
  width: 1200px;
  padding: 0 0;
  margin: auto;
  position: relative;
}
@media (max-width: 1200px) {
  .story__hero .box {
    width: 100%;
  }
}
.story__hero .box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
}
@media (max-width: 480px) {
  .story__hero .box ul {
    flex-wrap: nowrap;
  }
}
.story__hero .box ul li {
  position: relative;
}
.story__hero .box ul li .mask {
  width: 100%;
  aspect-ratio: 1/1;
  position: absolute;
  overflow: hidden;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
}
.story__hero .box ul li .mask img {
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}
.story__hero .box ul li.is-type-1 {
  width: 300px;
  height: 280px;
}
@media (max-width: 1200px) {
  .story__hero .box ul li.is-type-1 {
    width: 220px;
    height: 200px;
  }
}
@media (max-width: 720px) {
  .story__hero .box ul li.is-type-1 {
    width: 200px;
    height: 180px;
  }
}
@media (max-width: 480px) {
  .story__hero .box ul li.is-type-1 {
    width: 150px;
  }
}
.story__hero .box ul li.is-type-1 .mask {
  z-index: 2;
  -webkit-mask-image: url("../images/icons/pocket-4.svg");
  mask-image: url("../images/icons/pocket-4.svg");
  top: 50px;
  right: 0;
}
@media (max-width: 640px) {
  .story__hero .box ul li.is-type-1 .mask {
    top: 20px;
    right: -15px;
  }
}
.story__hero .box ul li.is-type-1 .mask img {
  transform: rotate(3deg) translateY(0px) scale(1.1);
}
.story__hero .box ul li.is-type-2 {
  z-index: 1;
  width: 340px;
  height: 280px;
}
@media (max-width: 1200px) {
  .story__hero .box ul li.is-type-2 {
    width: 260px;
    height: 200px;
  }
}
@media (max-width: 720px) {
  .story__hero .box ul li.is-type-2 {
    width: 220px;
    height: 160px;
  }
}
@media (max-width: 480px) {
  .story__hero .box ul li.is-type-2 {
    width: 170px;
  }
}
.story__hero .box ul li.is-type-2 .mask {
  -webkit-mask-image: url("../images/icons/pocket-5.svg");
  mask-image: url("../images/icons/pocket-5.svg");
  top: -50px;
  right: 40px;
}
@media (max-width: 640px) {
  .story__hero .box ul li.is-type-2 .mask {
    top: -30px;
    right: 10px;
  }
}
.story__hero .box ul li.is-type-2 .mask img {
  transform: rotate(-3deg) translateY(-20px) scale(1.1);
}
.story__hero .box .k-7 {
  width: 330px;
  height: auto;
  position: absolute;
  bottom: -80px;
  right: -80px;
}
@media (max-width: 1200px) {
  .story__hero .box .k-7 {
    width: 220px;
    right: -60px;
  }
}
@media (max-width: 640px) {
  .story__hero .box .k-7 {
    width: 210px;
    bottom: -120px;
    right: -50px;
  }
}
@media (max-width: 480px) {
  .story__hero .box .k-7 {
    width: 160px;
    bottom: -50px;
  }
}
.news {
  width: 1200px;
  background-image: url("../images/icons/yama-bottom.png");
  background-size: 1200px auto;
  background-repeat: no-repeat;
  background-position: center top -1px;
  padding: 200px 0 120px;
  margin: auto;
}
@media (max-width: 1200px) {
  .news {
    width: 100%;
    padding: 240px 0 100px;
  }
}
@media (max-width: 640px) {
  .news {
    padding: 200px 0 100px;
  }
}
@media (max-width: 480px) {
  .news {
    padding: 200px 0 50px;
  }
}
.news__hero {
  position: relative;
  text-align: center;
  padding: 0 0 50px;
}
@media (max-width: 640px) {
  .news__hero {
    padding: 0 0 30px;
  }
}
.news__hero > img {
  display: inline;
  width: auto;
  height: 100px;
}
@media (max-width: 1200px) {
  .news__hero > img {
    height: 80px;
  }
}
@media (max-width: 640px) {
  .news__hero > img {
    height: 70px;
  }
}
.news__hero .k-8 {
  z-index: -1;
  width: 300px;
  height: auto;
  position: absolute;
  top: 0;
  right: -60px;
}
@media (max-width: 1200px) {
  .news__hero .k-8 {
    width: 170px;
    top: -40px;
    right: -20px;
  }
}
@media (max-width: 640px) {
  .news__hero .k-8 {
    width: 150px;
  }
}
@media (max-width: 480px) {
  .news__hero .k-8 {
    width: 110px;
  }
}
.news__hero .k-9 {
  z-index: -1;
  width: 350px;
  height: auto;
  position: absolute;
  top: 0;
  right: -60px;
}
@media (max-width: 1200px) {
  .news__hero .k-9 {
    width: 220px;
    top: -60px;
    right: -20px;
  }
}
@media (max-width: 640px) {
  .news__hero .k-9 {
    width: 200px;
    right: -30px;
  }
}
@media (max-width: 480px) {
  .news__hero .k-9 {
    width: 160px;
  }
}
.news__content {
  width: 960px;
  margin: auto;
}
@media (max-width: 1080px) {
  .news__content {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .news__content {
    width: 90%;
  }
}
.news__content .post-list {
  width: 640px;
  margin: auto;
  padding: 0 0 30px;
}
@media (max-width: 680px) {
  .news__content .post-list {
    width: 95%;
  }
}
.news__content .post-list .post-item {
  margin: 0 0 20px;
}
@media (max-width: 1200px) {
  .news__content .post-list .post-item {
    margin: 0 0 15px;
  }
}
.news__content .post-list .post-item a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.news__content .post-list .post-item a:hover .post-thumb img {
  transform: scale(1.1);
}
.news__content .post-list .post-item a .post-thumb {
  width: 200px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1200px) {
  .news__content .post-list .post-item a .post-thumb {
    width: 160px;
    height: 120px;
  }
}
.news__content .post-list .post-item a .post-thumb img {
  width: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 0.3s;
}
.news__content .post-list .post-item a .post-info {
  width: calc(100% - 200px);
  padding: 0 0 0 20px;
}
@media (max-width: 960px) {
  .news__content .post-list .post-item a .post-info {
    width: calc(100% - 160px);
  }
}
.news__content .post-list .post-item a .post-info .post-date {
  font-size: 1.3rem;
  line-height: 1;
}
@media (max-width: 1200px) {
  .news__content .post-list .post-item a .post-info .post-date {
    font-size: 1.1rem;
  }
}
.news__content .post-list .post-item a .post-info h4 {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .news__content .post-list .post-item a .post-info h4 {
    font-size: 1.5rem;
  }
}
.news__content .more {
  display: flex;
  justify-content: right;
  align-items: center;
}
.news__content .more p {
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1;
  margin: 0 15px 0 0;
}
@media (max-width: 1200px) {
  .news__content .more p {
    font-size: 1.7rem;
  }
}
.news__content .more img {
  width: auto;
  height: 20px;
}
@media (max-width: 1200px) {
  .news__content .more img {
    height: 15px;
  }
}

.access__hero {
  text-align: left;
  width: 1200px;
  position: relative;
  padding: 0 0 30px 110px;
  margin: auto;
}
@media (max-width: 1200px) {
  .access__hero {
    width: 100%;
    padding: 0 0 10px 80px;
  }
}
@media (max-width: 640px) {
  .access__hero {
    padding: 0 0 10px 30px;
  }
}
.access__hero > img {
  z-index: 3;
  display: inline;
  width: auto;
  height: 90px;
  position: relative;
}
@media (max-width: 1200px) {
  .access__hero > img {
    height: 70px;
  }
}
@media (max-width: 640px) {
  .access__hero > img {
    height: 60px;
  }
}
.access__hero .k-10 {
  z-index: 2;
  width: 240px;
  height: auto;
  position: absolute;
  top: -230px;
  left: -80px;
}
@media (max-width: 1200px) {
  .access__hero .k-10 {
    width: 120px;
    top: -130px;
    left: 5px;
  }
}
@media (max-width: 640px) {
  .access__hero .k-10 {
    width: 100px;
    top: -120px;
    left: 5px;
  }
}
@media (max-width: 480px) {
  .access__hero .k-10 {
    width: 80px;
    top: -90px;
    left: 0px;
  }
}
.access__hero .k-11 {
  z-index: 1;
  width: 400px;
  height: auto;
  position: absolute;
  top: -200px;
  left: -150px;
}
@media (max-width: 1200px) {
  .access__hero .k-11 {
    width: 230px;
    top: -100px;
    left: -40px;
  }
}
@media (max-width: 640px) {
  .access__hero .k-11 {
    width: 220px;
    top: -110px;
    left: -60px;
  }
}
@media (max-width: 480px) {
  .access__hero .k-11 {
    width: 180px;
    top: -80px;
  }
}
.access__main .rough-box {
  width: 1200px;
  background: #fff;
  border-radius: 100px;
  padding: 70px 70px;
  margin: auto;
}
@media (max-width: 1200px) {
  .access__main .rough-box {
    width: 90%;
    padding: 50px 30px;
  }
}
@media (max-width: 640px) {
  .access__main .rough-box {
    width: 100%;
    padding: 35px 15px;
  }
}
@media (max-width: 480px) {
  .access__main .rough-box {
    padding: 20px 20px;
  }
}
.access__main .rough-box__inner {
  position: relative;
  padding: 24px 0;
  line-height: 1.6;
}
.access__main .rough-box__inner .info {
  background-image: url("../images/icons/access-border.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  padding: 0 0 60px;
}
@media (max-width: 960px) {
  .access__main .rough-box__inner .info {
    padding: 0 0 40px;
  }
}
@media (max-width: 640px) {
  .access__main .rough-box__inner .info {
    padding: 0 0 20px;
  }
}
.access__main .rough-box__inner .info ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
}
@media (max-width: 1200px) {
  .access__main .rough-box__inner .info ul {
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .access__main .rough-box__inner .info ul {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .access__main .rough-box__inner .info ul {
    gap: 30px;
  }
}
.access__main .rough-box__inner .info ul li.left {
  padding: 40px 0 0 0;
}
@media (max-width: 960px) {
  .access__main .rough-box__inner .info ul li.left {
    order: 2;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0;
  }
}
@media (max-width: 480px) {
  .access__main .rough-box__inner .info ul li.left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}
.access__main .rough-box__inner .info ul li.left .brand-logo {
  width: auto;
  height: 100px;
}
@media (max-width: 1200px) {
  .access__main .rough-box__inner .info ul li.left .brand-logo {
    height: 80px;
  }
}
@media (max-width: 640px) {
  .access__main .rough-box__inner .info ul li.left .brand-logo {
    height: 60px;
  }
}
.access__main .rough-box__inner .info ul li.left p {
  font-weight: 500;
  padding: 50px 0 0 5px;
}
@media (max-width: 1200px) {
  .access__main .rough-box__inner .info ul li.left p {
    padding: 30px 0 0 5px;
  }
}
@media (max-width: 960px) {
  .access__main .rough-box__inner .info ul li.left p {
    padding: 10px 0 0;
  }
}
@media (max-width: 480px) {
  .access__main .rough-box__inner .info ul li.left p {
    text-align: center;
    width: 100%;
  }
}
.access__main .rough-box__inner .info ul li.right {
  position: relative;
}
@media (max-width: 640px) {
  .access__main .rough-box__inner .info ul li.right {
    order: 1;
  }
}
.access__main .rough-box__inner .info ul li.right iframe {
  border-radius: 20px;
}
@media (max-width: 1200px) {
  .access__main .rough-box__inner .info ul li.right iframe {
    width: 360px;
    height: 240px;
    border-radius: 10px;
  }
}
@media (max-width: 480px) {
  .access__main .rough-box__inner .info ul li.right iframe {
    width: 300px;
    height: 200px;
  }
}
.access__main .rough-box__inner .info ul li.right::before {
  content: "";
  z-index: -1;
  display: block;
  width: 480px;
  height: 360px;
  border-radius: 20px;
  background-image: url("../images/icons/map-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  position: absolute;
  left: 20px;
  top: 20px;
}
@media (max-width: 1200px) {
  .access__main .rough-box__inner .info ul li.right::before {
    width: 360px;
    height: 240px;
    border-radius: 10px;
  }
}
@media (max-width: 640px) {
  .access__main .rough-box__inner .info ul li.right::before {
    left: 10px;
    top: 10px;
  }
}
@media (max-width: 480px) {
  .access__main .rough-box__inner .info ul li.right::before {
    width: 300px;
    height: 200px;
  }
}
.access__main .rough-box__inner .map {
  text-align: center;
  padding: 40px 0 0;
}
@media (max-width: 640px) {
  .access__main .rough-box__inner .map {
    padding: 25px 0 0;
  }
}
.access__main .rough-box__inner .map img {
  display: inline;
  width: 85%;
  height: auto;
}
@media (max-width: 1200px) {
  .access__main .rough-box__inner .map img {
    max-width: 640px;
  }
}
@media (max-width: 640px) {
  .access__main .rough-box__inner .map img {
    width: 95%;
  }
}
@media (max-width: 480px) {
  .access__main .rough-box__inner .map img {
    width: 100%;
  }
}

#news .news__archive {
  width: 1200px;
  padding: 200px 0 120px;
  margin: auto;
  position: relative;
}
@media (max-width: 1200px) {
  #news .news__archive {
    width: 100%;
    padding: 240px 0 100px;
  }
}
@media (max-width: 640px) {
  #news .news__archive {
    padding: 200px 0 100px;
  }
}
@media (max-width: 480px) {
  #news .news__archive {
    padding: 200px 0 50px;
  }
}
#news .news__archive__hero {
  position: relative;
  text-align: center;
  padding: 0 0 50px;
}
@media (max-width: 640px) {
  #news .news__archive__hero {
    padding: 0 0 30px;
  }
}
#news .news__archive__hero > img {
  display: inline;
  width: auto;
  height: 100px;
}
@media (max-width: 1200px) {
  #news .news__archive__hero > img {
    height: 80px;
  }
}
@media (max-width: 640px) {
  #news .news__archive__hero > img {
    height: 70px;
  }
}
#news .news__archive__hero .k-8 {
  z-index: -1;
  width: 300px;
  height: auto;
  position: absolute;
  top: 0;
  right: -60px;
}
@media (max-width: 1200px) {
  #news .news__archive__hero .k-8 {
    width: 170px;
    top: -40px;
    right: -20px;
  }
}
@media (max-width: 640px) {
  #news .news__archive__hero .k-8 {
    width: 150px;
  }
}
@media (max-width: 480px) {
  #news .news__archive__hero .k-8 {
    width: 110px;
  }
}
#news .news__archive__hero .k-9 {
  z-index: -1;
  width: 350px;
  height: auto;
  position: absolute;
  top: 0;
  right: -60px;
}
@media (max-width: 1200px) {
  #news .news__archive__hero .k-9 {
    width: 220px;
    top: -60px;
    right: -20px;
  }
}
@media (max-width: 640px) {
  #news .news__archive__hero .k-9 {
    width: 200px;
    right: -30px;
  }
}
@media (max-width: 480px) {
  #news .news__archive__hero .k-9 {
    width: 160px;
  }
}
#news .news__archive__content {
  width: 960px;
  margin: auto;
}
@media (max-width: 1080px) {
  #news .news__archive__content {
    width: 80%;
  }
}
@media (max-width: 480px) {
  #news .news__archive__content {
    width: 90%;
  }
}
#news .news__archive__content .post-list {
  width: 640px;
  margin: auto;
  padding: 0 0 30px;
}
@media (max-width: 680px) {
  #news .news__archive__content .post-list {
    width: 95%;
  }
}
#news .news__archive__content .post-list .post-item {
  margin: 0 0 20px;
}
@media (max-width: 1200px) {
  #news .news__archive__content .post-list .post-item {
    margin: 0 0 15px;
  }
}
#news .news__archive__content .post-list .post-item a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#news .news__archive__content .post-list .post-item a:hover .post-thumb img {
  transform: scale(1.1);
}
#news .news__archive__content .post-list .post-item a .post-thumb {
  width: 200px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1200px) {
  #news .news__archive__content .post-list .post-item a .post-thumb {
    width: 160px;
    height: 120px;
  }
}
#news .news__archive__content .post-list .post-item a .post-thumb img {
  width: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 0.3s;
}
#news .news__archive__content .post-list .post-item a .post-info {
  width: calc(100% - 200px);
  padding: 0 0 0 20px;
}
@media (max-width: 960px) {
  #news .news__archive__content .post-list .post-item a .post-info {
    width: calc(100% - 160px);
  }
}
#news .news__archive__content .post-list .post-item a .post-info .post-date {
  font-size: 1.3rem;
  line-height: 1;
}
@media (max-width: 1200px) {
  #news .news__archive__content .post-list .post-item a .post-info .post-date {
    font-size: 1.1rem;
  }
}
#news .news__archive__content .post-list .post-item a .post-info h4 {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  #news .news__archive__content .post-list .post-item a .post-info h4 {
    font-size: 1.5rem;
  }
}
#news .news__archive .k-10 {
  z-index: -1;
  width: 210px;
  height: auto;
  position: absolute;
  bottom: 220px;
  left: -60px;
}
@media (max-width: 1200px) {
  #news .news__archive .k-10 {
    width: 120px;
    bottom: 140px;
    left: 15px;
  }
}
@media (max-width: 640px) {
  #news .news__archive .k-10 {
    width: 100px;
    bottom: 150px;
    left: 5px;
  }
}
#news .news__archive .k-11 {
  z-index: -1;
  width: 380px;
  height: auto;
  position: absolute;
  bottom: 0;
  left: -150px;
}
@media (max-width: 1200px) {
  #news .news__archive .k-11 {
    width: 230px;
    left: -40px;
  }
}
@media (max-width: 640px) {
  #news .news__archive .k-11 {
    width: 220px;
    left: -60px;
  }
}
#news .news__archive .news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: 500;
}
#news .news__archive .news-pagination .page-numbers {
  padding: 0 10px;
}
#news .news__archive .news-pagination img {
  width: auto;
  height: 20px;
}
#news .news__archive .news-pagination a:hover {
  color: #fdc600;
  text-decoration: underline;
}

.single .news-post .main {
  width: 1600px;
  margin: auto;
  padding: 150px 0 0;
}
@media (max-width: 1600px) {
  .single .news-post .main {
    width: 100%;
  }
}
.single .news-post .main article {
  width: 800px;
  margin: auto;
}
@media (max-width: 960px) {
  .single .news-post .main article {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .single .news-post .main article {
    width: 95%;
  }
}
.single .news-post .main article .single-thumb {
  width: 100%;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 960px) {
  .single .news-post .main article .single-thumb {
    width: 100%;
    height: 67.5vw;
  }
}
.single .news-post .main article .single-thumb img {
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.single .news-post .main article .single-in {
  padding: 30px 5% 0;
}
@media (max-width: 480px) {
  .single .news-post .main article .single-in {
    padding: 20px 2.5% 0;
  }
}
.single .news-post .main article .single-in .rough-box-news {
  border-radius: 50px;
  background-color: #fff;
  padding: 50px 50px 10px;
}
@media (max-width: 480px) {
  .single .news-post .main article .single-in .rough-box-news {
    padding: 40px 25px 10px;
  }
}
.single .news-post .main article .single-in h1 {
  line-height: 1.35;
  margin: 10px 0 30px;
}
.single .news-post .main article .single-in .single-content {
  margin: 0 0 50px;
}
.single .news-post .main article .single-in .single-content p {
  margin: 0 0 1.5rem;
}
@media (max-width: 1200px) {
  .single .news-post .main article .single-in .single-content p {
    margin: 0 0 1.3rem;
  }
}
.single .news-post .main article .single-in .single-content a {
  color: #ed714c;
  text-decoration: underline;
}
.single .news-post .main article .single-in .single-content li {
  list-style: square;
  list-style-position: inside;
}
.single .news-post .main article .single-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 1.5rem;
}
.single .news-post .main article .single-nav img {
  display: inline;
  width: auto;
  height: 20px;
}
.single .news-post .main article .single-nav .single-nav__prev a,
.single .news-post .main article .single-nav .single-nav__next a {
  display: flex;
  align-items: center;
  gap: 10px;
}/*# sourceMappingURL=app.css.map */