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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}
body {
	overscroll-behavior: auto;
	max-width: 100%;
	margin: 0 auto;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 400;
	text-rendering: optimizeLegibility;
}
p {
	color: #502828;
	font-size: clamp(16px, 1.736vw, 20px);
	line-height: 1.75;
}
img {
	width: 100%;
	height: auto;
}
.sp {
	display: none;
}

main {
	width: 100%;
}
#mainVisual {
	height: 100vh;
	background: url("../images/pc_mv.webp") center center / cover no-repeat;
	position: relative;
	padding: 0;
}
#mainVisual header {
	display: flex;
	justify-content: space-between;
}
#mainVisual header .header_logo {
	width: 320px;
	padding: 40px 0 0 40px;
}
#mainVisual header .header_logo:hover {
	opacity: 0.7;
	transition: 1s;
}
#mainVisual header .header_link {
	padding: 20px;
	background: #502828;
	height: 100%;
}
#mainVisual header .header_link a {
	color: #fff;
	font-size: 16px;
	padding-left: 30px;
	display: block;
	position: relative;
}
#mainVisual header .header_link a:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
	background-image: url("../images/link.svg");
}
#mainVisual header .header_link a:hover {
	opacity: 0.5;
	transition: 1s;
}
#mainVisual .mainVisual_title {
	position: absolute;
	top: 160px;
	left: 80px;
}
#mainVisual .mainVisual_title .title_logo {
	width: 400px;
}
#mainVisual .mainVisual_title .title_head {
	font-size: clamp(28px, 3.472vw, 36px);
	color: #502828;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.5;
	margin: 40px 0 0 40px;
}
#mainVisual .mainVisual_title .title_head .pink {
	color: #e96a7e;
}
#mainVisual .mainVisual_title .title_head b {
	font-size: clamp(44px, 4.861vw, 52px);
	color: #009439;
	font-weight: 500;
}
#mainVisual .mainVisual_title .title_head b span {
	font-weight: 100;
}

#mainVisual .scroll {
	width: 14px;
	position: absolute;
	top: 50%;
	right: 40px;
	transform: translateY(-50%);
}
/*=== 9-1-2 丸が動いてスクロールを促す ====*/

/*スクロールダウン全体の場所*/
.scrolldown2{
    /*描画位置※位置は適宜調整してください*/
	position: absolute;
	top: 50%;
	right: 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: 90%;
	max-width: 1152px;
	margin: 0 auto;
}

#sec01 {
	background: #f3f3f5;
}
#sec01 .sec_head {
	width: 31.25vw;
	margin: 0 auto 40px;
}
#sec01 .sec_text .sec_lead {
	color: #502828;
	text-align: center;
	margin-bottom: 40px;
}

#sec01 .sec_text .sec_notes {
	padding: 40px;
	border: 1px solid #502828;
	border-radius: 20px;
}
#sec01 .sec_text .sec_notes .notes_head {
	font-size: clamp(16px, 1.736vw, 20px);
	color: #502828;
	margin-bottom: 10px;
}
#sec01 .sec_text .sec_notes .notes_lead {
	font-size: clamp(14px, 1.5625vw, 18px);
	color: #502828;
}

#sec02,
#sec04 {
	background: #fffef7;
}

#sec03 {
	background: #f3f3f5;
}

#sec02 .container,
#sec03 .container,
#sec04 .container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 40px;
}
#sec02 .container .sec_title,
#sec03 .container .sec_title,
#sec04 .container .sec_title {
	width: 50vw;
}
#sec02 .container .sec_title .sec_head,
#sec03 .container .sec_title .sec_head,
#sec04 .container .sec_title .sec_head {
	font-size: clamp(32px, 3.472vw, 40px);
	color: #502828;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.5;
	margin-bottom: 40px;
}
#sec02 .container .sec_title .sec_icon,
#sec03 .container .sec_title .sec_icon,
#sec04 .container .sec_title .sec_icon {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 40px;
}
#sec02 .container .sec_title .sec_icon .icon_item,
#sec03 .container .sec_title .sec_icon .icon_item,
#sec04 .container .sec_title .sec_icon .icon_item {
	width: 25%;
	max-width: 120px;
}
#sec02 .container .sec_title .sec_lead,
#sec03 .container .sec_title .sec_lead,
#sec04 .container .sec_title .sec_lead {
	margin-bottom: 40px;
}
#sec02 .container .sec_title .sec_initiative .initiative_head,
#sec03 .container .sec_title .sec_initiative .initiative_head,
#sec04 .container .sec_title .sec_initiative .initiative_head {
	width: 100%;
	border: 1px solid #502828;
	text-align: center;
	padding: 20px 0;
	border-radius: 40px;
	font-size: clamp(16px, 1.736vw, 20px);
	font-weight: 500;
	color: #502828;
	margin-bottom: 20px;
}
#sec02 .container .sec_title .sec_initiative .initiative_list,
#sec03 .container .sec_title .sec_initiative .initiative_list,
#sec04 .container .sec_title .sec_initiative .initiative_list {
	font-size: clamp(14px, 1.5625vw, 18px);
	color: #502828;
	line-height: 1.75;
	padding-left: 1em;
	text-indent: -1em;
}
#sec02 .container .sec_image,
#sec04 .container .sec_image {
	width: 50vw;
	padding-left: 80px;
	margin-right: calc(50% - 50vw);
	position: relative;
}
#sec03 .container .sec_image {
	width: 50vw;
	padding-right: 80px;
	margin-left: calc(50% - 50vw);
	position: relative;
}
#sec02 .container .sec_image .image_num,
#sec04 .container .sec_image .image_num {
	position: absolute;
	width: 160px;
	top: -80px;
	right: 4.6875vw;
}
#sec03 .container .sec_image .image_num {
	position: absolute;
	width: 160px;
	top: -80px;
	left: 4.6875vw;
}
#sec02 .container .sec_image .image_pic img,
#sec04 .container .sec_image .image_pic img {
    border-radius: 80px 0 0 80px;
}
#sec03 .container .sec_image .image_pic img {
    border-radius: 0 80px 80px 0;;
}
#sec03 .container .sec_initiative .photo_list {
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#sec03 .container .sec_initiative .photo_list .photo_item {
	width: 47.5%;
}
#sec03 .container .sec_initiative .photo_list .photo_item img {
	border-radius: 20px;
}


#sec05 {
	background-color: #fff6fa;
	padding-top: 120px;
}
#sec05 .sec_text {
	text-align: center;
	color: #422410;
	padding: 40px 0;
	border-top: 1px solid #422410;
	border-bottom: 1px solid #422410;
}

#footer {
	background-color: #0e0e0e;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 40px;
}
#footer .corporate_items .corporate_logo {
	width: 280px;
	margin-bottom: 20px;
}
#footer .corporate_items .corporate_logo:hover {
	opacity: 0.7;
	transition: 1s;
}
#footer .corporate_items .corporate_address {
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
}
#footer .corporate_items .corporate_link {
	margin-bottom: 10px;
}
#footer .corporate_items .corporate_link a {
	font-size: 14px;
	line-height: 1.5;
	color: #fff;
	text-decoration: underline;
	margin-bottom: 10px;
	padding-left: 30px;
	display: block;
	position: relative;
}
#footer .corporate_items .corporate_link a:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
	background-image: url("../images/link.svg");
}
#footer .corporate_items .corporate_link a:hover {
	opacity: 0.5;
	transition: 1s;
}
#footer .sdgs_logo {
	width: 400px;
}

@media screen and (max-width: 1024px) {
	html {
		width: 100%;
		overflow-x: hidden;
	}
} 

@media (orientation: portrait){
	.container {
		width: 90%;
	}
	.pc {
		display: none;
	}
	.sp {
		display: none;
	}
	#mainVisual header .header_logo {
		padding: 40px 0 0 0;
		margin: 0 auto;
	}
	#mainVisual .mainVisual_title {
		position: initial;
		margin-top: 25%;
	}
	#mainVisual .mainVisual_title .title_logo {
		width: 75%;
		margin: 0 auto;
	}
	#mainVisual .mainVisual_title .title_head {
		font-size: 28px;
		text-align: center;
		margin: 40px 0 0 0;
	}
	#mainVisual .mainVisual_title .title_head b {
		font-size: 48px;
	}
	#sec01 .sec_head {
		width: 50%;
	}
	#sec01 .sec_text .sec_lead {
		text-align: left;
	}
	#sec01 .sec_text .sec_notes {
		padding: 20px;
	}
	#sec02 .container,
	#sec04 .container {
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}
	#sec03 .container {
		flex-wrap: wrap;
	}
	#sec02 .container .sec_title, #sec03 .container .sec_title, #sec04 .container .sec_title {
		width: 100%;
	}
	#sec02 .container .sec_image, #sec04 .container .sec_image {
		width: calc(100vw - 40px);
		padding-top: 40px;
		padding-left: 40px;
		margin-bottom: 40px;
	}
	#sec03 .container .sec_image {
		width: calc(100vw - 40px);
		padding-top: 40px;
		padding-right: 40px;
		margin-bottom: 40px;
	}
/*	#sec02 .container .sec_image .image_num, #sec04 .container .sec_image .image_num {
		width: 40px;
		top: -40px;
		right: 40px;
	}
	#sec03 .container .sec_image .image_num {
		width: 40px;
		top: -40px;
		left: 40px;
	}*/
	#sec02 .container .sec_title .sec_icon, #sec03 .container .sec_title .sec_icon, #sec04 .container .sec_title .sec_icon {
		justify-content: center;
		gap: 20px;
	}
	#sec02 .container .sec_title .sec_icon .icon_item, #sec03 .container .sec_title .sec_icon .icon_item, #sec04 .container .sec_title .sec_icon .icon_item {
		width: 30%;
	}
	#sec03 .container .photo_list {
		flex-wrap: wrap;
	}
	#sec03 .container .photo_list .photo_item {
		width: 100%;
		margin-bottom: 20px;
	}
	#sec05 .sec_text {
		text-align: left;
	}
	#footer {
		flex-wrap: wrap;
		gap: 40px;
		justify-content: center;
	}
}

@media screen and (max-width: 767px) {
	html {
		width: 100%;
		overflow-x: hidden;
	}
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.container {
		width: 90%;
	}
	#mainVisual header .header_logo {
		width: 240px;
	}
	#mainVisual .mainVisual_title .title_sub {
		font-size: 16px;
	}
	#mainVisual .mainVisual_title .title_head {
		font-size: 24px;
	}
	#mainVisual .mainVisual_title .title_head b {
		font-size: 40px;
	}
	#sec01 .sec_head {
		font-size: 32px;
		line-height: 1.618;
	}
	#sec02 .container .sec_image, #sec04 .container .sec_image {
		width: calc(100vw - 20px);
	}
	#sec02 .container .sec_image .image_pic img, #sec04 .container .sec_image .image_pic img {
		border-radius: 40px 0 0 40px;
	}
	#sec03 .container .sec_image {
		width: calc(100vw - 20px);
	}
	#sec03 .container .sec_image .image_pic img {
		border-radius: 0 40px 40px 0;
	}
	#sec02 .container .sec_image .image_num, #sec04 .container .sec_image .image_num {
		width: 120px;
		top: -60px;
	}
	#sec03 .container .sec_image .image_num {
		width: 120px;
		top: -60px;
	}
	#sec05 .sec_text {
		text-align: left;
	}
	#footer {
		flex-wrap: wrap;
		gap: 40px;
	}
	#footer .sdgs_logo {
		margin: 0 auto;
	}
} 

		
