@charset "UTF-8";
/*reset*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 3px solid Highlight;
  outline-offset: 2px;
  scroll-margin-block: 10vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

figure {
  margin-bottom: 0;
}

.grecaptcha-badge {
  visibility: hidden;
  opacity: 0;
}

html {
  font-size: 16px;
}

html, body {
  font-family: "Roboto", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0em;
  font-style: normal;
  color: #000;
  background: #FFF;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  min-height: 100%;
  transition: all 1s 0s ease;
}

body.modal_open {
  overflow: hidden;
}
body.night_view {
  background: #261f1e;
}
body.lang-jp .lang_jp {
  display: block;
}
body.lang-jp .lang_en {
  display: none;
}
body.lang-en .lang_jp {
  display: none;
}
body.lang-en .lang_en {
  display: block;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

@media only screen and (max-width: 896px) {
  html, body {
    cursor: auto;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  body.page {
    padding-top: 0vw;
  }
}
img {
  width: 100%;
  height: auto;
}

/*----------------------------------------------------
 swiper
--------------------------------------------------- */
.swiper-wrapper {
  transition-timing-function: ease;
}

/*----------------------------------------------------
 link
--------------------------------------------------- */
a:link, a:visited, a:active {
  color: #987659;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  text-decoration: none;
}

/*----------------------------------------------------
  .fade_up
--------------------------------------------------- */
.fade_up {
  opacity: 0;
  transform: scale(1, 1) translate(0%, 10px);
}

.fade_up.js-fade_up_view {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
  transform: scale(1, 1) translate(0%, 0%);
}

/*----------------------------------------------------
  .lazyload
--------------------------------------------------- */
.lazyload_set span {
  opacity: 0;
}
.lazyload_set span.lazyloaded {
  opacity: 1;
  transition: all 0.5s 0s ease;
}

.grade_bg {
  background: linear-gradient(90deg, #ffd900 0%, #ffef3f 7%, #c7dc68 14%, #68be8d 21%, #239dda 28%, #5a79ba 35%, #9079ad 42%, #e7609e 49%, #e95464 56%, #ed6d3d 70%, #f49d43 77%, #ffd900 100%);
  background-size: 500% 500%;
  animation-name: gradation_bg;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-timing-function: linear;
}

@keyframes gradation_bg {
  0% {
    background-position: 250% 250%;
  }
  100% {
    background-position: 0% 0%;
  }
}
/*----------------------------------------------------
  .block_teaser
--------------------------------------------------- */
.block_teaser {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.block_teaser figure ul li {
  position: absolute;
  width: 100vw;
  height: 100vh;
  opacity: 0;
}
.block_teaser figure ul li.view {
  opacity: 1;
}
.block_teaser figure ul li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center center;
}
@media (max-width: 896px) {
  .block_teaser figure ul li span {
    background-size: cover;
  }
}
.block_teaser figure ul li img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media (max-width: 896px) {
  .block_teaser figure ul li img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.block_teaser .textarea {
  position: absolute;
  top: 10vh;
  left: 0;
  width: 100%;
  text-align: center;
  color: #e83828;
  font-size: 15px;
}
.block_teaser .textarea .title {
  font-size: 15px;
}
.block_teaser .textarea p {
  font-size: 15px;
}
.block_teaser .textarea p a {
  color: #e83828;
  text-decoration: underline;
}
.block_teaser ul.logo_area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.block_teaser ul.logo_area li {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 60px;
  height: 60px;
}
.block_teaser ul.logo_area li img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  margin-top: -30px;
  margin-left: -30px;
}
.block_teaser ul.t {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  margin-top: -150px;
  margin-left: -150px;
  pointer-events: none;
  display: none;
}
.block_teaser ul.t li {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 60px;
  height: 60px;
}
.block_teaser ul.t li img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.block_teaser .link {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  margin-top: -150px;
  margin-left: -150px;
  visibility: hidden;
  opacity: 0;
}
.block_teaser .link.view {
  visibility: visible;
  opacity: 1;
}
.block_teaser .link a {
  position: absolute;
  top: 40%;
  left: 70%;
  color: #e83828;
  text-decoration: underline;
  font-size: 15px;
  white-space: nowrap;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(25deg);
}
.block_teaser .sns {
  position: absolute;
  bottom: 20vh;
  left: 0;
  width: 100%;
  text-align: center;
  color: #e83828;
  font-size: 15px;
}
.block_teaser .sns a {
  color: #e83828;
  text-decoration: underline;
}/*# sourceMappingURL=common.css.map */