@charset "UTF-8";
/* CSS Document */

body {
    margin: 0;
    overflow-x: hidden;
    background-color: #FFD500;
    　font-family: "M PLUS Rounded 1c", "Kosugi Maru", "Hiragino Kaku Gothic ProN", sans-serif;
    color: #302317; /* 文字色はお好みで */
}
h1, .box02, .box03, .box04 {
  font-family: "Dela Gothic One", "M PLUS Rounded 1c", sans-serif;
  letter-spacing: 2px;
}
img {
  width: 100%;
  height: auto;
}
.logo-fixed {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
  width: 100px;
}
.logo-fixed img {
  width: 100%;
  height: auto;
}
.top_txt {}
.top_txt h1 {
    color: #7D3E00;
    font-size: 2em;
    margin-bottom: 135px;  
}
.top_logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  animation: float 3s ease-in-out infinite, moveSide 5s linear infinite;
  top: 20%;
}
.box03{
    font-size: 17px;	
}
.box04{
    font-size: 13px;
    text-align: center;	
}
	

@media screen and (max-width:1024px) {
  .logo-fixed {
    top: 20px;
    left: 20px;
    width: 80px;
  }
  .top_logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    background-size: contain;
    background-repeat: no-repeat;
    animation: float 3s ease-in-out infinite, moveSide 5s linear infinite;
    top: 25%;
  }
  .top_txt {
    padding-right: 20px;
    padding-left: 20px;
    margin-top: 34px;
  }
  .top_txt h1 {
    color: #7D3E00;
    font-size: 1em;
  }
.box03{
    font-size: 12px;	
}
.box04{
    font-size: 10px;
    text-align: center;	
}
	
}
.main_box {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #FFD500;

  /* 背景を複数指定 */
  background-image:
    radial-gradient(rgba(107, 76, 59, 0.05) 5px, transparent 6px), /* ドット */
    url(../images/yama.svg); /* 追加する画像 */

  background-size: 
    20px 20px,   /* ドットの間隔 */
    auto;        /* 追加画像は等倍（必要なら cover や contain に変更） */

  background-repeat: 
    repeat,  /* ドットは繰り返す */
    no-repeat; /* 追加画像は繰り返さない */

  background-position: 
    top left, /* ドットは上から */
    bottom left; /* 追加画像は下左固定 */
}
.box02 {
  background-color: #FFA100;
  height: 30%;
}
.box03 {
    background-color: #f6d92d;
    height: 30%;
    text-align: center;	
}
.box04 {
    background-color: #F9F6D6;
    height: 30%;
}
   
.cloud {
  position: fixed;
  top: 50px;
  width: 200px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
}
.cloud2 {
  position: fixed;
  top: 250px;
  width: 150px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
}
.cloud img {
  width: 100%;
}
.cloud-left {
	animation: cloudLeft 30s linear infinite; /* 60s → 30s */
	left: -200px;
}

.cloud-right {
	animation: cloudRight 40s linear infinite; /* 80s → 40s */
	right: -200px;
}
.cloud-left2 {
	animation: cloudLeft 40s linear infinite; /* 60s → 30s */
	left: -100px;
}

.cloud-right2 {
	animation: cloudRight 60s linear infinite; /* 80s → 40s */
	right: -100px;
}
.character1 {
  position: absolute;
  bottom: 50px;
  left: 30%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background-size: contain;
  background-repeat: no-repeat;
  animation: float 3s ease-in-out infinite, moveSide 5s linear infinite;
}
.character2 {
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	width: 400px;
	height: 400px;
	background-size: contain;
	background-repeat: no-repeat;
	animation: float 3s ease-in-out infinite, moveSide 5s linear infinite;
	z-index: 100;
}
.character3 {
  position: absolute;
  bottom: 50px;
  left: 70%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background-size: contain;
  background-repeat: no-repeat;
  animation: float 3s ease-in-out infinite, moveSide 5s linear infinite;
}
.character7 {
  position: absolute;
  bottom: 50px;
  left: 80%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  animation: float 3s ease-in-out infinite, moveSide 5s linear infinite;
}
.character1 {
  animation: float 3s ease-in-out infinite, moveSide 5s linear infinite;
}
.character2 {
  animation: float 4s ease-in-out infinite, moveSide 7s linear infinite;
}
.character3 {
  animation: float 2.5s ease-in-out infinite, moveSide 6s linear infinite;
}
.character1 img, .character2 img, .character3 img {
  width: 100%;
}


@keyframes cloudLeft {
  0% {
    left: -200px;
  }
  100% {
    left: 100%;
  }
}
@keyframes cloudRight {
  0% {
    right: -200px;
  }
  100% {
    right: 100%;
  }
}
@keyframes float {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -20px);
  }
}
@keyframes moveSide {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}
/*スマホ*/
@media screen and (max-width: 768px) {
  .cloud {
    width: 120px;
    height: 60px;
  }
  .character1, .character2, .character3, .character7 {
    width: 250px;
    height: 200px;
    bottom: 30px;
  }
	.character1 {
  position: absolute;
  bottom: 20px;
  left: 30%;
  width: 200px;
  height: 200px;
}
	.character2 
	{
    width: 200px;
    height: 200px;
    left: 55%;
    bottom: 10px;
   
	}
	.character3 {
	position: absolute;
	bottom: 20px;
	width: 200px;
	height: 200px;
	
}
}