@charset "UTF-8";
/*----------
	lp 既存パーツ上書き用
----------*/
html.is-locked {
	position: absolute;
	overflow: hidden;
}

header {
	left: 0;
	width: 100%;
	height: 80px;
	margin: 0;
}

footer {
	text-align: left;
}

.wrap {
	padding-top: 0;
}

/*----------
	main
----------*/
.l-main {
	padding: 0 30px;
	overflow-x: hidden;
}
.l-main__inner {
	width: 100%;
}
@media (min-width: 768px), print {
	.l-main {
		padding: 0 40px;
	}
	.l-main__inner {
		width: 1200px;
		margin: 0 auto;
	}
}
@media (min-width: 768px) and (max-width: 1280px), print {
	.l-main {
		width: 1280px;
		overflow-x: hidden;
	}
	.l-main__inner {
		width: 1200px;
	}
}
@media (min-width: 1281px), print {
	.l-main {
		width: 100vw;
		overflow-x: hidden;
	}
}

.l-breadcrumb {
	font-family: Verdana, Arial, Helvetica, "Noto Sans JP", "ヒラギノ角ゴシック", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Hiragino Sans, "メイリオ", Meiryo, sans-serif;
	letter-spacing: 0;
	padding: 15px 0;
	width: 100%;
}
.l-breadcrumb__inner {
	overflow-x: scroll;
	font-size: 1.1rem;
	font-size: 11px;
	line-height: 1.2;
}
.l-breadcrumb__inner::-webkit-scrollbar {
	display: none;
}
.l-breadcrumb__list {
	display: inline-flex;
	flex-wrap: nowrap;
	white-space: nowrap;
	word-break: keep-all;
	font-size: 1.1rem;
	font-size: 11px;
	line-height: 1.2;
}
.l-breadcrumb__list > li {
	display: block;
}
.l-breadcrumb__list > li > a {
	text-decoration: none;
	color: #666;
	font-size: 11px;
}
.l-breadcrumb__list > li + li::before {
	content: ">";
	display: inline-block;
	margin: 0 8px;
	font-size: 11px;
}
.l-breadcrumb__list > li:last-child > a {
	pointer-events: none;
	font-weight: 700;
	color: #666;
}
@media (max-width: 767px) {
	.l-breadcrumb__inner {
		width: auto;
		margin-left: auto;
		overflow-x: scroll;
	}
}
@media (min-width: 768px), print {
	.l-breadcrumb {
		padding: 28px 0;
	}
	.l-breadcrumb__inner {
		text-align: right;
	}
	.l-breadcrumb__list {
		white-space: normal;
		font-size: 1.2rem;
	}
	.l-breadcrumb__list > li {
		display: inline;
	}
	.l-breadcrumb__list > li > a {
		transition: all 0.3s;
	}
	.l-breadcrumb__list > li > a:hover {
		color: #1F79B9;
	}
}

/*----------
	icon
----------*/
.c-icon {
	display: inline-block;
	position: relative;
	line-height: 1;
}

.c-icon--blank {
	width: 12px;
	height: 12px;
}

.c-icon--blank::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 12px;
	height: 12px;
	content: "";
	background: url(/en/assets/img/common/icon_blank.svg) no-repeat center center/contain;
}

.c-icon--search {
	width: 20px;
	height: 20px;
}

.c-icon--search::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: "";
	background: url(/en/assets/img/common/icon_search.svg) no-repeat center center/contain;
}

.c-icon--menu {
	width: 20px;
	height: 20px;
}

.c-icon--menu::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: "";
	background: url(/en/assets/img/common/icon_menu.svg) no-repeat center center/contain;
}

.c-icon--menu::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: "";
	background: url(/en/assets/img/common/icon_close.svg) no-repeat center center/contain;
	opacity: 0;
}

.c-icon--arrow {
	width: 20px;
	height: 20px;
}

.c-icon--arrow::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: "";
	background: url(/en/assets/img/common/icon_arrow.svg) no-repeat center center/contain;
}

.c-icon--arrow::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: "";
	background: url(/en/assets/img/common/icon_arrow__white.svg) no-repeat center center/contain;
}

.c-icon--arroww {
	width: 20px;
	height: 20px;
}

.c-icon--arroww::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: "";
	background: url(/en/assets/img/common/icon_arrow_white.svg) no-repeat center center/contain;
}

/*----------
	header
----------*/
@media print {
	header {
		display: none;
	}
}

.l-header {
	position: fixed!important;
	top: 0;
	background: #fff;
	z-index: 90;
}

.l-header__inner {
	width: 100%;
	height: 80px;
	position: relative;
}

.l-header__logo {
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translate(0, -50%);
}

.l-header__logolink {
	display: block;
	width: 100px;
	height: 30px;
}

.l-header__navlist {
	display: none;
}

.l-header__langlink	.l-header__langinner {
	font-size: 1.4rem;
	font-size: 14px;
	color: #1F79B9;
}

.l-header__spmenulink.is-active .c-icon--menu::before {
	opacity: 0;
}
.l-header__spmenulink.is-active .c-icon--menu::after {
	opacity: 1;
}

@media (max-width: 767px), print {
	.l-header__search {
		position: absolute;
		top: 50%;
		right: 177px;
		transform: translate(0, -50%);
	}
	.l-header__splang {
		position: absolute;
		top: 50%;
		right: 110px;
		transform: translate(0, -50%);
	}
	.l-header__spmenu {
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translate(0, -50%);
	}
	.l-header__spmenu::before {
		position: absolute;
		top: -3px;
		left: -20px;
		width: 2px;
		height: 25px;
		content: "";
		background: #DCDCDC;
	}
	.l-header__nav {
		display: inline-block;
		position: absolute;
        top: calc(50% - 3px);
        right: 70px;
        transform: translate(0, -50%);
	}
	.l-header__navlink {
		display: flex;
		align-items: center;
		width: 100%;
		height: 70px;
		padding: 0 50px 0 30px;
		background: #F2F3F7;
		border-bottom: solid 1px #979797;
		font-size: 1.8rem;
		font-size: 18px;
		color: #666;
		position: relative;
	}
	.l-header__navlink::before {
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translate(0, -50%);
		width: 15px;
		height: 15px;
		content: "";
		background: url(/en/assets/img/common/icon_arrow.svg) no-repeat center center/contain;
	}
	.l-header__langlink	.l-header__langinner {
		font-size: 1.6rem;
		font-size: 16px;
		color: #1F79B9;
	}
	.js-childnav .l-header__navlink::before {
		background: url(/en/assets/img/common/icon_arrow2_b.svg) no-repeat center center/contain;
	}
	.js-childnav .l-header__navlink.is-active::before {
		transform: translate(0, -50%) rotate(-180deg);
	}
	.l-header__gclink {
		display: flex;
		align-items: center;
		width: 100%;
		height: 70px;
		padding: 0 50px 0 30px;
		background: #fff;
		border-bottom: solid 1px #979797;
		font-size: 1.8rem;
		font-size: 18px;
		color: #666;
		position: relative;
	}
	.l-header__gclink.js-hasfgc {
		background: #F2F3F7;
	}
	.l-header__gclink::before {
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translate(0, -50%);
		width: 15px;
		height: 15px;
		content: "";
		background: url(/en/assets/img/common/icon_arrow.svg) no-repeat center center/contain;
	}
	.l-header__gclink.js-hasfgc::before {
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translate(0, -50%);
		width: 15px;
		height: 15px;
		content: "";
		background: url(/en/assets/img/common/icon_arrow2_b.svg) no-repeat center center/contain;
	}
	.l-header__gclink.js-hasfgc.is-active::before {
		transform: translate(0, -50%) rotate(-180deg);
	}
	.l-header__fgclink {
		display: flex;
		align-items: center;
		width: 100%;
		height: 70px;
		padding: 0 50px 0 40px;
		border-bottom: solid 1px #979797;
		font-size: 1.8rem;
		font-size: 18px;
		color: #666;
		position: relative;
	}
	.l-header__fgclink::before {
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translate(0, -50%);
		width: 15px;
		height: 15px;
		content: "";
		background: url(/en/assets/img/common/icon_arrow.svg) no-repeat center center/contain;
	}
	.l-header__langlink {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0 20px 0 0;
        font-size: 1.6rem;
        line-height: 1;
        color: var(--color-main);
        position: relative;
	}
	.l-header__langlink::before {
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translate(0, -50%);
		width: 15px;
		height: 15px;
		content: "";
		background: url(/en/assets/img/common/icon_arrow2_b.svg) no-repeat center center/contain;
	}

	.l-header__langlink	.l-header__langinner
	.l-header__langlink.is-active::before {
		transform: translate(0, -50%) rotate(-180deg);
	}
	.l-header__langitemlink {
		display: flex;
		align-items: center;
		width: 100%;
		height: 70px;
		padding: 0 50px 0 40px;
		border-bottom: solid 1px #979797;
		font-size: 1.8rem;
		font-size: 18px;
		color: #666;
		position: relative;
	}
	.l-header__langitemlink::before {
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translate(0, -50%);
		width: 15px;
		height: 15px;
		content: "";
		background: url(/en/assets/img/common/icon_arrow.svg) no-repeat center center/contain;
	}
	.l-header__langinner--pc {
		display: none;
	}
	.l-header__langinner--sp, .l-header__nav.is-active {
		display: block;
	}
	.l-header__childnav, .l-header__fgclist, .l-header__langlist {
		height: 0;
		opacity: 0;
		overflow: hidden;
	}
	.l-header__childnav.is-active, .l-header__fgclist.is-active, .l-header__langlist.is-active {
		height: 100%;
		opacity: 1;
		overflow: visible;
		transition: all 0.8s;
	}
}
@media (min-width: 768px), print {
	.l-header {
		padding: 0 40px;
	}
	.l-header__inner {
		width: 1200px;
	}
	.l-header__logo {
		left: 0;
		z-index: 2;
	}
	.l-header__logolink {
		width: 116px;
		height: 35px;
	}
	.l-header__search {
		position: absolute;
		top: 50%;
		right: 115px;
		transform: translate(0, -50%);
		width: 20px;
		height: 20px;
	}
	.l-header__searchlink {
		display: block;
		width: 20px;
		height: 20px;
		line-height: 1;
	}
	.l-header__spmenu {
		display: none;
	}
	.l-header__nav {
		display: block;
		position: absolute;
		top: 0;
		right: 180px;
		width: 1020px;
		height: 80px;
		z-index: 1;
	}
	.l-header__navlist {
		display: flex;
		justify-content: flex-end;
	}
	.l-header__navitem {
		height: 80px;
		display: flex;
		align-items: center;
		margin-right: 30px;
	}
	.l-header__navitem:last-child {
		margin-right: 0;
	}
	.l-header__navlink {
		display: flex;
		align-items: center;
		width: 100%;
		height: 80px;
		font-size: 1.4rem;
		font-size: 14px;
		line-height: 1.5;
		color: #666;
		position: relative;
		transition: all 0.3s;
	}
	.l-header__navlink span {
		color: #666;
	}
	.l-header__navlink::before {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 0;
		height: 5px;
		content: "";
		background: #00A0E6;
		transition: all 0.3s;
	}
	.l-header__navitem.is-on .l-header__navlink,
	.l-header__navlink:hover {
		color: #1F79B9;
	}
	.l-header__navitem.is-on .l-header__navlink span,
	.l-header__navlink:hover span {
		color: #1F79B9;
	}
	.l-header__navitem.is-on .l-header__navlink::before,
	.l-header__navlink:hover::before {
		width: 100%;
	}
	.l-header__navitem.is-current .l-header__navlink {
		color: #1F79B9;
	}
	/*
		.l-header__navitem:hover .l-header__navlink {
			color: #1F79B9;
		}
		.l-header__navitem:hover .l-header__navlink::before { 
			width: 100%;
		}
	*/
	.l-header__navitem .l-header__navinner {
		display: inline-block;
		padding-right: 18px;
		position: relative;
		color: #666;
	}
	.l-header__navitem .l-header__navinner::before {
		position: absolute;
		top: 50%;
		right: 0;
		transform: translate(0, -50%);
		width: 12px;
		height: 12px;
		content: "";
		background: url(/en/assets/img/common/icon_arrow2_b.svg) no-repeat center center/contain;
	}
	.l-header__childnav {
		position: absolute;
		top: 80px;
		left: 0;
		width: 100vw;
		padding: 80px 40px 100px;
		background: #F2F3F7;
		display: none;
	}
	.l-header__childnavclose {
		display: none;
	}
	.is-touch .l-header__childnavclose {
		display: block;
		position: absolute;
		top: 20px;
		left: 40px;
		width: 40px;
		height: 40px;
	}
	.l-header__childnavcloselink {
		display: flex;
		width: 40px;
		height: 40px;
		border: solid 1px #1F79B9;
		border-radius: 8px;
		align-items: center;
	}
	.l-header__childnavcloseicon {
		width: 40px;
		height: 20px;
		font-size: 20px;
		line-height: 1;
		position: relative;
	}
	.l-header__childnavcloseicon::before {
		position: absolute;
		top: 0;
		left: 9px;
		width: 20px;
		height: 20px;
		content: "";
		background: url(/en/assets/img/common/icon_close.svg) no-repeat center center/contain;
	}
	.l-header__childnavilist {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		display: flex;
		flex-wrap: wrap;
		gap: 40px;
	}
	.l-header__childnavitem {
		width: calc((100% - 120px) / 4);
	}
	.l-header__gclink {
		display: flex;
		align-items: center;
		border-top: solid 1px #DCDCDC;
		border-bottom: solid 1px #DCDCDC;
		height: 64px;
		font-size: 1.6rem;
		font-size: 16px;
		color: #666;
		position: relative;
	}
	.l-header__gclink::before {
		position: absolute;
		top: 0;
		left: 0;
		width: 0;
		height: 100%;
		content: "";
		background: #fff;
		transition: all 0.3s;
	}
	.l-header__gcinner {
		width: 100%;
		position: relative;
		padding: 0 40px 0 20px;
	}
	.l-header__gcicon {
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translate(0, -50%);
		width: 20px;
		height: 20px;
		transition: all 0.3s;
	}
	.l-header__gcicon::before {
		position: absolute;
		top: 0;
		left: 0;
		width: 20px;
		height: 20px;
		content: "";
		background: url(/en/assets/img/common/icon_arrow.svg) no-repeat center center/contain;
	}
	.l-header__gclink:hover::before {
		width: 100%;
	}
	.l-header__gclink:hover .l-header__gcicon {
		right: 10px;
	}
	.l-header__gclink.l-header__gclink--nolink {
		pointer-events: none;
		cursor: default;
	}
	.l-header__gclink.l-header__gclink--nolink .l-header__gcicon {
		display: none;
	}
	.l-header__fgclist {
		margin-left: 20px;
		margin-top: 20px;
	}
	.l-header__fgclist--sp {
		display: none;
	}
	.l-header__fgcitem {
		margin-top: 6px;
	}
	.l-header__fgclink {
		display: inline-block;
		font-size: 1.4rem;
		font-size: 14px;
		line-height: 1.3;
		color: #666;
		position: relative;
		transition: all 0.3s;
	}
	.l-header__fgclink::before {
		position: absolute;
		top: calc(100% + 2px);
		left: 0;
		width: 0;
		height: 2px;
		content: "";
		background: #1F79B9;
		transition: all 0.3s;
	}
	.l-header__fgclink:hover {
		color: #1F79B9;
	}
	.l-header__fgclink:hover::before {
		width: 100%;
	}
	.l-header__lang {
		display: block;
		position: absolute;
		top: 0;
		right: -180px;
		width: 85px;
		height: 80px;
	}
	.l-header__lang::after {
		position: absolute;
		top: 27px;
		left: -18px;
		width: 2px;
		height: 25px;
		content: "";
		background: #DCDCDC;
	}
	.l-header__lang::before {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 0;
		height: 5px;
		content: "";
		background: #00A0E6;
		transition: all 0.3s;
	}
	.l-header__langlink {
		display: block;
		height: 80px;
		font-size: 1.4rem;
		font-size: 14px;
		line-height: 80px;
		color: #1F79B9;
		position: relative;
		text-align: left;
	}
	.l-header__langlink:hover {
		color: #1F79B9;
	}
	.l-header__lang:hover::before {
		width: 100%;
	}
	.l-header__langlink::before {
		position: absolute;
		top: 50%;
		right: 0;
		transform: translate(0, -50%);
		width: 12px;
		height: 12px;
		content: "";
		background: url(/en/assets/img/common/icon_arrow2_b.svg) no-repeat center center/contain;
	}
	.l-header__langlist {
		display: none;
		position: fixed;
		top: 80px;
		right: 20px;
		padding: 20px;
		background: #fff;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
		font-size: 1.4rem;
		font-size: 14px;
		line-height: 1;
	}
	.l-header__langitem + .l-header__langitem {
		margin-top: 30px;
	}
	.l-header__langitemlink {
		display: inline-block;
		font-size: 1.4rem;
		font-size: 14px;
		line-height: 1;
		color: #666;
		transition: all 0.3s;
		position: relative;
	}
	.l-header__langitemlink::before {
		position: absolute;
		top: calc(100% + 2px);
		left: 0;
		width: 0;
		height: 2px;
		content: "";
		background: #1F79B9;
		transition: all 0.3s;
	}
	.l-header__langitemlink:hover {
		color: #1F79B9;
	}
	.l-header__langitemlink:hover::before {
		width: 100%;
	}
	.l-header__langitemlink.is-active {
		color: #DDD;
		pointer-events: none;
		cursor: default;
	}
	.l-header__langinner--pc {
		display: block;
	}
	.l-header__langinner--sp {
		display: none;
	}
}
@media (min-width: 768px) and (max-width: 1280px), print {
	.l-header {
		width: 1280px;
	}
	.l-header__childnav {
		position: absolute;
		top: 100%;
		left: -40px;
		width: 1280px;
	}
	.l-header__langlist {
		position: absolute;
		right: -20px;
		white-space: nowrap;
	}
}
@media (min-width: 1281px), print {
	.l-header__inner {
		width: 1200px;
		margin-left: calc((100vw - 1280px) / 2);
	}
	.l-header__childnav {
		position: absolute;
		top: 100%;
		left: calc((1200px - 100vw) / 2);
		width: 100vw;
	}
	.l-header__langlist {
		position: absolute;
		right: -20px;
		white-space: nowrap;
	}
}
/* headermodal */
.l-headermodal img {
    width: 100%;
    height: auto;
    vertical-align: top;
}
.l-headermodal {
	display: none;
	opacity: 0;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #F2F3F7;
	width: 100%;
	max-width: 820px;
	padding: 160px 100px;
	z-index: 102;
	transition: opacity 0.7s;
	box-sizing: border-box;
}
.l-headermodal.is-active {
	display: block;
	opacity: 1;
}

.l-headermodal__close {
	position: absolute;
	top: 40px;
	right: 40px;
	width: 60px;
	height: 60px;
	box-sizing: border-box;
}

.l-headermodal__closelink {
	display: inline-block;
	width: 100%;
	height: 100%;
}

.l-headermodal__title {
	position: absolute;
	top: 90px;
	left: 100px;
	font-family: "DIN Next W01 Bold";
	font-size: 4.8rem;
	font-size: 48px;
	line-height: 1.25;
	color: #666666;
}
.l-headermodal__title.l-headermodal__title--type01 {
	left: 265px;
}

.l-headermodal__cts {
	display: flex;
	margin-left: -20px;
	margin-right: -20px;
}
.l-headermodal__cts.l-headermodal__cts--type01 {
	width: 330px;
	margin: 0 auto;
	flex-wrap: wrap;
}

.l-headermodal__item {
	width: 50%;
	padding: 0 20px;
}

.l-headermodal__cts.l-headermodal__cts--type01 .l-headermodal__item {
	width: 100%;
}

.l-headermodal__link {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 20px 0 20px 20px;
	border-top: solid 1px #DCDCDC;
	border-bottom: solid 1px #DCDCDC;
	height: 24px;
	font-size: 1.6rem;
	font-size: 16px;
	line-height: 20px;
	color: #666 !important;
	position: relative;
}

.l-headermodal__cts.l-headermodal__cts--type01 .l-headermodal__item + .l-headermodal__item .l-headermodal__link {
	border-top: none;
}

.l-headermodal__link::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	content: "";
	background: #fff;
	transition: all 0.3s;
	z-index: -1;
}

.l-headermodal__linkinner {
	width: 100%;
	position: relative;
	padding-left: 50px;
}
.l-headermodal__linkinner.l-headermodal__linkinner--01::before {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	width: 35px;
	height: 36px;
	content: "";
	background: url(/en/assets/img/common/icon_faq.svg) no-repeat center center/contain;
}
.l-headermodal__linkinner.l-headermodal__linkinner--02::before {
	position: absolute;
	top: 50%;
	left: 2px;
	transform: translate(0, -50%);
	width: 30px;
	height: 30px;
	content: "";
	background: url(/en/assets/img/common/icon_mail.svg) no-repeat center center/contain;
}
.l-headermodal__linkinner.l-headermodal__linkinner--03::before {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	width: 35px;
	height: 35px;
	content: "";
	background: url(/en/assets/img/common/icon_network.svg) no-repeat center center/contain;
}

.l-headermodal__linkicon {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0, -50%);
	width: 20px;
	height: 20px;
	transition: all 0.3s;
}
.l-headermodal__linkicon::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: "";
	background: url(/en/assets/img/common/icon_arrow.svg) no-repeat center center/contain;
}

.l-headermodal__link:hover::before {
	width: 100%;
}
.l-headermodal__link:hover .l-headermodal__linkicon {
	right: 10px;
}

.l-headermodal__chidnavlist {
	padding: 20px 20px 0 20px;
	text-align: left;
}

.l-headermodal__childnavitem {
	padding: 8px 0;
}

.l-headermodal__childlink {
	display: inline-block;
	font-size: 1.4rem;
	font-size: 14px;
	line-height: 1.3;
	color: #666 !important;
	position: relative;
	text-align: left;
}
.l-headermodal__childlink::before {
	position: absolute;
	top: calc(100% + 2px);
	left: 0;
	width: 0;
	height: 2px;
	content: "";
	background: #1F79B9;
	transition: all 0.3s;
}
.l-headermodal__childlink:hover {
	color: #1F79B9;
}
.l-headermodal__childlink:hover::before {
	width: 100%;
}

@media (max-width: 767px) {
	.l-headermodal {
		max-width: calc(100% - 40px);
		padding: 30px;
	}
	.l-headermodal.is-active {
		display: block;
		opacity: 1;
	}
	.l-headermodal__close {
		position: absolute;
		top: 20px;
		right: 20px;
		width: 40px;
		height: 40px;
	}
	.l-headermodal__title {
		position: relative;
		top: initial;
		font-size: 2.4rem;
		font-size: 24px;
		margin-bottom: 10px;
	}
	.l-headermodal__title.l-headermodal__title--type01 {
		left: initial;
	}
	.l-headermodal__cts.l-headermodal__cts--type01 {
		width: 100%;
	}
	.l-headermodal__item {
		padding: 0;
	}
}
/* header wovn */
.l-headermodal__wovnitem {
    width: 100%;
}
.l-headermodal__wovnitem .l-headermodal__item:first-child .l-headermodal__link {
	border-top: none;
}
.l-headermodal__wovnitem .l-headermodal__item:last-child .l-headermodal__link {
	border-bottom: none;
}
.l-headermodal__wovnitem .l-headermodal__item .l-headermodal__link {
	cursor: pointer;
}
@media (max-width: 767px) {
	.l-headermodal#modallang {
		padding-top: 75px;
	}
	.l-headermodal#modallang .l-headermodal__link {
		padding-top: 10px;
		padding-bottom: 10px;
		height: 50px;
		box-sizing: border-box;
	}
}
@media (min-width: 768px) {
	.l-headermodal__wovnitem .l-headermodal__item .l-headermodal__link {
		max-width: 290px;
	}
}
/*----------
	contactbox
----------*/
.c-contactbox {
	padding: 40px 0 100px;
	position: relative;
}
.c-contactbox::before {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 100vw;
	height: 100%;
	content: "";
	background: #F2F3F7;
	z-index: -1;
}

.c-contactbox__title {
	font-family: "DIN Next W01 Bold";
	font-size: 3.6rem;
	font-size: 36px;
	line-height: 1;
	margin-bottom: 40px;
}

.c-contactbox__list {
	margin-left: -20px;
	margin-right: -20px;
	border-top: solid 1px #DCDCDC;
}

.c-contactbox__item {
	border-bottom: solid 1px #DCDCDC;
}

.c-contactbox__link {
	display: flex;
	align-items: center;
	width: 100%;
	height: 80px;
	font-size: 1.8rem;
	font-size: 18px;
	line-height: 1;
	color: #666 !important;
}

.c-contactbox__linkinner {
	width: 100%;
	padding: 0 20px 0 70px;
	position: relative;
}

.c-contactbox__linkinner--01::before {
	position: absolute;
	top: 50%;
	left: 23px;
	transform: translate(0, -50%);
	width: 35px;
	height: 36px;
	content: "";
	background: url(/en/assets/img/common/icon_faq.svg) no-repeat center center/contain;
}

.c-contactbox__linkinner--02::before {
	position: absolute;
	top: 50%;
	left: 25px;
	transform: translate(0, -50%);
	width: 30px;
	height: 21px;
	content: "";
	background: url(/en/assets/img/common/icon_mail.svg) no-repeat center center/contain;
}

.c-contactbox__linkinner--03::before {
	position: absolute;
	top: 50%;
	left: 23px;
	transform: translate(0, -50%);
	width: 35px;
	height: 35px;
	content: "";
	background: url(/en/assets/img/common/icon_network.svg) no-repeat center center/contain;
}

.c-contactbox__icon {
	position: absolute;
	display: inline-block;
	top: 50%;
	right: 20px;
	transform: translate(0, -50%);
	width: 15px;
	height: 15px;
}
.c-contactbox__icon::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 15px;
	height: 15px;
	content: "";
	background: url(/en/assets/img/common/icon_arrow.svg) no-repeat center center/contain;
}

.c-contactbox__02 {
	display: none;
}

@media (min-width: 768px), print {
	.c-contactbox {
		position: relative;
		top: 0;
		left: 50%;
		transform: translate(-50%, 0);
		width: 100vw;
		display: flex;
		padding: 0 0;
	}
	.c-contactbox__01 {
		width: calc(50% + 20px);
		padding-right: 120px;
		padding-left: 40px;
		display: flex;
		align-items: center;
	}
	.c-contactbox__01inner {
		width: 100%;
	}
	.c-contactbox__title {
		font-size: 6.4rem;
		font-size: 64px;
		line-height: 1;
		margin-bottom: 60px;
	}
	.c-contactbox__list {
		margin-left: 0;
		margin-right: 0;
	}
	.c-contactbox__link {
		height: 100px;
		font-size: 2.6rem;
		font-size: 26px;
		position: relative;
	}
	.c-contactbox__link::before {
		position: absolute;
		top: 0;
		left: 0;
		width: 0;
		height: 100%;
		content: "";
		background: #fff;
		transition: all 0.3s;
	}
	.c-contactbox__linkinner {
		padding: 0 50px 0 100px;
	}
	.c-contactbox__linkinner--01::before {
		left: 27px;
		width: 46px;
		height: 48px;
	}
	.c-contactbox__linkinner--02::before {
		left: 30px;
		width: 38px;
		height: 27px;
	}
	.c-contactbox__linkinner--03::before {
		left: 27px;
		width: 46px;
		height: 46px;
	}
	.c-contactbox__icon {
		width: 25px;
		height: 25px;
		transition: all 0.3s;
	}
	.c-contactbox__icon::before {
		position: absolute;
		width: 25px;
		height: 25px;
	}
	.c-contactbox__link:hover .c-contactbox__icon {
		right: 10px;
	}
	.c-contactbox__link:hover::before {
		width: 100%;
	}
	.c-contactbox__02 {
		display: block;
		width: calc(50% - 20px);
		min-height: 500px;
	}
	.c-contactbox__02img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	/* type01 */
	.c-contactbox.c-contactbox--type01 {
		position: relative;
		top: 0;
		left: 0;
		transform: translate(0, 0);
		width: 100%;
		display: block;
		padding: 100px 0;
	}
	.c-contactbox.c-contactbox--type01 .c-contactbox__01 {
		width: 100%;
		padding-right: 0;
		padding-left: 0;
		display: block;
		align-items: center;
	}
	.c-contactbox.c-contactbox--type01 .c-contactbox__list {
		display: flex;
		margin-left: -20px;
		margin-right: -20px;
		border-top: none;
	}
	.c-contactbox.c-contactbox--type01 .c-contactbox__item {
		width: 33.3333%;
		padding: 0 20px;
		border-bottom: none;
	}
	.c-contactbox.c-contactbox--type01 .c-contactbox__link {
		border-top: solid 1px #DCDCDC;
		border-bottom: solid 1px #DCDCDC;
	}
}
@media (min-width: 768px) and (max-width: 1280px), print {
	.c-contactbox {
		width: 1280px;
	}
	.c-contactbox::before {
		width: 1280px;
	}
	.c-contactbox__01 {
		padding-right: 120px;
		padding-left: 40px;
	}
}
@media (min-width: 1281px) {
	.c-contactbox__01 {
		padding-left: calc((100vw - 1200px) / 2);
	}
}
/*----------
	footer
----------*/
.l-footer {
	background: #fff;
	padding: 80px 30px 60px;
}

.l-footer__logolink {
	display: block;
	width: 175px;
	height: 28px;
}

.l-footer__logobottom {
	margin-top: 30px;
	width: 271px;
	height: 16px;
}

.l-footer__middle {
	margin-top: 34px;
	display: flex;
}

.l-footer__toglobal {
	font-size: 1.4rem;
	font-size: 14px;
	line-height: 1;
	padding: 3px 0 0 0;
}

.l-footer__togloballink {
	font-size: 1.4rem;
	font-size: 14px;
	line-height: 1;
	color: #666 !important;
}
.l-footer__togloballink i {
	margin-left: 0.5em;
}

.l-footer__youtube {
	margin-left: 25px;
	padding-left: 25px;
	position: relative;
}
.l-footer__youtube::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 20px;
	content: "";
	background: #dcdcdc;
}

.l-footer__youtubelink {
	display: block;
	width: 90px;
	height: 20px;
}

.l-footer__youtubeicon {
	display: inline-block;
	width: 90px;
	height: 20px;
	position: relative;
}
.l-footer__youtubeicon::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 90px;
	height: 20px;
	content: "";
	background: url(/en/assets/img/common/icon_youtube.svg) no-repeat center center/contain;
}

.l-footer__nav {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	margin-left: -8px;
	margin-right: -8px;
	line-height: 1.8;
}

.l-footer__navitem {
	width: calc(50% - 16px);
	max-width: 220px;
	padding: 0 8px;
}
.l-footer__navitem:nth-of-type(n+3) {
	margin-top: 30px;
}

.l-footer__navlink {
	font-size: 1.4rem;
	font-size: 14px;
	line-height: 1;
	color: #666 !important;
}

.l-footer__copyright {
	margin-top: 110px;
	margin-left: 15px;
	font-size: 1rem;
	font-size: 10px;
	line-height: 1;
	color: #666;
}

@media (min-width: 768px), print {
	.l-footer {
		padding: 60px 40px;
	}
	.l-footer__inner {
		width: 1200px;
		margin: 0 auto;
		position: relative;
	}
	.l-footer__logo {
		margin-left: 40px;
	}
	.l-footer__logolink {
		display: block;
		width: 187px;
		height: 30px;
	}
	.l-footer__logobottom {
		margin-top: 20px;
	}
	.l-footer__middle {
		position: absolute;
		top: 50%;
		left: 337px;
		transform: translate(0, -50%);
		margin-top: 0;
	}
	.l-footer__toglobal {
		padding: 4px 0 0 25px;
	}
	.l-footer__toglobal::before {
		position: absolute;
		top: 0;
		left: 0;
		width: 1px;
		height: 20px;
		content: "";
		background: #dcdcdc;
	}
	.l-footer__togloballink {
		transition: all 0.3s;
		position: relative;
	}
	.l-footer__togloballink::before {
		position: absolute;
		top: calc(100% + 2px);
		left: 0;
		width: 0;
		height: 2px;
		content: "";
		background: #1F79B9;
		transition: all 0.3s;
	}
	.l-footer__togloballink:hover {
		color: #1F79B9 !important;
	}
	.l-footer__togloballink:hover::before {
		width: 100%;
	}
	.l-footer__nav {
		position: absolute;
		top: 50%;
		right: 0;
		transform: translate(0, -50%);
		margin-top: 0;
		width: 440px;
	}
	.l-footer__navitem:nth-of-type(n+3) {
		margin-top: 6px;
	}
	.l-footer__navlink {
		transition: all 0.3s;
		position: relative;
	}
	.l-footer__navlink::before {
		position: absolute;
		top: calc(100% + 2px);
		left: 0;
		width: 0;
		height: 2px;
		content: "";
		background: #1F79B9;
		transition: all 0.3s;
	}
	.l-footer__navlink:hover {
		color: #1F79B9 !important;
	}
	.l-footer__navlink:hover::before {
		width: 100%;
	}
	.l-footer__copyright {
		margin-left: 40px;
		margin-top: 40px;
	}
}
/*----------
	gotop
----------*/
.c-gotop {
	position: fixed;
	bottom: 90px;
	right: 20px;
	width: 50px;
	height: 50px;
	display: none;
	z-index: 10;
}
.c-gotop.is-visible {
	display: block;
}

.c-gotop__link {
	display: block;
	width: 50px;
	height: 50px;
	background: #fff;
	border: solid 1px #1F79B9;
	border-radius: 50%;
}

.c-gotop__icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
}
.c-gotop__icon::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: "";
	transform: rotate(-180deg);
	background: url(/en/assets/img/common/icon_arrow2_b.svg) no-repeat center center/contain;
}

@media (min-width: 768px), print {
	.c-gotop {
		bottom: 70px;
		right: 40px;
		width: 60px;
		height: 60px;
	}
	.c-gotop__link {
		width: 60px;
		height: 60px;
	}
}
/*----------
	overlay
----------*/
.c-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.8);
	z-index: -1;
	opacity: 0;
	visibility: hidden;
}
.c-overlay.is-active {
	z-index: 101;
	opacity: 1;
	visibility: visible;
}

/*----------
	override個別
----------*/
.new_lifestyle .l-main {
	padding-top: 80px;
}

@media (min-width: 768px), print {
	.new_lifestyle .l-main {
		padding-top: 45px;
	}
}
/* natrus */
.natrus .l-main {
	padding-top: 45px;
}
.natrus .l-main .l-breadcrumb a {
	color: #fff;
}

.natrus .l-main {
	padding-top: 45px 30px 0;
	width: auto;
}

.natrus .l-main__inner {
	width: 100%;
	margin: 0;
}

.natrus .l-main .l-breadcrumb a,
.natrus .l-main .l-breadcrumb__list > li + li::before {
	color: #fff;
}

.natrus .c-contactbox {
	position: relative;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 100vw;
	display: flex;
	padding: 0 0;
}

.natrus .c-contactbox::before {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 100vw;
	height: 100%;
	content: "";
	background: #F2F3F7;
	z-index: -1;
}

.natrus .c-contactbox__title {
	font-family: "DIN Next W01 Bold";
	font-size: 6.4rem;
	font-size: 64px;
	line-height: 1;
	margin-bottom: 60px;
}

.natrus .c-contactbox__list {
	margin-left: 0;
	margin-right: 0;
	border-top: solid 1px #DCDCDC;
}

.natrus .c-contactbox__item {
	border-bottom: solid 1px #DCDCDC;
}

.natrus .c-contactbox__link {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100px;
	font-size: 2.6rem;
	font-size: 26px;
	position: relative;
	line-height: 1;
	color: #666 !important;
}

.natrus .c-contactbox__link::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	content: "";
	background: #fff;
	transition: all 0.3s;
}

.natrus .c-contactbox__linkinner {
	width: 100%;
	padding: 0 50px 0 100px;
	position: relative;
}

.natrus .c-contactbox__01 {
	width: calc(50% + 20px);
	padding-right: 120px;
	padding-left: 40px;
	display: flex;
	align-items: center;
}

.natrus .c-contactbox__01inner {
	width: 100%;
	width: 1200px;
	margin: 0 auto;
}

.natrus .c-contactbox__linkinner--01::before {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	left: 27px;
	width: 46px;
	height: 48px;
	content: "";
	background: url(/en/assets/img/common/icon_faq.svg) no-repeat center center/contain;
}

.natrus .c-contactbox__linkinner--02::before {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	left: 30px;
	width: 38px;
	height: 27px;
	content: "";
	background: url(/en/assets/img/common/icon_mail.svg) no-repeat center center/contain;
}

.natrus .c-contactbox__linkinner--03::before {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	left: 27px;
	width: 46px;
	height: 46px;
	content: "";
	background: url(/en/assets/img/common/icon_network.svg) no-repeat center center/contain;
}

.natrus .c-contactbox__icon {
	position: absolute;
	display: inline-block;
	top: 50%;
	right: 20px;
	transform: translate(0, -50%);
	width: 25px;
	height: 25px;
	transition: all 0.3s;
}

.natrus .c-contactbox__icon::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 25px;
	height: 25px;
	content: "";
	background: url(/en/assets/img/common/icon_arrow.svg) no-repeat center center/contain;
}

.natrus .c-contactbox__link:hover .c-contactbox__icon {
	right: 10px;
}

.natrus .c-contactbox__link:hover::before {
	width: 100%;
}

.natrus .c-contactbox__02 {
	display: block;
	width: calc(50% - 20px);
	min-height: 500px;
}

.natrus .c-contactbox__02img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* type01 */
.natrus .c-contactbox.c-contactbox--type01 {
	position: relative;
	top: 0;
	left: 0;
	transform: translate(0, 0);
	width: 100%;
	display: block;
	padding: 100px 0;
}

.natrus .c-contactbox.c-contactbox--type01 .c-contactbox__01 {
	width: 100%;
	padding-right: 0;
	padding-left: 0;
	display: block;
	align-items: center;
}

.natrus .c-contactbox.c-contactbox--type01 .c-contactbox__list {
	display: flex;
	margin-left: -20px;
	margin-right: -20px;
	border-top: none;
}

.natrus .c-contactbox.c-contactbox--type01 .c-contactbox__item {
	width: 33.3333%;
	padding: 0 20px;
	border-bottom: none;
}

.natrus .c-contactbox.c-contactbox--type01 .c-contactbox__link {
	border-top: solid 1px #DCDCDC;
	border-bottom: solid 1px #DCDCDC;
}

@media (min-width: 768px) and (max-width: 1280px), print {
	.natrus .c-contactbox {
		width: 1280px;
	}
	.natrus .c-contactbox::before {
		width: 1280px;
	}
	.natrus .c-contactbox__01 {
		padding-right: 120px;
		padding-left: 40px;
	}
}
@media (min-width: 1281px) {
	.natrus .c-contactbox__01 {
		padding-left: calc((100vw - 1200px) / 2);
	}
}
.natrus_ew .l-main {
	padding-top: 80px;
}
.natrus_ew .l-main .l-breadcrumb {
	position: relative;
	z-index: 100;
}

.barrierfree .l-main {
	padding-top: 80px;
}

.sdgs .contents {
	padding-top: 80px;
}
.sdgs .link.link--02 {
	margin-bottom: 0;
	padding-left: 0;
	text-align: center;
}
.sdgs .link.link--02::before {
	display: none;
}
/*# sourceMappingURL=common.css.map */
