@charset "UTF-8";

/* ==================================================

	common.css
	Version: 0.1
	
*/

/* ==================================================

	IMPORT

*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* ==================================================

	CONFIG

*/
:root {
	--height-header: 90px;
	--height-header-sp: 85px;
	--width-container-tb: 920px;
	--color-black: #2a2a2a;
	--color-primary: #034ea8;
	--color-primary-light: #e6f0fa;
	--color-bg-gray: #f0f0f0;
	--bg-gradient: linear-gradient(90deg, rgba(192,13,30,1) 0%, rgba(230,230,230,1) 50%, rgba(3,78,168,1) 100%);
}

/* ==================================================

	RESET

*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: transparent;
	background-repeat: no-repeat;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	font-style: normal;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}
html, body {
	width: 100%;
}
body {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
ul, ol {
	list-style-type: none;
}
table {
	border-collapse: collapse;
}
a, button {
	cursor: pointer;
}
img {
	display: block;
	width: 100%;
	height: auto;
}
input, select, textarea, button {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	border-radius: 0;
	resize: none;
}

/* ==================================================

	ICON

*/
@font-face {
	font-family: 'icon';
	src: url('../fonts/icon.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
	font-family: 'icon' !important;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
}
.icon-arrow-anchor:before {
  content: "\e900";
}
.icon-arrow-blank-window:before {
  content: "\e901";
}
.icon-arrow-blank:before {
  content: "\e902";
}
.icon-arrow-link:before {
  content: "\e903";
}
.icon-arrow-slide-next:before {
  content: "\e904";
}
.icon-arrow-slide-prev:before {
  content: "\e905";
}

/* ==================================================

	HTML

*/
html {
	/*overscroll-behavior: none;*/
	/* 1rem = 10px */
	font-size: 62.5%;
}
@media screen and (max-width: 375px) {
	html {
		/* 幅375px 1rem = 10px */
		font-size: 2.66667vw;
	}
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 2;
	color: var(--color-black);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/*overscroll-behavior: none;*/
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.5rem;
	}
}

main {
	overflow: hidden;
	padding-top: var(--height-header);
}
@media screen and (max-width: 768px) {
	main {
		padding-top: var(--height-header-sp);
	}
}

sup {
	font-size: 60%;
}

/* ==================================================

	FONT

*/
.ff-en {
	font-weight: 500 !important;
	font-family: "HelveticaNowDisplay-Md", sans-serif;
}

/* ==================================================

	VISIBLE

*/
@media screen and (max-width: 768px) {
	.visible-pc {
		display: none;
	}
}
@media screen and (min-width: 1081px) {
	.visible-tb {
		display: none;
	}
}
@media screen and (min-width: 769px) {
	.visible-sp {
		display: none;
	}
}

/* ==================================================

	HALF INDENT

*/
.half-indent {
	display: inline-block;
	text-indent: -0.5em;
}
@media screen and (max-width: 768px) {
	.half-indent-sp {
		display: inline-block;
		text-indent: -0.5em;
	}
}

/* ==================================================

	CONTAINER

*/
.container,
.container-wide,
.container-middle {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding-left: 50px;
	padding-right: 50px;
	width: 100%;
}
.container {
	max-width: 1200px;
}
.container-wide {
	max-width: 1266px;
}
.container-middle {
	max-width: 1160px;
}
.container .container {
	padding: 0;
}
@media screen and (max-width: 1080px) {
	.container,
	.container-wide,
	.container-middle {
		max-width: var(--width-container-tb);
	}
}
@media screen and (max-width: 768px) {
	.container,
	.container-wide,
	.container-middle {
		padding: 0 25px;
		max-width: 100%;
	}
}

/* ==================================================

	SLICK

*/
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}
.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.slick-list:focus {
	outline: none;
}
.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.slick-track:before,
.slick-track:after {
	display: table;
	content: '';
}
.slick-track:after {
	clear: both;
}
.slick-loading .slick-track {
	visibility: hidden;
}
.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}
[dir='rtl'] .slick-slide {
	float: right;
}
.slick-slide img {
	display: block;
}
.slick-slide.slick-loading img {
	display: none;
}
.slick-slide.dragging img {
	pointer-events: none;
}
.slick-initialized .slick-slide {
	display: block;
}
.slick-loading .slick-slide {
	visibility: hidden;
}
.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
	display: none;
}

/* ==================================================

	HEADER

*/
.header {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
}
.header .container {
	position: relative;
	z-index: 200;
	display: flex;
	align-items: center;
	padding: 0 40px;
	max-width: inherit;
	height: var(--height-header);
}
.header h1 {
	display: flex;
	flex: 1;
	font-size: 16px;
	line-height: 1.1;
	letter-spacing: 0.04em;
}
.header h1 a {
	display: flex;
	align-items: center;
}
.header h1 img {
	margin-right: 15px;
	width: 176px;
}
@media screen and (max-width: 768px) {
	.header .container {
		padding: 0 20px;
		height: var(--height-header-sp);
	}
	.header h1 {
		font-size: 14px;
	}
	.header h1 a {
		display: block;
	}
	.header h1 img {
		margin-right: 0;
		width: 150px;
	}
	.header h1 span {
		display: block;
		margin-top: 6px;
	}
}

/**/
.header .nav-recruit {
	text-align: center;
	font-weight: 500;
	font-size: 12px;
}
.header .nav-recruit ul {
	display: flex;
}
.header .nav-recruit ul li {
	padding-right: 10px;
}
.header .nav-recruit ul a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 1.4em 0.1em 1.4em;
	min-height: 30px;
	background-color: var(--color-primary);
	border: 1px solid var(--color-primary);
	border-radius: 999em;
	color: #fff;
}
.header .nav-recruit .link-career {
	background-color: #fff;
	color: var(--color-primary);
}
.header .nav-recruit .link-group {
	background-color: var(--color-black);
	border-color: var(--color-black);
}
@media (any-hover: hover) {
	.header .nav-recruit ul a {
		transition: all 0.3s ease;
	}
	.header .nav-recruit ul a:hover {
		background-color: #fff;
		color: var(--color-primary);
	}
	.header .nav-recruit .link-career:hover {
		background-color: var(--color-primary);
		color: #fff;
	}
	.header .nav-recruit .link-group:hover {
		background-color: #fff;
		color: var(--color-black);
	}
}
@media screen and (max-width: 1080px) {
	.header .nav-recruit {
		display: none;
	}
}

/**/
.header .toggle-search {
	margin: 0 20px 0 10px;
	text-align: center;
	font-weight: 500;
	font-size: 11px;
}
@media (any-hover: hover) {
	.device-pc .header .toggle-search {
		transition: opacity 0.3s ease;
	}
	.device-pc .header .toggle-search:hover {
		opacity: 0.6;
	}
}
.header .toggle-search span {
	display: block;
	position: relative;
	margin: 0 auto;
	width: 30px;
	height: 30px;
}
.header .toggle-search span::before,
.header .toggle-search span::after {
	display: block;
	position: absolute;
	top: 50%;
	width: 100%;
	height: 2px;
	background-color: var(--color-black);
}
.header .toggle-search span::before {
	transform: rotate(25deg);
}
.header .toggle-search span::after {
	transform: rotate(-25deg);
}
.header .toggle-search span i {
	position: relative;
	top: 2px;
	display: block;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-image: url(../img/common/icon-search.svg);
	background-size: contain;
}
.header .toggle-search[aria-expanded=true] span::before,
.header .toggle-search[aria-expanded=true] span::after {
	content: '';
}
.header .toggle-search[aria-expanded=true] span i {
	display: none;
}
/**/
.header .toggle-megamenu {
	text-align: center;
	font-weight: 500;
	font-size: 11px;
}
@media (any-hover: hover) {
	.device-pc .header .toggle-megamenu {
		transition: opacity 0.3s ease;
	}
	.device-pc .header .toggle-megamenu:hover {
		opacity: 0.6;
	}
}
.header .toggle-megamenu span {
	display: block;
	position: relative;
	margin: 0 auto;
	width: 30px;
	height: 30px;
}
.header .toggle-megamenu span::before,
.header .toggle-megamenu span::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	width: 100%;
	height: 2px;
	background-color: var(--color-black);
}
.header .toggle-megamenu span::before {
	margin-top: -5px;
}
.header .toggle-megamenu span::after {
	margin-top: 5px;
}
/**/
.header .toggle-megamenu[aria-expanded=true] span::before {
	margin-top: 0;
	transform: rotate(25deg);
}
.header .toggle-megamenu[aria-expanded=true] span::after {
	margin-top: 0;
	transform: rotate(-25deg);
}

/* ==================================================

	MEGAMENU

*/
.megamenu {
	position: fixed;
	z-index: 90;
	top: var(--height-header);
	bottom: 0;
	left: 0;
	width: 0;
	background-color: #fff;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.5s ease;
}
.megamenu[aria-hidden=false] {
	width: 100%;
}
.megamenu.megamenu-opened {
	opacity: 1;
}
.megamenu.megamenu-active {
	z-index: 100;
}
.megamenu .outer {
	padding: 60px 40px;
	height: 100%;
	overflow-y: auto;
}
.os-ios .megamenu .outer {
	overscroll-behavior: none;
}
.megamenu .nav-content {
	display: table;
	margin: 0 auto;
}
.megamenu .nav-content nav {
	display: grid;
	grid-template-columns: repeat(3, auto);
	grid-template-rows: repeat(2, auto);
	grid-column-gap: 80px;
	grid-row-gap: 30px;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.5;
}
.megamenu .nav-content nav h3 {
	margin-bottom: 20px;
	font-size: 25px;
	line-height: 1.4;
}
.megamenu .nav-content nav h3::after {
	content: '';
	display: block;
	margin-top: 15px;
	width: 60px;
	height: 4px;
	background: var(--bg-gradient);
}
.megamenu .nav-content nav li {
	margin-bottom: 15px;
}
.megamenu .nav-foot {
	margin-top: 40px;
}
.megamenu .nav-recruit {
	display: none;
}
.megamenu .nav-other {
	display: flex;
}
.megamenu .link-gallery {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 25px;
	min-height: 32px;
	border: 1px solid #b4b4b4;
	border-top-width: 0;
	border-bottom-width: 0;
	text-align: center;
	font-weight: 500;
	font-size: 13px;
	line-height: 1.2;
}
.megamenu .link-gallery span {
	display: block;
}
@media (any-hover: hover) {
	.megamenu .nav-content nav li a {
		transition: opacity 0.3s ease;
	}
	.megamenu .nav-content nav li a:hover {
		opacity: 0.6;
	}
	.megamenu .link-gallery span {
		transition: opacity 0.3s ease;
	}
	.megamenu .link-gallery:hover span {
		opacity: 0.6;
	}
}

@media screen and (max-width: 1080px) {
	.megamenu .nav-content nav {
		grid-template-columns: repeat(2, auto);
		grid-template-rows: repeat(3, auto);
		grid-column-gap: 60px;
	}
	.megamenu .nav-recruit {
		display: block;
		margin-bottom: 10px;
		font-size: 13px;
	}
	.megamenu .nav-recruit ul {
		margin: 0 -5px;
	}
	.megamenu .nav-recruit ul li {
		flex-basis: 50%;
		margin-bottom: 10px;
		padding: 0 5px;
	}
	.megamenu .nav-recruit ul a {
		padding-left: 0;
		padding-right: 0;
		min-height: 36px;
	}
}

@media screen and (max-width: 768px) {
	.megamenu {
		top: var(--height-header-sp);
	}
	.megamenu .outer {
		padding: 30px 0 40px 0;
	}
	.megamenu .nav-content {
		display: block;
	}
	.megamenu .nav-content nav {
		display: block;
		font-size: 16px;
	}
	.megamenu .nav-content nav h3 {
		position: relative;
		margin-bottom: 0;
		padding: 15px 30px;
		font-size: 23px;
	}
	.megamenu .nav-content nav h3::after {
		content: none;
	}
	.megamenu .nav-content nav h3 button {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.megamenu .nav-content nav h3 i {
		position: absolute;
		top: 50%;
		right: 30px;
		width: 15px;
		height: 15px;
		transform: translateY(-50%);
	}
	.megamenu .nav-content nav h3 i::before,
	.megamenu .nav-content nav h3 i::after {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		left: 0;
		width: 100%;
		height: 1px;
		background-color: #707070;
	}
	.megamenu .nav-content nav h3 i::after {
		transform: rotate(90deg);
	}
	.megamenu .nav-content nav h3 .opened i::after {
		content: none;
	}
	.megamenu .nav-content nav h3 + div {
		overflow: hidden;
		height: 0;
		background-color: #f0f0f0;
	}
	.megamenu .nav-content nav ul {
		padding: 30px;
	}
	.megamenu .nav-content nav li {
		margin-bottom: 15px;
	}
	.megamenu .nav-content nav li:last-child {
		margin-bottom: 0;
	}
	.megamenu .nav-foot {
		margin-top: 40px;
	}
	.megamenu .nav-recruit {
		font-size: 15px;
	}
	.megamenu .nav-recruit ul {
		display: block;
		margin: 0;
	}
	.megamenu .nav-recruit ul li {
		padding: 0 25px;
	}
	.megamenu .nav-recruit ul a {
		min-height: 60px;
	}
	.megamenu .nav-other {
		display: block;
		margin-top: 20px;
		padding: 0 25px;
	}
	.megamenu .link-gallery {
		padding: 0;
		min-height: 60px;
		border-left: 0;
		border-right: 0;
		border-top-width: 1px;
		border-bottom-width: 1px;
		font-size: 14px;
	}
}

/* ==================================================

	SEARCH

*/
.header-search {
	position: fixed;
	z-index: 90;
	top: var(--height-header);
	bottom: 0;
	left: 0;
	width: 0;
	background-color: #fff;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.5s ease;
}
.header-search[aria-hidden=false] {
	width: 100%;
}
.header-search.search-opened {
	opacity: 1;
}
.header-search.search-active {
	z-index: 100;
}
.header-search .outer {
	height: 100%;
	overflow-y: scroll;
}
.os-ios .header-search .outer {
	overscroll-behavior: none;
}
.header-search .inner {
	margin: 0 auto;
	padding: 60px 50px;
	max-width: 1080px;
}
.header-search h2 {
	margin-bottom: 30px;
	text-align: center;
	font-size: 30px;
	line-height: 1.2;
}
@media screen and (max-width: 1080px) {
	.header-search .inner {
		padding: 60px 40px;
	}
}
@media screen and (max-width: 768px) {
	.header-search {
		top: var(--height-header-sp);
	}
	.header-search .inner {
		padding: 30px 25px;
	}
}

/**/
.header-search .tags {
	margin-bottom: 60px;
}
.header-search .tags ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 0 auto;
	max-width: 680px;
}
.header-search .tags ul label {
	display: block;
	position: relative;
	cursor: pointer;
}
.header-search .tags ul label input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}
.header-search .tags ul button,
.header-search .tags ul label span {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 1.5em 0.1em 1.5em;
	min-height: 43px;
	position: relative;
	border-radius: 999px;
	background-color: #eee;
	font-weight: 500;
	font-size: 13px;
	line-height: 1.5;
	transition: all 0.3s ease;
}
.header-search .tags ul button.active,
.header-search .tags ul label input:checked + span {
	background-color: var(--color-black);
	color: #fff;
}
.header-search .tags ul button.active {
	pointer-events: none;
}
@media (any-hover: hover) {
	.header-search .tags ul button:hover,
	.header-search .tags ul label:hover span {
		background-color: var(--color-black);
		color: #fff;
	}
}
@media screen and (max-width: 768px) {
	.header-search .tags {
		margin: 0 -10px 40px -10px;
	}
	
}

/**/
.header-search .list ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px;
}
.header-search .list ul li {
	flex-basis: 33.333%;
	margin-bottom: 40px;
	padding: 0 20px;
}
.header-search .list a {
	display: block;
	font-weight: 500;
	font-size: 13px;
	line-height: 1.5;
}
.header-search .list a > * {
	display: block;
}
.header-search .list a .thumb {
	display: block;
	position: relative;
	overflow: hidden;
}
.header-search .list a .thumb.border::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 1px solid #b4b4b4;
}
.header-search .list a .category {
	margin: 10px 0 5px 0;
	font-size: 12px;
	color: #b4b4b4;
}
.header-search .list a em {
	font-size: 14px;
}
.header-search .list a .text {
  margin-top: 5px;
  line-height: 1.6;
}

@media (any-hover: hover) {
	.header-search .list a .thumb img {
		transition: transform 0.4s ease;
	}
	.header-search .list a:hover .thumb img {
		transform: scale(1.06);
	}
}

@media screen and (max-width: 1080px) {
	.header-search .list ul li {
		flex-basis: 50%;
	}
}
@media screen and (max-width: 620px) {
	.header-search .list ul {
		display: block;
		margin: 0;
	}
	.header-search .list ul li {
		margin-bottom: 40px;
		padding: 0;
	}
}

/* ==================================================

	FOOTER

*/
.footer {
	position: relative;
	padding: 50px 0;
	background-color: #fff;
}
.footer .container {
	max-width: 100%;
}
.footer .row {
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 768px) {
	.footer .row {
		display: block;
	}
}

/**/
.footer .nav-recruit {
	width: 210px;
}
.footer .nav-recruit h2 {
	width: 210px;
	margin-bottom: 40px;
}
.footer .nav-recruit h2 a {
	display: block;
}
.footer .nav-recruit h2 span {
	display: block;
	margin-top: 12px;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.2;
}
.footer .nav-recruit nav {
	width: 196px;
	text-align: center;
	font-weight: 500;
	font-size: 13px;
	line-height: 1.2;
}
.footer .nav-recruit nav ul li {
	margin-bottom: 8px;
}
.footer .nav-recruit nav ul li:last-child {
	margin-bottom: 0;
}
.footer .nav-recruit nav ul a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 0.1em;
	min-height: 36px;
	background-color: var(--color-primary);
	border: 1px solid var(--color-primary);
	border-radius: 999em;
	color: #fff;
}
.footer .nav-recruit .link-career {
	background-color: #fff;
	color: var(--color-primary);
}
.footer .nav-recruit .link-group {
	background-color: var(--color-black);
	border-color: var(--color-black);
}
.footer .nav-recruit .link-gallery {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	min-height: 40px;
	border: 1px solid #b4b4b4;
	border-left-width: 0;
	border-right-width: 0;
}
.footer .nav-recruit .link-gallery span {
	display: block;
}
@media (any-hover: hover) {
	.footer .nav-recruit nav ul a {
		transition: all 0.3s ease;
	}
	.footer .nav-recruit nav ul a:hover {
		background-color: #fff;
		color: var(--color-primary);
	}
	.footer .nav-recruit .link-career:hover {
		background-color: var(--color-primary);
		color: #fff;
	}
	.footer .nav-recruit .link-group:hover {
		background-color: #fff;
		color: var(--color-black);
	}
	.footer .nav-recruit .link-gallery span {
		transition: opacity 0.3s ease;
	}
	.footer .nav-recruit .link-gallery:hover span {
		opacity: 0.6;
	}
}
@media screen and (max-width: 768px) {
	.footer .nav-recruit {
		width: 100%;
	}
	.footer .nav-recruit h2 {
		margin-bottom: 40px;
	}
	.footer .nav-recruit nav {
		width: 100%;
		font-size: 15px;
	}
	.footer .nav-recruit nav ul li {
		margin-bottom: 10px;
	}
	.footer .nav-recruit nav ul a {
		min-height: 60px;
	}
	.footer .nav-recruit .link-gallery {
		margin-top: 20px;
		min-height: 60px;
		font-size: 14px;
	}
}

/**/
.footer .nav-content nav {
	display: grid;
	grid-template-columns: repeat(3, auto);
	grid-template-rows: repeat(2, auto);
	grid-column-gap: 40px;
	grid-row-gap: 40px;
	min-width: 55vw;
	font-weight: 500;
	font-size: 12px;
	line-height: 1.5;
}
.footer .nav-content nav h3 {
	margin-bottom: 20px;
	font-size: 20px;
	line-height: 1.2;
}
.footer .nav-content nav li {
	margin-bottom: 10px;
}
@media (any-hover: hover) {
	.footer .nav-content nav li a {
		transition: opacity 0.3s ease;
	}
	.footer .nav-content nav li a:hover {
		opacity: 0.6;
	}
}
@media screen and (max-width: 1120px) {
	.footer .nav-content nav {
		grid-template-columns: repeat(2, auto);
	}
}
@media screen and (max-width: 1080px) {
	.footer .nav-content {
		padding-left: 40px;
	}
	.footer .nav-content nav {
		display: flex;
		flex-wrap: wrap;
		min-width: initial;
		grid-column-gap: 0;
    grid-row-gap: 0;
		margin: 0 -15px -40px -15px;
		font-size: 14px;
	}
	.footer .nav-content nav > div {
		flex-basis: 50%;
		margin-bottom: 40px;
		padding: 0 15px;
	}
}
@media screen and (max-width: 768px) {
	.footer .nav-content {
		margin-top: 50px;
		padding-left: 0;
	}
	.footer .nav-content nav > div {
		flex-basis: 100%;
	}
	.footer .nav-content nav > div:nth-child(3) {
		flex-basis: 44%;
	}
	.footer .nav-content nav > div:nth-child(4) {
		flex-basis: 56%;
	}
	.footer .nav-content nav h3 {
		font-size: 24px;
		line-height: 1.5;
	}
	.footer .nav-content nav h3::after {
		content: '';
		display: block;
		margin-top: 15px;
		width: 60px;
		height: 3px;
		background: var(--bg-gradient);
	}
}

/**/
.footer .nav-corporate {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
	font-weight: 500;
	font-size: 11px;
	line-height: 1.5;
}
.footer .nav-corporate ul {
	display: flex;
}
.footer .nav-corporate ul li {
	margin-right: 30px;
}
.footer .nav-corporate ul a {
	display: flex;
	align-items: center;
}
.footer .nav-corporate ul a i {
	margin-left: 0.3em;
	font-size: 10px;
}
.footer small {
	font-weight: 500;
	font-size: 12px;
	line-height: 1.5;
}
@media (any-hover: hover) {
	.footer .nav-corporate ul a {
		transition: opacity 0.3s ease;
	}
	.footer .nav-corporate ul a:hover {
		opacity: 0.6;
	}
}
@media screen and (max-width: 768px) {
	.footer .nav-corporate {
		display: block;
		margin-top: 40px;
	}
	.footer .nav-corporate ul {
		display: block;
		padding-bottom: 10px;
	}
	.footer .nav-corporate ul li {
		margin: 0 0 10px 0;
	}
}

/* ==================================================

	MODAL

*/
.modal {
	position: fixed;
	z-index: 9998;
	top: 0;
	bottom: 0;
	left: -200vw;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 80px 50px;
	width: 100%;
	background-color: rgba(0,0,0,0.5);
	opacity: 0;
	overflow-y: auto;
}
.modal[aria-hidden=false] {
	left: 0;
}
.modal .modal-content {
	position: relative;
	margin: auto;
	max-width: 1220px;
	width: 100%;
	background-color: var(--color-bg-gray);
}
.modal .modal-content .close {
	display: block;
	position: absolute;
	bottom: 100%;
	right: 0;
	margin-bottom: 15px;
	width: 42px;
	height: 42px;
}
.modal .modal-content .close::before,
.modal .modal-content .close::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
}
.modal .modal-content .close::before {
	transform: rotate(45deg);
}
.modal .modal-content .close::after {
	transform: rotate(-45deg);
}
.modal .modal-content .slick-arrow {
	position: absolute;
	z-index: 9999;
	top: 50%;
	margin-top: -32px;
	width: 64px;
	height: 64px;
	font-size: 34px;
}
.modal .modal-content .slick-prev {
	left: 0;
}
.modal .modal-content .slick-next {
	right: 0;
}
.modal .modal-content .block {
	padding: 50px 64px;
}
@media (any-hover: hover) {
	.modal .modal-content .close {
		transition: all 0.3s ease;
	}
	.modal .modal-content .close:hover {
		opacity: 0.6;
	}
	.modal .modal-content .slick-arrow {
		transition: all 0.3s ease;
	}
	.modal .modal-content .slick-arrow:hover {
		opacity: 0.6;
	}
}
@media screen and (max-width: 1080px) {
	.modal .modal-content {
		max-width: 720px;
	}
}
@media screen and (max-width: 768px) {
	.modal {
		top: 85px;
		z-index: 80;
		padding: 0;
	}
	.modal .modal-content {
		max-width: 100%;
	}
	.modal .modal-content .close {
		bottom: auto;
		top: 10px;
		right: 10px;
		margin-bottom: 0;
	}
	.modal .modal-content .close::before,
	.modal .modal-content .close::after {
		background-color: #2a2a2a;
	}
	.modal .modal-content .block {
		padding: 40px 25px 110px 25px;
	}
	.modal .modal-content .slick-arrow {
		top: auto;
		bottom: 20px;
		margin-top: 0;
		width: 64px;
		height: 64px;
		font-size: 34px;
	}
	.modal .modal-content .slick-prev {
		left: auto;
		right: 50%;
		margin-right: 40px;
	}
	.modal .modal-content .slick-next {
		right: auto;
		left: 50%;
		margin-left: 40px;
	}
}

/* ==================================================

	[ COMPONENT ] SUBHEAD

*/
.c-subhead {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.5em 1em;
	min-height: 85px;
	background-color: var(--color-primary-light);
	text-align: center;
	font-weight: 500;
	font-size: 22px;
	line-height: 1.5;
}
@media screen and (max-width: 768px) {
	.c-subhead {
		min-height: 70px;
		font-size: 18px;
	}
}

/* ==================================================

	[ COMPONENT ] BUTTON

*/
.c-button {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 3em 0.1em 3em;
	min-height: 60px;
	background-color: var(--color-primary);
	border: 1px solid var(--color-primary);
	border-radius: 999px;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.5;
	color: #fff;
}
@media (any-hover: hover) {
	.c-button {
		transition: all 0.3s ease;
	}
	.c-button:hover {
		background-color: #fff;
		color: var(--color-primary);
	}
}
/* SP */
@media screen and (max-width: 768px) {
	.c-button {
		padding: 0.5em 1.8em 0.6em 1.8em;
		min-width: 250px;
		min-height: 60px;
	}
}

.c-button-link {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 40px 0.06em 1em;
	min-height: 40px;
	border: 1px solid #707070;
	border-radius: 999px;
	font-weight: 500;
	font-size: 14px;
}
.c-button-link i {
	position: absolute;
	top: 50%;
	right: 10px;
	font-size: 12px;
	transform: translateY(-50%);
}
.c-button-link .icon-arrow-blank {
	right: 12px;
	font-size: 11px;
}
@media (any-hover: hover) {
	.c-button-link {
		transition: all 0.3s ease;
	}
	.c-button-link:hover {
		background-color: var(--color-black);
		border-color: var(--color-black);
		color: #fff;
	}
}

/* ==================================================

	[ LAYOUT ] HEADER

*/
.l-header {
	padding-top: 50px;
}
.l-header .container {
	max-width: 1266px;
}
@media screen and (min-width: 1400px) {
	.l-header .container {
		max-width: 91.4%;
	}
}
.l-header .category {
	display: flex;
	font-size: 27px;
	line-height: 1.5;
}
.l-header .category span {
	display: block;
}
.l-header .category span::after {
	content: '';
	display: block;
	margin-top: 5px;
	height: 4px;
	background: var(--bg-gradient);
}
.l-header h2 {
	margin: 40px 0 20px 0;
	font-weight: 500;
	font-size: 45px;
	line-height: 1.8;
}
.l-header .kv {
	position: relative;
	margin-top: 65px;
	padding-left: 50%;
}
.l-header .kv > div {
	position: relative;
	margin-left: -316px;
}
.l-header .kv-image {
	height: 420px;
}
.l-header .kv img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.l-header .kv .note {
	margin-top: 15px;
	margin-right: 100px;
	font-size: 14px;
}
@media screen and (max-width: 1080px) {
	.l-header .kv {
		padding-left: 120px;
	}
	.l-header .kv > div {
		margin-left: 0;
	}
	.l-header .kv-image {
		height: 340px;
	}
}
@media screen and (max-width: 768px) {
	.l-header {
		padding-top: 30px;
	}
	.l-header h2 {
		margin: 25px 0 20px 0;
		font-size: 27px;
	}
	.l-header .kv {
		margin-top: 35px;
		padding-left: 0;
	}
	.l-header .kv-image {
		height: 210px;
	}
	.l-header .kv .note {
		margin: 15px 0 0 0;
		padding: 0 25px;
		font-size: 12px;
	}
	.l-header .lead br {
		display: none;
	}
}

/* ==================================================

	[ LAYOUT ] BREADCRUMB

*/
.l-breadcrumb {
	display: flex;
	margin: 25px 0;
	font-size: 15px;
	line-height: 1.5;
}
.l-breadcrumb div {
	display: flex;
	align-items: center;
}
.l-breadcrumb div::after {
	content: '';
	display: block;
	margin: -2px 1em 0 1em;
	width: 30px;
	height: 1px;
	background-color: #707070;
}
.l-breadcrumb span {
	display: block;
}
.l-breadcrumb .jp {
	position: relative;
	bottom: 0.1em;
	font-size: 14px;
}
@media screen and (max-width: 768px) {
	.l-breadcrumb {
		margin: 20px 0;
		font-size: 14px;
	}
}

/* ==================================================

	[ LAYOUT ] CENTER

*/
.l-center {
	display: flex;
	justify-content: center;
}

/* ==================================================

	[ LAYOUT ] LIST INDENT

*/
.l-list-indent > li {
	padding-left: 1em;
	text-indent: -1em;
}

/* ==================================================

	[ LAYOUT ] PROFILE

*/
.l-profile {
	margin: 100px 0;
}
.l-profile .wrap {
	position: relative;
	padding-left: 170px;
}
.l-profile h2 {
	position: absolute;
	top: -1em;
	left: 50px;
	transform-origin: 0 100%;
	transform: rotate(90deg);
	font-size: 25px;
	line-height: 1;
}
.l-profile .block {
	position: relative;
	margin-bottom: 50px;
	padding-left: 200px;
	min-height: 160px;
}
.l-profile .block:last-child {
	margin-bottom: 0;
}
.l-profile .block .portrait {
	position: absolute;
	top: 0;
	left: 0;
}
.l-profile .block .portrait span {
	display: block;
	overflow: hidden;
	width: 160px;
	border-radius: 50%;
}
.l-profile .block .head {
	margin-bottom: 20px;
}
.l-profile .block .head .info {
	display: flex;
	align-items: center;
}
.l-profile .block .head .name {
	flex-basis: 170px;
	font-weight: 500;
	font-size: 24px;
	line-height: 1.2;
}
.l-profile .block .head .initial {
	flex-basis: 160px;
}
.l-profile .block .head .initial dt {
	margin-bottom: 5px;
	font-weight: 500;
	font-size: 15px;
}
.l-profile .block .head .initial dd {
	font-size: 35px;
	line-height: 1.2;
}
.l-profile .block .head .divison {
	flex: 1;
	padding-left: 20px;
	border-left: 1px solid #b4b4b4;
	font-size: 14px;
	line-height: 1.8;
}
.l-profile .block p {
	font-size: 15px;
}
@media screen and (max-width: 1080px) {
	.l-profile .wrap {
		padding-left: 0;
	}
	.l-profile h2 {
		position: static;
		transform: rotate(0);
		margin-bottom: 40px;
	}
}
@media screen and (max-width: 768px) {
	.l-profile {
		margin: 50px 0;
	}
	.l-profile h2 {
		margin-bottom: 25px;
	}
	.l-profile .block {
		margin-bottom: 30px;
		padding-left: 0;
		min-height: initial;
	}
	.l-profile .block .portrait {
		position: static;
		margin-right: 15px;
	}
	.l-profile .block .portrait span {
		width: 120px;
	}
	.l-profile .block .head {
		display: flex;
		align-items: center;
	}
	.l-profile .block .head .info {
		display: block;
	}
	.l-profile .block .head .name {
		margin-bottom: 10px;
	}
	.l-profile .block .head .initial {
		margin-bottom: 5px;
	}
	.l-profile .block .head .initial dt {
		margin-bottom: 0;
		font-weight: 500;
		font-size: 13px;
	}
	.l-profile .block .head .initial dd {
		font-size: 28px;
		line-height: 1.2;
	}
	.l-profile .block .head .divison {
		flex: 1;
		padding-left: 0;
		border-left: 0;
		font-size: 11px;
		line-height: 1.8;
	}
	.l-profile .block p {
		font-size: 14px;
	}
}

/* ==================================================

	[ LAYOUT ] NEXT CONTENT

*/
.l-next-content {
	margin: 100px 0;
	text-align: center;
}
.l-next-content > div {
	display: flex;
	justify-content: center;
}
.l-next-content h2 {
	margin-bottom: 30px;
	font-size: 27px;
	line-height: 1.5;
}
.l-next-content .c-button {
	min-height: 82px;
	font-size: 19px;
}
@media screen and (max-width: 768px) {
	.l-next-content {
		margin: 50px 0;
	}
	.l-next-content h2 {
		margin-bottom: 20px;
		font-size: 22px;
	}
	.l-next-content .c-button {
		min-height: 60px;
		font-size: 15px;
	}
}