/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 25 2025 | 01:11:03 */
@import url(//fonts.googleapis.com/css?family=Lato:300:400);

/*　■■■■　汎用　■■■　*/
body{
  margin:0;
　position: relative;
  background:#f00;
}
a{
  display:inline-block;
  margin:40px;
}

.vertical {
	writing-mode: vertical-rl;
    }

h1 {
  font-family: 'Lato', sans-serif;
  font-weight:300;
  letter-spacing: 2px;
  font-size:48px;
}
p {
  font-family: 'Lato', sans-serif;
  letter-spacing: 1px;
  font-size:14px;
  color: #333333;
}


/*　■■■■　マウスカーソル　■■■　*/

#stkr{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 40px;
	height: 40px;
	background:  #0af;
	border-radius: 50%;
	transition: 0.2s;
	transition-timing-function: ease-out;
	pointer-events: none;
	z-index: 10;
}


/*　■■■■　ヒーローエリア　■■■　*/

.container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.logo {
  position: absolute;
  z-index: 3;
  opacity: 1;
  animation: fadeOutLogo 0.8s ease 1.5s forwards;
}

.logo img {
  max-width: 300px;
  height: auto;
}

.gradient-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;	
  background: linear-gradient(60deg, rgba(252,229,232,1) 0%, rgba(255,254,241,1) 100%);
  transform: translateY(100%);
  z-index: 1;
  animation: rollUp 1.2s ease 1.5s forwards;
}

.main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 3;
  animation: fadeInImage 1.5s ease 2.7s forwards;
}

.bk-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 2;
  animation: fadeInImage 1.5s ease 2.7s forwards;
}

.content {
  position: relative;
  z-index: 4;
  opacity: 0;
  padding: 0 20px;
  animation: fadeInContent 1s ease 3s forwards;
  text-align: center;
}

.main-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.sub-title {
  font-size: 1.2rem;
  font-weight: 300;
  margin: 0 0 2rem;
  letter-spacing: 0.05em;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 4;
  opacity: 0;
  animation: fadeInContent 1s ease 4s forwards;
}

@keyframes fadeOutLogo {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@keyframes rollUp {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}

@keyframes fadeInImage {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInContent {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollLine {
  0% {
    height: 0;
    opacity: 0;
  }
  50% {
    height: 80px;
    opacity: 1;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .main-title {
    font-size: 2.5rem;
  }
  .sub-title {
    font-size: 1.4rem;
  }
}

/*スクロールボタン */
.btn-box{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.btn-box::after {
  content: "";
  display: block;
  width: 1px;
  height: 80px;
  background: #fff;
  opacity: 0;
  margin: 0 auto 10px;
  animation: scrollLine 3s ease-in-out infinite;
}

.btn {
  display: block;
  width: 200px;
  height: 200px;
  line-height: 78px;
  font-size: 24px;
  text-decoration: none;
  background-color: #0af;
  color: #fbfbfb;
  text-align: center;
  cursor: pointer;
  border-radius: 100px;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  color: #fbfbfb;
}

/*スクロールアイコン*/ 
@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

.text-b {
  display: block;
  margin-top: 75px;
  font-size: 1em;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .25;
  animation: pulse 2s linear alternate infinite;
}

.e-font-icon-svg {
  font-size: 2em;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .25;
  animation: pulse 2s linear alternate infinite;	
}

@keyframes pulse {
  to {
    opacity: 1;
  }
}

/*　■■■■　波区切り　■■■　*/
.header {
  position:relative;
  text-align:center;
  background: linear-gradient(60deg, rgba(252,229,232,1) 0%, rgba(255,254,241,1) 100%);
  color:white;
}

.inner-header {
  height:65vh;
  width:100%;
  margin: 0;
  padding: 0;
}

.flex { /*Flexbox for containers*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position:relative;
  width: 100%;
  height:15vh;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:100px;
  max-height:150px;
}

.content {
  position:relative;
  height:20vh;
  text-align:center;
  background-color: white;
}

/* Animation */

.parallax > use {
	animation:move-right 25s linear infinite;
}
.parallax > use:nth-child(1) {animation-delay:0s;animation-duration:8s;}
.parallax > use:nth-child(2) {animation-delay:-6s;animation-duration:12s;}
.parallax > use:nth-child(3) {animation-delay:-10s;animation-duration:20s;}
.parallax > use:nth-child(4) {animation-delay:-18s;animation-duration:34s;}
@keyframes move-right {
	0% {transform:translateX(-100px);}
	100% {transform:translateX(0);}
}

/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height:40px;
    min-height:40px;
  }
  .content {
    height:30vh;
  }
  h1 {
    font-size:24px;
  }
}




/*　■■■■　波区切り　■■■　*/
.waves-separator {
	background:linear-gradient(180deg, transparent, #bbe2f1);
	padding-top:15vh;
}
.waves{
	width:100%;height:15vh;
	margin-bottom:-8px;/* 下部のgapを隠す */
}
.parallax > use {
	animation:move-right 25s linear infinite;
}
.parallax > use:nth-child(1) {animation-delay:0s;animation-duration:8s;}
.parallax > use:nth-child(2) {animation-delay:-6s;animation-duration:12s;}
.parallax > use:nth-child(3) {animation-delay:-10s;animation-duration:20s;}
.parallax > use:nth-child(4) {animation-delay:-18s;animation-duration:34s;}
@keyframes move-right {
	0% {transform:translateX(-100px);}
	100% {transform:translateX(0);}
}


/*　■■■■　上に戻るボタン　■■■　*/
#upbk a {
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 100px;
  height: 100px;
  border: solid 6px #0af;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgb(0 0 0 / 16%);
}

#upbk a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background-color: #0af;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0, 0);
  transition: transform ease 0.4s;
}

#upbk a:hover:after {
  transform: translate(-50%, -50%) scale(1.1, 1.1);
}

#upbk a:before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 55%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-style: solid;
  border-color: #0af;
  border-width: 6px 0 0 6px;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: border-color ease 0.1s;
}

#upbk a:hover:before {
  border-color: #fff;
}


/*　■■■■　音量ボタン　■■■　*/

.player {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 音量ON ボタン*/
#playPauseBtn button{
    background: #0af !important;
		border: 2px solid #fff !important;
		justify-content: center;
		cursor: pointer;
		border-radius: 50%;
		box-shadow:none;
	  position: relative;
	  padding: 4px;
	  height: 100px;
	  width: 100px;
}

/* 音量OFF ボタン :hover*/
#playPauseBtn button:hover {
		background: #0af !important;
		/* 色の変化を滑らかに */
  	transition: background 0.3s ease;
}

svg {
    width: 30px;
    height: 30px;
    fill: white; /* デフォルトの色 */
    transition: fill 0.3s ease;
}

/* マウスオーバーで色を変更 */
.button1:hover svg {
    fill: #fff; /* 例: マウスオーバー時に赤色に変更 */
}

/* 円形マスク */
.circlemask{
  -webkit-clip-path: circle(45% at 50% 50%);
  clip-path: circle(45% at 50% 50%);
}

#playIcon, #pauseIcon {
    width: 60px;
    height: 60px;
  }






/*　■■■■　ヒーローエリア（TEST）　■■■　*/
/*TOPボックス*/ 
.body-2 {
  text-align:center;
  background: linear-gradient(60deg, rgba(252,229,232,1) 0%, rgba(255,254,241,1) 100%);
  color:white;
}

/*TOPアニメーション部 */
.waves-wrapper {
	background:linear-gradient(60deg, rgba(252,229,232,1) 0%, rgba(255,254,241,1) 100%);
	padding-top:90vh;
}
.waves{
	width:100%;height:15vh;
	margin-bottom:-8px;/* 下部のgapを隠す */
}
.parallax > use {
	animation:move-right 25s linear infinite;
}
.parallax > use:nth-child(1) {animation-delay:0s;animation-duration:8s;}
.parallax > use:nth-child(2) {animation-delay:-6s;animation-duration:12s;}
.parallax > use:nth-child(3) {animation-delay:-10s;animation-duration:20s;}
.parallax > use:nth-child(4) {animation-delay:-18s;animation-duration:34s;}
@keyframes move-right {
	0% {transform:translateX(-100px);}
	100% {transform:translateX(0);}
}
