@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%;
}
.sp {
	display: none;
}
#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: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}
#mainVisual .mainVisual_title .title_text {
	display: inline-block;
	padding: 5px 10px;
	background-color: #001C2E;
	font-size: 18px;
	color: #fff;
	text-align: center;
	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: #fff;
    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:#fff;
    /*丸の動き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:#fff;
}

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

#sec01 {
	background-color: #001C2E;
	text-align: center;
}
#sec01 .sec_head {
	font-size: 36px;
	font-weight: 600;
	line-height: 1.5;
	color: #fff;
	margin-bottom: 40px;
}
#sec01 .sec_head span {
	font-weight: 100;
}
#sec01 .sec_lead {
	color: #fff;
	margin-bottom: 80px;
}
#sec01 .sec_notes {
	padding: 20px 80px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 20px;
}
#sec01 .sec_notes .notes_head {
	font-size: 18px;
	font-weight: 600;
	color: #0a0a0a;
	margin-bottom: 10px;
}
#sec01 .sec_notes .notes_lead {
	font-size: 16px;
	color: #0a0a0a;
}

#sec02 {
	background-color: #fff;
	text-align: center;
}
#sec02 .sec_title {
	/*display: flex;
	justify-content: space-between;
	align-items: flex-start;*/
	margin-bottom: 40px;
}
#sec02 .sec_title .sec_head {
	font-size: 36px;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.5;
	color: #001C2E;
	margin-bottom: 40px;
	position: relative;
	display: inline-block;
	padding: 0 100px;
}
#sec02 .sec_title .sec_head:before,
#sec02 .sec_title .sec_head:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 80px;
	height: 1px;
	background-color: #001C2E;
}
#sec02 .sec_title .sec_head:before {
	left: 0;
}
#sec02 .sec_title .sec_head:after {
	right: 0;
}
#sec02 .sec_title .sec_icon {
	width: 640px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 20px;
}
#sec02 .sec_title .sec_icon .icon_item {
	width: 140px;
}
#sec02 .sec_text .sec_lead {
	color: #0a0a0a;
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 1px solid #001C2E;
}
#sec02 .sec_text .sec_initiative {
	padding: 0 20px;
	margin-bottom: 40px;
}
#sec02 .sec_text .sec_initiative .initiative_head {
	font-size: 18px;
	font-weight: 600;
	color: #0a0a0a;
	margin-bottom: 20px;
}
#sec02 .sec_text .sec_initiative .initiative_list {
	display: flex;
	justify-content: center;
	gap: 20px;
	color: #0a0a0a;
}
#sec02 .sec_text .sec_initiative .initiative_list .list_item {
	padding-left: 1em;
	text-indent: -1em;
}
#sec02 .sec_photo .photo_list {
	display: flex;
	justify-content: space-between;
}
#sec02 .sec_photo .photo_list .list_item {
	width: 49%;
}

#sec03 {
	background-color: #FDB6A8;
	text-align: center;
}
#sec03 .sec_title {
	/*display: flex;
	justify-content: space-between;
	align-items: flex-start;*/
	margin-bottom: 40px;
}
#sec03 .sec_title .sec_head {
	font-size: 36px;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.5;
	color: #001C2E;
	margin-bottom: 40px;
	position: relative;
	display: inline-block;
	padding: 0 100px;
}
#sec03 .sec_title .sec_head:before,
#sec03 .sec_title .sec_head:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 80px;
	height: 1px;
	background-color: #001C2E;
}
#sec03 .sec_title .sec_head:before {
	left: 0;
}
#sec03 .sec_title .sec_head:after {
	right: 0;
}
#sec03 .sec_title .sec_icon {
	width: 480px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 20px;
}
#sec03 .sec_title .sec_icon .icon_item {
	width: 140px;
}
#sec03 .sec_text .sec_lead {
	color: #0a0a0a;
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 1px solid #001C2E;
}
#sec03 .sec_text .sec_initiative {
	padding: 0 20px;
	margin-bottom: 40px;
}
#sec03 .sec_text .sec_initiative .initiative_head {
	font-size: 18px;
	font-weight: 600;
	color: #0a0a0a;
	margin-bottom: 20px;
}
#sec03 .sec_text .sec_initiative .initiative_list {
	display: flex;
	justify-content: center;
	gap: 20px;
	color: #0a0a0a;
}
#sec03 .sec_text .sec_initiative .initiative_list .list_item {
	padding-left: 1em;
	text-indent: -1em;
}
#sec03 .sec_photo .photo_list {
	display: flex;
	justify-content: space-between;
}
#sec03 .sec_photo .photo_list .list_item {
	width: 49%;
}

#sec04 {
	background-color: #fff;
	text-align: center;
}
#sec04 .sec_title {
	/*display: flex;
	justify-content: space-between;
	align-items: flex-start;*/
	margin-bottom: 40px;
}
#sec04 .sec_title .sec_head {
	font-size: 36px;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.5;
	color: #001C2E;
	margin-bottom: 40px;
	position: relative;
	display: inline-block;
	padding: 0 100px;
}
#sec04 .sec_title .sec_head:before,
#sec04 .sec_title .sec_head:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 80px;
	height: 1px;
	background-color: #001C2E;
}
#sec04 .sec_title .sec_head:before {
	left: 0;
}
#sec04 .sec_title .sec_head:after {
	right: 0;
}
#sec04 .sec_title .sec_icon {
	width: 640px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 20px;
}
#sec04 .sec_title .sec_icon .icon_item {
	width: 140px;
}
#sec04 .sec_text .sec_lead {
	color: #0a0a0a;
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 1px solid #001C2E;
}
#sec04 .sec_text .sec_initiative {
	padding: 0 20px;
	margin-bottom: 40px;
}
#sec04 .sec_text .sec_initiative .initiative_head {
	font-size: 18px;
	font-weight: 600;
	color: #0a0a0a;
	margin-bottom: 20px;
}
#sec04 .sec_text .sec_initiative .initiative_list {
	display: flex;
	justify-content: center;
	gap: 20px;
	color: #0a0a0a;
}
#sec04 .sec_text .sec_initiative .initiative_list .list_item {
	padding-left: 1em;
	text-indent: -1em;
}
#sec04 .sec_photo .photo_list {
	display: flex;
	justify-content: space-between;
}
#sec04 .sec_photo .photo_list .list_item {
	width: 49%;
}

#sec05 {
	background: url("../images/sec05_bg.jpg") center center / cover no-repeat;
}
#sec05 .container_bg{
	background-color: #fff;
	width: calc(100% - 5vw);
	box-shadow: 4px 4px 4px rgba(0,0,0,.25);
}
#sec05 .container {
	background-color: #fff;
	padding: 120px 0;
	text-align: center;
}
#sec05 .sec_title {
	margin-bottom: 40px;
}
#sec05 .sec_title .sec_head {
	font-size: 36px;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.5;
	color: #001C2E;
	margin-bottom: 40px;
	position: relative;
	display: inline-block;
	padding: 0 100px;
}
#sec05 .sec_title .sec_head:before,
#sec05 .sec_title .sec_head:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 80px;
	height: 1px;
	background-color: #001C2E;
}
#sec05 .sec_title .sec_head:before {
	left: 0;
}
#sec05 .sec_title .sec_head:after {
	right: 0;
}
#sec05 .sec_title .sec_icon {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
#sec05 .sec_title .sec_icon .icon_item {
	width: 140px;
}
#sec05 .sec_text .sec_lead {
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 1px solid #001C2E;
}
#sec05 .sec_text .sec_notes {
	margin-bottom: 40px;
}
#sec05 .sec_text .sec_notes .notes_head {
	font-size: 18px;
	font-weight: 600;
	color: #0e0e0e;
	margin-bottom: 10px;	
}
#sec05 .sec_text .sec_notes .notes_lead {
	font-size: 16px;
}
#sec05 .sec_text .sec_initiative {
	padding: 0 20px;
	margin-bottom: 40px;
}
#sec05 .sec_text .sec_initiative .initiative_head {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}
#sec05 .sec_text .sec_initiative .initiative_list {
	display: flex;
	justify-content: center;
	gap: 20px;
}
#sec05 .sec_text .sec_initiative .initiative_list .list_item {
	padding-left: 1em;
	text-indent: -1em;
}
#sec05 .sec_photo .photo_list {
	display: flex;
	justify-content: space-between;
}
#sec05 .sec_photo .photo_list .list_item {
	width: 49%;
}

#sec06 {
	background-color: #001C2E;
	padding-top: 120px;
}
#sec06 .sec_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;
	}
	.sp {
		display: block;
	}
	.container {
		width: 90%;
	}
	.scrolldown2 span{
		color: #001C2E;
	}
	/* 丸の描写 */
	.scrolldown2:before {
		background:#001C2E;
	}
	/* 線の描写 */
	.scrolldown2:after{
		background:#001C2E;
	}
	#mainVisual {
		background: url(../images/pc_mv.jpg) center right / cover no-repeat;
	}
	#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 {
		text-align: left;
	}
	#sec01 .sec_notes {
		padding: 20px 20px;
	}
	#sec02 {
		text-align: center;
	}
	#sec02 .sec_title .sec_head {
		padding: 0 40px;
	}
	#sec02 .sec_title .sec_head:before,
	#sec02 .sec_title .sec_head:after {
		width: 20px;
	}
	#sec02 .sec_title .sec_icon {
		justify-content: center;
		width: auto;
	}
	#sec02 .sec_title .sec_icon .icon_item{
		width: 32%;
	}
	#sec02 .sec_text .sec_lead {
		text-align: left;
	}
	#sec02 .sec_text .sec_initiative {
		padding: 0;
	}
	#sec02 .sec_text .sec_initiative .initiative_list {
		flex-wrap: wrap;
		gap: 20px;
	}
	#sec02 .sec_text .sec_initiative .initiative_list .list_item {
		width: 100%
	}
	#sec02 .sec_photo .photo_list {
		flex-wrap: wrap;
		gap: 20px;
	}
	#sec02 .sec_photo .photo_list .list_item {
		width: 100%;
	}
	#sec03 {
		text-align: center;
	}
	#sec03 .sec_title .sec_head {
		padding: 0 40px;
	}
	#sec03 .sec_title .sec_head:before,
	#sec03 .sec_title .sec_head:after {
		width: 20px;
	}
	#sec03 .sec_title .sec_icon {
		justify-content: center;
		width: auto;
	}
	#sec03 .sec_title .sec_icon .icon_item{
		width: 32%;
	}
	#sec03 .sec_text .sec_lead {
		text-align: left;
	}
	#sec03 .sec_text .sec_initiative {
		padding: 0;
	}
	#sec03 .sec_text .sec_initiative .initiative_list {
		flex-wrap: wrap;
		gap: 20px;
	}
	#sec03 .sec_text .sec_initiative .initiative_list .list_item {
		width: 100%
	}
	#sec03 .sec_photo .photo_list {
		flex-wrap: wrap;
		gap: 20px;
	}
	#sec03 .sec_photo .photo_list .list_item {
		width: 100%;
	}
	#sec04 {
		text-align: center;
	}
	#sec04 .sec_title .sec_head {
		padding: 0 40px;
	}
	#sec04 .sec_title .sec_head:before,
	#sec04 .sec_title .sec_head:after {
		width: 20px;
	}
	#sec04 .sec_title .sec_icon {
		justify-content: center;
		flex-wrap: wrap;
		width: auto;
	}
	#sec04 .sec_title .sec_icon .icon_item{
		width: 32%;
	}
	#sec04 .sec_text .sec_lead {
		text-align: left;
	}
	#sec04 .sec_text .sec_initiative {
		padding: 0;
	}
	#sec04 .sec_text .sec_initiative .initiative_list {
		flex-wrap: wrap;
		gap: 20px;
	}
	#sec04 .sec_text .sec_initiative .initiative_list .list_item {
		width: 100%
	}
	#sec04 .sec_photo .photo_list {
		flex-wrap: wrap;
		gap: 20px;
	}
	#sec04 .sec_photo .photo_list .list_item {
		width: 100%;
	}
	#sec05 {
		text-align: center;
	}
	#sec05 .sec_title .sec_head {
		padding: 0 40px;
	}
	#sec05 .sec_title .sec_head:before,
	#sec05 .sec_title .sec_head:after {
		width: 20px;
	}
	#sec05 .sec_title .sec_icon {
		justify-content: center;
		flex-wrap: wrap;
		width: auto;
	}
	#sec05 .sec_title .sec_icon .icon_item{
		width: 32%;
	}
	#sec05 .sec_text .sec_lead {
		text-align: left;
	}
	#sec05 .sec_text .sec_initiative {
		padding: 0;
	}
	#sec05 .sec_text .sec_initiative .initiative_list {
		flex-wrap: wrap;
		gap: 20px;
	}
	#sec05 .sec_text .sec_initiative .initiative_list .list_item {
		width: 100%
	}
	#sec05 .sec_photo .photo_list {
		flex-wrap: wrap;
		gap: 20px;
	}
	#sec05 .sec_photo .photo_list .list_item {
		width: 100%;
	}
	/*#sec05 .sec_title .sec_icon .icon_item{
		width: 32%;
		justify-content: flex-start;
	}
	#sec05 .sec_text .sec_initiative {
		padding: 0;
	}
	#sec05 .sec_text .sec_initiative .initiative_list .list_item {
		width: 100%
	}
	#sec05 .sec_photo .photo_list {
		flex-wrap: wrap;
		gap: 20px;
	}
	#sec05 .sec_photo .photo_list .list_item {
		width: 100%;
	}*/
	#sec06 .sec_text {
		text-align: left;
	}
	#footer {
		flex-wrap: wrap;
		gap: 40px;
	}
	#footer .sdgs_logo {
		margin: 0 auto;
	}
} 

		
