@charset "utf-8";

/* ===========================================================

	Title: global.css
	Created: 2020-12-10

=========================================================== */
/*

	body
	header
	global-menu__navigation
	contents-style
	aside
	topicpath
	btPageTop
	footer
	table


=========================================================== */
/* ===========================================================

	font-family: 'Lato', sans-serif;
	font-family: 'Noto Sans JP', sans-serif;

	Noto Sans JP
	Regular 400
	Bold 700

	Lato
	Regular 400
	Black 900
	
	#006647 / rgba(0,102,71,1);
	#00953A / rgba(0,149,58,1);
	#82BC00 / rgba(130,188,0,1);

=========================================================== */
/* ===========================================================

	body

=========================================================== */
body {
	font-family: 'Noto Sans JP', 游ゴシック体, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
	font-weight: 400;
	color: #111;
	line-height: 1.8;
	text-align: center;
	font-size: 15px;
	font-size: 1.5rem;
	height: 100%;
	overflow: hidden;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "palt" 1;
}

body.is-en {
	font-family: 'Lato', sans-serif;
}

@media all and (-ms-high-contrast:none) {
	body {
		font-family: "メイリオ", Meiryo, "游ゴシック", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	}
}

html * {
	max-height: 999999px;
}

/* Chrome font size adjust */

::selection {
	background: #00953A;
	color: #ffffff;
}

/* for Firefox */
::-moz-selection {
	background: #00953A;
	color: #ffffff;
}

img {
	-webkit-backface-visibility: hidden;
}

/* ===========================================================

	header

=========================================================== */
.global-header {
	position: fixed;
	width: 100%;
	z-index: 100;
	transition: all 0.5s;
	background-color: rgba(255, 255, 255, 1.00);
}

.global-header.first-view {
	background-color: rgba(255, 255, 255, 0);
}

.global-header.first-view a {
	color: #fff !important;
}

.global-header.first-view .global-menu__sub-navigation::before {
	background-color: rgba(255, 255, 255, 1);
}

.global-header__inner {
	position: relative;
	width: 100%;
	height: 80px;
	margin: 0;
	text-align: left;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

@media screen and (max-width: 1200px) {
	.global-header {}
}

/* logo
----------------------------------------------------------- */
.global-header h1 {
	display: flex;
	align-items: center;
	height: 80px;
	position: relative;
	z-index: 3;
	margin-left: 32px;
}

.global-header h1 a:link,
.global-header a:visited {
	text-decoration: none !important;
	display: block;
	/*　Scott Kellum Method */
	/* overflow: hidden; */
	text-indent: 100%;
	white-space: nowrap;
	z-index: 1;
}

.global-header .logo {
	background-size: 300px auto;
	background-repeat: no-repeat;
	width: 300px;
	height: 80px;
}

/* 修正前は、トップとスクロールした時でロゴの色を切り替えていました。 */
/*.is-ja .global-header.first-view .logo {
	background-image: url(../img/global/logo--ja-white.png);
}*/
.is-ja .global-header.first-view .logo,
.is-ja .global-header .logo {
	background-image: url(../img/global/logo--ja.png);
}

/*.is-en .global-header.first-view .logo {
	background-image: url(../img/global/logo--en-white.png);
}*/
.is-en .global-header.first-view .logo,
.is-en .global-header .logo {
	background-image: url(../img/global/logo--en.png);
}

.is-ja .global-header h1 span,
.is-en .global-header h1 span {
	margin-left: 1rem;
	font-size: 20px;
	font-weight: bold;
	color: #5A595B;
	line-height: 1;
}

.global-header h1 a:hover {
	opacity: 1;
}

@media screen and (max-width: 1200px) {
	.global-header .logo {
		background-size: 200px auto;
		background-repeat: no-repeat;
		width: 200px;
		height: 80px;
	}

	.global-header__inner {
		height: 60px;
	}

	.global-header h1 {
		margin-top: 1rem;
		margin-left: 2rem;
		flex-direction: column;
		align-items: flex-start;
		height: 50px;
	}

	.global-header h1 img {
		margin: 4px 0 0 0;
		height: 38px;
		width: auto;
	}

	.global-header h1 img {
		margin: 4px 0 0 0;
		height: 28px;
		width: auto;
	}

	.global-header h1 span {
		font-size: 12px !important;
		margin-left: 0 !important;
	}
}

/* caution
----------------------------------------------------------- */
.global-header__caution {
	display: flex;
	align-items: center;
	height: 100px;
	font-size: 10px;
	margin-right: 1em;
	line-height: 1.4;
	color: #fff;
	flex: 1;
}

.global-header__caution span {
	max-width: 270px;
}

.global-header__caution a {
	text-decoration: none;
}

@media screen and (max-width: 767px) {
	.global-header__inner {
		flex-wrap: wrap;
		height: auto;
	}

	.global-header h1 {
		width: 100%;
	}

	.global-header__caution {
		margin: 8px 0 8px 15px;
		height: auto;
		width: 100%;
	}
}

/* ===========================================================

	global-menu

=========================================================== */
.global-menu {
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	padding-right: 32px;
}

@media screen and (max-width: 1200px) {
	.global-menu {
		padding-right: 0;
		align-items: flex-start;
		position: absolute;
		top: 0;
		right: 0;
	}
}

/* ===========================================================

	global-menu__sub-navigation

=========================================================== */
.global-menu__sub-navigation {
	display: flex;
	align-items: center;
	padding-left: 32px;
	position: relative;
}

.global-menu__sub-navigation::before {
	position: absolute;
	top: 50%;
	left: 10px;
	content: " ";
	display: block;
	width: 1px;
	height: 20px;
	margin: -10px 0 0 0;
	background-color: rgba(0, 0, 0, 0.50);
}

@media screen and (max-width: 1300px) {
	.global-menu__sub-navigation {
		padding-left: 25px;
	}

	.global-menu__sub-navigation::before {
		left: 0;
	}
}

@media screen and (max-width: 1200px) {
	.global-menu__sub-navigation::before {
		display: none;
	}
}

/* global-sub-navigation__language
----------------------------------------------------------- */
.global-sub-navigation__language,
.global-sub-navigation__language li {
	margin: 0;
	padding: 0;
}

.global-sub-navigation__language a:link,
.global-sub-navigation__language a:visited {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #111;
	width: 48px;
	height: 48px;
	position: relative;
}

.global-sub-navigation__language a:hover {
	color: #1E6441;
	text-decoration: none;
}

@media screen and (min-width: 1201px) {}

@media screen and (max-width: 1200px) {
	.global-sub-navigation__language {
		display: none;
	}
}

/* global-sub-navigation__search
----------------------------------------------------------- */
/* global-sub-navigation__search--open
----------------------------------------------------------- */
.global-sub-navigation__search--open {}

.global-sub-navigation__search--open span {
	position: relative;
	display: block;
	width: 48px;
	height: 48px;
	background-repeat: no-repeat;
	background-position: 50% 52%;
	background-image: url("../img/global/icon_search_a.png");
	background-size: 16px auto;
	/*　Scott Kellum Method */
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	z-index: 1;
}

.global-sub-navigation__search__open:hover {
	cursor: pointer;
	opacity: 0.6;
}

@media screen and (max-width: 1200px) {
	.global-sub-navigation__search--open {
		display: none;
	}
}

/* global-sub-navigation__search__form
----------------------------------------------------------- */
.global-sub-navigation__search__form form {
	display: block;
	width: 100%;
	padding-left: 15px;
	background-color: #eef2f3;
}

.global-sub-navigation__search__form form input[type="text"] {
	font-size: 1.8rem;
	margin: 0;
	padding: 0;
	width: calc(100% - 60px);
	display: block;
	float: left;
	color: #333;
	background: none;
	border: none;
}

.global-sub-navigation__search__form form input:focus {
	outline: none !important;
	background: none;
}

.global-sub-navigation__search__form form input[type="submit"] {
	margin: 0;
	padding: 0;
	width: 60px;
	float: right;
	border: none;
	background-color: #7d8681;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-image: url(../img/global/icon_search_b.png);
	background-size: 16px auto;
	/*Scott Kellum Method */
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}

@media screen and (min-width: 1201px) {
	.global-sub-navigation__search__form {
		display: none;
		position: fixed;
		top: 0;
		right: 0;
		width: 600px;
		background-color: #555;
		z-index: 999998;
		text-align: center;
		padding: 32px;
	}

	.global-sub-navigation__search__form form {
		height: 36px;
		line-height: 36px;
	}

	.global-sub-navigation__search__form form input[type="text"] {
		height: 36px;
		line-height: 36px;
	}

	.global-sub-navigation__search__form form input[type="submit"] {
		height: 36px;
		line-height: 36px;
	}
}

@media screen and (max-width: 1200px) {
	.global-sub-navigation__search__form {
		padding: 10px 10px 0 20px;
	}

	.global-sub-navigation__search__form form {
		height: 30px;
		line-height: 30px;
	}

	.global-sub-navigation__search__form form input[type="text"] {
		height: 30px;
		line-height: 30px;
	}

	.global-sub-navigation__search__form form input[type="submit"] {
		height: 30px;
		line-height: 30px;
	}
}

/* ===========================================================

	global-menu__navigation

=========================================================== */
.global-menu__navigation {}

.global-menu__navigation ul.gn {
	display: flex;
}

.global-menu__navigation>ul.gn>li {
	position: relative;
	padding: 0 15px;
}

.global-menu__navigation>ul.gn>li:last-child {
	display: none;
}

.global-menu__navigation li a {
	text-decoration: none !important;
	display: block;
}

.global-menu__navigation ul.gn li a.global-menu__navigation__primary span::before {
	content: "";
	display: block;
	width: 0%;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.00);
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 0);
	transition: all 0.3s;
}

.first-view .global-menu__navigation ul.gn li a.global-menu__navigation__primary:hover,
.first-view .global-menu__navigation ul.gn li a.js-global-menu__navigation--over {
	opacity: 1;
	color: #fff !important;
}

.global-menu__navigation ul.gn li a.global-menu__navigation__primary:hover,
.global-menu__navigation ul.gn li a.js-global-menu__navigation--over {
	opacity: 1;
	color: #111 !important;
}

.global-menu__navigation ul.gn li a.global-menu__navigation__primary:hover span::before,
.global-menu__navigation ul.gn li a.js-global-menu__navigation--over span::before {
	width: 100%;
	background-color: #00953A;
}

.is-about .global-menu__navigation ul.gn li#global-menu__navigation__about a.global-menu__navigation__primary,
.is-portfolio .global-menu__navigation ul.gn li#global-menu__navigation__portfolio a.global-menu__navigation__primary,
.is-finance .global-menu__navigation ul.gn li#global-menu__navigation__finance a.global-menu__navigation__primary,
.is-esg .global-menu__navigation ul.gn li#global-menu__navigation__esg a.global-menu__navigation__primary,
.is-ir .global-menu__navigation ul.gn li#global-menu__navigation__ir a.global-menu__navigation__primary {
	color: #00953A;
}

@media screen and (max-width: 1200px) {
	.global-menu__navigation {
		position: fixed;
		top: 0;
		right: -100vw;
		width: 100%;
		height: 100%;
		padding-top: 50px;
		background: #fff;
		font-size: 16px;
		box-sizing: border-box;
		z-index: 2
	}

	.global-menu__navigation ul {
		margin-top: 1rem;
		flex-direction: column;
	}

	.global-menu__navigation li {
		border-top: 1px solid #ddd;
		padding: 2rem !important;
	}

	.global-menu__navigation>ul.gn>li:last-child {
		display: flex;
		justify-content: center;
		background: #ddd;
	}

	.global-menu__navigation ul li .active {
		border-bottom: 2px solid #1E6441;
	}

	.global-menu__navigation ul li .margin_slash {
		padding: 0 2rem;
	}

	.global-menu__navigation ul.gn a:hover {}

	.global-menu__navigation ul.gn li a.global-menu__navigation__primary span::before {
		display: none;
	}

}

/* ===========================================================

	global-menu__btn

=========================================================== */
@media screen and (max-width: 1200px) {
	.global-header .global-menu__btn {
		position: fixed;
		top: 20px;
		right: 20px;
		width: 30px;
		height: 24px;
		z-index: 3;
		box-sizing: border-box;
		cursor: pointer;
		-webkit-transition: all 400ms;
		transition: all 400ms
	}

	.global-header .global-menu__btn span {
		position: absolute;
		width: 30px;
		height: 4px;
		background: #666;
		border-radius: 10px;
		-webkit-transition: all 400ms;
		transition: all 400ms
	}

	.global-header .global-menu__btn span:nth-child(1) {
		top: 0
	}

	.global-header .global-menu__btn span:nth-child(2) {
		top: 10px
	}

	.global-header .global-menu__btn span:nth-child(3) {
		top: 20px
	}

	.global-header .global-menu__btn.open span:nth-of-type(1) {
		-webkit-transform: translateY(8px) rotate(-45deg);
		transform: translateY(8px) rotate(-45deg);
	}

	.global-header .global-menu__btn.open span:nth-of-type(2) {
		opacity: 0;
	}

	.global-header .global-menu__btn.open span:nth-of-type(3) {
		-webkit-transform: translateY(-12px) rotate(45deg);
		transform: translateY(-12px) rotate(45deg);
	}
}

/* ===========================================================

	main

=========================================================== */
main {}

@media screen and (max-width: 1200px) {
	main {
		margin-top: 60px;
		padding-bottom: 0;
	}
}

main:after {
	content: "";
	display: block;
	clear: both;
}

article {
	display: flex;
	justify-content: space-between;
}

.contents {
	order: 2;
}

aside {
	order: 1;
}

/* ===========================================================

	title

=========================================================== */
.contents {
	width: 100%;
}

/* ===========================================================

	title

=========================================================== */
.title {
	width: 100%;
	text-align: left;
	display: flex;
	align-items: center;
	position: relative;
	justify-content: center;
	height: 380px;
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
	border-top: solid 1px #ddd;
	border-bottom: solid 1px #ddd;
	margin-top: 80px;
}

.is-other .title {
	background-image: url(../img/global/title_img.png);
	background-position: center;
}

.title h1 {
	font-size: 4.0rem;
	letter-spacing: 0.03em;
	color: #FFF;
	text-align: center;
	line-height: 1.4;
	padding: 6px 16px 8px;
}

.is-en .title h1 {
	font-weight: 900;
}

.title+table,
.title+p {
	margin-top: 5em !important;
}

@media screen and (max-width: 1024px) {
	.title {
		margin: 0;
	}

	.title h1 {
		font-size: 2.6rem;
		padding: 2em 15px;
	}
}

/* ===========================================================

	contents-style

=========================================================== */
.contents-style {
	text-align: left;
	margin: 0 auto;
	padding: 80px 50px 100px;
	width: 100%;
	max-width: 1080px;
	box-sizing: content-box;
}

.is-other .contents-style {
	padding: 70px 50px 100px !important;
}

@media screen and (max-width: 1024px) {
	.contents-style {
		padding: 32px 16px 64px;
		max-width: inherit;
		box-sizing: border-box;
	}
}

/* ===========================================================

	topic path

=========================================================== */
.topic-path {
	background-color: #eef2f3;
}

.topic-path ol {
	max-width: 1080px;
	font-size: 14px;
	list-style: none;
	text-align: left;
	padding: 15px 0;
	margin: auto;
	color: #515659;
}

.topic-path ol li {
	display: inline-block;
}

.topic-path ol li::after {
	content: "/";
	padding: 0 10px;
	color: #515659 !important;
}

.topic-path ol li:last-child::after {
	display: none;
}

.topic-path ol li.active {
	font-weight: bold;
}

.topic-path ol a:link,
.topic-path ol a:visited {
	color: #515659;
}

.topic-path ol a:hover {
	text-decoration: none;
	color: #1E6441;
}

@media screen and (max-width: 1024px) {
	.topic-path ol {
		width: 100%;
		line-height: 1.5;
		height: auto;
		padding: 1em 15px
	}

	.topic-path ol li:before {
		padding: 0 5px;
	}
}

/* ===========================================================

	bt-pagetop

=========================================================== */
body .bt-pagetop {
	clear: both;
	width: 50px;
	height: 50px;
	margin: 0;
	display: none;
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 100;
}

.bt-pagetop a {
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	background-color: #019536;
	transition: .2s ease-in-out;
	/*　Scott Kellum Method */
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}

.bt-pagetop a:before {
	content: " ";
	position: absolute;
	top: 22px;
	left: 50%;
	margin: 0 0 0 -10px;
	width: 20px;
	height: 20px;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.bt-pagetop a:hover {
	opacity: 0.5;
}

/* ===========================================================

	footer

=========================================================== */
footer {
	position: relative;
	clear: both;
	overflow: hidden;
	background-color: #555;
}

footer a,
footer a:link,
footer a:visited {
	display: block;
	text-decoration: none;
	color: #fff;
}

footer a:hover {
	color: #00953A;
}

/* footer__navigation
----------------------------------------------------------- */
.footer__navigation {
	margin: 0 auto;
	width: 1200px;
}

@media screen and (max-width: 1024px) {
	.footer__navigation {
		display: none;
	}
}

.footer__navigation-link {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	padding: 64px 0 64px;
	width: 1200px;
	text-align: left;
}

.footer__navigation-link>li {
	width: 100%;
	font-size: 1.4rem;
	padding-right: 16px;
}

.footer__navigation-link>li>a {
	position: relative;
	padding: 0 0 15px;
	white-space: nowrap;
}

.footer__navigation-link li a.current {
	font-weight: bold !important;
}

.footer__navigation-link ul>li>a {}

.footer__navigation-link ul {
	font-size: 1.3rem;
}

.footer__navigation-link ul li {
	position: relative;
	margin: 0 0 10px;
	padding: 0 16px 0 20px;
}

.footer__navigation-link ul li::before {
	position: absolute;
	left: 0;
	top: 9px;
	content: "";
	width: 8px;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.50);
}

/* footer__navigation-banner
----------------------------------------------------------- */
.footer__navigation-banner {
	display: flex;
	justify-content: center;
	margin: 0 10px 64px;
	text-align: left;
	align-items: flex-end;
}

.footer__navigation-banner li {
	margin: 0 10px;
	max-width: 340px;
}

.footer__navigation-banner dl {}

.footer__navigation-banner dt {
	padding-right: 15px;
	margin-bottom: 8px;
	line-height: 1.2;
	font-size: 1.3rem;
}

.footer__navigation-banner dt::after {
	content: "";
	display: inline-block;
	width: 9px;
	height: 9px;
	margin: 0 0 0 8px;
	background-image: url(../img/global/icon_blank_a.png);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 9px auto;
}

@media screen and (max-width: 1024px) {
	.footer__navigation-banner {
		flex-direction: column;
		align-items: center;
		padding: 0 16px;
		margin: 0;
	}

	.footer__navigation-banner li:nth-child(n+4) {
		margin-top: 0;
	}

	.footer__navigation-banner li {
		margin: 0 0 16px;
	}
}

/* sub-footer__navigation
----------------------------------------------------------- */
.sub-footer__navigation {
	border-top: solid 1px rgba(255, 255, 255, 0.30);
	width: 1200px;
	margin: 0 auto;
	padding: 50px 0 55px;
}

.sub-footer__navigation ul {
	display: flex;
	justify-content: center;
	font-size: 1.3rem;
	font-style: normal;
	font-weight: normal;
	line-height: 1.2;
}

.sub-footer__navigation li {
	border-left: solid 1px rgba(255, 255, 255, 0.30);
}

.sub-footer__navigation a {
	padding: 0 1.5em;
}

.sub-footer__navigation li:first-child {
	border-left: none;
}

.sub-footer__navigation li:first-child a {
	padding-left: 0;
}

@media screen and (max-width: 1024px) {
	.sub-footer__navigation {
		display: block;
		width: 100%;
		padding: 0;
	}

	.sub-footer__navigation ul {
		display: block;
	}

	.sub-footer__navigation li {
		text-align: left;
		border-left: none;
	}

	.sub-footer__navigation li a,
	.sub-footer__navigation li:first-child a {
		position: relative;
		display: block;
		padding: 1.4em 2em 1.4em 1em;
		border: none;
		border-bottom: solid 1px #ddd;
		font-size: 1.4rem;
	}

	.sub-footer__navigation li a:before {
		position: absolute;
		content: " ";
		vertical-align: middle;
		top: 50%;
		right: 20px;
		width: 10px;
		height: 10px;
		border-top: 1px solid #1E6441;
		border-right: 1px solid #1E6441;
		-webkit-transform: rotate(45deg) translateY(-50%);
		transform: rotate(45deg) translateY(-50%);
	}
}

/* copyright
----------------------------------------------------------- */
.copyright {
	background-color: #fff;
	padding: 40px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.copyright img {
	margin-right: 20px;
}

.copyright small {
	font-size: 1.3rem;
	font-style: normal;
	font-weight: normal;
}

/* ===========================================================

	fadein

=========================================================== */
.js-fadein {
	opacity: 0;
	transform: scale(0.94, 0.94);
	transition: all 2000ms;
}

/* .title {
	opacity: 0;
	transform: scale(1.06,1.06);
	transition : all 2000ms;
} */
.js-scrollin {
	opacity: 1;
	transform: scale(1.0, 1.0);
}

.js-fadein__image {}

.js-fadin__image-wrap {
	position: relative;
	opacity: 0;
	-webkit-transition: all 1.2s ease-in-out;
	transition: all 1.2s ease-in-out;
}

.js-scrollin__image .js-fadin__image-wrap {
	opacity: 1;
}

.js-fadin__image-wrap::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	display: inline-block;
	width: 100%;
	height: calc(100% + 1px);
	background-color: rgba(255, 255, 255, 1.00);
	-webkit-transform: scale(1, 1) translate(0, 0);
	transform: scale(1, 1) translate(0, 0);
	-webkit-transition: all 1.2s ease-in-out;
	transition: all 1.2s ease-in-out;
}

.js-scrollin__image .js-fadin__image-wrap::before {
	left: 50%;
	-webkit-transform: scale(0, 1) translate(50%, 0);
	transform: scale(0, 1) translate(50%, 0);
}

.delay--1 .js-fadin__image-wrap::before {
	-webkit-transition: all 1.2s ease-in-out 1.0s;
	transition: all 1.2s ease-in-out 0.50s;
}

.delay--2 .js-fadin__image-wrap::before {
	-webkit-transition: all 1.2s ease-in-out 2.0s;
	transition: all 1.2s ease-in-out 1.0s;
}

/* ===========================================================

    table

=========================================================== */

.responsive-table {
	width: 90%;
	border: none;
	margin: 0 auto;
}

.responsive-table th,
.responsive-table td {
	text-align: left;
	vertical-align: middle;
	border-right: none;
	border-bottom: 1px solid #DCE5E0;
	padding: 27px 15px;
}

.responsive-table th {
	width: 20%;
	color: #999999;
	background-color: #fff;
}

@media screen and (max-width: 768px) {

	.responsive-table th,
	.responsive-table td {
		width: 100%;
		display: block;
	}

	.responsive-table th {
		border-bottom: none;
		padding: 15px 0 0;
	}

	.responsive-table td {
		padding: 0 0 15px;
	}
}