@charset "UTF-8";
/* ==============================
    common
============================== */
:root {
  --text: #000000;
  --mainColor: #ffff00;
  --accentGray: #717071;
  --accentYellow: #ffffb5;
  --buttonColor: #4d4d4e;
  --borderColor: #f3f3f3;
  --innerPadding: 85rem;
  --textTrim: trim-both cap alphabetic;
}
@media screen and (max-width: 768px) {
  :root {
    --innerPadding: 80rem;
  }
}

html {
  font-size: 0.0520833333dvw;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16rem;
  line-height: 1.4;
  color: var(--text);
}

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

button {
  margin: 0;
  padding: 0;
  border: none;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 0.1333333333dvw;
  }
}
/* ============================== */
.anchor {
  font-size: 0;
  width: 0;
  height: 0;
  position: relative;
}
.anchor .anchor-item {
  position: absolute;
  top: -65rem;
  left: 0;
}

.pcIn {
  display: inline;
}

.pcBl {
  display: block;
}

.spIn,
.spBl {
  display: none;
}

.alignCenter {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .pcIn,
  .pcBl {
    display: none;
  }
  .spIn {
    display: inline;
  }
  .spBl {
    display: block;
  }
}
/* ============================== */
.mb10 {
  margin-bottom: 10rem;
}

.mb20 {
  margin-bottom: 20rem;
}

.mb30 {
  margin-bottom: 30rem;
}

.mb40 {
  margin-bottom: 40rem;
}

.mb50 {
  margin-bottom: 50rem;
}

.mb60 {
  margin-bottom: 60rem;
}

.mb70 {
  margin-bottom: 70rem;
}

.mb80 {
  margin-bottom: 80rem;
}

.mb90 {
  margin-bottom: 90rem;
}

.mb100 {
  margin-bottom: 100rem;
}

/* ==============================
    header
============================== */
#header {
  position: fixed;
  top: 0;
  right: 0;
  width: 60rem;
  z-index: 9999;
}

.hd__button {
  display: block;
  width: 60rem;
  aspect-ratio: 1/1;
  position: relative;
  background-color: var(--mainColor);
  transition: background-color 0.3s;
}
.hd__button span {
  width: 30rem;
  height: 1rem;
  position: absolute;
  left: 15rem;
  background-color: var(--text);
}
.hd__button span:where(:nth-of-type(1)) {
  top: 18rem;
  transition: top 0.3s, transform 0.3s, background-color 0.3s;
}
.hd__button span:where(:nth-of-type(2)) {
  top: 30rem;
  transition: width 0.3s;
}
.hd__button span:where(:nth-of-type(3)) {
  top: 42rem;
  transition: top 0.3s, transform 0.3s;
  transition: top 0.3s, transform 0.3s, background-color 0.3s;
}
.hd__button.active {
  background-color: var(--text);
}
.hd__button.active span:where(:nth-of-type(1)) {
  top: 30rem;
  background-color: #fff;
  transform: rotate(45deg);
}
.hd__button.active span:where(:nth-of-type(2)) {
  width: 0;
}
.hd__button.active span:where(:nth-of-type(3)) {
  top: 30rem;
  background-color: #fff;
  transform: rotate(-45deg);
}

#gnav {
  width: 410rem;
  height: 100dvh;
  position: absolute;
  right: 0;
  top: 0;
  background: url(../image/common/gnav_bg.png) bottom left/100% auto no-repeat, var(--mainColor);
  padding: 130rem 85rem 30rem 40rem;
  z-index: -1;
  transform: translateX(100%);
  transition: transform 0.3s;
}
#gnav.open {
  transform: translateX(0);
}
#gnav .gnav__top {
  padding-bottom: 40rem;
  border-bottom: 1rem solid var(--text);
  margin-bottom: 40rem;
}
#gnav .gnav__top .gnav__top-item .gnav__top-link span {
  display: block;
}
#gnav .gnav__top .gnav__top-item .gnav__top-link .gnav__top--en {
  font-size: 24rem;
  font-weight: 700;
  position: relative;
}
#gnav .gnav__top .gnav__top-item .gnav__top-link .gnav__top--en::after {
  content: "";
  width: 12rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: calc(50% - 6rem);
  right: 20rem;
  border-top: 1rem solid var(--text);
  border-right: 1rem solid var(--text);
  transform: rotate(45deg);
  transition: right 0.3s;
  pointer-events: none;
}
#gnav .gnav__top .gnav__top-item .gnav__top-link .gnav__top--jp {
  font-size: 15rem;
  font-weight: 500;
}
#gnav .gnav__top .gnav__top-item + .gnav__top-item {
  margin-top: 40rem;
}
#gnav .gnav__bottom .gnav__bottom-item .gnav__bottom-link {
  font-size: 15rem;
  font-weight: 500;
  display: block;
  position: relative;
}
#gnav .gnav__bottom .gnav__bottom-item .gnav__bottom-link::after {
  content: "";
  width: 12rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: calc(50% - 6rem);
  right: 20rem;
  border-top: 1rem solid var(--text);
  border-right: 1rem solid var(--text);
  transform: rotate(45deg);
  transition: right 0.3s;
  pointer-events: none;
}
#gnav .gnav__bottom .gnav__bottom-item + .gnav__bottom-item {
  margin-top: 40rem;
}

#gnav__bg {
  width: 100dvw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--text);
  opacity: 0;
  z-index: -1;
  cursor: pointer;
  transition: opacity 0.3s;
  pointer-events: none;
}
#gnav__bg.open {
  opacity: 0.5;
  pointer-events: all;
}

@media (hover: hover) and (pointer: fine) {
  #gnav .gnav__top .gnav__top-item .gnav__top-link:hover .gnav__top--en::after,
  #gnav .gnav__bottom .gnav__bottom-item .gnav__bottom-link:hover::after {
    right: 10rem;
  }
}
@media screen and (max-width: 768px) {
  #header {
    width: 100rem;
  }
  .hd__button {
    width: 100rem;
  }
  .hd__button span {
    width: 50rem;
    height: 2rem;
    left: 25rem;
  }
  .hd__button span:where(:nth-of-type(1)) {
    top: 27rem;
  }
  .hd__button span:where(:nth-of-type(2)) {
    top: 47rem;
  }
  .hd__button span:where(:nth-of-type(3)) {
    top: 67rem;
  }
  .hd__button.active span:where(:nth-of-type(1)) {
    top: 47rem;
  }
  .hd__button.active span:where(:nth-of-type(3)) {
    top: 47rem;
  }
  #gnav {
    width: 600rem;
  }
  #gnav .gnav__top .gnav__top-item .gnav__top-link .gnav__top--en {
    font-size: 32rem;
  }
  #gnav .gnav__top .gnav__top-item .gnav__top-link .gnav__top--en::after {
    width: 20rem;
    top: calc(50% - 10rem);
  }
  #gnav .gnav__top .gnav__top-item .gnav__top-link .gnav__top--jp {
    font-size: 24rem;
  }
  #gnav .gnav__bottom .gnav__bottom-item .gnav__bottom-link {
    font-size: 28rem;
  }
  #gnav .gnav__bottom .gnav__bottom-item .gnav__bottom-link::after {
    width: 20rem;
    top: calc(50% - 10rem);
  }
}
/* ==============================
    footer
============================== */
#footer {
  margin-top: 100rem;
  border-top: 2rem solid var(--borderColor);
  padding-block: 80rem 60rem;
}
#footer .ft__buttons {
  display: grid;
  grid-template-columns: repeat(2, 380rem);
  justify-content: center;
  column-gap: 95rem;
  margin-bottom: 60rem;
}
#footer .ft__buttons .ft__buttons-item a {
  font-size: 32rem;
  font-weight: 500;
  color: var(--accentGray);
  text-align: center;
  text-decoration: underline;
  text-decoration-color: var(--mainColor);
  text-decoration-thickness: 4rem;
  display: block;
  aspect-ratio: 380/100;
  position: relative;
  align-content: center;
  border: 0.3rem solid var(--text);
  overflow: hidden;
  transition: color 0.4s;
}
#footer .ft__buttons .ft__buttons-item a span {
  position: relative;
  z-index: 2;
}
#footer .ft__buttons .ft__buttons-item a::after {
  content: "";
  width: 15rem;
  aspect-ratio: 1/1;
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background-color: var(--text);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transition: width 0.4s;
}

.ft__copy {
  font-size: 12rem;
  text-align: center;
}

@media (hover: hover) and (pointer: fine) {
  #footer .ft__buttons .ft__buttons-item a:hover {
    color: #fff;
  }
  #footer .ft__buttons .ft__buttons-item a:hover::after {
    width: 150%;
  }
}
@media screen and (max-width: 768px) {
  #footer {
    padding-top: 100rem;
  }
  #footer .ft__buttons {
    grid-template-columns: repeat(2, 265rem);
    column-gap: 60rem;
  }
  #footer .ft__buttons .ft__buttons-item a {
    font-size: 24rem;
  }
  #footer .ft__copy {
    font-size: 18rem;
  }
}
/* ==============================
    アニメーション
============================== */
.js-parallax-item {
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  filter: blur(8px);
  will-change: transform, opacity, filter;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), filter 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-parallax.is-visible .js-parallax-item {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ディレイ */
.delay-01 {
  transition-delay: 0.6s;
}

.delay-02 {
  transition-delay: 1.2s;
}

/* ==============================
    下層
============================== */
.page {
  padding-top: 120rem;
}

#hd__sp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding-left: 5%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 9999;
}
#hd__sp .hd__logo {
  width: 195rem;
  line-height: 1;
}
#hd__sp .hd__logo a {
  transition: opacity 0.3s;
}

.pagetitle {
  margin-bottom: 60rem;
}

#container {
  padding: 55rem;
}

.content {
  padding: 105rem 110rem;
  background-color: #fff;
}

.back {
  width: 403rem;
  margin: 100rem auto 0;
}
.back a {
  transition: opacity 0.3s;
}

#ft__sp {
  padding-block: 75rem;
}

@media (hover: hover) and (pointer: fine) {
  #hd__sp .hd__logo a,
  .back a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  #container {
    padding: 30rem 25rem;
  }
  .content {
    padding: 40rem;
  }
  #ft__sp {
    padding-block: 30rem;
  }
}/*# sourceMappingURL=common_2026.css.map */