@charset "UTF-8";
/* CSS Document */


body {
	padding:0;
	margin:0;
}


.st_wrap {
	clear: both;
	width:100%;
	padding: 1% 0;
	margin: 0 auto;
	font-family: "Noto Sans JP", serif;
	font-weight: 400;
	color: #b29d59;	
    font-size: 16px;
	text-align: center;
	overflow: hidden;
	background: url("../images/tree.png") repeat-x right bottom;
	background-size: 80%;
}

.st_wrap article {
	margin: 0 auto;
	position: relative;
	background: url("../images/stars.svg") repeat-y left top;
	background-size: 100%;
}

.st_wrap a {
	color: #000;
}

.st_wrap h1 {
	font-family: "ltc-nicholas-cochin-pro", sans-serif;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 0.035em;
	text-align: center;
	margin: 3% auto 5%;
}

.st_wrap h2 {
	font-size: 28px;
	text-align: center;
	margin: 1% auto;
    line-height: 1.8em;
	font-weight: 600;
}

.st_wrap h3 {
	font-size: 65px;
	text-align: center;
	margin: 1% auto;
    line-height: 1.3em;
	font-weight: 600;
}

.st_wrap h4 {
	font-size: 22px;
	text-align: center;
	margin: 3% auto;
    line-height: 1.3em;
	font-weight: 700;
}

.st_wrap h5 {
	font-size: 18px;
	text-align: center;
	margin: 1% auto;
    line-height: 1.3em;
	font-weight: 700;
}

.st_wrap p {
    font-size: 12px;
	font-weight: 500;
    line-height: 1.5em;
    margin: 4% auto;
}


.st_wrap img {
	width: 100%;
	vertical-align: bottom;
}
.red {
	color: red;
    font-weight: bold;
    font-size: 110%;
}

.wrap_content {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 1% 0;
	position: relative;
}

.bk01 {
	background-color: hsla(240,55%,23%,0.20);
}

.bk02 {
	background-color: hsla(191,72%,24%,0.20);
}

.sp {
	display:none;
}

.Lead {
	font-weight: 400;
	text-align:center;
	font-size: 15px;
	margin: 5% auto;
	line-height:1.8em;
	color: #fff;
}

.brand_name {
	font-family: "joly-headline", sans-serif;
	font-weight: 600;
	font-size: 17px;
	margin: 4% auto 2%;
}

.Sml {
	font-size: 90%;
	text-align: center;
	line-height: 1.8em;
	margin: 1% auto;
	font-weight: normal;
}

.logo_footer {
	width: 40%;
	max-width: 300px;
	margin: -7% auto 4%;
	z-index: 5;
}

small {
	font-size: 80%;
}


.clear {
	clear:both;
}

#ターゲット要素 {
    padding-top: 110px;
    margin-top: -50px;
}


.flx {
	display: flex;
	align-items: center;
}

/* General button style (reset) */
.Btn {
	border: none;
	font-family: inherit;
	font-size: 1.2rem;
	color: inherit;
	background: none;
	cursor: pointer;
	padding: 3px;
	display: inline-block;
	margin: 3% auto;
    line-height: 1.2em;
	font-weight: 700;
	outline: none;
	position: relative;
	text-align: center;
	
}


/* Button 1 */
.Btn-1 {
	font-family: "ltc-nicholas-cochin-pro", sans-serif;
    display: block;
	font-size: 15px;
	font-weight: 400;
	width: 80%;
	margin: 2% auto 10%;
	background-color: #b29d59;
	line-height: 1.8em;
	border-radius: 30px;
	position: absolute;
	bottom: 0;
	left: 10%;
}


.Btn-2 {
    display: block;
	width: 50%;
	font-size: 15px;
	font-weight: 600;
	margin: 15% auto 10%;
	padding: 10px 0;
	background-color: #b29d59;
	line-height: 1.8em;
	border-radius: 30px;
}


a.Btn-1, a.Btn-2 {
	text-decoration: none;
	color: #fff;
}



.arrow_r {
  position: relative;
}

.arrow_r:after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
}

/* 星空の背景のスタイル */
.stars {
  position: relative;
  width: 100%; /* 星空の横幅 */
  height: auto; /* 星空の縦幅 */
  background-image: linear-gradient(0deg, #00dedc, #115d89, #080f1c); /* 星空の背景色 */
  overflow: hidden; /* 星が枠外にはみ出すのを防ぐ */
}

/* 星のスタイル */
.star {
  position: absolute;
  display: block;
  background-color: #b29d59; /* 星の色 */
  border-radius: 50%;
  box-shadow: 0 0 4px 2px rgba(#b29d59, 0.2); /* 星の影 */
  opacity: 0;
  animation: twinkle 5s infinite;
}

/* 星がキラキラ光るアニメーション */
@keyframes twinkle {
  0% {
    opacity: 0;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@media only screen and (max-width: 750px) {
	
	.pc {
		display:none;
	}
	.sp {
		display:block;
	}
	.st_wrap {
		width: 100%;
		margin: 0 auto 1%;
		overflow: hidden;
	}
	
	.st_wrap h1 {
		font-size: 18px;
		margin: 5% auto;
	}	
    
	.st_wrap h1 span {
    	padding: 5px 10px 5px 20px;
	}
	
	.st_wrap h2 {
		font-size: 18px;
		margin: 4% auto;
	}
	
	.st_wrap h3 {
		font-size: 30px;
		margin: 1% auto 2%;
	}	
	
	.st_wrap h4 {
		font-size: 17px;
	}

    .st_wrap p {
        font-size: 12px;
		margin: 3% auto;
    }
	
	
	.Lead {
		font-size: 13px;
		margin: 5% auto 7%;
	}

	.Sml {
		font-size: 11px;
		line-height: 1.8em;
		margin: 2% 0;
	}
	
	
	.Btn-1, .Btn-2 {
		font-size: 13px;
    	line-height: 1.4em;
    	padding: 2%;	
	}
	
	.Btn-2 {
		width: 70%;
		margin: 10% auto 15%;
	}
	
}

