  @charset "utf-8";

/* ======================================================
 * SDGs  style.css
====================================================== */

/* @group Web Font */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* @end */

/* @group CSS変数を定義 */

:root {
	--main: #289d99;
	--main-rgb: 40, 157, 153;
	--sub: #012312;
	--normal: #333;
	
	--gothic: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HiraKakuProN-W3", 'メイリオ','Meiryo', "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--en: 'Times New Roman', serif;
	--arial: Arial, sans-serif;
	
	--fw-normal: 400;
	--fw-mid: 500;
	--fw-bold: 700;
	--fz-normal: 16px;
}

/* @end */

/* @group 初期設定 */

html {
	overflow: auto;
	color: var(--normal);
}

body {
	color: var(--normal);
	width: 100%;
	height: 100%;
	-webkit-text-size-adjust: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

sup {
	vertical-align: top;
	font-size: 0.77em;
}

sub {
	vertical-align: baseline;
	font-size: 0.77em;
}

/* @end */

/* @group main-content */

#main-content {
	font-family: var(--gothic);
	font-size: var(--fz-normal);
	font-weight: var(--fw-normal);
	font-feature-settings: "palt";
	letter-spacing: .045em;
	line-height: 1;
}

/* @group main-visual */

#main-visual {
	height: calc(100vh - 79px);
	min-height: 844px;
	margin-bottom: 26px;
	position: relative;
}

.mv-slide {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.mv-slide div {
	height: 100%;
}

#main-visual .slick-slide {
	overflow: hidden;
}

#main-visual .slide01.add-animation {
	animation: zoomUp 10s linear 0s normal both;
}

@keyframes zoomUp {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.15);
	}
}

#main-visual .slide02.add-animation {
	animation: moveLeft 10s linear 0s normal both;
}

@keyframes moveLeft {
	0% {
		transform: translateX(0) scale(1.5);
	}
	100% {
		transform: translateX(-10%) scale(1.5);
	}
}

#main-visual .slide03.add-animation {
	animation: moveUp 10s linear 0s normal both;
}

@keyframes moveUp {
	0% {
		transform: translateY(0) scale(1.5);
	}
	100% {
		transform: translateY(-10%) scale(1.5);
	}
}

.mv-slide .slick-slide img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

#main-visual .h1-area {
	height: 100%;
	padding-top: 40px;
	position: relative;
}

#main-visual h1 {
	color: #FFF;
	font-size: clamp(34px, 2.66vw, 40px);
	font-weight: var(--fw-bold);
	font-feature-settings: "palt";
	letter-spacing: .1em;
	margin-bottom: 75px;
	text-shadow: rgba(0, 0, 0, 0.75) 3px 3px 1px;
	transform: translateX(-100px);
	opacity: 0;
	transition: 2s cubic-bezier(0.19, 1, 0.22, 1);
	transition-delay: .5s;
}

#main-visual .fadeIn h1 {
	transform: translateX(0);
	opacity: 1;
}

.mv-lead {
	color: #FFF;
	font-size: clamp(65px, 5.33vw, 77px);;
	font-weight: var(--fw-bold);
	letter-spacing: .08em;
	line-height: 1.68;
	text-shadow: rgba(0, 0, 0, 0.75) 5px 5px 0;
	transform: translateX(-100px);
	opacity: 0;
	transition: 2s cubic-bezier(0.19, 1, 0.22, 1);
	transition-delay: 1s;
}

.fadeIn .mv-lead {
	transform: translateX(0);
	opacity: 1;
}

.mv-txt {
	color: #FFF;
	font-size: clamp(20px, 1.53vw, 23px);
	font-weight: var(--fw-bold);
	letter-spacing: .09em;
	line-height: 2.6;
	text-shadow: rgba(0, 0, 0, 0.75) 3px 3px 1px;
	writing-mode: vertical-rl;
	text-orientation: upright;
	position: absolute;
	bottom: 120px;
	right: 60px;
	transform: translateX(100px);
	opacity: 0;
	transition: 2s cubic-bezier(0.19, 1, 0.22, 1);
	transition-delay: 2s;
}

.mv-txt span {
	text-combine-upright: all;
	line-height: 1;
	vertical-align: baseline;
}

.fadeIn .mv-txt {
	transform: translateX(0);
	opacity: 1;
}

/* @end */

#main-content section,
#main-content .section {
	position: relative;
}

#main-content .inner {
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
	max-width: calc(1200px + 40px);
}

/* @group heading */

#main-content h2 {
	font-size: 60px;
	font-weight: var(--fw-mid);
	letter-spacing: .09em;
	line-height: 1.5;
}

#main-content h3 {
	font-size: 40px;
	font-weight: var(--fw-mid);
	letter-spacing: .07em;
	line-height: 1.5;
}

/* @end */

/* @group list */

ul.list li {
	line-height: 1.5;
	padding-left: 12px;
	position: relative;
}

ul.list li::before {
	background-color: var(--main);
	border-radius: 5px;
	content: "";
	height: 9px;
	width: 9px;
	position: absolute;
	top: calc(((1.5em - 9px) / 2) + 2px);
	left: 0;
}

/* @end */

/* sec01 受け継がれるDNA */

#sdgs-sec01 {
	overflow-x: hidden;
}

.sec01-lead {
	color: var(--main);
	font-size: 50px;
	font-weight: var(--fw-mid);
	letter-spacing: .14em;
}

.sec01-lead .en {
	font-size: 160px;
	display: block;
	letter-spacing: .12em;
	margin-top: 22px;
}

#sdgs-sec01 .subsection01 {
	color: #FFF;
	padding: 20px 0 75px;
	position: relative;
}

#sdgs-sec01 .subsection01::before {
	background-color: var(--main);
	content: "";
	height: calc(100% + 32px);
	width: 100%;
	transform: skewX(10deg);
	transform-origin: right bottom;
	position: absolute;
	bottom: 0;
	right: calc(50% - 260px);
	z-index: -1;
}

.sec01-bg {
	position: absolute;
	bottom: 0;
	left: calc(50% + 2.6%);
	z-index: -2;
}

.sec01-bg img {
	max-width: inherit;
}

#sdgs-sec01 .subsection01 h2 {
	margin-bottom: 28px;
}

#sdgs-sec01 .subsection01 p {
	letter-spacing: .05em;
	line-height: 2.25;
}

#sdgs-sec01 .subsection01 h2 + p {
	width: 56%;
}

#sdgs-sec01 .subsection01 h3 {
	margin: 55px 0 30px;
	padding-top: 38px;
	position: relative;
}

#sdgs-sec01 .subsection01 h3::before {
	background-color: #FFF;
	content: "";
	height: 1px;
	width: 100px;
	position: absolute;
	top: 0;
	left: 0;
}

#sdgs-sec01 .subsection01 h3 + p {
	width: 61%;
}

/* sec02 未来社会を支える先端素材を提供 */

#sdgs-sec02 {
	background-color: rgba(var(--main-rgb), .1);
	overflow-x: hidden;
}

#sdgs-sec02 .sec02-pattern {
	display: flex;
	align-items: center;
	padding: 40px 0 60px;
}

#sdgs-sec02 .left-col {
	width: 47.5%;
	padding-top: 65px;
	padding-left: 1.5%;
}

#sdgs-sec02 .right-col {
	width: 52.5%;
}

#sdgs-sec02 .right-col figure {
	margin-right: -4.16%;
}

#sdgs-sec02 h2,
#sdgs-sec03 h2 {
	font-size: clamp(50px, 5vw, 60px);
}

#sdgs-sec02 h2 {
	margin-bottom: 1.2em;
	padding-right: 1%;
}

#sdgs-sec02 .left-col p {
	width: 75.4%;
}

#sdgs-sec02 .left-col h2 + p {
	line-height: 2;
	margin-bottom: 60px;
}

#sdgs-sec02 .link-btn {
	text-align: right;
	position: relative;
}

#sdgs-sec02 .link-btn::before {
	background-color: var(--main);
	content: "";
	height: 2px;
	width: 40px;
	position: absolute;
	top: 50%;
	right: -24px;
	transform: translateY(-50%);
}

#sdgs-sec02 .link-btn a {
	border: 1px solid var(--main);
	color: var(--main);
	font-size: 15px;
	letter-spacing: .04em;
	line-height: 1.4;
	display: inline-block;
	padding: .55em 1.6em;
	position: relative;
	text-align: center;
}

#sdgs-sec02 .link-btn a::before {
	background-color: var(--main);
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transform-origin: left;
	transform: scaleX(0);
	transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
	z-index: -1;
}

#sdgs-sec02 .link-btn a::after {
	background-color: #FFF;
	content: "";
	height: 2px;
	width: 16px;
	position: absolute;
	top: 50%;
	right: -1px;
	transform-origin: left;
	transform: translateY(-50%) scaleX(0);
	transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}

#sdgs-sec02 .link-btn a:hover {
	color: #FFF;
}

#sdgs-sec02 .link-btn a:hover::before {
	transform: scaleX(1);
}

#sdgs-sec02 .link-btn a:hover::after {
	transform: translateY(-50%) scaleX(1);
	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}

.change-img {
	opacity: 0;
	transform-origin: center;
	transform: rotate(45deg) scale(.5);
	transition: 1s;
	position: relative;
}

#sdgs-sec02 .change-img {
	transform: rotate(-45deg) scale(.5);
}

.change-img.fadeIn {
	opacity: 1;
	transform: rotate(0deg) scale(1) !important;
}

.change-img .hover-img {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: .5s;
}

.change-img:hover .hover-img {
	opacity: 1;
}

/* sec03 先端素材へのニーズは急速に拡大 */

#sdgs-sec03 {
	overflow-x: hidden;
}

#sdgs-sec03 .sec03-pattern {
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	padding: 40px 0 60px;
}

#sdgs-sec03 .right-col {
	padding: 0 0 20px 4%;
	width: 42.2%;
}

#sdgs-sec03 .left-col {
	width: 57.8%;
}

#sdgs-sec03 .left-col figure {
	margin-left: -4.16%;
	text-align: center;
}

#sdgs-sec03 h2 {
	margin-bottom: .5em;
}

#sdgs-sec03 p {
	line-height: 2;
	padding-right: 10%;
}

/* sec04 VISION */

#sdgs-sec04 {
	background-color: var(--main);
}

.sdgs-sec04-inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1340px;
}

#sdgs-sec04 .left-col {
	color: #FFF;
	/* margin-right: 60px; */
	width: calc(488px + 60px);
	padding: 235px 60px 100px 70px;
	min-width: 370px;
	position: sticky;
	top: 0;
}

#sdgs-sec04 .right-col {
	background-color: #FFF;
	border-radius: 20px 20px 0 0;
	margin-top: 230px;
	padding: 50px 27px 70px;
	text-align: center;
	width: calc(100% - (488px + 60px));
}

#sdgs-sec04 .sec04-head {
	background-color: var(--main);
	padding: 90px 0 60px;
	text-align: center;
	width: 100vw;
	max-width: 1340px;
	position: absolute;
	top: 0;
	left: 0;
}

#sdgs-sec04 .sec04-head::after {
	background-color: #FFF;
	border-radius: 20px 20px 0 0;
	content: "";
	height: 30px;
	width: calc(100% - (488px + 60px));
	position: absolute;
	top: 232px;
	right: 0;
}

#sdgs-sec04 h2 {
	font-size: clamp(50px, 5vw, 60px);
	margin-bottom: 40px;
	white-space: nowrap;
}

#sdgs-sec04 .left-col p {
	line-height: 2.12;
}

@media screen and (max-width: 1100px) {
	
	#sdgs-sec04 .left-col {
		padding-left: 50px;
		padding-right: 50px;
		width: 50%;
	}

	#sdgs-sec04 .right-col {
		width: 50%;
	}

	#sdgs-sec04 .sec04-head::after {
		width: 50%;
	}

}

/* sec05 リチウムイオン電池（LiB）をリサイクル */

#sdgs-sec05 {
	text-align: center;
}

.sec05-bg {
	background-image: url("/sdgs/images/sec05_bg01.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 100vh;
	width: 100%;
	position: sticky;
	top: 0;
	z-index: -1;
}
	
#sdgs-sec05 .inner {
	padding-top: 72px;
	margin-top: -100vh;
}

#sdgs-sec05 h2 {
	margin-bottom: 40px;
}

#sdgs-sec05 h3 {
	margin-bottom: 43px;
}

@media screen and (max-width: 860px) and (min-width: 801px) {
	
	#sdgs-sec05 .right-col h3 .inline-block {
		display: inline;
	}
	
}

#sdgs-sec05 .box01 {
	background-color: rgba(255, 255 ,255, .8);
	margin: 0 auto 38px;
	width: 80.7%;
	padding: 55px 6.18% 70px;
}

@media screen and (min-width: 801px) {

	#sdgs-sec05 .box01 h3 .inline-block {
		display: inline;
	}
	
}

#sdgs-sec05 .box02 {
	background-color: rgba(255, 255 ,255, .55);
	margin: 0 auto 45px;
	padding: 44px 5.45% 50px;
	width: 91.6%;
}

#sdgs-sec05 p {
	line-height: 2;
	text-align: left;
}

.sec05-pattern {
	display: flex;
	align-items: center;
	padding-bottom: 40px;
}

.sec05-pattern .left-col {
	width: 54.83%;
	margin-right: 5%;
}

.sec05-pattern .right-col {
	width: calc(100% - 54.83% - 5%);
}

.sec05-pattern .left-col figure {
	display: flex;
	justify-content: flex-end;
}

@media screen and (min-width: 801px) {

	.sec05-pattern .left-col img {
		max-width: inherit;
	}

}

/* sec06 サステナブルな銅の未来像を描く */

#sdgs-sec06 {
	background-image: url("/sdgs/images/sec06_bg01_pc.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	color: #FFF;
	margin-bottom: 70px;
	padding: 20px 0 77px;
	text-align: center;
}

#sdgs-sec06 h2 {
	margin-bottom: 15px;
}

.sec06-lead {
	font-size: 40px;
	letter-spacing: .14em;
	line-height: 1.75;
	margin-bottom: 50px;
}

#sdgs-sec06 p:not(.sec06-lead) {
	font-size: 20px;
	letter-spacing: .06em;
	line-height: 1.8;
	margin: 0 auto;
	max-width: 1090px;
	padding: 0 5%;
}

/* sec07 電気を作る時, sec08 電気を送る時, sec09 電気を使う時 */

.energy-pattern {
	display: flex;
	align-items: flex-start;
}

.energy-pattern.reverse {
	flex-direction: row-reverse;
}

.energy-pattern .col {
	padding-top: 60px;
}

.energy-pattern .h2-area {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 32px;
	padding: 57px 0 37px;
	position: relative;
	z-index: 0;
}

.energy-pattern .h2-area::before {
	background-color: #bee2e0;
	content: "";
	height: 100%;
	width: 100vw;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0;
	transform: translateX(50%);
	transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1);
	transition-delay: 1s;
}

.energy-pattern.reverse .h2-area::before {
	right: 0;
	left: auto;
	transform: translateX(-50%);
}

.energy-pattern.fadeIn .h2-area::before {
	transform: translateX(0);
	opacity: .5;
}

#main-content .energy-pattern h2 {
	font-size: 70px;
	line-height: 1.28;
	margin-bottom: 41px;
}

.energy-pattern [class*="icon-x"] {
	margin: 14px 0 0 40px;
}

.energy-pattern .lead {
	font-size: 34px;
	font-weight: var(--fw-mid);
	letter-spacing: .07em;
	line-height: 1.64;
}

.energy-pattern .col > p {
	letter-spacing: .06em;
	line-height: 1.85;
	margin-bottom: 30px;
}

.energy-pattern .list-wrap {
	background-color: #cacaca;
	display: inline-block;
	padding: 4px 20px 6px 15px;
}

.energy-pattern ul.list li span {
	margin: 0 2px;
}

.energy-pattern:not(.reverse) .img-col {
	display: flex;
	justify-content: flex-end;
}

#sdgs-sec07 {
	overflow-x: hidden;
	margin-bottom: 60px;
}

#sdgs-sec07 .energy-pattern .col {
	padding-top: 50px;
	width: 550px;
}

#sdgs-sec07 .energy-pattern .img-col {
	width: calc(100% - 550px);
}

@media screen and (min-width: 801px) {

	.energy-pattern .img-col img {
		max-width: inherit;
	}

	#sdgs-sec07 .energy-pattern .img-col figure {
		margin-left: -100px;
	}

}

#sdgs-sec08 {
	overflow-x: hidden;
	margin-bottom: 76px;
}

#sdgs-sec08 .energy-pattern .col {
	width: 480px;
	padding-left: 90px;
}

#sdgs-sec08 .energy-pattern .h2-area {
	margin-left: -90px;
	padding-left: 30px;
}

#sdgs-sec08 .energy-pattern .img-col {
	width: calc(100% - 480px);
}

#sdgs-sec08 .energy-pattern .img-col img {
	margin-right: -50px;
}

#sdgs-sec09 {
	overflow-x: hidden;
	margin-bottom: 115px;
}

#sdgs-sec09 .energy-pattern .col {
	width: 740px;
}

#sdgs-sec09 .energy-pattern .img-col {
	width: calc(100% - 740px);
}

@media screen and (min-width: 801px) {

	#sdgs-sec09 .energy-pattern .img-col img {
		margin-left: -290px;
	}

}

/* sec10 地球規模の脱炭素化で?まる銅と?鉄?属の希少性 */

.sec10-bg {
	background-image: url("/sdgs/images/sec10_bg01_pc.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 100vh;
	width: 100%;
	position: sticky;
	top: 0;
	z-index: -1;
}

#sdgs-sec10 .inner {
	margin-top: -100vh;
	padding-top: 84px;
	padding-bottom: 70px;
}

#sdgs-sec10 h2 {
	padding-left: 12px;
}

#sdgs-sec10 .h3-area {
	width: 510px;
	margin: 0 0 77px auto;
}

#sdgs-sec10 h3 {
	font-size: 35px;
	margin-bottom: 9px;
	white-space: nowrap;
}

#sdgs-sec10 .h3-area p {
	line-height: 2.125;
}

#sdgs-sec10 .graph-box {
	background-color: rgba(255, 255, 255, .8);
	padding: 33px 5.83% 35px;
}

#sdgs-sec10 h4 {
	font-size: 24px;
	font-weight: var(--fw-mid);
	letter-spacing: .09em;
	margin-bottom: 50px;
	text-align: center;
}

#sdgs-sec10 .graph-caption {
	font-size: 14px;
	text-align: right;
	letter-spacing: .093em;
	margin: 40px 0 0;
}

/* sec11 未来社会を支えるグリーンハイブリッド製錬 */

#sdgs-sec11 {
	background-color: rgba(var(--main-rgb), .3);
	margin-bottom: 80px;
	padding: 0 0 165px;
	overflow-x: hidden;
}

.sec11-inner {
	margin: 0 auto;
	max-width: calc(1210px + 40px);
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}

#sdgs-sec11 .h2-area {
	background-color: var(--main);
	color: #FFF;
	margin-bottom: 30px;
	padding: 82px 0 28px 0;
	position: relative;
}

#sdgs-sec11 .h2-area::before {
	background-color: var(--main);
	border-radius: 100%;
	content: "";
	height: 190px;
	width: 100%;
	position: absolute;
	bottom: calc(190px / -2);
	left: 0;
	z-index: -1;
}

#sdgs-sec11 .h2-area .sec11-inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

@media screen and (max-width: 1065px) {
	#sdgs-sec11 .h2-area .sec11-inner {
		align-items: flex-start;
	}
}

#sdgs-sec11 h2 {
	display: inline-block;
	font-size: clamp(50px, 4vw, 60px);
	padding-left: 16px;
	white-space: nowrap;
}

#sdgs-sec11 .h2-area p {
	line-height: 2.25;
	margin: 0 5px 0 4.9%;
	padding: 0 0 3px 0;
	width: 48.76%;
}

.sec11-img-wrap {
	margin-bottom: 75px;
	position: relative;
}

.sec11-img-wrap figure {
	box-shadow: 5px 5px 0 #000;
	max-width: 33%;
	transform: translateY(50px);
	opacity: 0;
	transition: 1.5s cubic-bezier(0.19, 1, 0.22, 1);
	transition-delay: .5s;
}

.sec11-img-wrap figure.fadeIn {
	opacity: 1;
	transform: translateY(0);
}

.sec11-img-wrap .img-left {
	position: absolute;
	top: 0;
	left: 15px;
}

.sec11-img-wrap .img-right {
	position: absolute;
	top: 0;
	right: 5px;
}

.sec11-pattern ul {
	display: flex;
	align-items: stretch;
}

.sec11-pattern ul li {
	background-color: #FFF;
	margin-right: 2.89%;
	width: calc((100% - (2.89% * 2)) / 3);
	text-align: center;
}

.sec11-pattern ul li:nth-of-type(3n) {
	margin-right: 0;
}

#sdgs-sec11 h3 {
	background-color: var(--main);
	color: #FFF;
	font-size: clamp(30px, 3.3vw, 40px);
	line-height: 1.375;
	display: flex;
	justify-content: center;
	align-items: center;
	max-height: 250px;
	height: 25vw;
}

.sec11-pattern ul li p {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-weight: var(--fw-mid);
	line-height: 2;
	min-height: 130px;
	padding: 1.5em 6.4%;
}

@media screen and (max-width: 920px) {
	.sec11-pattern ul li p {
		text-align: left;
	}
	.sec11-pattern ul li p br {
		display: none;
	}
}

/* sec12 サステナブルカッパーの進化と普及に向けた4つの取り組み */

#sdgs-sec12 {
	padding-bottom: 135px;
}

#sdgs-sec12::before {
	background-color: rgba(var(--main-rgb), .2);
	content: "";
	height: calc(100% - 130px);
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}

.sec12-pattern {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 110px;
}

#sdgs-sec12 h2 {
	font-size: clamp(50px, 4vw, 60px);
	white-space: nowrap;
}

#sdgs-sec12 h2 + p {
	line-height: 2.25;
	max-width: 440px;
	padding-bottom: 2px;
}

.sec12-pattern2 {
	display: flex;
	flex-wrap: wrap;
}

.sec12-pattern2 .col {
	background-color: #FFF;
	display: flex;
	flex-direction: column;
	min-height: 585px;
	margin-right: 30px;
	padding-bottom: 40px;
	width: calc((100% - 30px) / 2);
	position: relative;
	opacity: 0;
	transition: 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.sec12-pattern2 .col:nth-of-type(2n) {
	margin-right: 0;
}

.sec12-pattern2 .col:nth-of-type(n+3) {
	margin-top: 25px;
}

@media screen and (min-width: 801px) {

	.sec12-pattern2 .col {
		transform: translateX(-200px);
		transition-delay: .2s;
	}

	.sec12-pattern2 .col:nth-of-type(2) {
		transition-delay: .5s;
	}

	.sec12-pattern2 .col:nth-of-type(3) {
		transition-delay: .8s;
	}

	.sec12-pattern2 .col:nth-of-type(4) {
		transition-delay: 1.1s;
	}

	.sec12-pattern2 .col.fadeIn {
		opacity: 1;
		transform: translateX(0);
	}

}

.sec12-pattern2 .col .num {
	background-color: #298180;
	color: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--arial);
	font-weight: var(--fw-bold);
	font-size: clamp(35px, 3.3vw, 50px);
	max-height: 80px;
	max-width: 80px;
	height: 6.5vw;
	width: 6.5vw;
	position: absolute;
	top: 0;
	left: 0;
}

#sdgs-sec12 h3 {
	color: var(--main);
	font-size: 30px;
	line-height: 1.42;
	min-height: 126px;
	padding: 5% 20px 5% 24%;
}

#sdgs-sec12 .sec12-pattern2 .col:nth-of-type(3) h3,
#sdgs-sec12 .sec12-pattern2 .col:nth-of-type(4) h3 {
	font-size: 28px;
	padding: 5% 6.8% 5% 60px;
	text-align: center;
}

@media screen and (max-width: 1060px) {
	
	#sdgs-sec12 .sec12-pattern2 .col:nth-of-type(3) h3,
	#sdgs-sec12 .sec12-pattern2 .col:nth-of-type(4) h3 {
		padding-left: 20%;
	}

	#sdgs-sec12 .sec12-pattern2 .col:nth-of-type(3) h3 br,
	#sdgs-sec12 .sec12-pattern2 .col:nth-of-type(4) h3 br {
		display: none;
	}

}

.sec12-pattern2 figure {
	margin: 0 auto 42px;
	text-align: center;
	width: 60%;
	max-width: 238px;
}

.sec12-pattern2 .col > p {
	font-size: 20px;
	letter-spacing: .02em;
	line-height: 1.5;
	margin: 0 auto 22px;
	text-align: center;
	max-width: 430px;
	padding: 0 30px;
}

.sec12-pattern2 ul.list {
	margin: 0 auto;
	max-width: 70%;
}

/* sec13 Sustainability */

#sdgs-sec13 {
	background-image: url("/sdgs/images/sec13_bg01.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding-bottom: 106px;
	color: var(--sub);
}

#sdgs-sec13 .h2-area {
	background-color: rgba(255, 255, 255, .6);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 270px;
}

#sdgs-sec13 .h2-area {
	background-color: rgba(255, 255, 255, .6);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 270px;
	margin-bottom: 90px;
	padding: 0 30px 5px;
}

#sdgs-sec13 h2 {
	font-size: 70px;
	margin-bottom: 14px;
}

#sdgs-sec13 .h2-area p {
	font-size: 20px;
}

#sdgs-sec13 ul {
	display: flex;
	align-items: stretch;
}

#sdgs-sec13 ul li {
	margin-right: 2%;
	width: calc((100% - (2% * 3)) / 4);
}

#sdgs-sec13 ul li:nth-of-type(4n) {
	margin-right: 0;
}

#sdgs-sec13 ul li a {
	color: var(--sub);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: clamp(16px, 1.6vw, 24px);
	font-weight: var(--fw-mid);
	letter-spacing: .09em;
	line-height: 1.29;
	height: 12vw;
	min-height: 120px;
	max-height: 180px;
	text-align: center;
	position: relative;
	z-index: 0;
}

#sdgs-sec13 ul li a::before {
	border-color: #FFF;
	border-style: solid;
	border-width: 10px;
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: .8;
	transition: .5s;
}

#sdgs-sec13 ul li a::after {
	background-color: #FFF;
	content: "";
	height: calc(100% - 24px);
	width: calc(100% - 24px);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	opacity: .8;
	transition: .5s;
}

#sdgs-sec13 ul li a:hover::before,
#sdgs-sec13 ul li a:hover::after {
	opacity: 1;
}

/* @end of main-content */


/* @group common */

.pc-none {
	display: none;
}

.inline-block {
	display: inline-block;
}

/* font color */
.fc-main { color: #289d99; }
.fc-normal { color: #000; }
.fc-white { color: #FFF; }

/* font-family */
.ff-normal {
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HiraKakuProN-W3", 'メイリオ','Meiryo', "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; }

.en {
	font-family: 'Times New Roman', serif;
}

.ff-arial { font-family: Arial, sans-serif; }

/* font-weight */
.fw-normal { font-weight: 400 !important; }
.fw-mid { font-weight: 500 !important; }
.fw-bold { font-weight: 700 !important; }

/* font size */
.fz-normal { font-size: 16px; }

/* position */
.left-position,
tr.left-position th,
tr.left-position td,
table.left-position th,
table.left-position td {
	text-align: left !important;
}

.right-position,
tr.right-position th,
tr.right-position td,
table.right-position th,
table.right-position td {
	text-align: right !important;
}

.center-position,
tr.center-position th,
tr.center-position td,
table.center-position th,
table.center-position td,
table.center-position-th th {
	text-align: center !important;
}

.middle-position,
tr.middle-position th,
tr.middle-position td,
table.middle-position th,
table.middle-position td {
	vertical-align: middle !important;
}

.nowrap,
.nowrap-th th {
	white-space: nowrap;
}

/* margin */
.m-auto { margin: 0 auto !important;}

.mb-0 { margin-bottom: 0px !important; }
.mb-5 { margin-bottom: 5px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-15 { margin-bottom: 15px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-25 { margin-bottom: 25px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-35 { margin-bottom: 35px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-45 { margin-bottom: 45px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mb-55 { margin-bottom: 55px !important; }
.mb-60 { margin-bottom: 60px !important; }
.mb-65 { margin-bottom: 65px !important; }
.mb-70 { margin-bottom: 70px !important; }
.mb-75 { margin-bottom: 75px !important; }
.mb-80 { margin-bottom: 80px !important; }
.mb-85 { margin-bottom: 85px !important; }
.mb-90 { margin-bottom: 90px !important; }
.mb-95 { margin-bottom: 95px !important; }
.mb-100 { margin-bottom: 100px !important; }

.mb05em { margin-bottom: 0.5em !important; }
.mb1em { margin-bottom: 1em !important; }
.mb1hem { margin-bottom: 1.5em !important; }
.mb2em { margin-bottom: 2em !important; }
.mb2hem { margin-bottom: 2.5em !important; }
.mb3em { margin-bottom: 3em !important; }

.ml-auto { margin-left: auto !important; }
.ml-0 { margin-left: 0px !important; }
.ml-5 { margin-left: 5px !important; }
.ml-10 { margin-left: 10px !important; }
.ml-15 { margin-left: 15px !important; }
.ml-20 { margin-left: 20px !important; }
.ml-25 { margin-left: 25px !important; }
.ml-30 { margin-left: 30px !important; }
.ml-35 { margin-left: 35px !important; }
.ml-40 { margin-left: 40px !important; }
.ml-45 { margin-left: 45px !important; }
.ml-50 { margin-left: 50px !important; }
.ml-55 { margin-left: 55px !important; }
.ml-60 { margin-left: 60px !important; }
.ml-65 { margin-left: 65px !important; }
.ml-70 { margin-left: 70px !important; }
.ml-75 { margin-left: 75px !important; }
.ml-80 { margin-left: 80px !important; }
.ml-85 { margin-left: 85px !important; }
.ml-90 { margin-left: 90px !important; }
.ml-95 { margin-left: 95px !important; }
.ml-100 { margin-left: 100px !important; }

.mr-auto { margin-right: auto !important; }
.mr-0 { margin-right: 0px !important; }
.mr-5 { margin-right: 5px !important; }
.mr-10 { margin-right: 10px !important; }
.mr-15 { margin-right: 15px !important; }
.mr-20 { margin-right: 20px !important; }
.mr-25 { margin-right: 25px !important; }
.mr-30 { margin-right: 30px !important; }
.mr-35 { margin-right: 35px !important; }
.mr-40 { margin-right: 40px !important; }
.mr-45 { margin-right: 45px !important; }
.mr-50 { margin-right: 50px !important; }
.mr-55 { margin-right: 55px !important; }
.mr-60 { margin-right: 60px !important; }
.mr-65 { margin-right: 65px !important; }
.mr-70 { margin-right: 70px !important; }
.mr-75 { margin-right: 75px !important; }
.mr-80 { margin-right: 80px !important; }
.mr-85 { margin-right: 85px !important; }
.mr-90 { margin-right: 90px !important; }
.mr-95 { margin-right: 95px !important; }
.mr-100 { margin-right: 100px !important; }

.mt-0 { margin-top: 0 !important; }
.mt-5 { margin-top: 5px !important;}
.mt-10 { margin-top: 10px !important; }
.mt-15 { margin-top: 15px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-25 { margin-top: 25px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-35 { margin-top: 35px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-45 { margin-top: 45px !important; }
.mt-50 { margin-top: 50px !important; }
.mt-55 { margin-top: 55px !important; }
.mt-60 { margin-top: 60px !important; }
.mt-65 { margin-top: 65px !important; }
.mt-70 { margin-top: 70px !important; }
.mt-75 { margin-top: 75px !important; }
.mt-80 { margin-top: 80px !important; }
.mt-85 { margin-top: 85px !important; }
.mt-90 { margin-top: 90px !important; }
.mt-95 { margin-top: 95px !important; }
.mt-100 { margin-top: 100px !important; }

/* padding */
.pb-0 { padding-bottom: 0px !important; }
.pb-5 { padding-bottom: 5px !important; }
.pb-10 { padding-bottom: 10px !important; }
.pb-15 { padding-bottom: 15px !important; }
.pb-20 { padding-bottom: 20px !important; }
.pb-25 { padding-bottom: 25px !important; }
.pb-30 { padding-bottom: 30px !important; }
.pb-35 { padding-bottom: 35px !important; }
.pb-40 { padding-bottom: 40px !important; }
.pb-45 { padding-bottom: 45px !important; }
.pb-50 { padding-bottom: 50px !important; }
.pb-55 { padding-bottom: 55px !important; }
.pb-60 { padding-bottom: 60px !important; }
.pb-65 { padding-bottom: 65px !important; }
.pb-70 { padding-bottom: 70px !important; }
.pb-75 { padding-bottom: 75px !important; }
.pb-80 { padding-bottom: 80px !important; }
.pb-85 { padding-bottom: 85px !important; }
.pb-90 { padding-bottom: 90px !important; }
.pb-95 { padding-bottom: 95px !important; }
.pb-100 { padding-bottom: 100px !important; }

.pl-0 { padding-left: 0px !important; }
.pl-5 { padding-left: 5px !important; }
.pl-10 { padding-left: 10px !important; }
.pl-15 { padding-left: 15px !important; }
.pl-20 { padding-left: 20px !important; }
.pl-25 { padding-left: 25px !important; }
.pl-30 { padding-left: 30px !important; }
.pl-35 { padding-left: 35px !important; }
.pl-40 { padding-left: 40px !important; }
.pl-45 { padding-left: 45px !important; }
.pl-50 { padding-left: 50px !important; }
.pl-55 { padding-left: 55px !important; }
.pl-60 { padding-left: 60px !important; }
.pl-65 { padding-left: 65px !important; }
.pl-70 { padding-left: 70px !important; }
.pl-75 { padding-left: 75px !important; }
.pl-80 { padding-left: 80px !important; }
.pl-85 { padding-left: 85px !important; }
.pl-90 { padding-left: 90px !important; }
.pl-95 { padding-left: 95px !important; }
.pl-100 { padding-left: 100px !important; }

.pr-0 { padding-left: 0px !important; }
.pr-5 { padding-left: 5px !important; }
.pr-10 { padding-left: 10px !important; }
.pr-15 { padding-left: 15px !important; }
.pr-20 { padding-left: 20px !important; }
.pr-25 { padding-left: 25px !important; }
.pr-30 { padding-left: 30px !important; }
.pr-35 { padding-left: 35px !important; }
.pr-40 { padding-left: 40px !important; }
.pr-45 { padding-left: 45px !important; }
.pr-50 { padding-left: 50px !important; }
.pr-55 { padding-left: 55px !important; }
.pr-60 { padding-left: 60px !important; }
.pr-65 { padding-left: 65px !important; }
.pr-70 { padding-left: 70px !important; }
.pr-75 { padding-left: 75px !important; }
.pr-80 { padding-left: 80px !important; }
.pr-85 { padding-left: 85px !important; }
.pr-90 { padding-left: 90px !important; }
.pr-95 { padding-left: 95px !important; }
.pr-100 { padding-left: 100px !important; }

.pt-0 { padding-top: 0px !important; }
.pt-5 { padding-top: 5px !important; }
.pt-10 { padding-top: 10px !important; }
.pt-15 { padding-top: 15px !important; }
.pt-20 { padding-top: 20px !important; }
.pt-25 { padding-top: 25px !important; }
.pt-30 { padding-top: 30px !important; }
.pt-35 { padding-top: 35px !important; }
.pt-40 { padding-top: 40px !important; }
.pt-45 { padding-top: 45px !important; }
.pt-50 { padding-top: 50px !important; }
.pt-55 { padding-top: 55px !important; }
.pt-60 { padding-top: 60px !important; }
.pt-65 { padding-top: 65px !important; }
.pt-70 { padding-top: 70px !important; }
.pt-75 { padding-top: 75px !important; }
.pt-80 { padding-top: 80px !important; }
.pt-85 { padding-top: 85px !important; }
.pt-90 { padding-top: 90px !important; }
.pt-95 { padding-top: 95px !important; }
.pt-100 { padding-top: 100px !important; }

/* width */
.wd-100p { width: 100% !important; }
.wd-90p { width: 90% !important; }
.wd-85p { width: 85% !important; }
.wd-80p { width: 80% !important; }
.wd-75p { width: 75% !important; }
.wd-70p { width: 70% !important; }
.wd-65p { width: 65% !important; }
.wd-60p { width: 60% !important; }
.wd-50p { width: 50% !important; }
.wd-40p { width: 40% !important; }
.wd-30p { width: 30% !important; }
.wd-25p { width: 25% !important; }
.wd-20p { width: 20% !important; }
.wd-15p { width: 15% !important; }
.wd-auto { width: auto !important; }

.indent-1em {
	padding-left: 1em;
	text-indent: -1em;
}

.indent-1hem {
	padding-left: 1.5em;
	text-indent: -1.5em;
}

.indent-2em {
	padding-left: 2em;
	text-indent: -2em;
}

/* @end */

/* @group clearfix */

.clearfix {
	content: "";
	display: table;
	clear: both;
}

/* @end of clearfix */


/*** 
 SP
*** */
@media screen and (max-width: 800px) {

a:hover {
	opacity: 1;
}

.pc-none {
	display: inherit;
}

.sp-none {
	display: none;
}

/* @group main-content */
	
#main-content {
	padding-top: 50px;
}
	
#main-content .inner {
	padding-left: 25px;
	padding-right: 25px;
}

/* @group main-visual */

#main-visual {
	height: calc(100vh - 50px - 72px);
	min-height: 520px;
	max-height: 890px;
	margin-bottom: 35px;
	overflow-x: hidden;
}
	
#main-visual .h1-area {
	padding: 3.5vw 7% 0;
}
	
#main-visual h1 {
	font-size: clamp(19px, 4vw, 132px);
	margin-bottom: 3vw;
	text-shadow: rgba(0, 0, 0, 0.75) 2px 2px 1px;
}
	
.mv-lead {
	font-size: clamp(35px, 8vw, 64px);
	font-weight: var(--fw-mid);
	line-height: 1.4;
	text-shadow: rgba(0, 0, 0, 0.75) 3px 3px 0;
}
	
.mv-txt {
	font-size: clamp(15px, 2.65vw, 21px);
	right: 25px;
	bottom: 6.5vw;
	line-height: 2.2;
	text-shadow: rgba(0, 0, 0, 0.75) 2px 2px 1px;
}

/* @end */

/* @group heading */
	
#main-content h2 {
	font-size: 25px;
}
	
#main-content h3 {
	font-size: 22px;
	margin-bottom: 15px;
}

/* @end */

/* @group list */

ul.list li + li {
	margin-top: 3px;
}

/* @end */
	
/* sec01 */
	
.sec01-lead {
	font-size: 20px;
}
	
.sec01-lead .en {
	font-size: 55px;
	margin-top: 6px;
}
	
#sdgs-sec01 .subsection01 {
	padding: 44px 0 0;
}
	
#sdgs-sec01 .subsection01::before {
	right: 115px;
	transform: skewX(3deg);
	height: calc(100% - 20px);
}

@media screen and (max-width: 360px) {
	#sdgs-sec01 .subsection01::before {
		right: 90px;
	}
}
	
.sec01-bg {
	float: right;
	margin-bottom: 5px;
	width: 160px;
	position: relative;
	top: 0;
	left: 0;
	display: flex;
	justify-content: flex-end;
}
	
.sec01-bg img {
	width: 313px;
	margin: -113px 0 0 auto;
}
	
#sdgs-sec01 .subsection01 .inner {
	padding-bottom: 45px;
	position: relative;
}
	
#sdgs-sec01 .subsection01 .inner::after {
	background-color: var(--main);
	content: "";
	height: calc(100% - 455px);
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}
	
#sdgs-sec01 .subsection01 h2 {
	font-size: 22px;
	letter-spacing: .2em;
	margin: 0 0 15px 5px;
}
	
#sdgs-sec01 .subsection01 h2 + p {
	width: auto;
	letter-spacing: .05em;
	line-height: 1.5;
	position: relative;
}
	
#sdgs-sec01 .subsection01 h2 + p::after {
	content: "";
	height: 408px;
	width: 115px;
	position: absolute;
	top: 0;
	right: 0;
}
	
#sdgs-sec01 .subsection01 h3 {
	margin: 40px 0 15px;
	padding-top: 35px;
}
	
#sdgs-sec01 .subsection01 h3::before {
	width: 11%;
}
	
#sdgs-sec01 .subsection01 h3 + p {
	width: 100%;
	line-height: 1.5;
	position: relative;
}

/* sec02, sec03 */
	
#sdgs-sec02 .sec02-pattern {
	flex-wrap: wrap;
	padding-top: 32px;
	padding-bottom: 110px;
	position: relative;
}
	
#sdgs-sec02 .left-col {
	padding: 0;
	width: 100%;
}
	
#sdgs-sec02 .right-col {
	width: 100vw;
	margin: 0 -25px;
}
	
#sdgs-sec02 h2,
#sdgs-sec03 h2 {
	margin-bottom: 16px;
	padding: 0;
}
	
#sdgs-sec02 .left-col p,
#sdgs-sec03 .right-col p {
	width: 100%;
}
	
#sdgs-sec02 .left-col h2 + p,
#sdgs-sec03 .right-col h2 + p {
	line-height: 1.5;
	margin-bottom: 20px;
}
	
#sdgs-sec02 .link-btn {
	text-align: center;
	width: 88.5% !important;
	max-width: 310px;
	transform: translateX(-50%);
	position: absolute;
	bottom: 40px;
	left: 50%;
}
	
#sdgs-sec02 .link-btn a {
	padding: .4em .9em;
}
	
#sdgs-sec02 .link-btn::before {
	height: 1px;
	width: 34px;
	right: -22px;
}
	
.change-img {
	opacity: 1;
	transform: rotate(0deg) scale(1) !important;
}
	
.change-img img:not(.hover-img) {
	transition: 1s;
	transition-delay: 1s;
}
	
.change-img.fadeIn img:not(.hover-img) {
	opacity: 0;
}
	
.change-img img.hover-img {
	transition: 1s;
	transition-delay: 1s;
}
	
.change-img.fadeIn img.hover-img {
	opacity: 1;
}
	
#sdgs-sec02 .right-col figure {
	margin: 0 auto;
	max-width: 480px;
}

/* sec03 */
	
#sdgs-sec03 {
	overflow: inherit;
}
	
#sdgs-sec03 .sec03-pattern {
	flex-wrap: wrap;
	padding-top: 32px;
	padding-bottom: 50px;
}
	
#sdgs-sec03 .left-col {
	margin: 0 -25px;
	width: 100vw;
}
	
#sdgs-sec03 .right-col {
	padding: 0;
	width: 100%;
}
	
#sdgs-sec03 .right-col p {
	line-height: 1.5;
	padding: 0;
}
	
#sdgs-sec03 .left-col figure {
	margin: 0 auto;
	max-width: 480px;
}

/* sec04 */
	
.sdgs-sec04-inner {
	flex-wrap: wrap;
	padding: 0 25px 40px;
}
	
#sdgs-sec04 .left-col {
	margin-right: 0;
	min-width: inherit;
	padding: 41px 0 0;
	width: 100%;
	position: static;
}
	
#sdgs-sec04 .right-col {
	border-radius: 7px;
	margin: 28px auto 0;
	padding: 26px 15px 35px;
	width: 100%;
	max-width: 480px;
}
	
#sdgs-sec04 .left-col p {
	line-height: 1.5;
}
	
#sdgs-sec04 .sec04-head {
	margin: 0 auto 18px;
	padding: 0;
	width: 227px;
	position: static;
}
	
#sdgs-sec04 .sec04-head::after {
	display: none;
}
	
#sdgs-sec04 h2 {
	font-size: 22px;
	text-align: center;
	margin-bottom: 20px;
}

/* sec05 */

@media (orientation: portrait){
	
	.sec05-bg {
		background-image: url("/sdgs/images/sec05_bg01_sp.png");
	}
	
}
	
#sdgs-sec05 .inner {
	padding-top: 35px;
}
	
#sdgs-sec05 h2 {
	margin-bottom: 24px;
}
	
#sdgs-sec05 h3 {
	margin-bottom: 20px;
}
	
#sdgs-sec05 .box01 {
	padding: 15px 20px 20px;
	width: 100%;
}
	
#sdgs-sec05 p {
	line-height: 1.5;
}

#sdgs-sec05 .box02 {
	background-color: transparent;
	margin: 0 0 25px -25px;
	padding: 0;
	width: 100vw;
}
	
#sdgs-sec05 .box02 figure {
	margin: 0 auto;
	max-width: 480px;
}

.sec05-pattern {
	flex-wrap: wrap;
}

.sec05-pattern .left-col {
	margin: 0 0 15px;
	width: 100%;
}

.sec05-pattern .right-col {
	width: 100%;
}
	
#sdgs-sec05 .sec05-pattern h3 {
	 margin-bottom: 15px; 
}

/* sec06 */

#sdgs-sec06 {
	background-image: url("/sdgs/images/sec06_bg01_sp.jpg");
	margin-bottom: 25px;
	padding: 20px 25px 35px;
}
	
#sdgs-sec06 h2 {
	font-size: 22px;
	line-height: 1.4;
	margin-bottom: 8px;
}
	
.sec06-lead {
	font-size: 16px;
	margin-bottom: 17px;
}
	
#sdgs-sec06 p:not(.sec06-lead) {
	font-size: 15px;
	line-height: 1.5;
	padding: 0;
	text-align: left;
}

/* sec07, sec08, sec09 */
	
.energy-pattern {
	flex-wrap: wrap;
}
	
.energy-pattern .img-col {
	width: 85.71% !important;
	margin-left: -25px;
	position: relative;
}
	
.energy-pattern.reverse .img-col {
	margin-right: -25px;
}
	
.energy-pattern .img-col [class*="icon-x"] {
	margin: 0;
	position: absolute;
	bottom: 5px;
	width: 30%;
	max-width: 130px;
}
	
.energy-pattern .img-col [class*="icon-x"] {
	right: -80px;
}
	
.energy-pattern.reverse .img-col [class*="icon-x"] {
	right: 25px;
}
	
.energy-pattern .h2-area {
	margin: 0 0 10px !important;
	padding: 15px 0 20px !important;
}
	
.energy-pattern .h2-area::before {
	transition-delay: .5s;
}
	
#main-content .energy-pattern h2 {
	font-size: 25px;
	margin-bottom: 6px;
	width: 100%;
}
	
.energy-pattern .lead {
	font-size: 19px;
	line-height: 1.57;
}
	
.energy-pattern .lead br {
	display: none;
}
	
.energy-pattern .col > p {
	line-height: 1.5;
	margin-bottom: 15px;
}
	
#sdgs-sec07 {
	margin-bottom: 35px;
}
	
#sdgs-sec07 .energy-pattern .col,
#sdgs-sec09 .energy-pattern .col {
	margin-right: auto;
	padding: 0;
	max-width: 560px;
	width: 100%;
}
	
#sdgs-sec07 .energy-pattern .h2-area,
#sdgs-sec09 .energy-pattern .h2-area {
	padding-right: 25px !important;
}
	
#sdgs-sec08 {
	margin-bottom: 35px;
}
	
#sdgs-sec08 .energy-pattern .col {
	width: 95.7%;
	margin-left: auto;
	max-width: 560px;
	padding: 0 0 0 30px;
}
	
#sdgs-sec08 .energy-pattern .h2-area::before {
	left: -30px;
}
	
#sdgs-sec09 {
	margin-block: 40px;
}

/* sec10 */
	
@media (orientation: portrait){
	
	.sec10-bg {
		background-image: url("/sdgs/images/sec10_bg01_sp.jpg");
	}
	
}
	
#sdgs-sec10 .inner {
	padding-top: 40px;
	padding-bottom: 40px;
}
	
#sdgs-sec10 h2 {
	padding: 0;
	margin-bottom: 25px;
}
	
#sdgs-sec10 .h3-area {
	margin: 0 0 30px;
	width: 100%;
}
	
#sdgs-sec10 h3 {
	white-space: inherit;
}
	
#sdgs-sec10 .h3-area p {
	line-height: 1.5;
}
	
#sdgs-sec10 .graph-box {
	margin: 0 auto;
	max-width: 480px;
	padding: 35px 0;
}
	
#sdgs-sec10 h4 {
	font-size: 16px;
	margin-bottom: 30px;
}
	
#sdgs-sec10 .graph-box figure {
	margin: 0 auto;
	width: 60%;
}
	
#sdgs-sec10 .graph-caption {
	font-size: 13px;
	line-height: 1.5;
	margin: 30px 0 0 auto;
	padding-right: 20px;
	width: 94.2%;
	max-width: 390px;
	text-align: left;
}

/* sec11 */
	
#sdgs-sec11 {
	margin-bottom: 30px;
	padding-bottom: 40px;
	overflow-x: hidden;
}
	
.sec11-inner {
	padding-left: 25px;
	padding-right: 25px;
}
	
#sdgs-sec11 .h2-area {
	padding: 27px 0 25px;
	margin-bottom: 0;
}
	
#sdgs-sec11 .h2-area::before {
	height: 12.5vw;
	bottom: calc(12.5vw / -2);
}
	
#sdgs-sec11 .h2-area .sec11-inner {
	flex-wrap: wrap;
}
	
#sdgs-sec11 h2 {
	margin-bottom: 20px;
	text-align: center;
	width: 100%;
	white-space: inherit;
}
	
#sdgs-sec11 .h2-area p {
	line-height: 1.5;
	margin: 0;
	padding: 0;
	width: 100%;
}
	
.sec11-img-wrap {
	margin: 0 auto 35px;
	padding-top: 8px;
	max-width: 560px;
}
	
.sec11-img-wrap figure {
	box-shadow: 3px 3px 0 #000;
}
	
.sec11-img-wrap .img-left {
	left: 0;
}
	
.sec11-pattern ul {
	flex-wrap: wrap;
	margin: 0 auto;
	width: 100%;
	max-width: 500px;
}
	
.sec11-pattern ul li {
	margin-right: 0;
	width: 100%;
}
	
.sec11-pattern ul li + li {
	margin-top: 20px;
}
	
#sdgs-sec11 h3 {
	height: 90px;
	margin: 0;
}
	
.sec11-pattern ul li p {
	line-height: 1.5;
	min-height: 65px;
	padding: 1em 1.2em;
}

/* sec12 */
	
#sdgs-sec12 {
	padding-bottom: 50px;
}
	
#sdgs-sec12::before {
	height: calc(100% - 55px);
}
	
.sec12-pattern {
	flex-wrap: wrap;
	margin-bottom: 45px;
}
	
#sdgs-sec12 h2 {
	margin-bottom: 15px;
}
	
#sdgs-sec12 h2 + p {
	font-weight: var(--fw-mid);
	line-height: 1.5;
	min-width: 270px;
}
	
.sec12-pattern2 .col {
	min-height: inherit;
	margin: 0 auto !important;
	padding-bottom: 25px;
	width: 100%;
	max-width: 480px;
	transform: translateX(-100px);
	transition-delay: .2s;
}

.sec12-pattern2 .col.fadeIn {
	opacity: 1;
	transform: translateX(0);
}
	
.sec12-pattern2 .col + .col {
	margin-top: 20px !important;
}
	
.sec12-pattern2 .col .num {
	font-size: 25px;
	height: 40px;
	width: 40px;
}
	
#sdgs-sec12 h3 {
	font-size: clamp(18px, 3.75vw, 22px) !important;
	min-height: 3em;
	padding: 15px 30px 0 50px !important;
	text-align: center;
}
	
.sec12-pattern2 figure {
	margin-bottom: 15px;
	width: 41%;
	max-width: 170px;
}
	
.sec12-pattern2 .col > p {
	font-size: 16px;
	margin-bottom: 15px;
}
	
.sec12-pattern2 ul.list li {
	font-size: 15px;
}

/* sec13 */
	
#sdgs-sec13 {
	padding-bottom: 35px;
}
	
#sdgs-sec13 .h2-area {
	height: 140px;
	margin-bottom: 30px;
}
	
#sdgs-sec13 h2 {
	font-size: 32px;
	margin-bottom: 10px;
}
	
#sdgs-sec13 .h2-area p {
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
}
	
#sdgs-sec13 ul {
	flex-wrap: wrap;
	margin: 0;
	max-width: 480px;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	min-width: 300px;
}
	
#sdgs-sec13 ul li {
	margin-right: 2.5vw;
	width: calc((100% - 2.5vw) / 2);
}
	
#sdgs-sec13 ul li:nth-of-type(2n) {
	margin-right: 0;
}
	
#sdgs-sec13 ul li:nth-of-type(n+3) {
	margin-top: 2.5vw;
}
	
#sdgs-sec13 ul li a {
	font-size: clamp(14px, 3.5vw, 16px);
	height: 25.25vw;
	min-height: 100px;
	max-height: 140px;
}
	
#sdgs-sec13 ul li a::before {
	border-width: 6px;
}
	
#sdgs-sec13 ul li a::after {
	height: calc(100% - 14px);
	width: calc(100% - 14px);
}

/* @end of main-content */

/* @group common */

.sp-center-position { text-align: center !important; }
.sp-left-position { text-align: left !important; }
.sp-right-position { text-align: right !important; }

/* margin */
.m-auto-sp { margin: 0 auto !important;}

.mb-0-sp { margin-bottom: 0px !important; }
.mb-5-sp { margin-bottom: 5px !important; }
.mb-10-sp { margin-bottom: 10px !important; }
.mb-15-sp { margin-bottom: 15px !important; }
.mb-20-sp { margin-bottom: 20px !important; }
.mb-25-sp { margin-bottom: 25px !important; }
.mb-30-sp { margin-bottom: 30px !important; }
.mb-35-sp { margin-bottom: 35px !important; }
.mb-40-sp { margin-bottom: 40px !important; }
.mb-45-sp { margin-bottom: 45px !important; }
.mb-50-sp { margin-bottom: 50px !important; }
.mb-55-sp { margin-bottom: 55px !important; }
.mb-60-sp { margin-bottom: 60px !important; }
.mb-65-sp { margin-bottom: 65px !important; }
.mb-70-sp { margin-bottom: 70px !important; }
.mb-75-sp { margin-bottom: 75px !important; }
.mb-80-sp { margin-bottom: 80px !important; }
.mb-85-sp { margin-bottom: 85px !important; }
.mb-90-sp { margin-bottom: 90px !important; }
.mb-95-sp { margin-bottom: 95px !important; }
.mb-100-sp { margin-bottom: 100px !important; }

.mb05em-sp { margin-bottom: 0.5em !important; }
.mb1em-sp { margin-bottom: 1em !important; }
.mb1hem-sp { margin-bottom: 1.5em !important; }
.mb2em-sp { margin-bottom: 2em !important; }

.ml-auto-sp { margin-left: auto !important; }
.ml-0-sp { margin-left: 0px !important; }
.ml-5-sp { margin-left: 5px !important; }
.ml-10-sp { margin-left: 10px !important; }
.ml-15-sp { margin-left: 15px !important; }
.ml-20-sp { margin-left: 20px !important; }
.ml-25-sp { margin-left: 25px !important; }
.ml-30-sp { margin-left: 30px !important; }
.ml-35-sp { margin-left: 35px !important; }
.ml-40-sp { margin-left: 40px !important; }
.ml-45-sp { margin-left: 45px !important; }
.ml-50-sp { margin-left: 50px !important; }
.ml-55-sp { margin-left: 55px !important; }
.ml-60-sp { margin-left: 60px !important; }
.ml-65-sp { margin-left: 65px !important; }
.ml-70-sp { margin-left: 70px !important; }
.ml-75-sp { margin-left: 75px !important; }
.ml-80-sp { margin-left: 80px !important; }
.ml-85-sp { margin-left: 85px !important; }
.ml-90-sp { margin-left: 90px !important; }
.ml-95-sp { margin-left: 95px !important; }
.ml-100-sp { margin-left: 100px !important; }

.mr-auto-sp { margin-right: auto !important; }
.mr-0-sp { margin-right: 0px !important; }
.mr-5-sp { margin-right: 5px !important; }
.mr-10-sp { margin-right: 10px !important; }
.mr-15-sp { margin-right: 15px !important; }
.mr-20-sp { margin-right: 20px !important; }
.mr-25-sp { margin-right: 25px !important; }
.mr-30-sp { margin-right: 30px !important; }
.mr-35-sp { margin-right: 35px !important; }
.mr-40-sp { margin-right: 40px !important; }
.mr-45-sp { margin-right: 45px !important; }
.mr-50-sp { margin-right: 50px !important; }
.mr-55-sp { margin-right: 55px !important; }
.mr-60-sp { margin-right: 60px !important; }
.mr-65-sp { margin-right: 65px !important; }
.mr-70-sp { margin-right: 70px !important; }
.mr-75-sp { margin-right: 75px !important; }
.mr-80-sp { margin-right: 80px !important; }
.mr-85-sp { margin-right: 85px !important; }
.mr-90-sp { margin-right: 90px !important; }
.mr-95-sp { margin-right: 95px !important; }
.mr-100-sp { margin-right: 100px !important; }

.mt-0-sp { margin-top: 0 !important; }
.mt-5-sp { margin-top: 5px !important;}
.mt-10-sp { margin-top: 10px !important; }
.mt-15-sp { margin-top: 15px !important; }
.mt-20-sp { margin-top: 20px !important; }
.mt-25-sp { margin-top: 25px !important; }
.mt-30-sp { margin-top: 30px !important; }
.mt-35-sp { margin-top: 35px !important; }
.mt-40-sp { margin-top: 40px !important; }
.mt-45-sp { margin-top: 45px !important; }
.mt-50-sp { margin-top: 50px !important; }
.mt-55-sp { margin-top: 55px !important; }
.mt-60-sp { margin-top: 60px !important; }
.mt-65-sp { margin-top: 65px !important; }
.mt-70-sp { margin-top: 70px !important; }
.mt-75-sp { margin-top: 75px !important; }
.mt-80-sp { margin-top: 80px !important; }
.mt-85-sp { margin-top: 85px !important; }
.mt-90-sp { margin-top: 90px !important; }
.mt-95-sp { margin-top: 95px !important; }
.mt-100-sp { margin-top: 100px !important; }

/* padding */
.pb-0-sp { padding-bottom: 0px !important; }
.pb-5-sp { padding-bottom: 5px !important; }
.pb-10-sp { padding-bottom: 10px !important; }
.pb-15-sp { padding-bottom: 15px !important; }
.pb-20-sp { padding-bottom: 20px !important; }
.pb-25-sp { padding-bottom: 25px !important; }
.pb-30-sp { padding-bottom: 30px !important; }
.pb-35-sp { padding-bottom: 35px !important; }
.pb-40-sp { padding-bottom: 40px !important; }
.pb-45-sp { padding-bottom: 45px !important; }
.pb-50-sp { padding-bottom: 50px !important; }
.pb-55-sp { padding-bottom: 55px !important; }
.pb-60-sp { padding-bottom: 60px !important; }
.pb-65-sp { padding-bottom: 65px !important; }
.pb-70-sp { padding-bottom: 70px !important; }
.pb-75-sp { padding-bottom: 75px !important; }
.pb-80-sp { padding-bottom: 80px !important; }
.pb-85-sp { padding-bottom: 85px !important; }
.pb-90-sp { padding-bottom: 90px !important; }
.pb-95-sp { padding-bottom: 95px !important; }
.pb-100-sp { padding-bottom: 100px !important; }

.pl-0-sp { padding-left: 0px !important; }
.pl-5-sp { padding-left: 5px !important; }
.pl-10-sp { padding-left: 10px !important; }
.pl-15-sp { padding-left: 15px !important; }
.pl-20-sp { padding-left: 20px !important; }
.pl-25-sp { padding-left: 25px !important; }
.pl-30-sp { padding-left: 30px !important; }
.pl-35-sp { padding-left: 35px !important; }
.pl-40-sp { padding-left: 40px !important; }
.pl-45-sp { padding-left: 45px !important; }
.pl-50-sp { padding-left: 50px !important; }
.pl-55-sp { padding-left: 55px !important; }
.pl-60-sp { padding-left: 60px !important; }
.pl-65-sp { padding-left: 65px !important; }
.pl-70-sp { padding-left: 70px !important; }
.pl-75-sp { padding-left: 75px !important; }
.pl-80-sp { padding-left: 80px !important; }
.pl-85-sp { padding-left: 85px !important; }
.pl-90-sp { padding-left: 90px !important; }
.pl-95-sp { padding-left: 95px !important; }
.pl-100-sp { padding-left: 100px !important; }

.pr-0-sp { padding-left: 0px !important; }
.pr-5-sp { padding-left: 5px !important; }
.pr-10-sp { padding-left: 10px !important; }
.pr-15-sp { padding-left: 15px !important; }
.pr-20-sp { padding-left: 20px !important; }
.pr-25-sp { padding-left: 25px !important; }
.pr-30-sp { padding-left: 30px !important; }
.pr-35-sp { padding-left: 35px !important; }
.pr-40-sp { padding-left: 40px !important; }
.pr-45-sp { padding-left: 45px !important; }
.pr-50-sp { padding-left: 50px !important; }
.pr-55-sp { padding-left: 55px !important; }
.pr-60-sp { padding-left: 60px !important; }
.pr-65-sp { padding-left: 65px !important; }
.pr-70-sp { padding-left: 70px !important; }
.pr-75-sp { padding-left: 75px !important; }
.pr-80-sp { padding-left: 80px !important; }
.pr-85-sp { padding-left: 85px !important; }
.pr-90-sp { padding-left: 90px !important; }
.pr-95-sp { padding-left: 95px !important; }
.pr-100-sp { padding-left: 100px !important; }

.pt-0-sp { padding-top: 0px !important; }
.pt-5-sp { padding-top: 5px !important; }
.pt-10-sp { padding-top: 10px !important; }
.pt-15-sp { padding-top: 15px !important; }
.pt-20-sp { padding-top: 20px !important; }
.pt-25-sp { padding-top: 25px !important; }
.pt-30-sp { padding-top: 30px !important; }
.pt-35-sp { padding-top: 35px !important; }
.pt-40-sp { padding-top: 40px !important; }
.pt-45-sp { padding-top: 45px !important; }
.pt-50-sp { padding-top: 50px !important; }
.pt-55-sp { padding-top: 55px !important; }
.pt-60-sp { padding-top: 60px !important; }
.pt-65-sp { padding-top: 65px !important; }
.pt-70-sp { padding-top: 70px !important; }
.pt-75-sp { padding-top: 75px !important; }
.pt-80-sp { padding-top: 80px !important; }
.pt-85-sp { padding-top: 85px !important; }
.pt-90-sp { padding-top: 90px !important; }
.pt-95-sp { padding-top: 95px !important; }
.pt-100-sp { padding-top: 100px !important; }

/* width */
.wd-100p-sp { width: 100% !important; }
.wd-95p-sp { width: 95% !important; }
.wd-90p-sp { width: 90% !important; }
.wd-85p-sp { width: 85% !important; }
.wd-80p-sp { width: 80% !important; }
.wd-75p-sp { width: 75% !important; }
.wd-70p-sp { width: 70% !important; }
.wd-65p-sp { width: 65% !important; }
.wd-60p-sp { width: 60% !important; }
.wd-55p-sp { width: 55% !important; }
.wd-50p-sp { width: 50% !important; }
.wd-45p-sp { width: 45% !important; }
.wd-40p-sp { width: 40% !important; }
.wd-35p-sp { width: 35% !important; }
.wd-30p-sp { width: 30% !important; }
.wd-25p-sp { width: 25% !important; }
.wd-20p-sp { width: 20% !important; }
.wd-15p-sp { width: 15% !important; }
.wd-auto-sp { width: auto !important; }

/* @end */

/* @group clearfix */

#sdgs-sec01 .subsection01::after {
	content: "";
	display: table;
	clear: both;
}

/* @end of clearfix */
	
}