@charset "utf-8";

.gh {
	border-bottom: none;
}

.gh:before {
	display: none;
}

.h-underline:before {
	max-width: initial;
}

/* -------------------------------- */

.gf__item-inner {
	
}

/* -------------------------------- */

.es .menu-button {
	visibility: hidden;
	transition: initial;
}

.load .es .menu-button {
	transition: right 0.4s cubic-bezier(.17,.84,.44,1);
	visibility: visible;
}

.scroll-y-start .es .menu-button {
	right: -40px;
}

/* -------------------------------- */

.main-wrapper {
	padding-top: 80px;
}

@media screen and (min-width: 1280px) {
	.main-wrapper {
		padding-top: 100px;
	}
}

/* --------------------------------------------------------- */
/* Chapter section outline */

.chapter-section {
	position: relative;
	max-width: 1800px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 80px;
}

.chapter-section:before {
	content: "";
	position: absolute;
	top: 0;
	display: block;
	width: 100%;
	height: 3px;
	
	background-image: var(--svg-v-line-bk);
	opacity: 0.5;
}

.chapter-section:first-of-type:before {
	display: none;
}

.chapter-section:first-of-type {
	padding-top: 40px;
}

.chapter-section-header {
	width: calc(100% - 60px);
	margin: 0 auto 70px auto;
	box-sizing: border-box;
	text-align: center;
}

.chapter-section-header.-col2 {
	
}

.chapter-section-header.-col2 > * {
	margin-top: 60px;
}

.chapter-section-header.-col2 > *:first-child {
	margin-top: 0;
}

.chapter-section-header__ttl {
	display: inline-flex;
	margin-bottom: 10px;
	font-size: 1.8rem;
	font-weight: normal;
	letter-spacing: 0.15em;
}

.chapter-section-header__more {
	display: none;
}

.chapter-section-header .more-btn__label {
	
}

.chapter-section-body {
	
}

@media print, screen and (min-width: 768px) {
	.chapter-section {
		padding-top: 80px;
		margin-bottom: 80px;
	}
	
	.chapter-section-header {
		width: calc(100% - 100px);
	}
}

@media screen and (min-width: 1280px) {
	.chapter-section {
		
	}
	
	.chapter-section-header {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		align-items: flex-start;
		width: calc(100% - 180px);
		text-align: left;
	}
	
	.chapter-section-header__more {
		display: block;
	}
	
	.chapter-section-header > * {
		margin-bottom: 0;
	}
	
	.chapter-section-header.-col2 {
		
	}
	
	.chapter-section-header.-col2 > * {
		width: calc(50% - 20px);
	}
	
	.chapter-section-header.-col2 > * {
		margin-top: 40px;
	}
	
	.chapter-section-header.-col2 > *:first-child {
		margin-top: 0;
	}
	
	.chapter-section-header.-col2 > *:nth-child(even) {
		margin-top: 120px;
	}
	
	.chapter-section-header.-col2 > *:nth-child(2) {
		margin-top: 80px;
	}
	
	.chapter-section-header.-col2 .extra__body-outer {
		height: 280px;
	}
	
	.chapter-section-header__ttl {
		font-size: 2.8rem;
		transform: scaleY(0.95) !important;
		transform-origin: left;
		letter-spacing: 0.15em;
	}
}

@media screen and (min-width: 1440px) {
	
	.chapter-section-header.-col2 > * {
		width: calc(50% - 40px);
	}
	
	.chapter-section-header.-col2 .extra__body-outer {
		height: 260px;
	}
	
}




/* --------------------------------------------------------- */
/* Chapter contents */

.extra-outer {
	
}

.extra {
	width: 100%;
	text-align: left;
}

@media screen and (min-width: 1280px) {
	
	.pick-up-contents {
		position: relative;
		padding-top: 100px;
	}
	
	.pick-up-contents::before {
		content: "";
		position: absolute;
		top: 0;
		display: block;
		width: 100%;
		height: 3px;
		
		background-image: var(--svg-v-line-bk);
		opacity: 0.5;
	}
	
	.extra-outer {
		margin-bottom: 140px;
	}
	
	.extra {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-direction: row-reverse;
	}
}


.extra__ttl {
	font-size: 2rem;
	letter-spacing: 0.15em;
}
@media screen and (min-width: 1280px) {
	
	/* 
	   chromeだけ 縦書中に position + padding の同要素指定にバグがある。
	   配置とpaddingは別要素に指定する必要がある。
	 */
	 
	.extra__ttl-outer {
		writing-mode: tb-rl;
		writing-mode: vertical-rl;
		font-feature-settings: normal;
		position: absolute;
		right: -40px;
		top: -20px;
		bottom: auto;
		left: auto;
		width: 100%;
		height: 100%;
		box-sizing: border-box;
	}
	
	.extra__ttl {
		position: absolute;
		left: auto;
		width: auto;
		background-color: #fff;
		border-radius: 0 0 0 20px;
		padding: 0 30px 10px;
		/* height: auto; */
		margin: 0;
		font-size: 3rem;
		letter-spacing: 0.05em;
	}
	
	.extra__ttl-inner {
		display: inline-block;
		height: calc(100% / 0.99);
	}
	
	.extra__ttl-text-transform {
		display: inline-block;
		transform: scaleY(0.9);
		transform-origin: 0 0;
	}
	
	.extra__ttl::before,
	.extra__ttl::after {
		position: absolute;
		display: block;
		top: 0;
		width: 30px;
		height: 30px;
		content: "";
		background-image: var(--svg-round-out-corners-RT-wt);
		background-size: cover;
	}
	
	.extra__ttl::before {
		left: -30px;
		top: 20px;
		bottom: auto;
	}
	
	.extra__ttl::after {
		right: 40px;
		top: auto;
		bottom: -30px;
	}
	
	.extra__ttl .in-corner {
		pointer-events: none;
		position: absolute;
		left: 0;
		top: 0;
		display: block;
		width: 100%;
		height: 100%;
	}
	
	.extra__ttl .in-corner::before {
		position: absolute;
		display: block;
		bottom: 0;
		left: 0;
		width: 20px;
		height: 20px;
		content: "";
		background-image: var(--svg-round-in-corners-RT-wt);
		background-size: cover;
	}
}


.extra__anchor {
	display: block;
	font-weight: bolder;
}




.extra__img {
	position: relative;
	width: 100%;
	margin-bottom: 30px;
	overflow: hidden;
	border-radius: 5px;
}

.extra__img .img-in-corner::before,
.extra__img .img-in-corner::after {
	width: 30px;
	height: 30px;
}

.extra__img-inner {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.extra__img-inner.current {
	opacity: 1;
}

.extra__img-inner:first-child {
	position: relative;
}

.extra__img img {
	display: block;
	width: 100%;
	height: 45vh;
	min-height: 260px;
	object-fit: cover;
}




@media screen and (min-width: 768px) {
	.extra__img img {
		height: auto;
	}
}

@media screen and (min-width: 1280px) {
	.extra__img {
		width: calc(100% - 160px);
		transform: translateX(0);
		margin: 0;
		border-radius: 5px;
	}
	
	.extra__img img {
		border-radius: 5px;
		object-fit: cover;
		width: 100%;
		min-height: 500px;
	}
}



.extra__video {
	position: relative;
	width: 100%;
	margin-bottom: 30px;
	overflow: hidden;
	border-radius: 5px;
}

.extra__video .img-in-corner::before,
.extra__video .img-in-corner::after {
	width: 30px;
	height: 30px;
}

.extra__video img {
	display: block;
	width: 100%;
	height: 45vh;
	min-height: 260px;
}

.extra__video-inner {
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.1);
	transform: scale(1.01);
}

.extra__video .main-player {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 300%;
	height: 100%;
	left: -100%;
	/*opacity: 0;*/
	transition: opacity 1s ease;
}

.extra__video.video_playing .main-player {
	opacity: 1;
}


@media screen and (min-width: 768px) {
	.extra__video img {
		height: auto;
	}
}

@media screen and (min-width: 1280px) {
	.extra__video {
		width: calc(100% - 160px);
		transform: translateX(0);
		margin: 0;
		border-radius: 10px;
	}
	.extra__video img {
		border-radius: 5px;
		object-fit: cover;
		width: 100%;
		min-height: 500px;
	}
}


/* ------------------------- */

.extra.carrers .extra__video {
	background-image: url(/assets/img/careers/main.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* ------------------------- */



.extra__body {
	flex-direction: column;
	align-items: flex-start;
}

.extra__body > * {
	width: 100%;
}

@media screen and (min-width: 768px) {
	.extra__body {
		width: 50%;
	}
}

@media screen and (min-width: 1280px) {
	
	/* 
	   chromeだけ 縦書中に position + padding の同要素指定にバグがある。
	   配置とpaddingは別要素に指定する必要がある。
	 */
	
	.extra__body-outer {
		position: absolute;
		top: auto;
		right: auto;
		left: 0;
		bottom: -1px;
		width: auto;
		height: 360px;
		margin: 0;
	}
	
	.extra__body {
		position: relative;
		width: auto;
		margin: 0;
		padding: 50px 50px 0 0;
		box-sizing: border-box;
		background-color: #fff;
		border-radius: 0 15px 0 0;
		writing-mode: tb-rl;
		writing-mode: vertical-rl;
		font-feature-settings: normal;
		font-size: 1.5rem;
		text-align: justify;
		letter-spacing: 0.05em;
	}
	
	.extra__body::before,
	.extra__body::after {
		position: absolute;
		display: block;
		top: 0;
		width: 30px;
		height: 30px;
		content: "";
		background-image: var(--svg-round-out-corners-LB-wt);
		background-size: cover;
	}
	
	.extra__body::before {
		left: 160px;
		top: -30px;
		bottom: auto;
	}
	
	.extra__body::after {
		right: -30px;
		top: auto;
		bottom: 0px;
	}
	
	
	.extra__body .in-corner {
		position: absolute;
		left: 0;
		top: 0;
		display: block;
		width: 100%;
		height: 100%;
	}
	
	.extra__body .in-corner::before {
		position: absolute;
		display: block;
		top: 0;
		right: 0;
		width: 20px;
		height: 20px;
		content: "";
		background-image: var(--svg-round-in-corners-LB-wt);
		background-size: cover;
	}
	
	.extra__body > * {
		width: auto;
	}
}



.extra__des {
	margin: 0 0 20px;
}

@media screen and (min-width: 1280px) {
	.extra__des {
		margin: 0 0 0 20px;
		transform: scaleY(0.9);
		transform-origin: 0 0;
		height: calc(100% / 0.9);
	}
}



.extra-chapter__list {
	list-style: none;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
}
.extra-chapter__list.-sub {
	display: none;
}

.extra-chapter__list li {
	margin-bottom: 0.75em;
}

.extra-chapter__list li:last-child {
	margin-bottom: 0;
}


@media screen and (min-width: 1280px) {
	.extra-chapter__list {
		display: block;
		margin: 0;
		text-align: right;
	}
	
	.extra-chapter__list.-sub {
		display: block;
		text-align: right;
	}
	
	.extra-chapter__list li {
		display: inline-block;
		margin-right: 30px;
		margin: 0 15px 15px 0;
	}
	
	.extra-chapter__list.-sub li {
		margin: 15px 15px 0 0;
	}
	
}


@media screen and (min-width: 1280px) {
	
	/* reverse */
	.extra.-reverse {
		flex-direction: row;
	}
	.extra.-reverse .extra__img {
		transform: translateX(-60px);
	}
}

/* --------------------------------------------------------- */
/* override */

.feature-index {
	
}

.feature-index__item {
	width: calc(100% - 60px);
	margin: 0 auto 80px;
	max-width: none;
	max-width: initial;
}

.feature-index__head {
	text-align: left;
}

.feature-index__item > *:last-child {
	margin-bottom: 0;
}

.feature-index__img {
	width: 100%;
	overflow: hidden;
	border-radius: 5px;
	margin-bottom: 30px;
}

.feature-index__img-inner {
	border-radius: inherit;
}

.feature-index__img img {
	height: 30vh;
	min-height: 220px;
	max-height: 360px;
	border-radius: 5px 0 0 5px;
}

.feature-index__ttl {
	margin-bottom: 10px;
	box-sizing: border-box;
	text-align: left;
}

.feature-txt,
.feature-index .navigate--more {
	width: 100%;
	margin-bottom: 10px;
	text-align: left;
	font-size: 1.2rem;
}

@media print, screen and (min-width: 768px) {
	
	.feature-index {
		width: calc(100% - 100px);
		margin: auto;
	}
	
	.feature-index__item {
		position: relative;
		width: calc(33.333% - 25px);
		margin: 0 0 60px !important;
	}
	
	.feature-index::before,
	.feature-index::after {
		width: calc(33.333% - 25px);
	}
	
	.feature-index__item:nth-child(2n):before {
		display: block;
	}
	
	.feature-index__item:nth-child(3n):before {
		display: none;
	}
	
	.feature-index__item::before {
		right: -30px;
	}
	
	.feature-index__item:nth-child(3n+1):nth-last-child(-n+3),
	.feature-index__item:nth-child(3n+1):nth-last-child(-n+3) ~ .feature-index__item {
		margin-bottom: 0 !important;
	}
	
	.feature-index__img {
		border-radius: 5px;
	}
	
	.feature-index__img img {
		height: auto;
		min-height: none;
		min-height: auto;
		max-height: none;
		max-height: auto;
		border-radius: 5px;
	}
	
	.feature-txt,
	.navigate--more {
		width: 100%;
	}
}

@media screen and (min-width: 1280px) {
	
	.feature-index {
		width: calc(100% - 180px);
	}
	
	.feature-index__item,
	.feature-index:before,
	.feature-index:after {
		width: calc(33.333% - 40px);
	}
	
	.feature-index__item:before {
		right: -45px;
	}
	
	.feature-index.-vert {
		margin-bottom: calc(100px + 11em);
	}
	
	.-vert .feature-index__head {
		display: block;
		margin-bottom: 0;
	}
	
	.-vert .feature-index__body {
		position: absolute;
		top: calc(100% - 60px);
		left: 0;
		height: 14em;
		writing-mode: tb-rl;
		writing-mode: vertical-rl;
		font-feature-settings: normal;
		background-color: #fff;
		border-radius: 0 15px 0 0;
		padding: 30px 30px 0 0;
		z-index: 2;
	}
	
	.-vert .feature-index__body::before,
	.-vert .feature-index__body:after {
		position: absolute;
		display: block;
		top: 0;
		width: 15px;
		height: 15px;
		content: "";
		background-image: var(--svg-round-out-corners-LB-wt);
		background-size: cover;
	}
	
	.-vert .feature-index__body::before {
		left: 0;
		top: -15px;
		bottom: auto;
	}
	
	.-vert .feature-index__body::after {
		right: -15px;
		top: 45px;
		bottom: auto;
	}
	
	.-vert .feature-index__body .in-corner {
		position: absolute;
		left: 0;
		top: 0;
		display: block;
		width: 100%;
		height: 100%;
	}
	
	.-vert .feature-index__body .in-corner::before {
		position: absolute;
		display: block;
		top: 0;
		width: 15px;
		height: 15px;
		content: "";
		background-image: var(--svg-round-in-corners-LB-wt);
		background-size: cover;
	}
	
	.-vert .feature-index__body .in-corner::before {
		right: 0;
	}
	
	
	.-vert .feature-txt,
	.-vert .navigate--more {
		width: auto;
		margin: 0;
		font-size: 1.5rem;
		line-height: 2.0;
		letter-spacing: 0.1em;
		transform: scaleY(0.95);
		text-align: justify;
	}
	
	.-vert.inview.-show .inview__item.feature-txt,
	.-vert.inview.-show .inview__item.navigate--more {
		transform: translateY(0) scaleY(0.95);
	}
	
	.-vert .navigate--more {
		text-align: right;
		margin-right: 1.5em;
	}
	
	.-vert .feature-index__img-icon[data-icon] {
		position: absolute;
		left: -13px;
		top: -13px;
		bottom: auto;
		display: block;
		background-color: #fff;
		border-radius: 0 0 22px 0;
		padding: 0 8px 8px 0;
		display: none;
	}
	
	.-vert .feature-index__img-icon[data-icon]::before,
	.-vert .feature-index__img-icon[data-icon]::after {
		position: absolute;
		display: block;
		width: 8px;
		height: 8px;
		content: "";
		background-image: var(--svg-round-out-corners-LT-wt);
		background-size: cover;
	}
	
	.-vert .feature-index__img-icon[data-icon]::before {
		left: 13px;
		top: auto;
		bottom: -8px;
	}
	
	.-vert .feature-index__img-icon[data-icon]::after {
		top: 13px;
		right: -8px;
		bottom: auto;
	}
	
	.msie .-vert .feature-index__body {
		overflow: visible;
	}
	
	
}

/* --------------------------------------------------------- */
/* NEWS HEADLINE */

.news {
	margin-right: 0;
}


.news-index {
	width: calc(100% - 60px);
}

.news__icon {
	width: 20px;
}

@media screen and (min-width: 768px) {
	.news-index {
		width: calc(100% - 100px);
	}
}

@media screen and (min-width: 1280px) {
	.news {
		margin-right: auto;
	}
	
	.news-index {
		width: calc(100% - 180px);
		margin-right: auto;
	}
	
	.news__icon {
		width: 40px;
	}
}