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

@import url(httsp://fonts.googleapis.com/earlyaccess/notosansjp.css);

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}
body {
	overscroll-behavior: auto;
	max-width: 100%;
	margin: 0 auto;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	text-rendering: optimizeLegibility;
}
p {
	color: #0e0e0e;
	font-size: 18px;
	line-height: 2;
}
img {
	width: 100%;
	height: auto;
}
main {
	width: 100%;
}
#mainVisual {
	height: 100vh;
	background: url("../images/pc_mv.jpg") center center / cover no-repeat;
	position: relative;
}
#mainVisual .mainVisual_title {
	width: 34.3vw;
	max-width: 560px;
	padding: 40px 60px 50px 60px;
	background-color: #fff;
	box-shadow: 4px 4px 4px rgba(0,0,0,.25);
	position: absolute;
	top: 50%;
	left: 11.7vw;
	transform: translateY(-50%);
}
#mainVisual .mainVisual_title .title_lead {
	width: 100%;
	text-align: center;
	padding: 10px 0;
	background-color: #a57d46;
	color: #fff;
	font-size: 18px;
	border-radius: 28px;
	margin-bottom: 30px;
}
#mainVisual .scroll {
	width: 14px;
	position: absolute;
	top: 50%;
	left: 40px;
	transform: translateY(-50%);
}
/*=== 9-1-2 丸が動いてスクロールを促す ====*/

/*スクロールダウン全体の場所*/
.scrolldown2{
    /*描画位置※位置は適宜調整してください*/
	position: absolute;
	top: 50%;
	left: 40px;
	transform: translateY(-50%);
}

/*Scrollテキストの描写*/
.scrolldown2 span{
    /*描画位置*/
	position: absolute;
	left: -5px;
    top: -100px;
    color: #0e0e0e;
    font-size: 14px;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom:0;
    left:-4px;
    /*丸の形状*/
	width:10px;
	height:10px;
	border-radius: 50%;
	background:#0e0e0e;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:45px;}
     100%{bottom:-5px;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
	100%{opacity:0;}
 }

/* 線の描写 */
.scrolldown2:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	left:0;
    /*線の形状*/
	width:1px;
	height: 50px;
	background:#0e0e0e;
}

section {
	padding: 120px 0;
}
.container {
	width: 980px;
	margin: 0 auto;
}

#sec01 {
	background-color: #fffff4;
}
#sec01 .sec01_head {
	font-size: 36px;
	font-weight: 600;
	line-height: 1.5;
	color: #a57d46;
	margin-bottom: 40px;
}
#sec01 .sec01_head span {
	font-weight: 100;
}
#sec01 .sec01_lead {
	margin-bottom: 80px;
}
#sec01 .sec01_notes {
	padding: 20px 80px;
	background-color: #fff;
	border: 1px solid #a57d46;
	border-radius: 20px;
}
#sec01 .sec01_notes .notes_head {
	font-size: 18px;
	font-weight: 600;
	color: #a57d46;
	margin-bottom: 10px;
}
#sec01 .sec01_notes .notes_lead {
	font-size: 16px;
	color: #a57d46;
}

#sec02 {
	background-color: #a57d46;
}
#sec02 .sec02_title {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 40px;
}
#sec02 .sec02_title .sec02_head {
	font-size: 36px;
	font-weight: 600;
	line-height: 1.5;
	color: #fff;
	margin-bottom: 40px;
}
#sec02 .sec02_title .sec02_icon {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 20px;
}
#sec02 .sec02_title .sec02_icon .icon_item{
	width: 160px;
}
#sec02 .sec02_text .sec02_lead {
	color: #fff;
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 1px solid #fff;
}
#sec02 .sec02_text .sec02_initiative {
	padding: 0 20px;
	margin-bottom: 40px;
}
#sec02 .sec02_text .sec02_initiative .initiative_head {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 10px;
}
#sec02 .sec02_text .sec02_initiative .initiative_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px 0;
	color: #fff;
}
#sec02 .sec02_text .sec02_initiative .initiative_list .list_item {
	width: 50%
}
#sec02 .sec02_photo .photo_list {
	display: flex;
	justify-content: space-between;
}
#sec02 .sec02_photo .photo_list .list_item {
	width: 32%;
}

#sec03 {
	background-color: #fff;
}
#sec03 .sec03_title {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 40px;
}
#sec03 .sec03_title .sec03_head {
	font-size: 36px;
	font-weight: 600;
	line-height: 1.5;
	color: #a57d46;
	margin-bottom: 40px;
}
#sec03 .sec03_title .sec03_icon {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 20px;
}
#sec03 .sec03_title .sec03_icon .icon_item {
	width: 160px;
}
#sec03 .sec03_text .sec03_lead {
	color: #a57d46;
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 1px solid #a57d46;
}
#sec03 .sec03_text .sec03_initiative {
	padding: 0 20px;
	margin-bottom: 40px;
}
#sec03 .sec03_text .sec03_initiative .initiative_head {
	font-size: 18px;
	font-weight: 600;
	color: #a57d46;
	margin-bottom: 10px;
}
#sec03 .sec03_text .sec03_initiative .initiative_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px 0;
	color: #a57d46;
}
#sec03 .sec03_text .sec03_initiative .initiative_list .list_item {
	width: 50%
}
#sec03 .sec03_photo .photo_list {
	display: flex;
	justify-content: space-between;
}
#sec03 .sec03_photo .photo_list .list_item {
	width: 49%;
}

#sec04 {
	background: url("../images/sec04_bg.jpg") center center / cover no-repeat;
}
#sec04 .container_bg{
	background-color: #fff;
	width: calc(100% - 5vw);
	box-shadow: 4px 4px 4px rgba(0,0,0,.25);
}
#sec04 .container {
	background-color: #fff;
	padding: 120px 0;
}
#sec04 .sec04_title {
	margin-bottom: 40px;
}
#sec04 .sec04_title .sec04_head {
	font-size: 36px;
	font-weight: 600;
	line-height: 1.5;
	color: #a57d46;
	margin-bottom: 40px;
}
#sec04 .sec04_title .sec04_icon {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
}
#sec04 .sec04_title .sec04_icon .icon_item {
	width: 160px;
}
#sec04 .sec04_text .sec04_lead {
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 1px solid #a57d46;
}
#sec04 .sec04_text .sec04_notes {
	margin-bottom: 40px;
}
#sec04 .sec04_text .sec04_notes .notes_head {
	font-size: 18px;
	font-weight: 600;
	color: #0e0e0e;
	margin-bottom: 10px;	
}
#sec04 .sec04_text .sec04_notes .notes_lead {
	font-size: 16px;
}
#sec04 .sec04_text .sec04_initiative {
	padding: 0 20px;
	margin-bottom: 40px;
}
#sec04 .sec04_text .sec04_initiative .initiative_head {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}
#sec04 .sec04_text .sec04_initiative .initiative_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px 0;
}
#sec04 .sec04_text .sec04_initiative .initiative_list .list_item {
	width: 50%
}
#sec04 .sec04_photo .photo_list {
	display: flex;
	justify-content: space-between;
}
#sec04 .sec04_photo .photo_list .list_item {
	width: 32%;
}

#sec05 {
	background-color: #a57d46;
	padding-top: 0;
}
#sec05 .sec05_text {
	text-align: center;
	color: #fff;
	padding: 40px 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

#footer {
	background-color: #0e0e0e;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 40px;
}
#footer .corporate_items .corporate_name {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 10px;
}
#footer .corporate_items .corporate_address {
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
}
@media screen and (max-width: 767px) {
	html {
		width: 100%;
		overflow-x: hidden;
	}
	.pc {
		display: none;
	}
	.container {
		width: 90%;
	}
	#mainVisual .mainVisual_title {
		width: 90%;
		margin: 0 auto;
		left: 50%;
		transform: translate(-50%,-50%);
		padding: 40px 40px 50px 40px;
	}
	#mainVisual .scroll {
		bottom: 40px;
		top: auto;
		transform: none;
	}
	#sec01 .sec01_notes {
		padding: 20px 20px;
	}
	#sec02 .sec02_title {
		flex-wrap: wrap;
	}
	#sec02 .sec02_title .sec02_icon {
		justify-content: flex-start;
	}
	#sec02 .sec02_title .sec02_icon .icon_item{
		width: 32%;
	}
	#sec02 .sec02_text .sec02_initiative {
		padding: 0;
	}
	#sec02 .sec02_text .sec02_initiative .initiative_list .list_item {
		width: 100%
	}
	#sec02 .sec02_photo .photo_list {
		flex-wrap: wrap;
		gap: 20px;
	}
	#sec02 .sec02_photo .photo_list .list_item {
		width: 100%;
	}
	#sec03 .sec03_title {
		flex-wrap: wrap;
	}
	#sec03 .sec03_title .sec03_icon{
		justify-content: flex-start;
	}
	#sec03 .sec03_title .sec03_icon .icon_item{
		width: 32%;
	}
	#sec03 .sec03_text .sec03_initiative {
		padding: 0;
	}
	#sec03 .sec03_text .sec03_initiative .initiative_list .list_item {
		width: 100%
	}
	#sec03 .sec03_photo .photo_list {
		flex-wrap: wrap;
		gap: 20px;
	}
	#sec03 .sec03_photo .photo_list .list_item {
		width: 100%;
	}
	#sec04 .sec04_title .sec04_icon .icon_item{
		width: 32%;
		justify-content: flex-start;
	}
	#sec04 .sec04_text .sec04_initiative {
		padding: 0;
	}
	#sec04 .sec04_text .sec04_initiative .initiative_list .list_item {
		width: 100%
	}
	#sec04 .sec04_photo .photo_list {
		flex-wrap: wrap;
		gap: 20px;
	}
	#sec04 .sec04_photo .photo_list .list_item {
		width: 100%;
	}
	#sec05 .sec05_text {
		text-align: left;
	}
	#footer {
		flex-wrap: wrap;
		gap: 40px;
	}
	#footer .sdgs_logo {
		margin: 0 auto;
	}
} 

		
