
@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

body#lp{
	font-family:'Noto Serif JP', sans-serif;
	line-height: 200%;
	letter-spacing: 0.1em;
	font-weight: 600;
	font-size: 100%;
}


@media screen and (max-width: 768px) {
	body#lp{
		font-family:'Noto Serif JP', sans-serif;
		font-size: 95%;
	}

}

@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}

a.over{
     opacity: 1;
      transition: opacity 0.3s ease; /* アニメーション設定 */
    }

    a.over:hover {
      opacity: 0.6; /* マウスオーバー時に半透明に */
    }

/******************************************************/
/* ローディング */
/******************************************************/

.loading {
  /*ローディング画面の縦横幅を画面いっぱいになるように指定*/
  width: 100vw;
  height: 100dvh;
  /*ローディング画面の表示位置を固定*/
  position: fixed;
  top: 0;
  left: 0;
  background: #f9f7f3;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /*ローディング画面を0.5秒かけて非表示にする*/
  transition: all 0.5s linear;
  z-index: 500;
}

/*ローディング画面を非表示にする*/
.loading.loaded {
  /*0.5秒かけてopacityを0にする*/
  opacity: 0;
  visibility: hidden;
}

.loading-text {
  color: #00603d;
  font-size: 70%;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  margin-top: 5px;
}

.spinner {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #b7d1c7;
  border-left-color: #00603d; 
  /* アニメーションを1秒かけて実行 */
  animation: spinner-rotation 1s linear infinite;
}

/* アニメーションの設定 */
@keyframes spinner-rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}


/******************************************************************
mv_area
******************************************************************/

.mv_area{
	width: 100%;
	position: relative;
}



.mv_area h1{
	position: absolute;
	z-index: 5;
	right: 70px;
	bottom: 110px;
	width: 30%;
}

.mv_area h1 img{
	width: 100%;
}



.wave_img{
	width: 100%;
	z-index: 10;
	position: absolute;
	left: 0;
	bottom:0;
}

.wave_img img{
	vertical-align: bottom;
}



/* swiper */
.swiper-slide img {
  height: auto;
  width: 100%;
}

.swiper-pagination{
	margin-bottom: 2vw;
}



@media screen and (max-width: 768px) {
	.mv_area h1{
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		width: 75%;
	}

	.swiper-slide img {
		height: 101.5vh;
		aspect-ratio: 5 / 3;
	}
	
	.wave_img img{
		width: 100%;
	}


}


/******************************************************************
read_area
******************************************************************/

.read_area{
	background:url("/img/read_bg.webp") left bottom no-repeat;
	background-size: 100%;
	width: 100%;
	line-height: 270%;
	font-weight: 600;
	font-size: 110%;
	padding: 0 0 120px 0;
}

.read_area .content{
	max-width:1100px;
	margin: auto;
	text-align: center;
}

.parts_line{
	text-align: center;
	padding: 40px 0 0 0;
}

.parts_line img{
	max-width: 220px;
}

.read{
	margin: 70px 0 70px 0;
}

.read_box{
	box-sizing: border-box;
	background-size: 100%;
	background:rgba(255,255,255,0.8);
	margin-bottom: 30px;
	box-shadow: 6px 6px 10px -3px rgba(17, 33, 43, 0.2);

}


.read_box .read_inner{
	background:url("/img/box_line_side.png") center top repeat-y;
	background-size: 100%;
}

.read_box .read_inner h2{
	font-size: 120%;
	margin:0 0 20px 0;
	line-height: 100%;
}

.read_box .read_inner h3{
	font-size: 120%;
	line-height: 150%;
}

.read_box .read_inner h2 img{
	max-width: 338px;
}

.read_box .read_inner img{
	max-width: 730px;
}

/*present_set*/

.present_set{
	font-size: 90%;
	line-height: 200%;
	text-align: left;
	max-width: 690px;
	margin: 20px auto 0 auto;
	display: flex;
	justify-content: space-between;
}

.present_set span{
	display: block;
	font-size: 80%;
}

.present_set img{
	width: 250px;
	margin-left: 40px;
}



@media screen and (max-width: 768px) {

	.read_area{
		width: 100%;
		line-height: 220%;
		font-weight: 600;
		font-size: 100%;
		padding: 0 20px 70px 20px;
		box-sizing: border-box;
	}

	.read_area .content{
		max-width:100%;
	}

	.parts_line{
		padding: 10px 0 25px 0;
	}

	.parts_line img{
		max-width: 150px;
	}

	.read{
		margin:0 0 20px 0;
	}

	.read_box{
		margin-bottom: 20px;
		box-shadow: 6px 6px 10px -3px rgba(17, 33, 43, 0.2);
	}

	.read_box .read_inner h2{
		font-size: 100%;
		margin:0 0 10px 0;
		line-height: 100%;
	}

	.read_box .read_inner img{
		max-width: 80%;
	}


	.present_set{
		line-height: 200%;
		max-width: 100%;
		margin: 0 auto 0 auto;
		display: block;
		padding: 15px 30px 0px 30px;
		justify-content: space-between;
	}

	.present_set span{
		display: block;
		font-size: 80%;
	}

	.present_set img{
		width: 200px;
		margin:0 auto;
	}

	.present_set{
		text-align: center!important;
	}


	.read_box .read_inner h3{
		font-size: 120%;
		padding: 0 30px 0 30px;
	}

	.read_box .read_inner h2 img{
		max-width: 250px;
		margin-top: 0;
	}

}



/******************************************************************
menu
******************************************************************/

.menu{
	background-image: url("/img/menu_bg_top.png"), url("/img/menu_bg_bottom.png");
	background-position: top center, bottom center;
	background-repeat: repeat-x;
	background-size: 35%;
	display: flex;
	justify-content: space-between;
	padding: 40px;
	box-sizing: border-box;
	gap: 0 30px;
}


.menu a{
	display: block;
	text-decoration: none;
	line-height: 150%;
	color: #003e05;
	width: 25%;
}

.menu a img{
	margin-bottom: 15px;
}

.menu a .icon01{
	background:url("/img/menu_icon01.png") right center no-repeat;
	padding-right: 50px;
	background-size: 28px;
	min-height: 40px;
}

.menu a .icon02{
	background:url("/img/menu_icon02.png") right center no-repeat;
	padding-right: 50px;
	background-size: 28px;
	min-height: 30px;
}


@media screen and (max-width: 768px) {

	.menu{
		display: block;
		padding: 30px 20px 5px 20px;
		background-size: 100%;
	}

	.menu a img{
		margin-bottom: 10px;
	}

	.menu a{
		margin-bottom: 20px;
		width: 100%;
	}

}




/******************************************************************
kiji_set
******************************************************************/
.kiji_set{
	padding: 0 0 0 0;
}


.kiji_main{
	padding: 100px 0 120px 0;
	box-sizing: border-box;
}


.kiji_main.kiji01{
	background:url("/img/kiji_main01.jpg") left bottom no-repeat;
	background-size: 90%;
	padding-bottom: 70px;
}


.kiji_main.kiji02{
	background:url("/img/kiji_main02.jpg") right bottom no-repeat;
	background-size: 90%;
}


.kazari_line{
	height: 10px;
	width: 100%;
	background: url("/img/menu_bg_top.png")top center repeat-x;
	background-size: 35%;
}



.kiji_set h2{
	text-align: center;
	font-size: 2.1vw;
	color: #003e05;
	line-height: 160%;
}

.main_txt{
	width: 50vw;
	margin-left: 35vw;
	line-height: 300%;
	margin-top: 100px;
}

.main_txt.t_left{
	margin-left: 10vw;
}

.main_txt.t_center{
	margin: 100px auto 60px auto;
	text-align: center;
	width: 70vw;
}

.map_btn{
	margin-top: 0;
}

.map_btn a img{
	max-width: 113px;
}

/* kiji_content */
.kiji_content{
	padding: 120px 0 0 0;
}

h3.kiji_title{
	text-align: center;
	font-size: 1.8vw;
	color: #345f1b;
	margin: 0 10vw 100px 10vw;
	line-height: 160%;
	display: flex;
	align-items: center; /* 垂直中心 */
}

.h3_sub{
	text-align: center;
	font-size: 100%;
	line-height: 180%;
	margin:-90px 0 120px 0;
}



h3.kiji_title::before,
h3.kiji_title::after {
  background-color: #345f1b; /* 横線の色 */
  border-radius: 5px; /* 横線の両端を丸く */
  content: "";
  flex-grow: 1; /* 横幅いっぱい */
  height: 1px; /* 横線の高さ */
}
h3.kiji_title::before {
  margin-right: 15px; /* 文字との余白 */
}
h3.kiji_title::after {
  margin-left: 15px; /* 文字との余白 */
}


.clm_set{
	display: flex;
	width: 100%;
	padding:0 0 0 10vw;
	box-sizing: border-box;
	margin-bottom: 120px;
}


.clm_set .clm_left{
	width: 1000px;
	margin-right: 50px;
}

.cap{
	display: block;
	font-size: 80%;
	padding-top: 5px;
	line-height: 150%;
}

h4.title_des{
	font-size: 130%;
	background:url("/img/title_line.png") center bottom no-repeat;
	background-size: 100%;
	padding:0 30px 30px 30px;
	color: #345f1b;
	line-height: 160%;
}


h4.title_des.full{
	background:url("/img/title_line_full.png") center bottom no-repeat;
	background-size: 100%;
}



h4.title_des span{
	display: block;
	font-size: 60%;
	margin-top: 5px;
	letter-spacing: 0;
	color: #000;
	line-height: 150%;
}

.clm_set .clm_left p{
	padding:10px 30px 0 30px;
	line-height: 280%;
}


.clm_set.o_rev{
	padding:0 10vw 0 0;
}


.clm_set.o_rev .cap{
	margin-left: 15px;
}



.clm_set.o_rev .clm_left{
	order: 2;
		margin:0 0 0 50px;

}

.clm_set.o_rev .clm_right{
	order: 1;
}


/* clm_set_sep */
.clm_set_sep{
	margin: 0 auto 100px auto;
	display: flex;
	justify-content: space-between;
	gap:100px;
	padding:0 10vw 0 10vw;
	max-width: 1400px;
	align-items: flex-start;
}



.clm_set_sep > div{
	width: 50%;
	display: flex;
	flex-wrap: wrap;
}

.sep_o1{order: 1;}
.sep_o2{order: 2;}



.clm_set_sep div p{
	padding:10px 30px 0 30px;
	line-height: 280%;
}

.clm_set_sep h4{
	margin-top: 30px;
}


/* clm_set_full */
.clm_set_full{
	margin: auto;
	padding:0 10vw 0 10vw;
	max-width: 1400px;
}


.clm_set_full > div{
	display: flex;
	flex-wrap: wrap;
}


.clm_set_full h4{
	margin-top: 30px;
}

.clm_set_full div p{
	padding:10px 30px 0 30px;
	line-height: 280%;
}

hr{
	width: 80%;
	background: #89a27b;
	height: 1px;
	margin: 100px auto 120px auto;
	border:none;
}

.btn_img{
	max-width: 800px;
	margin: 60px auto 0 auto; 
}

.mt100{
	margin-top: 100px;
}

@media screen and (max-width: 768px) {

	.kiji_set{
		padding: 0 0 0 0;
	}

	.kiji_main{
		padding: 30px 20px 0 20px;
		box-sizing: border-box;
	}

	.kiji_main.kiji02{
		margin-bottom: 0;
		padding-bottom: 120px;
	}


	.main_txt{
		width: 100%;
		margin-left: 0;
		font-size: 100%;
		line-height: 200%;
		margin-top: 0;
	}

.main_txt.t_center{
	margin: 0 auto 20px auto;
	width: 100%;
}

	
	.kiji_set h2{
		font-size: 140%;
	}


	.main_txt.t_left{
		margin-left: 0;
	}

	hr{
		width: 100%;
		margin: 30px auto 30px auto;
	}

	.h3_sub{
		font-size: 80%;
		margin:-10px 0 20px 0;
	}


	/* kiji_content */
	.kiji_content{
		padding: 30px 20px 15px 20px;
	}

	h3.kiji_title{
		font-size: 130%;
		margin: 0 0 25px 0;
	}


		h3.kiji_title::before {
		margin-right: 0;
		}
		h3.kiji_title::after {
		margin-left: 0;
		}



	.clm_set{
		display: block;
		padding:0 0 0 0;
		margin-bottom: 50px;
	}


	.clm_set .clm_left p{
		padding:10px 10px 15px 10px;
		line-height: 200%;
	}

	.map_btn{
		text-align: center;
		margin:-15px 0 15px 0!important;
	}

	.main_txt .map_btn{
		margin-top:20px!important;
	}


	.clm_set .clm_left{
		width: 100%;
		margin-right: 0;
	}


	h4.title_des{
		font-size: 110%;
		padding:0 10px 25px 10px;
		line-height: 150%;
	}

	h4.title_des span,
	.clm_set_sep h4 span{
		font-size: 70%;
		line-height: 150%;
	}
	

h4.title_des.full{
	background-size: 100%;
	padding-bottom: 15px;
}


	.clm_set.o_rev{
		padding:0 0 0 0;
	}

	.clm_set.o_rev .cap{
		margin-left: 0;
	}

	.clm_set.o_rev .clm_left{
		margin:0 0 0 0;
	}


	/* clm_set_sep */
	.clm_set_sep{
		display: block;
		gap:0;
		padding:0 0 0 0;
		max-width: 100%;
		margin-bottom: 0;
	}


	.clm_set_sep > div{
		width: 100%;
		display: block;
		margin-bottom: 50px;
	}

	.clm_set_full > div{
		display: block;
	}


	.clm_set_sep div p{
		padding:10px 0 0 0;
		line-height: 200%;
	}

	.clm_set_sep div p.sep_txt{
		padding:10px 10px 15px 10px;
	}



	/* clm_set_full */
	.clm_set_full{
		padding:0 0 0 0;
		max-width: 100%;
	}


	.clm_set_full div p{
		padding: 0 0 0 0;
		line-height: 200%;
	}


	.clm_set_full div p.sep_txt{
		padding: 10px 0 12px 10px;
		line-height: 200%;
	}


	hr{
		width: 100%;
		margin: 30px auto 40px auto;
	}

	.btn_img{
		max-width:100%;
		margin: 30px auto 0 auto; 
	}

	.mt100{
		margin-top: 20px;
	}


}



/******************************************************************
pagetop
******************************************************************/
#pagetop{
	width: 40px;
	position: fixed;
	bottom: 15px;
	right: 15px;
	z-index:5;
}


@media screen and (max-width: 768px) {
	#pagetop{
		bottom: 10px;
		right: 10px;
	}
}



/******************************************************************
footer
******************************************************************/
footer{
	font-size: 80%;
}

.ft_txt{
	font-size: 90%;
	margin: 10px 0 20px 0;
	line-height: 180%;
	width: 50%;
}

@media screen and (max-width: 768px) {
	.ft_txt{
		font-size: 70%;
		margin: 0 0 10px 0;
		line-height: 150%;
		width: 100%;
	}
}
