@charset "utf-8";
html, body {
    /*overflow: hidden;*/
    font-size: 20px;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    letter-spacing: 0.2em;
}
body { position: relative; /*cursor: none;*/ }
p { display: block;  margin: 0 auto; padding: 0; }
/* ----- 背景スライダー ----- */
.full-img-wrap {
    flex: 1;
    height: 100%;
    display: block;
}
.full-img {
    width: 100%;
    height: 100%;
}
.full-img .slide-item {
    width: 100%;
    position: relative;
}
.full-img .slide-item img { width: 100%; height: auto; }
/* ----- 背景用の動画ファイル ----- */
#bg-video {
	position: fixed;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: 100%;
    object-fit: cover;
	z-index: -100;
	background-color: #000;
}
/* ----- 背景の上に表示させたいコンテンツ ----- */
.wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 680px;
}
.txt-content {
    position: relative;
    z-index: 10;
    width: 600px;
    height: auto;
    min-height: 100%;
    padding: 60px 0;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.txt-content::before {
    content: '';
    position: absolute;
    border: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    display: block;
    background-image: url(../img/main-cover01.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right bottom;
    opacity: 0.6;
}
.main-txt {
    text-align: center;
    width: 100%;
    max-width: 420px;
    margin: 0 auto 2.5rem;
    filter: drop-shadow(3px 3px 1rem rgba(0, 0, 0, 0.47));
    -webkit-filter: drop-shadow(3px 3px 1rem rgba(0, 0, 0, 0.47));
    -ms-filter: drop-shadow(3px 3px 1rem rgba(0, 0, 0, 0.47));
}
.btnlist {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 26px 35px;
}
.btnlist:not(:last-child) { margin-bottom: 26px; }
.btn-item {
    width: 310px;
}
/* --------------------------------------------
    Roading display
-------------------------------------------- */
/* % gauge */
#container {
    margin: 0 auto;
    width: 130px;
    height: 130px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/*Roading Content*/
#loader-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #000;
  z-index: 1000;
}
.loading {
    position: relative;
    display: grid;
    place-items: center;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    overflow: hidden;
}
.loading .loading-area {
    display: flex;
    justify-content: center;
    gap: 3px;
}
.loading .loading-area span {
    display: inline-block;
    line-height: 1;
    background-color: #efefef;
    background-image: linear-gradient(#DD0E2D, #ab0d25);
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 100% 2%;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 2rem;
    font-weight: bold;
    animation: water-anime 2s infinite linear;
    text-transform: uppercase;
}
.loading-area span:nth-child(1) { animation-delay: 0.1s; }
.loading-area span:nth-child(2) { animation-delay: 0.2s; }
.loading-area span:nth-child(3) { animation-delay: 0.3s; }
.loading-area span:nth-child(4) { animation-delay: 0.4s; }
.loading-area span:nth-child(5) { animation-delay: 0.5s; }
.loading-area span:nth-child(6) { animation-delay: 0.6s; }
.loading-area span:nth-child(7) { animation-delay: 0.7s; }
.loading-area span:nth-child(8) { animation-delay: 0.8s; }
.loading-area span:nth-child(9) { animation-delay: 0.9s; }
.loading-area span:nth-child(10) { animation-delay: 1s; }
@keyframes water-anime {
    50%,70% { background-size: 100% 100%; }
}
@media screen and (max-width: 992px) {
    .wrap { display: block; }
    .full-img-wrap { height: auto; }
    .full-img { height: 62vw; }
    .txt-content { width: 100%; min-height: auto; padding: 80px 0; }
    
    .main-txt { max-width: 360px; }
    .btnlist { gap: 30px 20px; }
    .btnlist:not(:last-child) { margin-bottom: 30px; }
    .btn-item { width: 300px; }
}
@media screen and (max-width: 768px) {
    .full-img { height: 60vh; }
    .txt-content { min-width: auto; padding: 80px 25px; }
}
@media screen and (max-width: 575px) {
    .main-txt { margin: 0 auto 2rem; }
    .btnlist { gap: 16px; }
    .btnlist:not(:last-child) { margin-bottom: 16px; }
    .btn-item { width: 260px; }
}