@charset "utf-8";


/* reset
----------------------------------------------- */

h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,main,figure,figcaption {
	display: block;
	margin: 0;
	padding: 0;
	font-weight: normal;
	border: 0;
	outline: 0;
	line-height: 1;
	list-style: none;
}
a {
	margin: 0;
	padding: 0;
	outline: none;
}
img {
	vertical-align: top;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-drag: none;
	-moz-user-drag: none;
	-ms-user-drag: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
::selection {
	color: #fff;
	background-color: #222;
}


/* html
----------------------------------------------- */

html {
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-print-color-adjust: exact;
}


/* body
----------------------------------------------- */

body {
	margin: 0;
	padding: 0;
	color: #222;
	font-family: 'Heebo', sans-serif;
	font-family: YakuHanJP, 'Noto Sans JP', "游ゴシック", "Yu Gothic", sans-serif;
	font-feature-settings: "palt";
	font-weight: 400;
	overflow-y: scroll;
}

/* disable */

.jsbody--disable {
	pointer-events: none;
}


/* a
----------------------------------------------- */

a {
	color: #222;
	text-decoration: none;
}


/* loading
----------------------------------------------- */

.loading {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	z-index: 4;
}
.loading__mask {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 1;
	will-change: transform;
}
.loading__progress {
	position: absolute;
	left: 40px;
	bottom: 40px;
	z-index: 1;
	will-change: transform;
}
.loading__icons {
	position: relative;
	width: 15px;
	height: 15px;
	z-index: 1;
	animation-name: loading;
	animation-duration: 1s;
	animation-iteration-count: infinite;
}
.loading__icon {
	position: absolute;
	width: 5px;
	height: 5px;
	border: 2px solid #222;
	box-sizing: border-box;
	z-index: 1;
}
.loading__icon:nth-child(1) {
	top: 0;
	left: 0;
	border-right: 0;
	border-bottom: 0;
}
.loading__icon:nth-child(2) {
	top: 0;
	right: 0;
	border-left: 0;
	border-bottom: 0;
	border-color: #ff0000;
}
.loading__icon:nth-child(3) {
	left: 0;
	bottom: 0;
	border-top: 0;
	border-right: 0;
	border-color: #ff0000;
}
.loading__icon:nth-child(4) {
	right: 0;
	bottom: 0;
	border-top: 0;
	border-left: 0;
}

/* start */

.js-loading-start .loading__mask {
	opacity: 0;
	transition-property: opacity;
	transition-duration: 0.5s;
	transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
}
.js-loading-start .loading__progress {
	opacity: 0;
	transform: scale(0.5);
	transition-property: opacity, transform;
	transition-duration: 0.25s;
	transition-delay: 0s;
}

/* end */

.js-loading-end {
	pointer-events: none;
	visibility: hidden;
}


/* wrapper
----------------------------------------------- */

.wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	z-index: 1;
}


/* header
----------------------------------------------- */

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	z-index: 5;
}
.header:after {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background-color: #ececec;
	z-index: 1;
}
.header__outer {
	margin: 0 50px;
}
.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
}
.header__logo {
}
.header__logo a {
	display: block;
	position: relative;
	width: 160px;
	height: 40px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	z-index: 1;
}
.header__logo a:before,
.header__logo a:after {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url(../img/common/simplex.svg);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 480px 40px;
	z-index: 1;
}
.header__logo a:before {
	opacity: 1;
}
.header__logo a:after {
	background-position: -160px 0;
	opacity: 0;
}

.header__tools {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 130px;
}
.header__language {
	width: 80px;
}
.header__language a {
	font-family: 'Heebo', sans-serif;
	font-size: 13px;
	letter-spacing: 0.075em;
}
.header__search {
	position: relative;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background-color: #222;
	cursor: pointer;
	z-index: 1;
}
.header__search:before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: -24px;
	bottom: 0;
	width: 1px;
	background-color: #e5e5e5;
	z-index: 1;
}
.header__search:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -6px 0 0 -6px;
	width: 12px;
	height: 12px;
	background-image: url(../img/common/ic_search.svg);
	background-position: -12px 0;
	background-repeat: no-repeat;
	background-size: 24px 12px;
	z-index: 1;
}
.header__search .menu,
.header__menu {
	display: none;
}

/* enhide */

.header__tools--enhide .header__language {
	pointer-events: none;
	visibility: hidden;
}
.header__tools--enhide .header__search:before {
	display: none;
}

/* enmode */

.header__tools--enmode .header__search {
	pointer-events: none;
	visibility: hidden;
}
.header__tools--enmode .header__language {
	text-align: right;
	order: 2;
}


/* compactfooter
----------------------------------------------- */

.compactfooter {
	display: none;
	padding: 70px 0 40px;
	text-align: center;
	background-color: #222;
	overflow: hidden;
}
.compactfooter__logo a {
	display: block;
	margin: auto;
	width: 200px;
	height: 50px;
	text-indent: 100%;
	white-space: nowrap;
	background-image: url(../img/common/simplex.svg);
	background-position: -400px 0;
	background-repeat: no-repeat;
	background-size: 600px 50px;
	overflow: hidden;
}
.compactfooter__copyright {
	margin: 65px 0 0;
	color: #d7d7d7;
	font-size: 12px;
	text-indent: 0.075em;
	letter-spacing: 0.075em;
}

/* current */

.current--sitemap .compactfooter {
	display: block;
}


/* footer
----------------------------------------------- */

.footer {
	background-color: #222;
	overflow: hidden;
}
.footer__outer {
	margin: 0 50px;
}
.footer__inner {
	margin: auto;
	max-width: 1170px;
}

/* hidden */

.current--sitemap .footer {
	display: none;
}


/* sitemap
----------------------------------------------- */

.sitemap {
	display: flex;
	padding: 54px 0 0;
	color: #fff;
}
.sitemap__main {
	width: 300px;
}
.sitemap__side {
	width: calc(100% - 300px);
}
.sitemap__columns {
	display: flex;
	justify-content: space-between;
	margin: 0 0 0 -30px;
}
.sitemap__column {
	margin: 0 0 0 30px;
	width: calc(25% - 30px);
}

.sitemap__logo {
	padding: 16px 0 0;
}
.sitemap__logo a {
	display: block;
	width: 200px;
	height: 50px;
	text-indent: 100%;
	white-space: nowrap;
	background-image: url(../img/common/simplex.svg);
	background-position: -400px 0;
	background-repeat: no-repeat;
	background-size: 600px 50px;
	overflow: hidden;
}
.sitemap__name {
	margin: 25px 0 0;
	font-size: 14px;
	letter-spacing: 0.075em;
}
.sitemap__address {
	margin: 25px 0 0;
	color: #d7d7d7;
	font-size: 13px;
	letter-spacing: 0.075em;
	line-height: 26px;
}
.sitemap__menu {
	border-bottom: 1px solid #333;
}
.sitemap__label {
	display: block;
	position: relative;
	padding: 16px 0 18px;
	color: #fff;
	font-size: 14px;
	letter-spacing: 0.075em;
	line-height: 19px;
	z-index: 1;
}
.sitemap__label:before {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background-color: #fff;
	z-index: 1;
	opacity: 0;
}
.sitemap__label[target="_blank"]:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	margin: -7px 0 0;
	width: 14px;
	height: 14px;
	background-image: url(../img/common/anchor_icon_blank.svg);
	background-position: -14px 0;
	background-repeat: no-repeat;
	background-size: 42px 14px;
	z-index: 1;
}
.sitemap__submenu {
	padding: 6px 0 0;
}
.sitemap__submenu li {
}
.sitemap__submenu li a {
	display: inline-block;
	position: relative;
	padding: 12px 0;
	color: #d7d7d7;
	font-size: 13px;
	letter-spacing: 0.075em;
	line-height: 18px;
	z-index: 1;
}
.sitemap__submenu li a:before {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	right: 0.075em;
	bottom: 8px;
	height: 1px;
	background-color: #d7d7d7;
	z-index: 1;
	opacity: 0;
}
.sitemap__submenu li a[target="_blank"]:after {
	display: inline-block;
	content: "";
	margin: -5px 0 0;
	width: 12px;
	height: 12px;
	background-image: url(../img/common/anchor_icon_blank.svg);
	background-position: -12px 0;
	background-repeat: no-repeat;
	background-size: 36px 12px;
	opacity: 0.6;
	z-index: 1;
}
.sitemap__submenu + .sitemap__menu {
	margin: 10px 0 0;
	border-top: 1px solid #333;
}


/* siteinfo
----------------------------------------------- */

.siteinfo {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 40px 0 0;
	padding: 30px 0;
	border-top: 1px solid #333;
}
.siteinfo__link {
	font-size: 0;
	margin: 0 0 0 -28px;
}
.siteinfo__link li {
	display: inline-block;
	margin: 0 0 0 28px;
}
.siteinfo__link li a {
	display: inline-block;
	position: relative;
	color: #fff;
	font-size: 14px;
	letter-spacing: 0.075em;
	z-index: 1;
}
.siteinfo__link li a:before {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	right: 0.075em;
	bottom: -5px;
	height: 1px;
	background-color: #fff;
	z-index: 1;
	opacity: 0;
}
.siteinfo__link li a[target="_blank"]:after {
	display: inline-block;
	content: "";
	margin: -5px 0 0;
	width: 12px;
	height: 12px;
	background-image: url(../img/common/anchor_icon_blank.svg);
	background-position: -12px 0;
	background-repeat: no-repeat;
	background-size: 36px 12px;
	z-index: 1;
}
.siteinfo__copy {
	color: #d7d7d7;
	font-size: 12px;
	letter-spacing: 0.075em;
}


/* tagsearch
----------------------------------------------- */

.tagsearch {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	z-index: 6;
}
.tagsearch__frame {
	background-color: #fff;
}
.tagsearch__outer {
	margin: 0 50px;
}
.tagsearch__inner {
	margin: auto;
	padding: 80px 0;
	max-width: 1170px;
}
.tagsearch__title {
	position: relative;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.075em;
	z-index: 1;
}
.tagsearch__columns {
	display: flex;
	justify-content: space-between;
	margin: 45px 0 0 -20px;
}
.tagsearch__column {
	margin: 0 0 0 20px;
	width: calc(33.33% - 20px);
}
.tagsearch__contents {
	margin: 50px 0 0;
}
.tagsearch__button {
	display: flex;
	justify-content: center;
	margin: 45px auto 0;
}
.tagsearch__button .button {
	margin: 0 30px;
	width: 330px;
}
.tagsearch__close {
	position: absolute;
	top: 50px;
	right: 50px;
	z-index: 1;
}

/* initial */

.tagsearch {
	pointer-events: none;
	visibility: hidden;
}
.tagsearch__frame {
	transform: translateY(-120%);
}
.tagsearch__title,
.tagsearch__columns,
.tagsearch__contents,
.tagsearch__button {
	transform: translateY(-50px);
}
.tagsearch__close {
	transform: translateY(-110px);
}

/* ready */

.tagsearch--ready {
	transition-property: visibility;
	transition-duration: 0s;
	transition-delay: 0.5s;
}
.tagsearch--ready .tagsearch__frame {
	transition-property: transform;
	transition-duration: 0.5s;
	transition-delay: 0s;
	transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
	will-change: transform;
}
.tagsearch--ready .tagsearch__title,
.tagsearch--ready .tagsearch__columns,
.tagsearch--ready .tagsearch__contents,
.tagsearch--ready .tagsearch__button,
.tagsearch--ready .tagsearch__close {
	transition-property: transform;
	transition-duration: 0.5s;
	transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
	will-change: transform;
}
.tagsearch--ready .tagsearch__title,
.tagsearch--ready .tagsearch__columns,
.tagsearch--ready .tagsearch__button,
.tagsearch--ready .tagsearch__contents {
	transition-duration: 0.85s;
}

/* open */

.tagsearch--open {
	pointer-events: auto;
	visibility: visible;
	transition-delay: 0s;
}
.tagsearch--open .tagsearch__frame {
	transform: translateY(0);
}
.tagsearch--open .tagsearch__title,
.tagsearch--open .tagsearch__columns,
.tagsearch--open .tagsearch__button,
.tagsearch--open .tagsearch__contents {
	transform: translateY(0);
}
.tagsearch--open .tagsearch__close {
	transform: translateY(0);
	transition-delay: 0.25s;
}


/* pagecoverbox
----------------------------------------------- */

.pagecoverbox {
	background-image: url(/assets/img/ir/irtop/cover_ir_pc.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.pagecoverbox__outer {
	margin: 0 50px;
}
.pagecoverbox__inner {
	margin: auto;
	align-items: center;
	max-width: 1170px;
	height: 400px;
}
.pagecoverbox__columns {
	display: flex;
	justify-content: space-between;
	padding: 110.8px 0;
}
.pagecoverbox__column:first-child {
	width: calc(57.26% - 40px);
	display: flex;
	align-items: center;
}
.pagecoverbox__column:last-child {
	width: 42.73%;
}
.pagecoverbox__button:last-child {
	margin: 20px 0 0;
}
.pagecoverbox__button .button__label {
	height: 76px;
}
.pagecoverbox__title {
    margin: 0px;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 0.05em;
	color: #ffffff;
}
/* hidden */

.current--contact .pagecoverbox,
.current--downloads .pagecoverbox,
.current--sitemap .pagecoverbox,
.current--error .pagecoverbox {
	display: none;
}


/* pageup
----------------------------------------------- */

.pageup {
	position: fixed;
	right: 0;
	bottom: 28px;
	z-index: 3;
}
.pageup__label {
	display: block;
	position: relative;
	padding: 0 15px 0 42px;
	height: 50px;
	color: #fff;
	font-size: 14px;
	text-indent: 0.075em;
	letter-spacing: 0.075em;
	line-height: 48px;
	border: 2px solid #222;
	border-top: none;
	border-radius: 0 0 5px 5px;
	background-color: #222;
	box-sizing: border-box;
	cursor: pointer;
	z-index: 1;
	transform: rotate(90deg);
	transform-origin: right top;
}
.pageup__label:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 15px;
	margin: -6px 0 0;
	width: 12px;
	height: 12px;
	background-image: url(../img/common/button_arrow.svg);
	background-position: -12px -12px;
	background-repeat: no-repeat;
	background-size: 48px 24px;
	z-index: 1;
}

/* initial */

.pageup {
	pointer-events: none;
	visibility: hidden;
	transform: translateX(100%);
}

/* ready */

.pageup--ready {
	transition-property: visibility, transform;
	transition-duration: 0s, 0.5s;
	transition-delay: 0.5s, 0s;
	transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
}

/* open */

.pageup--open {
	pointer-events: auto;
	visibility: visible;
	transform: translate(0);
	transition-delay: 0s;
	transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}


/* main
----------------------------------------------- */

.main {
	margin: 100px 0 0;
	word-break: break-word;
	overflow: hidden;
}


/* content
----------------------------------------------- */

.content {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.content__outer {
	position: relative;
	margin: 0 50px;
	z-index: 2;
}
.content__inner {
	margin: auto;
	max-width: 1170px;
}


/* breadcrumb
----------------------------------------------- */

.breadcrumb {
	position: relative;
	border-bottom: 1px solid #ececec;
	background-color: #fff;
	z-index: 4;
}
.breadcrumb__inner {
	margin: 0 50px;
}
.breadcrumb__list {
	margin: auto;
	padding: 10px 0;
	max-width: 1170px;
	font-size: 12px;
	letter-spacing: 0.05em;
	vertical-align: middle;
	line-height: 22px;
}
.breadcrumb__list a,
.breadcrumb__list span {
	color: #b5b5b5;
}
.breadcrumb__list a:after,
.breadcrumb__list span:after {
	display: inline-block;
	content: "";
	margin: 0 10px 2px 15px;
	width: 7px;
	height: 11px;
	vertical-align: middle;
	background-image: url(../img/common/breadcrumb_arrow.svg);
	background-repeat: no-repeat;
	background-size: 7px 11px;
}
.breadcrumb__list em {
	display: inline-block;
	font-style: normal;
}


/* localnav
----------------------------------------------- */

.localnav {
	background-color: #f3f3f3;
	background-image: url(../img/common/background.png);
}
.localnav__outer {
	margin: 0 50px;
}
.localnav__inner {
	margin: auto;
	padding: 60px 0;
	max-width: 1170px;
}
.localnav__label {
}
.localnav__label a,
.localnav__label span {
	display: inline-block;
	position: relative;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.075em;
	vertical-align: middle;
	z-index: 1;
}
.localnav__label a:before {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -12px;
	height: 2px;
	background-color: #222;
	z-index: 1;
	opacity: 0;
}
.localnav__label a:after {
	display: inline-block;
	content: "";
	margin: 0 0 5px;
	width: 12px;
	height: 12px;
	vertical-align: middle;
	background-image: url(../img/common/button_arrow.svg);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 48px 24px;
}
.localnav__lists {
	display: flex;
	flex-wrap: wrap;
	margin: 22px 0 0 -45px;
}
.localnav__list {
	margin: 0 0 0 45px;
	width: calc(33.33% - 45px);
}

/* linebutton */

.localnav__list .linebutton {
	border-color: #c4c4c4;
}
.localnav__list .linebutton__label {
	font-size: 18px;
	line-height: 28px;
}

/* active */

.localnav__list .js-currentpage-active {
	border-color: #222;
	pointer-events: none;
}


/* contents
----------------------------------------------- */

.contents {
	position: relative;
	z-index: 1;
}
.contents__outer {
	position: relative;
	margin: 0 50px;
	z-index: 2;
}
.contents__inner {
	margin: auto;
	padding: 0 0 130px;
	max-width: 1170px;
}

/* spacer */

.contents--spacer .contents__inner {
	padding-top: 100px;
}

/* tint */

.contents--tint {
	background-image: url(../img/common/background.png);
}


/* article
----------------------------------------------- */

.article {
	margin: auto;
	padding: 100px 0 0;
	max-width: 820px;
}
.article--fit {
	padding: 0;
}
.article > *:first-child > *:first-child {
	margin-top: 0;
}


/* detail
----------------------------------------------- */

.detail {
	margin: 0;
	padding: 0 50px;
	background-color: #fff;
	overflow: hidden;
}
.detail__inner {
	margin: auto;
	padding: 0 0 100px;
	max-width: 820px;
}
.detail__inner > *:first-child,
.detail__inner > *:first-child > *:first-child {
	margin-top: 0;
}

/* wide */

.detail--wide {
	padding: 0 100px;
}
.detail--wide .detail__inner {
	max-width: initial;
	max-width: 100%;
}


/* newsblock
----------------------------------------------- */

.newsblock {
	display: flex;
	justify-content: space-between;
}
.newsblock__column:first-child {
	width: 340px;
	order: 2;
}
.newsblock__column:last-child {
	width: calc(100% - 405px);
}
.newsblock__message {
	margin: 0 0 50px;
	font-size: 16px;
	letter-spacing: 0.075em;
	line-height: 1.6em;
}

/* archive */

.newsblock .archive {
	margin-top: 60px;
}


/* searchblock
----------------------------------------------- */

.searchblock {
	display: flex;
	justify-content: space-between;
}
.searchblock__column {
	position: relative;
	z-index: 1;
}
.searchblock__column:first-child {
	width: calc(100% - 405px);
}
.searchblock__column:last-child {
	width: 340px;
}
.searchblock__counter {
	position: absolute;
	top: -35px;
	right: 0;
	font-size: 15px;
	letter-spacing: 0.075em;
	z-index: 1;
}
.searchblock__page {
	margin: 62px 0 0;
}
.searchblock__header {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.075em;
}
.searchblock__searchmenus {
	padding: 5px 0 0;
}
.searchblock__searchmenu {
	margin: 40px 0 0;
}
.searchblock__searchmenu:last-child {
	margin: 60px 0 0;
}
.searchblock__reset {
	position: absolute;
	top: 4px;
	right: 0;
	z-index: 1;
}
.searchblock__reset button {
	margin: 0;
	padding: 0 0 2px;
	color: #222;
	font-size: 15px;
	text-indent: 0.075em;
	letter-spacing: 0.075em;
	line-height: 1;
	outline: none;
	border: none;
	border-bottom: 1px solid #222;
	border-radius: 0;
	background: transparent;
	cursor: pointer;
	-webkit-appearance: none;
}
.searchblock__search {
	margin: 55px 0 0;
}
.searchblock__items {
	display: flex;
	flex-wrap: wrap;
	margin: -45px 0 0 -45px;
}
.searchblock__item {
	margin: 45px 0 0 45px;
	width: calc(50% - 45px);
}
.searchblock__message {
	margin: 50px 0;
	font-size: 16px;
	letter-spacing: 0.075em;
	line-height: 1.6em;
}


/* sidetagsearch
----------------------------------------------- */

.sidetagsearch {
	display: none;
}


/* awardblock
----------------------------------------------- */

.awardblock {
}
.awardblock__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 50px 0 0 -80px;
}
.awardblock__list li {
	margin: 0 0 0 80px;
}
.awardblock__list li a {
	display: block;
}


/* linkblock
----------------------------------------------- */

.linkblock {
	padding: 25px 0 0;
}
.linkblock__list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 0 -45px;
}
.linkblock__list li {
	margin: 40px 0 0 45px;
	width: calc(33.33% - 45px);
}
.linkblock__list a {
	display: block;
	position: relative;
	padding: 0 0 50px;
	height: calc(100% - 50px);
	font-size: 16px;
	letter-spacing: 0.075em;
	line-height: 32px;
	border-bottom: 2px solid #ececec;
	z-index: 1;
}
.linkblock__list a:after {
	display: block;
	content: "";
	position: absolute;
	right: 0;
	bottom: 20px;
	width: 12px;
	height: 12px;
	background-image: url(../img/common/button_arrow.svg);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 48px 24px;
	z-index: 1;
}
.linkblock__list em {
	display: block;
	margin: 0 0 15px;
	font-size: 24px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.075em;
}



/* philosophyblock
----------------------------------------------- */

.philosophyblock {
	margin: -15px 0 0;
}
.philosophyblock__columns {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin: 100px 0 0;
	z-index: 1;
}
.philosophyblock__columns:after {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 100vw;
	margin: 0 0 0 -50vw;
	height: 1px;
	background-color: #ececec;
	z-index: -1;
}
.philosophyblock__column:first-child {
	width: 34.18%;
}
.philosophyblock__column:last-child {
	width: 64.95%;
}
.philosophyblock__list {
	padding: 15px 0 0;
}
.philosophyblock__list dt {
	margin: 25px 0 0;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.075em;
	line-height: 48px;
}
.philosophyblock__list dt em {
	display: block;
	margin: 8px 0 0;
	padding: 0 0 10px;
	font-size: 16px;
	font-style: normal;
	line-height: 1;
}
.philosophyblock__list dd {
	margin: 10px 0 0;
}

/* textline */

.philosophyblock__list .textline {
	line-height: 32px;
}


/* formblock
----------------------------------------------- */

.formblock {
	margin: auto;
	max-width: 820px;
	background-color: #fff;
	box-shadow: 0 0 15px rgba(0,0,0,0.10);
}
.formblock iframe {
}


/* errorpage
----------------------------------------------- */

.errorpage {
	padding: 80px 0 0;
}
.errorpage__label {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
}
.errorpage__title {
	margin: 15px 0 0;
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 50px;
}
.errorpage__text {
	margin: 35px 0 0;
	font-size: 16px;
	letter-spacing: 0.075em;
	line-height: 32px;
}


/* catch
----------------------------------------------- */

.catch {
}
.catch__subject {
}
.catch__textline {
}

/* textline */

.catch__textline .textline {
	margin: 30px 0 0;
	line-height: 34px;
}


/* fullsitemap
----------------------------------------------- */

.fullsitemap {
	margin: -80px 0 0;
}
.fullsitemap__global {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 0 -45px;
	padding: 40px 0 0;
}
.fullsitemap__global li {
	margin: 40px 0 0 45px;
	width: calc(33.33% - 45px);
}
.fullsitemap__global a,
.fullsitemap__global span {
	position: relative;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.075em;
	z-index: 1;
}
.fullsitemap__global a:before {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -5px;
	height: 2px;
	background-color: #222;
	z-index: 1;
	opacity: 0;
}
.fullsitemap__global a:after {
	display: inline-block;
	content: "";
	margin: 0 0 5px;
	width: 16px;
	height: 16px;
	vertical-align: middle;
	background-image: url(../img/common/button_arrow.svg);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 64px 32px;
}
.fullsitemap__global a[target="_blank"]:after {
	width: 16px;
	height: 16px;
	background-image: url(../img/common/anchor_icon_blank.svg);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 48px 16px;
}
.fullsitemap__local {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 0 -45px;
	padding: 10px 0 0;
}
.fullsitemap__local li {
	margin: 0 0 0 45px;
	width: calc(33.33% - 45px);
}
.fullsitemap__local .linebutton__label {
	height: 85px;
	font-size: 16px;
	font-weight: 400;
}

/* self */

.fullsitemap__local--self {
	padding: 40px 0 0;
}


/* overview
----------------------------------------------- */

.overview {
	background-image: url(../img/common/background.png);
}
.overview__outer {
	margin: 0 50px;
	padding: 100px 0;
}
.overview__inner {
	margin: auto;
	max-width: 1170px;
	background-color: #fff;
}
.overview__body {
	margin: 0 100px;
	padding: 100px 0;
}
.overview__body > *:first-child > *:first-child {
	margin-top: 0;
}


/* downloadblock
----------------------------------------------- */

.downloadblock {
}
.downloadblock__items {
	display: flex;
	flex-wrap: wrap;
	margin: -45px 0 0 -45px;
}
.downloadblock__item {
	margin: 45px 0 0 45px;
	width: calc(33.33% - 45px);
}


/* downloadform
----------------------------------------------- */

.downloadform {
	position: relative;
	margin: 0 0 -130px;
	z-index: 1;
}
.downloadform:after {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	right: -50%;
	bottom: 0;
	background-color: #fff;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	pointer-events: none;
	z-index: -1;
}
.downloadform__columns {
	display: flex;
}
.downloadform__column {
	padding: 0 0 60px;
	width: 50%;
}
.downloadform__main {
	margin: 0 65px 0 0;
	padding: 80px 0 0;
}
.downloadform__label {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.05em;
}
.downloadform__title {
	margin: 15px 0 0;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.075em;
	line-height: 48px;
}
.downloadform__image {
	margin: 45px 0 0;
	font-size: 0;
	text-align: center;
}
.downloadform__image img {
	margin: auto;
	max-width: 100%;
	max-height: 342px;
	width: auto;
	height: auto;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.downloadform__summary {
	margin: 45px 0 0;
	font-size: 16px;
	letter-spacing: 0.075em;
	line-height: 32px;
}
.downloadform__iframe {
	margin: 0 -65px 0 0;
}

/* message
----------------------------------------------- */

.message {
}
.message__header {
	position: relative;
	z-index: 1;
}
.message__image {
	margin: 0;
	font-size: 0;
}
.message__image img {
	width: 100%;
	height: auto;
}
.message__nameplate {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 35px 100px 30px;
	background-color: #fff;
	z-index: 1;
}
.message__position {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.075em;
	line-height: 22px;
}
.message__name {
	margin: 15px 0 0;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0.075em;
}
.message__body {
	margin: auto;
	max-width: 820px;
}
.message__body h2 {
	margin: 90px 0 0;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.075em;
	line-height: 48px;
}
.message__body p {
	margin: 25px 0 0;
	font-size: 16px;
	letter-spacing: 0.075em;
	line-height: 32px;
}
.message__signature {
	padding: 55px 0 0;
}
.message__signature p {
	margin: 10px 0 0;
	font-size: 16px;
	text-align: right;
	letter-spacing: 0.075em;
}
.message__signature img {
	width: 300px;
	height: auto;
}

/* margin */

.message__body h2 + p {
	margin: 45px 0 0;
}


/* reason
----------------------------------------------- */

.reason {
	margin: -10px 0 0;
}
.reason h2 {
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 0.075em;
	line-height: 64px;
}
.reason h3 {
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.075em;
	line-height: 48px;
}
.reason p {
	margin: 22px 0 0;
	font-size: 18px;
	letter-spacing: 0.075em;
	line-height: 36px;
}
.reason__columns {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin: 100px 0 0;
	z-index: 1;
}
.reason__column {
	position: relative;
	z-index: 1;
}
.reason__column:first-child {
	width: 37.6%;
}
.reason__column:last-child {
	padding: 25px 0 40px;
	width: 53.84%;
}
.reason__image {
	position: absolute;
	top: 0;
	left: calc(133% - 50vw);
	right: 0;
	bottom: 0;
	overflow: hidden;
	z-index: 1;
}
.reason__image span {
	display: block;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.reason__image--column01 span {
	background-image: url(../img/reason/reason_image01_pc.jpg);
}
.reason__image--column02 span {
	background-image: url(../img/reason/reason_image02_pc.jpg);
}
.reason__image--column03 span {
	background-image: url(../img/reason/reason_image03_pc.jpg);
}

/* reverse */

.reason__columns--reverse .reason__column:first-child {
	order: 2;
}
.reason__columns--reverse .reason__image {
	left: 0;
	right: calc(133% - 50vw);
}


/* support
----------------------------------------------- */

.support {
	padding: 100px 0 0;
}
.support__columns {
	display: flex;
	justify-content: space-between;
}
.support__column {
	position: relative;
	z-index: 1;
}
.support__column:first-child {
	width: 50%;
}
.support__column:last-child {
	width: 42.73%;
}

.support__images {
	position: relative;
	width: 100%;
	z-index: 1;
}
.support__images:after {
	display: block;
	content: "";
	position: absolute;
	top: 18%;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url(../img/reason/support_rotor.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	z-index: -1;
	transition-property: transform;
	transition-duration: 0.85s;
	transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
	will-change: transform;
}

.support__image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	z-index: 1;
}
.support__image:first-child {
	position: static;
}
.support__image img {
	width: 100%;
	height: auto;
}

.support__contents {
}
.support__content {
}

.support__list {
	margin: -40px 0 0;
	padding: 0 0 40px;
}
.support__list dt {
	margin: 40px 0 0;
	padding: 35px 0 0;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0.075em;
	line-height: 41px;
	border-top: 2px solid #ececec;
}
.support__list dd {
	margin: 30px 0 0;
	font-size: 16px;
	letter-spacing: 0.06em;
	line-height: 32px;
}
.support__list dd small {
	display: block;
	font-size: 14px;
	letter-spacing: 0.075em;
	line-height: 28px;
}

/* initial */

.support__image {
	transition-property: opacity;
	transition-duration: 0.5s;
	transition-timing-function: cubic-bezier(0.32, 0, 0.67, 0);
}

/* current */

.support__images--current0 .support__images:after {
	transform: rotate(0deg);
}
.support__images--current1 .support__images:after {
	transform: rotate(120deg);
}
.support__images--current2 .support__images:after {
	transform: rotate(240deg);
}

.support__image--current {
	opacity: 1;
	transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}

/* lock */

.js-support-images-lock {
	position: fixed;
	top: 150px;
	width: calc(1170px / 100 * 50);
}

/* unlock */

.js-support-images-unlock {
	position: absolute;
	top: auto;
	bottom: 0;
}


/* indexblock
----------------------------------------------- */

.indexblock {
}
/* sustop indexblock 20250305 */
.sustop .indexblock__items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 0 -45px;
	padding: 0;
}
.indexblock__items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 0 -45px;
	padding: 55px 0 0;
}
.indexblock__item {
	margin: 45px 0 0 45px;
	width: calc(33.33% - 45px);
}
.indexblock__item a {
	display: block;
	background-color: #fff;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.indexblock__image {
	margin: 0;
	font-size: 0;
}
.indexblock__image img {
	width: 100%;
	height: auto;
}
.indexblock__label {
	display: flex;
	align-items: center;
	position: relative;
	padding: 0 50px 0 25px;
	height: 65px;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.075em;
	line-height: 28px;
	z-index: 1;
}
.indexblock__label:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
	margin: -6px 0 0;
	width: 12px;
	height: 12px;
	background-image: url(../img/common/button_arrow.svg);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 48px 24px;
	z-index: 1;
}

/* icon */

a[target="_blank"] .indexblock__label:after,
a[href$=".pdf"] .indexblock__label:after {
	margin: -8px 0 0;
	width: 16px;
	height: 16px;
	background-size: 48px 16px;
}
a[target="_blank"] .indexblock__label:after {
	background-image: url(../img/common/anchor_icon_blank.svg);
}
a[href$=".pdf"] .indexblock__label:after {
	background-image: url(../img/common/anchor_icon_pdf.svg);
}

/* topbanner
----------------------------------------------- */

.top_banner {
	padding-top: 80px;
}
.top_banner__columns {
	display: flex;
    justify-content: space-between;
	margin-left: -15px;
}
.top_banner__column {
	width: 50%;
	margin: 0 0 0 15px;
}
.top_banner__image_pc {
	text-align: center;
}
.top_banner__image_pc a > img {
	max-width: 100%;
}
.top_banner__image_sp {
	display: none;
}

/* irreport 20240711
----------------------------------------------- */

.irreport .generalblock {
    margin-top: 120px;
}
.irreport .generalblock .indexblock + p {
  margin-top: 55px;
}
.irreport .indexblock__items {
  margin: 0 0 0 -5px;
}
.irreport .indexblock__item {
  margin: 5px 0 0 5px;
  width: calc(25% - 5px);
}
.irreport .generalblock figure {
  margin: 0;
}

/* pageanchor 20241211
----------------------------------------------- */
.pageanchor {
	position: relative;
	margin: 100px 0 100px;
	z-index: 1;
}
.pageanchor:after {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	bottom: 0;
	margin: 0 0 0 -50vw;
	width: 100vw;
	background-color: #f5f5f5;
	z-index: -1;
}
.pageanchor__list {
	display: flex;
    flex-wrap: wrap;
	align-items: center;
	padding: 20px 0;
	font-size: 0;
}
.pageanchor__list li {
	margin: 0 60px 0 0;
}
.pageanchor__list li a {
	display: block;
	position: relative;
	margin: 0 24px 0 0;
	padding: 8px 0;
	font-size: 16px;
	font-weight: 500;
	text-indent: 0.075em;
	letter-spacing: 0.05em;
	z-index: 1;
    background: none;
}
.pageanchor__list li a:before {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: -24px;
	margin: -6px 0 0;
	width: 12px;
	height: 12px;
	background-image: url(/assets/img/common/anchor_icon_arrow.svg);
	background-repeat: no-repeat;
	background-size: 12px 24px;
	z-index: 1;
}
.pageanchor__list li a:after {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background-color: #222;
	z-index: 1;
	visibility: hidden;
	opacity: 0;
	margin-bottom: -1px;
}
/* navanchor sustainability 20250304
----------------------------------------------- */
.navanchor {
    position: relative;
    margin: 50px 0 100px;
    z-index: 1;
}
.navanchor:after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    margin: 0 0 0 -50vw;
    width: 100vw;
    background-color: #f5f5f5;
    z-index: -1;
}
.navanchor__list {
    align-items: center;
    margin: 0 0 0 -60px;
    padding: 20px 0px;
}
.navanchor__list li {
    margin: 12px 0 0 60px;
}
.navanchor__list h3 {
    margin: 0 0 0 60px;
		font-size: 27px;
		font-weight: 700;
}
.navanchor__list li a {
    display: inline-block;
    position: relative;
    margin: 0 24px 0 0;
    padding: 5px 0;
    font-size: 16px;
    font-weight: 500;
    text-indent: 0.075em;
    letter-spacing: 0.05em;
    z-index: 1;
}
.navanchor__list li a:after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: #222;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
}
.navanchor__list li a:before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: -24px;
    margin: -6px 0 0;
    width: 12px;
    height: 12px;
    background-image: url(/assets/img/common/anchor_icon_arrow.svg);
    background-repeat: no-repeat;
    background-size: 12px 24px;
    z-index: 1;
}
/* member athletes
----------------------------------------------- */
.member {
	align-items: stretch;
  }
  .member__list {
	display: flex;
  }
  .member__list a {
	width: 100%;
  }

/* infobox 20250305
----------------------------------------------- */

.infobox__lists {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 0 -30px;
	padding: 15px 0 0;
}
.infobox__list {
	position: relative;
	margin: 30px 0 0 30px;
	width: calc(25% - 30px);
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	z-index: 1;
}
.infobox__list a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	padding: 25px;
	z-index: 1;
}
.infobox__label {
	font-size: 17px;
	font-weight: 700;
	text-indent: 0.075em;
	letter-spacing: 0.075em;
	line-height: 28px;
}
.infobox__base {
}
.infobox__base img {
	width: 100%;
	height: auto;
}
/* icon */

.infobox__list a:after {
	display: block;
	content: "";
	position: absolute;
	right: 30px;
	bottom: 30px;
	width: 12px;
	height: 12px;
	background-image: url(../img/common/button_arrow.svg);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 48px 24px;
	z-index: 1;
}
.infobox__list a[target="_blank"]:after,
.infobox__list a[href$=".pdf"]:after {
	width: 15px;
	height: 15px;
	background-image: url(../img/common/anchor_icon_blank.svg);
	background-size: 45px 15px;
}
.infobox__list a[href$=".pdf"]:after {
	background-image: url(../img/common/anchor_icon_pdf.svg);
}

/* sustopSection 20250305
----------------------------------------------- */

.sustopSection {
	margin-top: 130px;
}

.sustopSection_contents {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-top: 35px;
}

.sustopSection_contents_item {
	width: 30.5%;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	padding-bottom: 30px;
}

.sustopSection_contents_img {
	width: 100%;
	height: 240px;
}

.sustopSection_contents_environment .sustopSection_contents_img {
	background-image: url(/assets/img/sustainability/sustainability_image01.jpg);
	background-size: cover;
}

.sustopSection_contents_social .sustopSection_contents_img {
	background-image: url(/assets/img/sustainability/sustainability_image02.jpg);
	background-size: cover;
}

.sustopSection_contents_governance .sustopSection_contents_img {
	background-image: url(/assets/img/sustainability/sustainability_image03.jpg);
	background-size: cover;
}

.sustopSection_contents_ttl {
	display: block;
	border-bottom: 1px solid #ececec;
	margin: 0 25px;
}

.sustopSection_contents_ttl h3 {
	font-size: 17px;
	font-weight: 500;
	
	padding: 25px 0;
}

.sustopSection_contents_linkList {
	margin: 0 25px;
}

.sustopSection_contents_linkList_item a {
	display: block;
	font-size: 15px;
	padding: 20px 0;
	width: 100%;
}

.sustopSection_copy-box {
    position: relative;
    margin: 50px 0 100px;
    z-index: 1;
}

.sustopSection_copy-box:after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    margin: 0 0 0 -50vw;
    width: 100vw;
    background-color: #f5f5f5;
    z-index: -1;
}

.sustopSection_copy {
	padding: 35px 0;
	font-size: 20px;
	letter-spacing: 0.075em;
	line-height: 2.2em;
	font-weight: 700;
}


/* sustop__companyinfo 20250328
----------------------------------------------- */

.sustop__companyinfo {
	position: relative;
	z-index: 1;
}
.sustop__companyinfo__lists {
	display: flex;
	margin: 0 0 0 -45px;
}
.sustop__companyinfo__list {
	margin: 45px 0 0 45px;
}
.sustop__companyinfo__list a {
	display: block;
	position: relative;
	z-index: 1;
}
.sustop__companyinfo__header {
	position: absolute;
	left: 40px;
	right: 40px;
	bottom: 40px;
	color: #fff;
	z-index: 1;
}
.sustop__companyinfo__button {
	margin: 35px auto 0;
}
.sustop__companyinfo__image img {
	display: block;
	width: 100%;
	height: auto;
}
.sustop__companyinfo__image > a {
	position: absolute;
	left: 25%;
	top: 55%;
	transform: translateY(-50%) translateX(-50%);
	display: block;
}

/* sustop__message 20250328
----------------------------------------------- */

.sustop__message__image img {
	width: 100%;
	height: auto;
}
.sustop__message__nameplate{
	padding: 35px 70px 30px;
	background-color: #fff;
	z-index: 1;
}
.sustop__message__position {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.075em;
	line-height: 22px;
}
.sustop__message__name {
	margin: 15px 0 0;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0.075em;
}

.sustop__message__indexblock {
	display: none;
}

/* pc
----------------------------------------------- */

@media print, screen and (min-width:1000px) {


	/* body
	----------------------------------------------- */
	
	body {
	}


	/* img
	----------------------------------------------- */

	a > img {
		transition-property: opacity;
		transition-duration: 0.35s;
	}

	/* hover */

	a:hover > img {
		opacity: 0.6;
	}


	/* br
	----------------------------------------------- */

	.sp {
		display: none;
	}


	/* contentmask
	----------------------------------------------- */

	.contentmask {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: rgba(0,0,0,0.3);
		z-index: 4;
	}

	/* initial */

	.contentmask {
		pointer-events: none;
		visibility: hidden;
		opacity: 0;
	}

	/* ready */

	.contentmask--ready {
		transition-property: visibility, opacity;
		transition-duration: 0.5s;
		transition-delay: 0.75s, 0.25s; 
	}

	/* open */

	.contentmask--open {
		pointer-events: auto;
		visibility: visible;
		opacity: 1;
		transition-delay: 0s; 
	}


	/* header
	----------------------------------------------- */

	.header__search:after {
		transition-property: transform;
		transition-duration: 0.2s;
	}

	/* hover */

	.header__search:hover:after {
		transform: rotate(0.09deg) scale(1.15);
	}

	/* transparent */

	.header,
	.header:after,
	.header__language a,
	.header__search,
	.header__search:after {
		transition-property: color, background-color, background-position, opacity, transform;
		transition-duration: 0.5s;
		transition-delay: 0s;
		will-change: color, background-color, background-position, opacity, transform;
	}
	.header__logo a:before,
	.header__logo a:after {
		transition-property: color, background-color, opacity, transform;
		transition-duration: 0.5s;
		transition-delay: 0s;
		will-change: color, background-color, opacity, transform;
	}


	.body--transparent .header {
		background-color: transparent;
		transition-delay: 0.25s;
	}
	.body--transparent .header:after {
		background-color: transparent;
		transition-delay: 0.25s;
	}
	.body--transparent .header__logo a:before {
		opacity: 0;
		transition-delay: 0.25s;
	}
	.body--transparent .header__logo a:after {
		opacity: 1;
		transition-delay: 0.25s;
	}
	.body--transparent .header__language a {
		color: #fff;
		transition-delay: 0.25s;
	}
	.body--transparent .header__search {
		background-color: #fff;
		transition-delay: 0.25s;
	}
	.body--transparent .header__search:after {
		background-position: 0 0;
		transition-duration: 0.5s, 0.5s, 0.5s, 0.5s, 0.25s;
		transition-delay: 0.25s, 0.25s, 0.25s, 0.25s, 0s
	}
	.body--transparent .header__language .underlink:after {
		background-color: #fff;
	}


	/* sitemap
	----------------------------------------------- */

	a.sitemap__label:before,
	.sitemap__submenu li a:before {
		transition-property: opacity;
		transition-duration: 0.25s;
	}

	/* hover */

	a.sitemap__label:hover:before,
	.sitemap__submenu li a:hover:before {
		opacity: 1;
	}


	/* siteinfo
	----------------------------------------------- */

	.siteinfo__link li a:before {
		transition-property: opacity;
		transition-duration: 0.25s;
	}

	/* hover */

	.siteinfo__link li a:hover:before {
		opacity: 1;
	}


	/* nav
	----------------------------------------------- */

	.nav {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		height: 100vh;
		pointer-events: none;
		z-index: 5;
	}
	.nav__outer {
		margin: 0 200px 0 265px;
		pointer-events: auto;
	}
	.nav__inner {
	}
	.nav__items {
		display: flex;
	}
	.nav__item {
	}
	.nav__label {
		padding: 0 22px;
	}
	.nav__labeltext {
		display: block;
		position: relative;
		height: 100px;
		font-size: 15px;
		font-weight: 700;
		text-indent: 0.075em;
		letter-spacing: 0.075em;
		white-space: nowrap;
		line-height: 99px;
		cursor: pointer;
		z-index: 1;
	}
	.nav__labeltext:after {
		display: block;
		content: "";
		position: absolute;
		left: 1px;
		right: 2px;
		bottom: 29px;
		height: 3px;
		background-color: #ff0000;
		z-index: 1;
		opacity: 0;
		transition-property: opacity;
		transition-duration: 0.25s;
	}

	.nav__content {
	}
	.nav__base {
		position: absolute;
		top: 100px;
		left: 0;
		right: 0;
		bottom: 0;
		overflow: hidden;
		z-index: 2;
	}
	.nav__subnav {
		padding: 0 0 50px;
		background-color: #fff;
	}
	.nav__subnavinner {
		margin: auto;
		max-width: 1270px;
	}
	.nav__lists {
		display: flex;
		flex-wrap: wrap;
		margin: 0 50px 0 5px;
		padding: 10px 0 0;
	}
	.nav__list {
		margin: 15px 0 0 45px;
		width: calc(33.33% - 45px);
	}
	.nav__banners {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		margin: 0 50px 0 5px;
	}
	.nav__banner {
		margin: 40px 0 0 45px;
		width: calc(33.33% - 45px);
	}

	/* hover */

	.nav__item:hover .nav__labeltext:after {
		opacity: 1;
	}

	/* transparent */
	
	.nav__labeltext {
		transition-property: color, background-color, transform;
		transition-duration: 0.25s;
		transition-delay: 0s;
		will-change: color, background-color, transform;
	}

	.body--transparent .nav__labeltext {
		color: #fff;
		transition-delay: 0.25s;
	}
	.body--transparent .nav__labeltext:after {
		background-color: #fff;
		transition-delay: 0.25s, 0s;
	}

	/* initial */

	.nav {
		height: 0;
	}
	.nav__base {
		pointer-events: none;
		visibility: hidden;
	}
	.nav__subnav {
		transform: translateY(-100%);
	}
	.nav__subnavinner {
		transform: translateY(-50px);
	}

	/* ready */

	.nav--ready {
		transition-property: height;
		transition-duration: 0s;
		transition-delay: 0.5s;
	}
	.nav__item--ready .nav__base {
		transition-property: visibility;
		transition-duration: 0s;
		transition-delay: 0.5s;
	}
	.nav__item--ready .nav__subnav,
	.nav__item--ready .nav__subnavinner {
		transition-property: transform;
		transition-duration: 0.5s;
		transition-delay: 0s;
		transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
		transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
		will-change: transform;
	}
	.nav__item--ready .nav__subnavinner {
		transition-duration: 0.85s;
	}

	/* open */

	.nav--open {
		height: 100vh;
		transition-delay: 0s;
	}
	.nav__item--open .nav__base {
		z-index: 3;
		pointer-events: auto;
		visibility: visible;
		transition-delay: 0s;
	}
	.nav__item--open .nav__subnav,
	.nav__item--open .nav__subnavinner {
		transform: translateY(0);
	}

	/* current */

	.current--reason .nav__item--reason .nav__labeltext:after,
	.current--service .nav__item--service .nav__labeltext:after,
	.current--industries .nav__item--industries .nav__labeltext:after,
	.current--solution .nav__item--solution .nav__labeltext:after,
	.current--casestudy .nav__item--casestudy .nav__labeltext:after,
	.current--insight .nav__item--insight .nav__labeltext:after,
	.current--company .nav__item--company .nav__labeltext:after,
	.current--news .nav__item--news .nav__labeltext:after,
	.current--recruit .nav__item--recruit .nav__labeltext:after,
	.current--contact .nav__item--contact .nav__labeltext:after {
		opacity: 1;
	}


	/* tagsearch
	----------------------------------------------- */

	/* hover */

	.tagsearch__radio label:hover {
		color: #222;
		border-color: #222;
	}


	/* searchmenu
	----------------------------------------------- */

	/* hover */

	.searchmenu__radio label:hover {
		color: #222;
		border-color: #222;
	}


	/* pageup
	----------------------------------------------- */

	.pageup__label {
		transition-property: color, background-color;
		transition-duration: 0.5s;
	}

	/* hover */

	.pageup__label:hover {
		color: #222;
		background-color: #fff;
	}
	.pageup__label:hover:after {
		background-position: 0 -12px;
	}


	/* breadcrumb
	----------------------------------------------- */

	.breadcrumb__list a {
		position: relative;
		z-index: 1;
	}
	.breadcrumb__list a:before {
		display: block;
		content: "";
		position: absolute;
		left: 0;
		right: 32px;
		bottom: -1px;
		height: 1px;
		background-color: #222;
		z-index: 1;
		opacity: 0;
	}

	.breadcrumb__list a,
	.breadcrumb__list a:before {
		transition-property: color, opacity;
		transition-duration: 0.25s;
	}

	/* hover */

	.breadcrumb__list a:hover {
		color: #222;
	}
	.breadcrumb__list a:hover:before {
		opacity: 1;
	}


	/* localnav
	----------------------------------------------- */

	.localnav__label a:before {
		transition-property: opacity;
		transition-duration: 0.5s;
	}

	/* hover */

	.localnav__label a:hover:before {
		opacity: 1;
	}


	/* searchblock
	----------------------------------------------- */

	.searchblock__reset button:hover {
		opacity: 0.6;
		border-color: transparent;
	}


	/* fullsitemap
	----------------------------------------------- */

	.fullsitemap__global a:before {
		transition-property: opacity;
		transition-duration: 0.5s;
	}

	/* hover */

	.fullsitemap__global a:hover:before {
		opacity: 1;
	}


	/* linkblock
	----------------------------------------------- */

	.linkblock__list a {
		transition-property: border-color;
		transition-duration: 0.5s;
	}

	/* hover */

	.linkblock__list a:hover {
		border-color: #222;
	}


	/* indexblock
	----------------------------------------------- */

	.indexblock__item a {
		transition-property: transform, box-shadow;
		transition-duration: 0.5s;
		transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
		will-change: transform, box-shadow;
	}

	/* hover */

	.indexblock__item a:hover {
		transform: translateY(-10px);
		box-shadow: 0 10px 20px rgba(0,0,0,0.2);
		transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
	}

	/* pageanchor 20241211
	----------------------------------------------- */

	.pageanchor__list li a:after {
		transition-property: visibility, opacity;
		transition-duration: 0.5s;
		transition-delay: 0.5s, 0s;
	}
	.pageanchor__list li a:hover:after {
		visibility: visible;
		opacity: 1;
		transition-delay: 0s;
	}

	/* navanchor sustainability 20250304
	----------------------------------------------- */

	.navanchor__list li a:hover:after {
		visibility: visible;
		opacity: 1;
		transition-delay: 0s;
	  }
	.navanchor__list li a:after {
		transition-property: visibility, opacity;
		transition-duration: 0.5s;
		transition-delay: 0.5s, 0s;
	}

		/* infobox 20250305
	----------------------------------------------- */

	.infobox__list {
		transition-property: transform, box-shadow;
		transition-duration: 0.5s;
		transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
		will-change: transform, box-shadow;
	}

	/* hover */

	.infobox__list:hover {
		transform: translateY(-10px);
		box-shadow: 0 10px 20px rgba(0,0,0,0.2);
		transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
	}

	/* sustopSection 20250305
	----------------------------------------------- */

	.sustopSection_contents_ttl:hover {
		border-bottom: 1px solid #222;
		transition-duration: 0.5s;
	}

		/* sustop__companyinfo 20250328
	----------------------------------------------- */

	.sustop__companyinfo__list a {
		transition-property: transform, box-shadow;
		transition-duration: 0.5s;
		transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
		/*will-change: transform, box-shadow;*/
	}

	/* hover */

	.sustop__companyinfo__list a:hover {
		transform: translateY(calc(-50% - 10px)) translateX(-50%);
		box-shadow: 0 10px 20px rgba(0,0,0,0.2);
		transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
	}


	/* retina
	----------------------------------------------- */
	
	@media only screen and (-webkit-min-device-pixel-ratio: 2) { 
	}


}


/* tablet
----------------------------------------------- */

@media print, screen and (min-width:999px) and (max-width:1278px) {


	/* nav
	----------------------------------------------- */

	.nav__items {
		justify-content: space-between;
	}
	.nav__label {
		padding: 0 4px;
	}


	/* support
	----------------------------------------------- */

	/* lock */

	.js-support-images-lock {
		width: calc((100vw - 100px) / 100 * 50);
	}


}


/* mobile
----------------------------------------------- */

@media only screen and (max-width:999px) {


	/* body
	----------------------------------------------- */
	
	body {
	}


	/* br
	----------------------------------------------- */

	.pc {
		display: none;
	}


	/* loading
	----------------------------------------------- */

	.loading__logo {
		top: 15px;
		left: 20px;
		width: 120px;
		height: 30px;
		background-size: 360px 30px;
	}
	.loading__progress {
		left: 20px;
		bottom: 40px;
	}


	/* header
	----------------------------------------------- */

	.header {
		background-color: #fff;
		z-index: 6;
	}
	.header__outer {
		margin: 0;
	}
	.header__inner {
		height: 60px;
	}
	.header__logo {
		margin: 0 0 0 20px;
	}
	.header__logo a {
		width: 120px;
		height: 30px;
	}
	.header__logo a:before,
	.header__logo a:after {
		background-position: 0 0;
		background-size: 360px 30px;
	}
	.header__logo a:after {
		background-position: -120px 0;
	}

	.header__tools {
		width: 110px;
	}
	.header__language {
		display: none;
	}
	.header__search {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 55px;
		height: 60px;
		border-radius: 0;
		background-color: transparent;
	}
	.header__search:before {
		display: none;
	}
	.header__search:after {
		margin: -10px 0 0 -10px;
		width: 20px;
		height: 20px;
		background-position: 0 0;
		background-size: 40px 20px;
	}
	.header__search .menu {
		display: block;
		position: relative;
		z-index: 2;
	}
	.header__menu {
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		width: 55px;
		height: 60px;
		cursor: pointer;
		z-index: 1;
	}

	/* transparent */

	.header,
	.header:after {
		transition-property: color, background-color, background-position, opacity, transform;
		transition-duration: 0.5s;
		transition-delay: 0s;
		will-change: color, background-color, background-position, opacity, transform;
	}
	.header__logo a:before,
	.header__logo a:after {
		transition-property: color, background-color, opacity, transform;
		transition-duration: 0.5s;
		transition-delay: 0s;
		will-change: color, background-color, opacity, transform;
	}

	.body--transparent .header {
		background-color: transparent;
		transition-delay: 0.25s;
	}
	.body--transparent .header:after {
		background-color: transparent;
		transition-delay: 0.25s;
	}
	.body--transparent .header__logo a:before {
		opacity: 0;
		transition-delay: 0.25s;
	}
	.body--transparent .header__logo a:after {
		opacity: 1;
		transition-delay: 0.25s;
	}
	.body--transparent .header__search:after {
		background-position: -20px 0;
		transition-delay: 0.25s;
	}

	/* initial */

	.header__search {
		transition-property: background-color;
		transition-duration: 0.5s;
		transition-delay: 0.25s;
		will-change: background-color;
	}
	.header__search:after {
		transition-property: opacity, transform;
		transition-duration: 0.25s;
		transition-delay: 0.25s;
		will-change: background-color;
	}
	.header__search .menu {
		transform: translateY(-60px);
		transition-property: transform;
		transition-duration: 0.5s;
		transition-delay: 0s;
		transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
		will-change: transform;
	}
	.header__search .menu__icon:before,
	.header__search .menu__icon:after,
	.header__search .menu__bar {
		background-color: #222;
		transition-property: background-color;
		transition-duration: 0.5s;
		transition-delay: 0.25s;
	}
	.header__search .menu__label {
		color: #222;
		transition-property: color;
		transition-duration: 0.5s;
		transition-delay: 0.25s;
	}

	/* open */

	.header--open {
		background-color: #222;
	}
	.header--open:after {
		background-color: transparent;
	}
	.header--open .header__logo a:before {
		opacity: 0;
		transition-delay: 0.25s;
	}
	.header--open .header__logo a:after {
		opacity: 1;
		transition-delay: 0.25s;
	}
	.header--open .header__search:after {
		background-position: -20px 0;
	}

	.header__search--open {
		background-color: #fff;
		transition-delay: 0s;
	}
	.header__search--open:after {
		opacity: 0;
		transform: rotate(0.09deg) scale(0.5);
	}
	.header__search--open .menu {
		transform: translateY(0);
	}
	.header__search--open .menu__icon:before,
	.header__search--open .menu__icon:after,
	.header__search--open .menu__bar {
		background-color: #222 !important;
	}
	.header__search--open .menu__label {
		color: #222 !important;
	}


	/* footer
	----------------------------------------------- */

	.footer__outer {
		margin: 0 20px;
	}
	.footer__inner {
		max-width: initial;
	}


	/* compactfooter
	----------------------------------------------- */

	.compactfooter {
		padding: 45px 0 40px;
		text-align: left;
	}
	.compactfooter__logo {
		margin: 0 20px;
	}
	.compactfooter__logo a {
		margin: 0;
		width: 160px;
		height: 40px;
		background-position: -320px 0;
		background-size: 480px 40px;
	}
	.compactfooter__copyright {
		margin: 40px 20px 0;
	}


	/* sitemap
	----------------------------------------------- */

	.sitemap {
		display: block;
		padding: 0;
	}
	.sitemap__main {
		width: auto;
	}
	.sitemap__side {
		display: none;
	}
	.sitemap__logo {
		padding: 42px 0 0;
	}
	.sitemap__logo a {
		width: 160px;
		height: 40px;
		background-position: -320px 0;
		background-size: 480px 40px;
	}
	.sitemap__name {
		margin: 30px 0 0;
		font-size: 15px;
	}
	.sitemap__address {
		margin: 13px 0 0;
		font-size: 14px;
		line-height: 24px;
	}


	/* siteinfo
	----------------------------------------------- */

	.siteinfo {
		display: block;
		margin: 0;
		padding: 0 0 40px;
		border-top: none;
	}
	.siteinfo__link {
		margin: 0;
		padding: 15px 0 0;
	}
	.siteinfo__link li {
		display: block;
		margin: 24px 0 0;
	}
	.siteinfo__link li a {
		font-size: 13px;
	}
	.siteinfo__link li a:after {
	}
	.siteinfo__copy {
		margin: 40px 0 0;
	}
	

	/* nav
	----------------------------------------------- */

	.nav {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		overflow: hidden;
		z-index: 5;
	}
	.nav__frame {
		position: absolute;
		top: 60px;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #222;
		z-index: 1;
	}
	.nav__outer {
		width: 100%;
		height: 100%;
		overflow: auto;
	}
	.nav__inner {
		padding: 25px 0 0;
	}
	.nav__item {
		border-bottom: 1px solid #333;
	}
	.nav__label {
		cursor: pointer;
	}
	.nav__labeltext {
		display: block;
		position: relative;
		padding: 22px 50px 22px 20px;
		color: #fff;
		font-size: 16px;
		letter-spacing: 0.075em;
		line-height: 20px;
		z-index: 1;
	}
	.nav__arrow {
		display: block;
		position: absolute;
		top: 50%;
		right: 22px;
		margin: -4px 0 0;
		width: 8px;
		height: 8px;
		border: 2px solid #fff;
		border-top: 0;
		border-left: 0;
		pointer-events: none;
		z-index: 1;
		transform: rotate(-45deg);
	}
	.nav__labeltext[target="_blank"] .nav__arrow {
		right: 20px;
		margin: -8px 0 0;
		width: 16px;
		height: 16px;
		border: 0;
		background-image: url(../img/common/anchor_icon_blank.svg);
		background-position: -16px 0;
		background-repeat: no-repeat;
		background-size: 48px 16px;
		transform: none;
	}
	.nav__door {
		display: block;
		position: absolute;
		top: 50%;
		right: 20px;
		margin: -7px 0 0;
		width: 15px;
		height: 15px;
		pointer-events: none;
		z-index: 1;
		transition-property: transform;
		transition-duration: 0.25s;
	}
	.nav__door:before,
	.nav__door:after {
		display: block;
		content: "";
		position: absolute;
		background-color: #fff;
		z-index: 1;
	}
	.nav__door:before {
		top: 50%;
		left: 0;
		margin: -1px 0 0;
		width: 100%;
		height: 2px;
		transition-property: transform;
		transition-duration: 0.25s;
		transition-delay: 0.25s;
	}
	.nav__door:after {
		top: 0;
		left: 50%;
		margin: 0 0 0 -1px;
		width: 2px;
		height: 100%;
	}
	.nav__sidelinks {
		display: flex;
		margin: 0 0 0 -1px;
		border-bottom: 1px solid #333;
	}
	.nav__sidelink {
		width: calc(33.33% - 1px);
		border-left: 1px solid #333;
	}
	.nav__sidelinks--half .nav__sidelink {
		width: calc(50% - 1px);
	}
	.nav__sidelink a {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 75px;
		color: #fff;
		font-size: 12px;
		text-align: center;
		text-indent: 0.075em;
		letter-spacing: 0.075em;
	}
	.nav__sidelink a:before {
		display: inline-block;
		content: "";
		margin: 0 0 5px;
		width: 20px;
		height: 20px;
		background-image: url(../img/common/nav_icon.svg);
		background-repeat: no-repeat;
		background-size: 60px 20px;
	}
	.nav__sidelink--contact a:before {
		background-position: 0 0;
	}
	.nav__sidelink--downloads a:before {
		background-position: -20px 0;
	}
	.nav__sidelink--en a:before {
		background-position: -40px 0;
	}

	/* accordion */

	.js-accordion-sp .nav__labeltext {
		pointer-events: none;
	}

	/* slidedown */

	.nav__label.js-accordion-open .nav__door {
		transform: rotate(90deg);
	}
	.nav__label.js-accordion-open .nav__door:before {
		transform: scaleX(0);
	}

	/* linebutton */

	.nav__list .linebutton {
		border-bottom: none;
	}
	.nav__list .linebutton:before,
	.nav__list .linebutton:after {
		display: none;
	}
	.nav__list .linebutton__label {
		display: inline-block;
		margin: 0;
		padding: 15px 20px 15px 40px;
		height: auto;
		color: #b5b5b5;
		font-size: 14px;
		font-weight: 400;
		line-height: normal;
	}
	.nav__list .linebutton__label:after {
		display: inline-block;
		content: "";
		margin: 0 0 2px;
		width: 12px;
		height: 12px;
		vertical-align: middle;
	}
	.nav__list:last-child .linebutton__label {
		padding-bottom: 30px;
	}

	/* icon */

	.nav__list .linebutton[target="_blank"] .linebutton__label:after,
	.nav__list .linebutton[href$=".pdf"] .linebutton__label:after {
		background-position: -12px 0;
		background-repeat: no-repeat;
		background-size: 36px 12px;
		opacity: 0.6;
	}
	.nav__list .linebutton[target="_blank"] .linebutton__label:after {
		background-image: url(../img/common/anchor_icon_blank.svg);
	}
	.nav__list .linebutton[href$=".pdf"] .linebutton__label:after {
		background-image: url(../img/common/anchor_icon_pdf.svg);
	}

	/* initial */

	.nav {
		pointer-events: none;
		visibility: hidden;
	}
	.nav__frame {
		transform: translateY(-120%);
	}
	.nav__inner {
		transform: translateY(-50px);
	}

	/* pullready */

	.nav--pullready {
		transition-property: visibility;
		transition-duration: 0s;
		transition-delay: 0.5s;
		transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
	}
	.nav--pullready .nav__frame {
		transition-property: transform;
		transition-duration: 0.5s;
		transition-delay: 0s;
		transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
	}
	.nav--pullready .nav__inner {
		transition-property: transform;
		transition-duration: 0.85s;
		transition-delay: 0s;
		transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
	}

	/* pull */

	.nav--pull {
		pointer-events: auto;
		visibility: visible;
		transition-delay: 0s;
	}
	.nav--pull .nav__frame {
		transform: translateY(0);
	}
	.nav--pull .nav__inner {
		transform: translateY(0);
	}

	/* enhide */

	.nav__sidelinks--enhide .nav__sidelink--en {
		display: none;
	}
	.nav__sidelinks--enhide .nav__sidelink {
		width: calc(50% - 1px);
	}


	/* tagsearch
	----------------------------------------------- */

	.tagsearch {
		z-index: 5;
	}
	.tagsearch__frame {
		position: absolute;
		top: 60px;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 1;
	}
	.tagsearch__outer {
		margin: 0;
		width: 100%;
		height: 100%;
		overflow: auto;
	}
	.tagsearch__inner {
		margin: 0 20px;
		padding: 45px 0;
		max-width: initial;
	}
	.tagsearch__columns {
		display: block;
		margin: -20px 0 0;
	}
	.tagsearch__column {
		margin: 55px 0 0;
		width: auto;
	}
	.tagsearch__contents {
		margin: 55px 0 0;
	}
	.tagsearch__button {
		display: block;
		padding: 25px 0 0;
	}
	.tagsearch__button .button {
		margin: 20px auto 0;
		width: 220px;
	}
	.tagsearch__close {
		display: flex;
		justify-content: center;
		align-items: center;
		top: -60px;
		right: 55px;
		width: 55px;
		height: 60px;
		background-color: #fff;
		cursor: pointer;
		z-index: 1;
	}


	/* pagecoverbox
	----------------------------------------------- */

	.pagecoverbox {
		background-image: url(/assets/img/ir/irtop/cover_ir_sp.jpg);
	}
	.pagecoverbox__outer {
		margin: 0 20px;
	}
	.pagecoverbox__inner {
		max-width: initial;
		height: initial;
	}
	.pagecoverbox__columns {
		display: block;
		padding: 40px 0;
	}
	.pagecoverbox__column:first-child,
	.pagecoverbox__column:last-child {
		width: auto;
	}
	.pagecoverbox__button:first-child {
		margin: 40px 0 0;
	}
	.pagecoverbox__button:last-child {
		margin: 20px 0 0;
	}
	.pagecoverbox__button .button__label {
		height: 56px;
	}
	.pagecoverbox__title {
		font-size: 36px;
	}

	/* pageup
	----------------------------------------------- */

	.pageup {
		bottom: 20px;
	}
	.pageup__label {
		padding: 0 15px 0 37px;
		height: 40px;
		font-size: 11px;
		line-height: 38px;
	}
	.pageup__label:after {
		left: 15px;
	}


	/* main
	----------------------------------------------- */

	.main {
		margin: 60px 0 0;
	}


	/* content
	----------------------------------------------- */

	.content__outer {
		margin: 0 20px;
	}
	.content__inner {
		max-width: initial;
	}


	/* breadcrumb
	----------------------------------------------- */

	.breadcrumb__inner {
		margin: 0;
		max-width: initial;
		height: 32px;
		overflow: hidden;
		overflow-x: auto;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.breadcrumb__inner::-webkit-scrollbar {
		display:none;
	}
	.breadcrumb__list {
		padding: 0 20px;
		height: 40px;
		white-space: nowrap;
		line-height: 31px;
	}


	/* localnav
	----------------------------------------------- */

	.localnav__outer {
		margin: 0 20px;
	}
	.localnav__inner {
		padding: 40px 0;
		max-width: initial;
	}
	.localnav__label a,
	.localnav__label span {
		font-size: 23px;
	}
	.localnav__label a:after {
		margin: 0 0 5px;
	}
	.localnav__lists {
		display: block;
		margin: 18px 0 0;
	}
	.localnav__list {
		margin: 0;
		width: auto;
	}
	.localnav__list .linebutton__label {
		font-weight: 700;
	}


	/* contents
	----------------------------------------------- */

	.contents__outer {
		margin: 0 20px;
	}
	.contents__inner {
		padding: 0 0 100px;
		max-width: initial;
	}

	/* spacer */

	.contents--spacer .contents__inner {
		padding-top: 20px;
	}


	/* article
	----------------------------------------------- */

	.article {
		padding: 50px 0 0;
		max-width: initial;
	}
	.article--fit {
		padding: 0;
	}


	/* detail
	----------------------------------------------- */

	.detail {
		padding: 0 30px;
	}
	.detail__inner {
		padding: 0 0 40px;
		max-width: initial;
	}


	/* newsblock
	----------------------------------------------- */

	.newsblock {
		display: block;
	}
	.newsblock__column:first-child,
	.newsblock__column:last-child {
		width: auto;
	}
	.newsblock__column:first-child {
		padding: 14px 0 0;
	}
	.newsblock__column:last-child {
		padding: 40px 0 0;
	}
	.newsblock__message {
		margin: 0 0 40px;
	}

	/* archive */
	
	.newsblock .archive {
		margin-top: 40px;
	}


	/* searchblock
	----------------------------------------------- */

	.searchblock {
		display: block;
	}
	.searchblock__column:first-child,
	.searchblock__column:last-child {
		width: auto;
	}
	.searchblock__column:last-child {
		display: none;
	}
	.searchblock__counter {
		position: static;
		margin: 50px 0 0;
		font-size: 14px;
		text-align: right;
	}
	.searchblock__page {
		margin: 35px 0 0;
	}
	.searchblock__header {
		display: flex;
		align-items: center;
		position: relative;
		padding: 0 20px;
		height: 73px;
		font-size: 18px;
		border-bottom: 1px solid #ececec;
		box-sizing: border-box;
		z-index: 1;
	}
	.searchblock__searchmenus {
		padding: 10px 0 0;
	}
	.searchblock__searchmenu {
		margin: 50px 0 0;
	}
	.searchblock__searchmenu:last-child {
		margin: 50px 0 0;
	}
	.searchblock__reset {
		position: static;
		margin: 50px 0 0;
		text-align: center;
	}
	.searchblock__reset button {
		font-size: 14px;
	}
	.searchblock__search {
		margin: 0;
		padding: 30px 0;
		background-color: #f5f5f5;
	}
	.searchblock__search .button {
		margin: auto;
		width: 220px;
	}
	.searchblock__items {
		display: block;
		margin: 0;
		padding: 10px 0 0;
	}
	.searchblock__item {
		margin: 20px 0 0;
		width: auto;
	}
	.searchblock__message {
		margin: 45px 0;
	}
	.searchblock__searchopen {
		position: relative;
		padding: 0 20px;
		height: 60px;
		color: #fff;
		font-size: 14px;
		font-weight: 700;
		line-height: 59px;
		letter-spacing: 0.075em;
		background-color: #222;
		cursor: pointer;
		z-index: 1;
	}

	.searchblock__icon {
		display: block;
		position: absolute;
		top: 50%;
		margin: -7px 0 0;
		right: 20px;
		width: 15px;
		height: 15px;
		cursor: pointer;
		z-index: 2;
	}
	.searchblock__icon:before,
	.searchblock__icon:after {
		display: block;
		content: "";
		position: absolute;
		background-color: #fff;
		z-index: 1;
	}
	.searchblock__icon:before {
		top: 0;
		left: 50%;
		bottom: 0;
		margin: 0 0 0 -1px;
		width: 2px;
	}
	.searchblock__icon:after {
		top: 50%;
		left: 0;
		right: 0;
		margin: -1px 0 0;
		height: 2px;
	}

	.searchblock__icon--plus:before,
	.searchblock__icon--plus:after {
		background-color: #222;
	}
	.searchblock__icon--plus:before {
		transform: scaleY(0);
	}


	/* sidetagsearch
	----------------------------------------------- */

	.sidetagsearch {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #fff;
		z-index: 6;
	}
	.sidetagsearch .searchblock__header,
	.sidetagsearch .searchblock__inner,
	.sidetagsearch .searchblock__search {
		position: absolute;
		left: 0;
		right: 0;
		z-index: 2;
	}
	.sidetagsearch .searchblock__header {
		top: 0;
	}
	.sidetagsearch .searchblock__inner {
		padding: 0 20px 50px;
		top: 74px;
		bottom: 110px;
		overflow: auto;
	}
	.sidetagsearch .searchblock__search {
		bottom: 0;
	}

	/* initial */

	.sidetagsearch {
		pointer-events: none;
		visibility: hidden;
		opacity: 0;
		transform: scale(0.95);
	}

	/* ready */

	.js-sidetagsearch-ready {
		transition-property: visibility, opacity, transform;
		transition-duration: 0s, 0.5s, 0.5s;
		transition-delay: 0.5s, 0s, 0s;
		transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
		will-change: opacity, transform;
	}

	/* open */

	.js-sidetagsearch-open {
		pointer-events: auto;
		visibility: visible;
		opacity: 1;
		transform: scale(1);
		transition-delay: 0s;
	}


	/* awardblock
	----------------------------------------------- */

	.awardblock__list {
		display: block;
		margin: 0;
	}
	.awardblock__list li {
		margin: 50px auto 0;
		max-width: 236px;
	}
	.awardblock__list img {
		width: 100%;
		height: auto;
	}


	/* linkblock
	----------------------------------------------- */

	.linkblock {
		padding: 0;
	}
	.linkblock__list {
		display: block;
		margin: -5px 0 0;
	}
	.linkblock__list li {
		margin: 35px 0 0;
		width: auto;
	}
	.linkblock__list a {
		padding: 0 0 40px;
		height: auto;
	}
	.linkblock__list a:after {
		bottom: 20px;
	}
	.linkblock__list em {
		margin: 0 0 13px;
		font-size: 18px;
	}


	/* philosophyblock
	----------------------------------------------- */

	.philosophyblock {
		margin: 0;
	}
	.philosophyblock__columns {
		display: block;
		margin: 80px 0 0;
	}
	.philosophyblock__column:first-child,
	.philosophyblock__column:last-child {
		width: auto;
	}
	.philosophyblock__list dt {
		font-size: 28px;
		line-height: 38px;
	}
	.philosophyblock__list dt em {
		font-size: 14px;
	}
	.philosophyblock__list dd {
		margin: 20px 0 0;
	}


	/* formblock
	----------------------------------------------- */

	.formblock {
		max-width: initial;
	}


	/* errorpage
	----------------------------------------------- */

	.errorpage {
		padding: 60px 0 0;
	}
	.errorpage__title {
		margin: 15px 0 0;
		font-size: 23px;
		line-height: 37px;
	}
	.errorpage__text {
		margin: 25px 0 0;
	}


	/* catch
	----------------------------------------------- */

	.catch__textline {
	}

	/* textline */

	.catch__textline .textline {
		margin: 20px 0 0;
		line-height: 32px;
	}


	/* fullsitemap
	----------------------------------------------- */

	.fullsitemap {
		margin: -60px 0 0;
	}
	.fullsitemap__global {
		display: block;
		margin: 0;
		padding: 0 0 0;
	}
	.fullsitemap__global li {
		margin: 60px 0 0;
		width: auto;
	}
	.fullsitemap__global a,
	.fullsitemap__global span {
		font-size: 23px;
	}
	.fullsitemap__global a:after {
		margin: 0 0 5px;
	}
	.fullsitemap__local {
		display: block;
		margin: 0;
		padding: 10px 0 0;
	}
	.fullsitemap__local li {
		margin: 0;
		width: auto;
	}
	.fullsitemap__local .linebutton__label {
		height: 70px;
	}
	
	/* self */
	
	.fullsitemap__local--self {
		padding: 30px 0 0;
	}


	/* overview
	----------------------------------------------- */

	.overview__outer {
		margin: 0 20px;
		padding: 40px 0;
	}
	.overview__inner {
		max-width: initial;
	}
	.overview__body {
		margin: 0 30px;
		padding: 50px 0 50px;
	}


	/* downloadblock
	----------------------------------------------- */

	.downloadblock__items {
		display: block;
		margin: -10px 0 0;
	}
	.downloadblock__item {
		margin: 20px 0 0;
		width: auto;
	}


	/* downloadform
	----------------------------------------------- */

	.downloadform {
		margin: 0;
	}
	.downloadform:after {
		display: none;
	}
	.downloadform__columns {
		display: block;
	}
	.downloadform__column {
		padding: 0;
		width: auto;
	}
	.downloadform__column:last-child {
		margin: 45px 0 0;
		background-color: #fff;
		box-shadow: 0 0 15px rgba(0,0,0,0.1);
	}
	.downloadform__main {
		margin: 0;
		padding: 60px 0 0;
	}
	.downloadform__title {
		margin: 15px 0 0;
		font-size: 23px;
		letter-spacing: 0.055em;
		line-height: 36px;
	}
	.downloadform__image {
		margin: 25px 0 0;
	}
	.downloadform__summary {
		margin: 25px 0 0;
		font-size: 14px;
		line-height: 28px;
	}
	.downloadform__iframe {
		margin: 0;
	}


	/* message
	----------------------------------------------- */

	.message {
		margin: 20px 0 0;
	}
	.message__header {
		margin: 0 -20px;
	}
	.message__nameplate {
		padding: 15px 20px 0;
	}
	.message__name {
		margin: 10px 0 0;
		font-size: 20px;
	}
	.message__body {
		max-width: initial;
	}
	.message__body h2 {
		margin: 40px 0 0;
		font-size: 23px;
		line-height: 36px;
	}
	.message__body p {
		margin: 25px 0 0;
	}
	.message__signature {
		padding: 35px 0 0;
	}
	.message__signature p {
		margin: 12px 0 0;
	}
	.message__signature img {
		width: 224px;
	}

	/* margin */

	.message__body h2 + p {
		margin: 30px 0 0;
	}


	/* reason
	----------------------------------------------- */

	.reason {
		margin: 0;
	}
	.reason h2 {
		font-size: 23px;
		line-height: 36px;
	}
	.reason h3 {
		margin: 35px 0 0;
		font-size: 23px;
		line-height: 36px;
	}
	.reason p {
		font-size: 16px;
		line-height: 32px;
	}
	.reason__columns {
		display: block;
		margin: 80px 0 0;
	}
	.reason__column:first-child,
	.reason__column:last-child {
		padding: 0;
		width: auto;
	}
	.reason__image {
		position: static;
		margin: 0 -20px;
		height: 67vw;
	}
	.reason__image--column01 span {
		background-image: url(../img/reason/reason_image01_sp.jpg);
	}
	.reason__image--column02 span {
		background-image: url(../img/reason/reason_image02_sp.jpg);
	}
	.reason__image--column03 span {
		background-image: url(../img/reason/reason_image03_sp.jpg);
	}


	/* support
	----------------------------------------------- */

	.support {
		margin: 35px 0 0;
		padding: 0 0 25px;
	}
	.support__image {
		position: static;
		opacity: 1;
	}
	.support__columns {
		display: block;
	}
	.support__column:first-child,
	.support__column:last-child {
		width: auto;
	}
	.support__content {
		display: block;
		height: auto;
	}
	.support__list {
		margin: 0;
		padding: 10px 0 0;
		border-bottom: none;
	}
	.support__list dt {
		margin: 35px 0 0;
		padding: 20px 0 0;
		font-size: 18px;
		line-height: 28px;
	}
	.support__list dd {
		margin: 10px 0 0;
		letter-spacing: 0.075em;
	}


	/* indexblock
	----------------------------------------------- */
	/* sustop indexblock 20250305 */
	.sustop .indexblock__items {
		display: block;
		margin: 0;
		padding: 30px 0 0;
	}
	.indexblock__items {
		display: block;
		margin: 0;
		padding: 30px 0 0;
	}
	.indexblock__item {
		margin: 30px 0 0;
		width: auto;
	}
	.indexblock__label {
		padding: 0 50px 0 20px;
		height: 60px;
	}
	.indexblock__label:after {
		right: 20px;
	}

	/* topbanner
	----------------------------------------------- */

	.top_banner {
		padding: 80px 0 80px;
	}
	.top_banner__columns {
		display: block;
		justify-content: space-between;
		margin-left: 0px;
	}
	.top_banner__column {
		width: auto;
		margin: 15px 0 0;
	}
	.top_banner__image_pc {
		display: none;
	}
	.top_banner__image_sp{
		display: block;
		margin: 0 auto;
		max-width: 100%;
    	height: auto;
	}

	/* irreport 20240711
	----------------------------------------------- */

	.irreport .generalblock {
	  margin-top: 80px;
	}
	.irreport .generalblock .indexblock + p {
	  margin-top: 30px;
	}
	.irreport .indexblock__items {
	  display: flex;
	}
	.irreport .indexblock__item {
	  margin: 5px 0 0 5px;
	  width: calc(50% - 5px);
	}

	/* pageanchor 20241211
	----------------------------------------------- */
	.pageanchor {
		margin-bottom: 80px;
	}
	.pageanchor__list {
		justify-content: center;
		margin: 0 0 0 -40px;
		/*height: 75px;*/
	}
	.pageanchor__list li {
		margin: 0 0 0 40px;
	}
	.pageanchor__list li a:before {
		right: -24px;
		margin: -6px 0 0;
		width: 12px;
		height: 12px;
		background-size: 12px 24px;
	}

	/* navanchor sustainability 20250304
	----------------------------------------------- */

	.navanchor {
	margin: 15px 0 80px;
	}
	.navanchor__list {
			justify-content: center;
			margin: 0 0 0 -40px;
	}
	.navanchor__list li, .navanchor__list h3{
			margin: 0 0 0 40px;
			font-size: 23px;
	}
	.navanchor__list li:first-of-type {
			margin: 10px 0 0 40px;
	}
	.navanchor__list li a {
			padding: 12px 0;
	}
	.navanchor__list li a:before {
			right: -24px;
			margin: -6px 0 0;
			width: 12px;
			height: 12px;
			background-size: 12px 24px;
	}

	/* infobox 20250305
	----------------------------------------------- */

	.infobox__lists {
		display: block;
		margin: 0;
		padding: 15px 0 0;
	}
	.infobox__list {
		margin: 20px 0 0;
		width: auto;
	}
	.infobox__list a {
		justify-content: flex-start;
		position: relative;
		height: 80px;
	}
	.infobox__label {
		padding: 0 40px 0 20px;
		font-size: 14px;
		line-height: 17px;
	}
	.infobox__base {
		display: none;
	}

	/* icon */

	.infobox__list a:after {
		top: 50%;
		right: 20px;
		bottom: auto;
		margin: -6px 0 0;
	}
	.infobox__list a[target="_blank"]:after,
	.infobox__list a[href$=".pdf"]:after {
		margin: -7px 0 0;
	}

	/* sustopSection 20250305
	----------------------------------------------- */

	.sustopSection {
		margin-top: 50px;
	}

	.sustopSection_contents {
		flex-wrap: wrap;
		margin-top: 35px;
	}
	
	.sustopSection_contents_item {
		width: 48.6%;
	}

	.sustopSection_contents_item:nth-child(n+3) {
		margin-top: 30px;
	}

	.sustopSection_copy {
		padding: 35px 0;
		font-size: 16px;
		line-height: 26px;
		letter-spacing: 0.075em;
		font-weight: 700;
	}

	/* sustop__companyinfo 20250328
	----------------------------------------------- */

	.sustop__companyinfo:after {
		display: none;
	}
	.sustop__companyinfo__lists {
		display: block;
		margin: auto;
		/*padding: 50px 0 0;*/
	}
	.sustop__companyinfo__list {
		margin: 30px 0 0;
		width: auto;
	}
	.sustop__companyinfo__button {
		margin: 10px auto 0;
	}
	.sustop__companyinfo__image > a{
		left: 20px;
		top:initial;
		bottom: 20px;
		transform: initial;
		width: 45%;
	}

	/* sustop__message 20250328
	----------------------------------------------- */
	.sustop__message__nameplate {
		padding: 15px 20px;
	}
	.sustop__message__name {
		margin: 10px 0 0;
		font-size: 15px;
	}
	.sustop__message__position {
		font-size: 9px;
	}

}


/* tablet
----------------------------------------------- */

@media screen and (min-width:641px) and (max-width: 999px) {


	/* br
	----------------------------------------------- */

	.pc {
		display: block;
	}
	.sp {
		display: none;
	}


	/* nav
	----------------------------------------------- */

	.nav__item--solution,
	.nav__item--casestudy,
	.nav__item--insight {
		display: block;
	}

	.nav__sidelinks {
		display: flex;
	}

	.nav__item--contact {
		display: none;
	}


	/* pagecoverbox
	----------------------------------------------- */

	.pagecoverbox {
		background-image: url(/assets/img/ir/irtop/cover_ir_sp.jpg);
	}
	.pagecoverbox__inner {
		height: initial;
	}
	.pagecoverbox__columns {
		display: flex;
	}
	.pagecoverbox__column:first-child,
	.pagecoverbox__column:last-child {
		width: 50%;
	}
	.pagecoverbox__button:first-child {
		margin: 0;
	}
	.pagecoverbox__button:last-child {
		margin: 20px 0 0;
	}
	.pagecoverbox__title {
		font-size: 36px;
    }


	/* breadcrumb
	----------------------------------------------- */

	.breadcrumb__inner {
		margin: 0 20px;
		height: auto;
	}
	.breadcrumb__list {
		padding: 10px 0;
		height: auto;
		white-space: normal;
		line-height: 22px;
	}


	/* localnav
	----------------------------------------------- */

	.localnav__lists {
		display: flex;
		margin: 18px 0 0 -20px;
	}
	.localnav__list {
		margin: 0 0 0 20px;
		width: calc(50% - 20px);
	}


	/* searchblock
	----------------------------------------------- */

	.searchblock__searchopen.sp {
		display: block;
	}
	.searchblock__items {
		display: flex;
		margin: 0 0 0 -20px;
	}
	.searchblock__item {
		margin: 20px 0 0 20px;
		width: calc(50% - 20px);
	}


	/* awardblock
	----------------------------------------------- */

	.awardblock__list {
		display: flex;
		margin: 0 0 0 -20px;
	}
	.awardblock__list li {
		margin: 50px 0 0 20px;
	}


	/* linkblock
	----------------------------------------------- */

	.linkblock__list {
		display: flex;
		margin-left: -20px;
	}
	.linkblock__list li {
		margin-left: 20px;
		width: calc(50% - 20px);
	}
	.linkblock__list a {
		height: calc(100% - 40px);
	}


	/* philosophyblock
	----------------------------------------------- */

	.philosophyblock__columns {
		display: flex;
	}
	.philosophyblock__column:first-child {
		width: 250px;
	}
	.philosophyblock__column:last-child {
		width: calc(100% - 290px);
	}


	/* fullsitemap
	----------------------------------------------- */

	.fullsitemap__global {
		display: flex;
		margin: 0 0 0 -20px;
	}
	.fullsitemap__global li {
		margin: 60px 0 0 20px;
		width: calc(50% - 20px);
	}
	.fullsitemap__local {
		display: flex;
		margin: 0 0 0 -20px;
	}
	.fullsitemap__local li {
		margin: 0 0 0 20px;
		width: calc(50% - 20px);
	}


	/* downloadblock
	----------------------------------------------- */

	.downloadblock__items {
		display: flex;
		margin-left: -20px;
	}
	.downloadblock__item {
		margin: 20px 0 0 20px;
		width: calc(50% - 20px);
	}


	/* support
	----------------------------------------------- */

	.support__image {
		display: block;
		margin: auto;
		max-width: 375px;
	}
	.support__contents.pc {
		display: none;
	}


	/* indexblock
	----------------------------------------------- */

	.indexblock__items {
		display: flex;
		margin: 0 0 0 -20px;
		padding: 30px 0 0;
	}
	.indexblock__item {
		margin: 30px 0 0 20px;
		width: calc(50% - 20px);
	}

	/* irreport 20240711
	----------------------------------------------- */
	
	.irreport .indexblock__item {
	  margin: 5px 0 0 5px;
	  width: calc(50% - 5px);
	}

	/* infobox 20250305
	----------------------------------------------- */

	.infobox__lists {
		display: flex;
		margin: 0 0 0 -20px;
		padding: 15px 0 0;
	}
	.infobox__list {
		margin: 20px 0 0 20px;
		width: calc(50% - 20px);
	}

		/* sustop__message 20250328
	----------------------------------------------- */

	.sustop__message__nameplate {
		padding: 25px 30px;
	}
	.sustop__message__name {
		margin: 10px 0 0;
		font-size: 15px;
	}
	.sustop__message__position {
		font-size: 14px;
		font-weight: 700;
		letter-spacing: 0.075em;
		line-height: 22px;
	}

}


@media screen and (max-width: 640px) {

	/* sustopSection 20250305
	----------------------------------------------- */
	.sustopSection_contents {
		display: block;
	}
	
	.sustopSection_contents_item {
		width: 100%;
		padding: 0 0 30px;
	}
	
	.sustopSection_contents_item:nth-child(n+2) {
		margin-top: 20px;
	}
	
	.sustopSection_contents_img {
		height: 250px;
	}

	/* sustop__message 20250328
	----------------------------------------------- */
	.sustop__companyinfo {
		display: none!important;
	}
	.sustop__message__indexblock {
		display: block;
	}
	.sustop__message__indexblock > .indexblock__items {
		padding: initial;
	}
}


/* keyframes
----------------------------------------------- */

@keyframes loading {
	0% {
		transform: scale(1) rotate(0deg);
	}
	50% {
		transform: scale(0.8) rotate(180deg);
	}
	100% {
		transform: scale(1) rotate(360deg);
	}
}
