.section {
    position: relative;
    width: 100vw;
    height: 100vh;
}

.section-layer {
    position: absolute;
    inset: 0;
    clip-path: inset(0);
    /* 要素全体をクリップ */
}

.content {
    display: grid;
    place-content: center;
	width: 100vw;
    height: 100vh;
    background-color: #244A35;
    color: #FFFFFF;
    /**background-color: #efefef;
    color: #353535;**/
    font-size: 16px;
	line-height: 36px;
	/**text-align: center;**/
}

.parallax {
    position: fixed;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-01 {
    background-image: url(images/01/top_image01.jpg);
}

.bg-02 {
    background-image: url(images/01/top_image02.jpg);
}
.bg-03 {
    background-image: url(images/01/top_image03.jpg);
}
/* フェードイン */
.start {
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 99999;
}
.start p {
	position: fixed;
	left: 50%;
	top: 49%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 99999;
	width: 280px;
}

/* スクロールテキスト　*/
.container_06 {
}




.scroll-down_06-1 {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-family: serif;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    width: 100%;
}


.scroll-down_06 {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: serif;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.circle-arrow {
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
  margin-bottom:12px;
  margin-inline: auto;
  animation: pulse 2s infinite;
}

.circle-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/* ループスライダー　*/
.slider {
    display: flex;

    background-color: #efefef;
    overflow: hidden;
}

.slider-list {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    animation: slideShow 50s infinite linear;
    list-style: none;
}

.slider-item {
    width: 200px;
    height: 125px;
    top: 50%;
    /**margin-left: 5px;
    margin-right: 5px;**/
}


.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 0.5rem;
}

.slider:hover .slider-list {
    animation-play-state: paused;
}

@keyframes slideShow {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }

}

/* 角アール　*/
.kadomarubox {
    border-radius: 10px 10px 10px 10px;
}
.kadomarubox2 {
    border-radius: 5px 5px 5px 5px;
}
