@charset "UTF-8";
/* color
**************************************************************************************************/
/* font
**************************************************************************************************************************/
/* reset,preset
**************************************************************************************************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  interpolate-size: allow-keywords;
}

body {
  line-height: 1;
  margin: 0;
  -webkit-text-size-adjust: 100%;
}

html {
  scroll-behavior: smooth;
}

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

p {
  line-height: 1.5;
  margin: 0;
}

article, aside, details, figcaption, figure,
footer, header, main, hgroup, menu, nav, section {
  display: block;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

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

dl {
  margin: 0;
  padding: 0;
}
dl dt, dl dd {
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
}

p, li, dd { /* word-break: auto-phrase; */ }

input, select {
  vertical-align: middle;
}

a, button, input, select {
  outline: none;
  cursor: pointer;
}

img {
  vertical-align: middle;
}

figure {
  margin: 0;
  padding: 0;
}

picture {
  display: block;
}

object {
  display: block;
}

select, input {
  field-sizing: content;
}

:placeholder-shown ::-webkit-input-placeholder,
:-ms-input-placeholder {
  color: #e5e5e5;
}

/* link
**************************************************************************************************/
a {
  text-decoration: none;
  outline: none;
  backface-visibility: hidden;
}
a.disabled {
  pointer-events: none;
  opacity: 0.5;
}
a img {
  border: 0;
  position: relative;
}
@media screen and (min-width: 1025px) {
  a {
    transition: opacity 0.2s;
  }
  a:hover {
    opacity: 0.8;
  }
}

/* animation
**************************************************************************************************/
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -150px, 0);
    transform: translate3d(0, -150px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes sdl {
  0% {
    transform: scale(0, 1);
    transform-origin: 0 0;
  }
  35% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  35.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  70%, 100% {
    transform: scale(0, 1);
    transform-origin: 0 100%;
  }
}
@keyframes floating-y {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10%);
  }
  100% {
    transform: translateY(0);
  }
}
.fadeInUpLeft {
  animation: fadeInUpLeft 1.2s;
  animation-fill-mode: forwards;
}

@keyframes fadeInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    clip-path: inset(0);
  }
}
.maskCircle {
  animation: maskCircle 10s;
  animation-fill-mode: forwards;
}

@keyframes maskCircle {
  0% {
    clip-path: circle(0px at center);
  }
  to {
    clip-path: circle(300vw at center);
  }
}
.plx-nml {
  animation: parallax linear both;
  animation-timeline: view();
}

@keyframes parallax {
  from {
    transform: scale(1.2) translateY(-1.5vw);
  }
  to {
    transform: scale(1.2) translateY(1.5vw);
  }
}
.plx-rvs {
  animation: parallax_rvs linear both;
  animation-timeline: view();
}

@keyframes parallax_rvs {
  from {
    transform: scale(1.2) translateY(1.5vw);
  }
  to {
    transform: scale(1.2) translateY(-1.5vw);
  }
}
/* font
**************************************************************************************************/
/* headline
**************************************************************************************************/
/* background
**************************************************************************************************/
/* float-align
**************************************************************************************************/
/* img
**************************************************************************************************/
img.full {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.wf {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* embed
**************************************************************************************************/
.embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.embed iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.gmap {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.gmap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1025px) {
  .gmap {
    padding-top: 56.25%;
  }
}

/* select input
**************************************************************************************************/
/* lists
**************************************************************************************************/
.list-bullet {
  display: grid;
  grid-auto-flow: row;
  padding-left: 1.5em;
  list-style-type: disc;
}
.list-bullet > li:not(:last-child) {
  margin-bottom: 0.5em;
}

.list-notice {
  counter-reset: list;
  display: grid;
  position: relative;
  grid-auto-flow: row;
  margin-left: 0;
  padding-left: 1.5em;
  list-style: none;
  row-gap: 0.5em;
}
.list-notice > li {
  counter-increment: list;
}
.list-notice > li::before {
  position: absolute;
  left: 0;
  content: "※";
}

.list-customnumber {
  counter-reset: nested-list;
  display: grid;
  position: relative;
  grid-auto-flow: row;
  margin-left: 0;
  padding-left: 1.5em;
  list-style: none;
  row-gap: 0.5em;
}
.list-customnumber > li {
  counter-increment: nested-list;
}
.list-customnumber > li::before {
  position: absolute;
  left: 0;
  content: counter(nested-list) "）";
}

/* text
**************************************************************************************************/
/* images
**************************************************************************************************/
/* border
**************************************************************************************************/
/* fontsize
**************************************************************************************************/
/* table
**************************************************************************************************/
table {
  border-spacing: 0;
}

/* box
**************************************************************************************************/
/* reset-slider
**************************************************************************************************/
.bx-wrapper {
  margin-bottom: 0;
  box-shadow: none;
  border: 0;
  background: none;
}

/* scroll
**************************************************************************************************/
.scroll-wrap {
  position: relative;
}
.scroll-wrap .scroll {
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 1025px) {
  .scroll-wrap .scroll {
    overflow: visible;
  }
}

/* fix
**************************************************************************************************/
/* form
**************************************************************************************************/
/* width
**************************************************************************************************/
/* flex
**************************************************************************************************/
/* clrfix
**************************************************************************************************/
.clrfix:after {
  content: ".";
  display: block;
  height: 0px;
  clear: both;
  visibility: hidden;
}

/*# sourceMappingURL=config.css.map */
