@charset "UTF-8";
@keyframes slide{
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes ul_slide_out{
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    transform: translateX(40px);
    opacity: 0;
  }
}

/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}

body {
  color: #2d3329;
  font-family: YakuHanJP,"dnp-shuei-gothic-kin-std", "遊ゴシック体", YuGothic, "遊ゴシック", "YuGothic", "Hiragino Sans", Meiryo, "メイリオ", "sans-serif";
  font-weight: 400;
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: .05em;
  text-align: center;
  background-color: #FDFFFC;
}

.body.is-active{
  overflow: hidden;
}

h2 {
  font-size: clamp(24px, 2.08333vw, 30px);
  line-height: 1;
}

h3 {
  font-size: clamp(18px,2.08333vw,30px);
  line-height: 1;
}

.en {
  font-family: "neuzeit-grotesk", sans-serif;
  font-weight: 300;
  font-style: normal;
}

#loading{
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #fcfffa;
  color: #333;
  inset: 0;
  font-size: 3.47vw;
  z-index: 2000;
  overflow: hidden;
}

#loading_logo {
  position: absolute;
	top: 50.5%;
	left: 50%;
	transform: translate(-50%, -50%);
}


#loading_logo svg {
  width: 60.25vw;
  /* position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); */
}

#mask{
  display: none;
  overflow: hidden;
  z-index: 2001;
}

#mask > path,polygon,circle,rect,ellipse{
  fill-opacity: 0;
  transition: fill-opacity .5s;
  stroke: #333;
}

#mask.done > path,polygon,circle,rect,ellipse {
  fill-opacity: 1;
  stroke: none;
}

.grecaptcha-badge{
  display: none;
}