@charset "UTF-8";
/* --------------------------------------------------
	CSS Reset
-------------------------------------------------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	font-style: normal;
}
html {
	scroll-behavior: smooth;
}
body {
	position: relative;
	line-height: 1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display: block;
}
ul,ol {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
a:link,
a:visited {
	color: #464646;
	text-decoration: none;
}
a:hover,
a:active {
	color: #464646;
	text-decoration: underline;
}
a,
a img {
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
a:hover { opacity: 0.7; }
table {
	border-collapse: collapse;
	border-spacing: 0;
}
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}
input, select {
	vertical-align: middle;
}
h1,h2,h3,h4,h5,h6,
dt,dd,li,form,input,select,textarea,
p,address,pre,blockquote,th,td,div {
	font-size: 16px;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.6;
	color: #464646;
	font-feature-settings: "palt";
}
div { letter-spacing: 0; }
.roboto {
  font-family: "Roboto", sans-serif;
}
img {
	vertical-align: top;
	width: 100%;
}
sup {
	font-size: 60%;
	vertical-align: text-top;
}

/* --------------------------------------------------
	form
-------------------------------------------------- */
label { cursor: pointer; }
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
	padding: 3px;
	box-sizing: border-box;
	background: #FFF;
	border: 1px solid #C3C1C1;
	transition: 0.2s linear;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
	box-shadow: 0 0 3px 3px rgba(0,0,0,0.1) inset;
}
textarea { width: 100%; }
input[type="submit"],
input[type="reset"],
input[type="button"] {
	float: left;
	display: block;
	padding: 32px 0;
	margin: 0 auto;
	width: 290px;
	box-sizing: border-box;
	background: #555555;
	border: 0;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	cursor: pointer;
	transition: 0.2s linear;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover { opacity: 0.7; }
@media screen and (max-width: 768px) {
	input[type="submit"],
	input[type="reset"],
	input[type="button"] {
		padding: 7.3334vw 0;
		width: 73.3334vw;
		border-radius: 2vw;
		font-size: 4.8vw;
	}
}

/* --------------------------------------------------
	.anchor
-------------------------------------------------- */
.anchor { transform: translate(0,-100px); }
@media screen and (max-width: 768px) {
	.anchor { transform: translate(0,-16vw); }
}

/* --------------------------------------------------
	.btn-pagetop
-------------------------------------------------- */
.btn-pagetop {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 100;
}
.btn-pagetop a {
	display: block;
	width: 62px;
	height: 66px;
	overflow: hidden;
	background: url("../img/common/btn_pagetop.svg") no-repeat center center;
	background-size: 100% auto;
	text-indent: -9999px;
}
@media screen and (max-width: 768px) {
	.btn-pagetop a {
		width: 13.8667vw;
		height: 14.6667vw;
	}
}

/* --------------------------------------------------
	.inner
-------------------------------------------------- */
.inner {
	position: relative;
	margin: 0 auto;
	max-width: 1450px;
}

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

/* --------------------------------------------------
	.header
-------------------------------------------------- */
body {
	padding-top: 100px;
}
.header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100px;
	background: linear-gradient(360deg, #D7EEFF 1%, #FFFFFF 42%);
	transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.header::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
	display: block;
	width: 100%;
	height: 1px;
	background-color: #D9D9D9;
}
.header .inner {
	width: 100%;
	max-width: 100%;
	height: 100px;
}
.header .menu-btn {
	display: none;
}
.header .logo {
	position: absolute;
	left: 40px;
	top: 50%;
	transform: translate(0,-50%);
	width: 164px;
}
.header nav {
	margin-left: 244px;
	width: calc( 100% - 244px );
	height: 100%;
}
.header .gnav-wrapper {
	height: 100%;
}
.header .gnav {
	position: relative;
	display: flex;
	justify-content: flex-end;
	margin-left: auto;
	width: 100%;
	height: 100%;
	max-width: 1135px;
}
.header .gnav > li {
	height: 100%;
}
.header .gnav > li > a {
	position: relative;
	display: grid;
	place-items: center;
	padding: 20px;
	width: 100%;
	min-width: 4em;
	height: 100%;
	box-sizing: border-box;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.header .gnav > li > a::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	width: 100%;
	height: 4px;
	background-color: #f00;
	opacity: 0;
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.header .gnav > li > a:hover {
	text-decoration: none;
	opacity: 1;
}
.header .gnav > li:hover > a::before {
	opacity: 1;
}
.header .gnav > li.gnav-contact {
	margin-left: 40px;
	width: 200px;
}
.header .gnav > li.gnav-contact > a {
	background-color: #FF0000;
	color: #fff;
}
.header .gnav .gnav-sub {
	position: absolute;
	left: 0;
	top: 100px;
	display: flex;
	align-items: center;
	gap: 35px;
	padding: 40px;
	width: calc( 100% - 240px );
	height: 230px;
	box-sizing: border-box;
	background: #ECECEC;
	border-radius: 0 0 10px 10px;
	opacity: 0;
	pointer-events: none;
	transition: all 0.01s cubic-bezier(0.19, 1, 0.22, 1);
}
.header .gnav > li.has-child:hover .gnav-sub {
	opacity: 1;
	pointer-events: auto;
}
.header .gnav .gnav-sub-bg {
	flex-shrink: 0;
	width: 250px;
	height: 170px;
	border-radius: 6px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
.header .gnav .gnav-consulting .gnav-sub-bg {
	background-image: url("../img/common/gnav_pic_consulting.png");
}
.header .gnav .gnav-c-cert .gnav-sub-bg {
	background-image: url("../img/common/gnav_pic_c-cert.png");
}
.header .gnav .gnav-company .gnav-sub-bg {
	background-image: url("../img/common/gnav_pic_company.png");
}
.header .gnav .gnav-sub p {
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
	text-align: center;
}
.header .gnav .gnav-sub ul {}
.header .gnav .gnav-sub ul:has(> :nth-child(6)) {
	columns: 2;
}
.header .gnav .gnav-sub li {
	padding-left: 1.8em;
	text-indent: -1.8em;
	font-size: 15px;
}
.header .gnav .gnav-sub li > a::before {
	content: '→';
	padding-right: 1em;
	color: #f00;
}
.header .gnav .gnav-sub li > a:hover {
	text-decoration: none;
}
.header .gnav .gnav-sub li + li {
	margin-top: 0.6em;
}
@media screen and (max-width: 1380px) {
	.header .gnav > li > a {
		padding: 10px;
	}
	.header .gnav > li.gnav-contact {
		margin-left: 10px;
	}
}
@media screen and (max-width: 1210px) {
	.header .gnav > li > a {
		font-size: 14px;
	}
	.header .gnav .gnav-sub p {
		display: none;
	}
}
@media screen and (max-width: 1040px) {
	.header .logo {
		left: 20px;
	}
	.header nav {
		margin-left: 184px;
		width: calc( 100% - 184px );
	}
	.header .gnav > li > a {
		font-size: 14px;
	}
	.header .gnav > li.gnav-contact {
		margin-left: 0;
	}
}
@media screen and (max-width: 900px) {
	.header .gnav > li > a {
		padding: 10px;
		font-size: 14px;
	}
	.header .gnav .gnav-sub {
		padding: 20px;
		width: 100%;
	}
}
@media screen and (max-width: 768px) {
	body {
		padding-top: 16vw;
	}
	.header {
		width: 100%;
		height: 16vw;
	}
	.header .inner {
		height: 16vw;
	}
	.header .menu-btn {
		position: absolute;
		right: 0;
		top: 0;
		z-index: 101;
		display: block;
		width: 16vw;
		height: 16vw;
		cursor: pointer;
	}
	.header .menu-btn span {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		display: block;
		width: 6.6667vw;
		height: 2px;
		background-color: #f00;
		transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
	}
	.header .menu-btn span:nth-child(1) {
		top: 5.8667vw;
	}
	.header .menu-btn span:nth-child(2) {
	}
	.header .menu-btn span:nth-child(3) {
		top: 10.4vw;
	}
	.header.is--active .menu-btn span:nth-child(1) {
		top: 50%;
		transform: translate(-50%,-50%) rotate(45deg);
	}
	.header.is--active .menu-btn span:nth-child(2) {
		opacity: 0;
	}
	.header.is--active .menu-btn span:nth-child(3) {
		top: 50%;
		transform: translate(-50%,-50%) rotate(-45deg);
	}
	.header .logo {
		left: 5.8667vw;
		width: 22.9334vw;
	}
	.header nav {
		margin-left: 0;
		width: 100%;
	}
	.header .gnav-wrapper {
		position: absolute;
		left: 100vw;
		top: 16vw;
		z-index: 100;
		padding: 10.6667vw 5.8667vw 26.6667vw;
		width: 100%;
		height: auto;
		max-height: calc( 100vh - 16vw );
		background-color: #464646;
		box-sizing: border-box;
		transition: left 0.3s cubic-bezier(0.19, 1, 0.22, 1);
		overflow-y: scroll;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.header .gnav-wrapper::-webkit-scrollbar {
		display: none;
	}
	.header.is--active .gnav-wrapper { left: 0; }
	.header .gnav {
		display: block;
		height: auto;
	}
	.header .gnav > li {
		position: relative;
		width: 100%;
		height: auto;
		border-bottom: rgba(255,255,255,0.3) 1px solid;
	}
	.header .gnav > li + li {
		margin-top: 0;
	}
	.header .gnav > li > a {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		padding: 6.6667vw 6.6667vw 6.6667vw 0;
		font-size: 4vw;
		color: #fff;
	}
	.header .gnav > li > a::before {
		display: none;
	}
	.header .gnav > li > a:after {
		content: '';
		position: absolute;
		right: 4.2667vw;
		top: 50%;
		transform: translate(0,-50%);
		display: block;
		width: 2.4vw;
		height: 3.7334vw;
		background: url("../img/common/icon_arrow_right_white.svg") no-repeat;
		background-size: contain;
	}
	.header .gnav > li.has-child > a:after {
		display: none;
	}
	.header .gnav > li.gnav-contact {
		margin: 8vw auto 0;
		width: 69.3334vw;
		height: 13.8667vw;
		border-bottom: none;
	}
	.header .gnav > li.gnav-contact > a {
		justify-content: center;
		border-radius: 6.9334vw;
	}
	.header .gnav > li.gnav-contact > a:after {
		right: 5.8667vw;
	}
	.header .gnav > li .sub-menu-btn {
		position: absolute;
		right: 0;
		top: 0;
		transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
		display: block;
		width: 10.6667vw;
		height: 18.6667vw;
	}
	.header .gnav > li .sub-menu-btn span {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		display: block;
		width: 4vw;
		height: 2px;
		background-color: #fff;
		transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
	}
	.header .gnav > li .sub-menu-btn span:nth-child(1) {
		transform: translate(-50%,-50%) rotate(90deg);
	}
	.header .gnav > li.has-child.is--active .sub-menu-btn span:nth-child(1) {
		transform: translate(-50%,-50%);
	}
	.header .gnav .gnav-sub {
		display: none;
		position: static;
		top: auto;
		margin-left: 5.3334vw;
		padding: 0 0 8vw;
		width: auto;
		height: auto;
		background: transparent;
		opacity: 1;
		pointer-events: auto;
	}
	.header .gnav .gnav-sub-bg {
		display: none;
	}
	.header .gnav .gnav-sub ul {
		margin-left: 0;
	}
	.header .gnav .gnav-sub ul:has(> :nth-child(6)) {
		columns: 1;
	}
	.header .gnav .gnav-sub li {
		font-size: 3.7334vw;
	}
	.header .gnav .gnav-sub li > a {
		color: #fff;
	}
	.header .gnav .gnav-sub li > a::before {
		content: '→';
		padding-right: 1em;
		color: #f00;
	}
	.header .gnav .gnav-sub li + li {
		margin-top: 0.6em;
	}
}

/* --------------------------------------------------
	.main-contents
-------------------------------------------------- */
.main-contents {
	margin: 0 auto;
	overflow: hidden;
}
@media screen and (max-width: 768px) {
	.main-contents {}
}

/* --------------------------------------------------
	.btn-small
-------------------------------------------------- */
.btn-small {
	position: relative;
	display: block;
	padding: 0 0 0.1em;
	width: 160px;
	height: 36px;
	background-color: #fff;
	border-radius: 18px;
	box-sizing: border-box;
	border: 0;
	font-size: 13px;
	font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  line-height: 1;
	letter-spacing: 0.05em;
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	cursor: pointer;
}
.btn-small:hover {
	opacity: 0.5;
}
.btn-small a:hover {
	text-decoration: none;
}
.btn-small::before {
	content: '';
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translate(0,-50%);
	display: block;
	width: 7px;
	height: 11px;
	background: url("../img/common/icon_arrow_right_red.svg") no-repeat;
	background-size: contain;
}
@media screen and (max-width: 768px) {
	.btn-small {
		width: 42.6667vw;
		height: 9.6vw;
		border-radius: 4.8vw;
		font-size: 3.4667vw;
	}
	.btn-small::before {
		right: 4.2667vw;
		width: 1.8667vw;
		height: 2.9334vw;
	}
}

/* --------------------------------------------------
	.btn-medium
-------------------------------------------------- */
.btn-medium {
	position: relative;
	display: block;
	padding: 0 0 0.1em;
	width: 200px;
	height: 40px;
	background-color: #fff;
	border-radius: 20px;
	box-sizing: border-box;
	border: 0;
	font-size: 15px;
	font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  line-height: 1;
	letter-spacing: 0.05em;
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	cursor: pointer;
}
.btn-medium:hover {
	opacity: 0.5;
}
.btn-medium a:hover {
	text-decoration: none;
}
.btn-medium::before {
	content: '';
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translate(0,-50%);
	display: block;
	width: 7px;
	height: 11px;
	background: url("../img/common/icon_arrow_right_red.svg") no-repeat;
	background-size: contain;
}
@media screen and (max-width: 768px) {
	.btn-medium {
		width: 34vw;
		height: 8vw;
		border-radius: 4vw;
		font-size: 3.2vw;
	}
	.btn-medium::before {
		right: 4.2667vw;
		width: 1.8667vw;
		height: 2.9334vw;
	}
}

/* --------------------------------------------------
	.btn-large
-------------------------------------------------- */
.btn-large {
	position: relative;
	display: block;
	padding: 0 0 0.1em;
	width: 350px;
	height: 70px;
	background-color: #f00;
	border-radius: 35px;
	box-sizing: border-box;
	border: 0;
	font-size: 20px;
	font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  line-height: 1;
  color: #fff;
	letter-spacing: 0.05em;
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	cursor: pointer;
}
.btn-large:hover {
	opacity: 0.5;
}
.btn-large a {
  color: #fff;
}
.btn-large a:hover {
	text-decoration: none;
}
.btn-large::before {
	content: '';
	position: absolute;
	right: 32px;
	top: 50%;
	transform: translate(0,-50%);
	display: block;
	width: 10px;
	height: 18px;
	background: url("../img/common/icon_arrow_right_white.svg") no-repeat;
	background-size: contain;
}
@media screen and (max-width: 768px) {
	.btn-large {
		width: 80vw;
		height: 16vw;
		border-radius: 8vw;
		font-size: 4.2667vw;
	}
	.btn-large::before {
		right: 7.2vw;
		width: 2.4vw;
		height: 4vw;
	}
}

/* --------------------------------------------------
	.btn-shadow
-------------------------------------------------- */
.btn-shadow {
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
	.btn-shadow {
		box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
	}
}

/* --------------------------------------------------
	.btn-white
-------------------------------------------------- */
.btn-white {
	background-color: #fff;
}
.btn-white::before {
	background-image: url("../img/common/icon_arrow_right_red.svg");
}

/* --------------------------------------------------
	.btn-gray
-------------------------------------------------- */
.btn-gray {
	background-color: #464646;
  color: #fff;
}
.btn-gray a {
  color: #fff;
}
.btn-gray::before {
	background-image: url("../img/common/icon_arrow_right_white.svg");
}

/* --------------------------------------------------
	.btn-blue
-------------------------------------------------- */
.btn-blue {
	background-color: #0B99FF;
  color: #fff;
}
.btn-blue a {
  color: #fff;
}
.btn-blue::before {
	background-image: url("../img/common/icon_arrow_right_white.svg");
}

/* --------------------------------------------------
	.btn-red
-------------------------------------------------- */
.btn-red {
	background-color: #f00;
  color: #fff;
}
.btn-red a {
  color: #fff;
}
.btn-red::before {
	background-image: url("../img/common/icon_arrow_right_white.svg");
}

/* --------------------------------------------------
	h2.ttl-enja
-------------------------------------------------- */
h2.ttl-enja {
	margin-bottom: 45px;
}
h2.ttl-enja .en {
	display: block;
	font-family: "Roboto", sans-serif;
	font-weight: 100;
	font-size: 70px;
	line-height: 1;
	color: #f00;
	text-align: center;
}
h2.ttl-enja .ja {
	display: block;
	font-weight: 500;
	font-size: 18px;
	line-height: 1;
	letter-spacing: 0.05em;
	text-align: center;
}
h2.ttl-enja .en + .ja {
	margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
	h2.ttl-enja {
		margin-bottom: 8vw;
	}
	h2.ttl-enja .en {
		font-size: 12.2667vw;
	}
	h2.ttl-enja .ja {
		font-size: 3.4667vw;
	}
}

/* --------------------------------------------------
	h3.ttl-enja
-------------------------------------------------- */
h3.ttl-enja {}
h3.ttl-enja .en {
	display: block;
	font-family: "Roboto", sans-serif;
	font-weight: 100;
	font-size: 55px;
	letter-spacing: 0.05em;
	line-height: 1;
	color: #f00;
}
h3.ttl-enja .ja {
	display: block;
	font-weight: 500;
	font-size: 18px;
	line-height: 1;
	letter-spacing: 0.05em;
}
h3.ttl-enja .en + .ja {
	margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
	h3.ttl-enja {
		margin-bottom: 10.6667vw;
	}
	h3.ttl-enja .en {
		font-size: 10.6667vw;
	}
	h3.ttl-enja .ja {
		font-size: 3.7334vw;
	}
}

/* --------------------------------------------------
	h2.ttl-udbar
-------------------------------------------------- */
h2.ttl-udbar {
	margin-bottom: 45px;
	text-align: center;
}
h2.ttl-udbar span {
	position: relative;
	display: inline-block;
	font-weight: 500;
	font-size: 28px;
	line-height: 1;
}
h2.ttl-udbar span::after {
	content: '';
	display: block;
	margin: 22px auto 0;
	width: 18px;
	height: 3px;
	background-color: #f00;
	border-radius: 2px;
}
@media screen and (max-width: 768px) {
	h2.ttl-udbar {
		margin-bottom: 8vw;
	}
	h2.ttl-udbar span {
		font-size: 5.8667vw;
	}
	h2.ttl-udbar span::after {
		margin-top: 2.6667vw;
		width: 4.8vw;
		height: 0.8vw;
		border-radius: 0.5334vw;
	}
}

/* --------------------------------------------------
	.page-title-area
-------------------------------------------------- */
.page-title-area {
	background: url("../img/common/common_page_title_bg_pc.png") no-repeat center top;
}
@media screen and (min-width: 1921px) {
	.page-title-area {
		background-size: cover;
	}
}
.page-title-area .inner {
	display: grid;
	place-items: center;
	height: 300px;
}
.page-title-area h1.ttl-enja .ja {
	display: block;
	font-weight: 500;
	font-size: 36px;
	line-height: 1.2;
	letter-spacing: 0.05em;
	text-align: center;
}
.page-title-area h1.ttl-enja .en {
	display: block;
  font-family: "Roboto", sans-serif;
	font-weight: 300;
	font-size: 24px;
	line-height: 1;
	color: #f00;
	text-align: center;
}
.page-title-area h1.ttl-enja .ja + .en {
	margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
	.page-title-area {
		background-image: url("../img/common/common_page_title_bg_sp.png");
		background-size: cover;
	}
	.page-title-area .inner {
		height: 40vw;
	}
	.page-title-area h1.ttl-enja .ja {
		font-size: 6.4vw;
	}
	.page-title-area h1.ttl-enja .en {
		font-size: 4vw;
	}
}

/* --------------------------------------------------
	.breadcrumb
-------------------------------------------------- */
.breadcrumb {
	margin: 15px auto;
	padding-left: 20px;
	padding-right: 20px;
	max-width: 1040px;
	box-sizing: border-box;
}
.breadcrumb ol {
	display: flex;
}
.breadcrumb ol li {
	white-space: nowrap;
	font-size: 12px;
}
.breadcrumb ol li:last-child {
	text-overflow: ellipsis;
	overflow: hidden;
}
.breadcrumb ol li + li:before {
	content: '＞';
	display: inline-block;
	margin: 0 1em;
}
@media screen and (max-width: 768px) {
	.breadcrumb {
		margin: 2.6667vw auto;
		padding-left: 0;
		padding-right: 0;
		max-width: 90.6667vw;
	}
	.breadcrumb ol li {
		font-size: 2.6667vw;
	}
}

/* --------------------------------------------------
	.yoast-breadcrumbs
-------------------------------------------------- */
.yoast-breadcrumbs {
	margin: 15px auto;
	padding-left: 20px;
	padding-right: 20px;
	max-width: 1040px;
	box-sizing: border-box;
}
.yoast-breadcrumbs > span {
	display: flex;
	gap: 1em
}
.yoast-breadcrumbs span {
	font-size: 12px;
}
.yoast-breadcrumbs > span span {
	white-space: nowrap;
}
.yoast-breadcrumbs > span span:last-child {
	text-overflow: ellipsis;
	overflow: hidden;
}
@media screen and (max-width: 768px) {
	.yoast-breadcrumbs {
		margin: 2.6667vw auto;
		padding-left: 0;
		padding-right: 0;
		max-width: 90.6667vw;
	}
	.yoast-breadcrumbs span {
		font-size: 2.6667vw;
	}
}

/* --------------------------------------------------
	.second-nav
-------------------------------------------------- */
.second-nav {
	margin: 0 auto 200px;
	padding-left: 20px;
	padding-right: 20px;
	max-width: 1040px;
	box-sizing: border-box;
}
.second-nav ul {
	display: flex;
	gap: 37px;
	height: 80px;
}
.second-nav ul li {
	flex: 1;
	height: 100%;
}
.second-nav ul li a {
	position: relative;
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	font-size: 16px;
	font-weight: 500;
}
.second-nav ul li a:hover {
	text-decoration: none;
	opacity: 1;
}
.second-nav ul li a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 4px;
	background-color: #f00;
	opacity: 0;
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.second-nav ul li a:hover::after {
	opacity: 1;
}
.page-greeting .second-nav li:nth-child(1) a::after {
	opacity: 1;
}
.page-profile .second-nav li:nth-child(2) a::after {
	opacity: 1;
}
.page-timeline .second-nav li:nth-child(3) a::after {
	opacity: 1;
}
.page-effort .second-nav li:nth-child(4) a::after {
	opacity: 1;
}
.page-history .second-nav li:nth-child(5) a::after {
	opacity: 1;
}
@media screen and (max-width: 768px) {
	.second-nav {
		margin-bottom: 26.6667vw;
		padding-left: 0;
		padding-right: 0;
		max-width: 90.6667vw;
	}
	.second-nav ul {
		flex-wrap: wrap;
		gap: 2.6667vw 5.3334vw;
		height: auto;
	}
	.second-nav ul li {
		flex: initial;
		width: 42.6667vw;
	}
	.second-nav ul li a {
		display: block;
		padding: 4vw 2.1334vw;
		box-sizing: border-box;
		font-size: 3.7334vw;
	}
	.second-nav ul li a::after {
		height: 2px;
	}
}

/* --------------------------------------------------
	.common-contact
-------------------------------------------------- */
.common-contact {
	background-color: #F8F8F8;
}
.common-contact .inner {
	padding-top: 150px;
	padding-bottom: 160px;
}
.common-contact h2 {
	margin-bottom: 40px;
}
.common-contact h2 .ja {
	margin-bottom: 0.5em;
}
.common-contact .lead {
	font-size: 32px;
	letter-spacing: 0.05em;
	text-align: center;
}
.common-contact .text {
	margin-top: 1em;
	font-size: 16px;
	line-height: 1.8;
	text-align: center;
}
.common-contact .btn-contact {
	margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
	.common-contact .inner {
		padding-top: 18.6667vw;
		padding-bottom: 18.6667vw;
	}
	.common-contact h2 {
		margin-bottom: 8vw;
	}
	.common-contact .lead {
		font-size: 5.8667vw;
	}
	.common-contact .text {
		font-size: 3.7334vw;
	}
	.common-contact .btn-contact {
		margin-top: 8vw;
	}
}

/* --------------------------------------------------
	.error404
-------------------------------------------------- */
.main-contents .error404 { padding: 260px 0 300px; }
.main-contents .error404 h1 {
	margin-bottom: 90px;
	font-weight: 700;
	font-size: 39px;
	letter-spacing: 0.1em;
	text-align: center;
	line-height: 1;
}
.main-contents .error404 p {
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.02em;
	line-height: 2.25;
	text-align: center;
	color: #555;
}
@media screen and (max-width: 1040px) {
	.main-contents .error404 .inner {
		margin: 0 30px;
	}
}
@media screen and (max-width: 768px) {
	.main-contents .error404 { padding: 30.6667vw 0 34.6667vw; }
	.main-contents .error404 .inner {
		margin: 0 auto;
		max-width: 86.6667vw;
	}
	.main-contents .error404 h1 {
		margin-bottom: 10vw;
		font-size: 7.4667vw;
		letter-spacing: 0.02em;
	}
	.main-contents .error404 p {
		font-size: 3.7334vw;
		letter-spacing: 0.08em;
		line-height: 1.7;
	}
}

/* --------------------------------------------------
	.footer
-------------------------------------------------- */
.footer {}
.footer-nav {
	background-color: #464646;
}
.footer-nav .inner {
	padding: 70px 20px 185px;
	max-width: 1040px;
	box-sizing: border-box;
}
.footer-nav a:hover {
	text-decoration: none;
}
.footer-nav .inner > ul {
	display: grid;
	grid-template-columns: auto auto auto auto auto;
	grid-template-rows: auto auto auto auto;
	gap: 0 45px;
}
.footer-nav .inner > ul > li:nth-child(1) {
	margin-bottom: 40px;
	grid-column: 1 / 6;
	grid-row: 1 / 2;
}
.footer-nav .inner > ul > li:nth-child(2),
.footer-nav .inner > ul > li:nth-child(3),
.footer-nav .inner > ul > li:nth-child(4),
.footer-nav .inner > ul > li:nth-child(5) {
	grid-row: 2 / 10;
}
.footer-nav .inner > ul > li:nth-child(n+6) {
	grid-column: 5 / 6;
}
.footer-nav .inner > ul > li:nth-child(n+7) {
	margin-top: 1em;
}
.footer-nav .inner > ul > li > a {
	font-size: 15px;
	font-weight: 500;
	color: #fff;
}
.footer-nav .inner > ul > li > ul {
	margin-top: 0.5em;
	padding-top: 0.8em;
	border-top: #f00 1px solid;
}
.footer-nav .inner > ul > li > ul > li {
	padding-left: 1.8em;
	text-indent: -1.8em;
}
.footer-nav .inner > ul > li > ul > li > a {
	font-size: 14px;
	font-weight: 400;
	color: #fff;
}
.footer-nav .inner > ul > li > ul > li > a::before {
	content: '→';
	padding-right: 1em;
	color: #f00;
}
.footer-nav .inner > ul > li > ul > li + li {
	margin-top: 0.6em;
}
.footer-comapny {
	background-color: #fff;
}
.footer-comapny .inner {
	padding: 80px 20px 25px;
	max-width: 1040px;
	box-sizing: border-box;
}
.footer-company-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 80px;
}
.footer-company-flex .footer-logo {
	width: 198px;
}
.footer-company-flex .footer-address {
	padding-top: 10px;
}
.footer-company-flex .footer-address .footer-logo-ja {
	margin-bottom: 15px;
	width: 168px;
}
.footer-company-flex .footer-address p,
.footer-company-flex .footer-address li {
	font-size: 14px;
	line-height: 1.82;
}
.footer-company-flex .footer-address p,
.footer-company-flex .footer-address li span {
	font-weight: 500;
}
.footer-company-flex .footer-address ul {
	margin-top: 1em;
}
.footer-company-flex .footer-address li span {
	display: inline-block;
	width: 3em;
}
.footer-company-flex .footer-link {
	margin-top: auto;
	margin-left: auto;
}
.footer-company-flex .footer-link li {
	position: relative;
	display: inline-block;
	padding: 0 1.2em;
	font-size: 12px;
	line-height: 1;
}
.footer-company-flex .footer-link li:before,
.footer-company-flex .footer-link li:after {
	content: '';
	position: absolute;
	top: 10%;
	display: block;
	width: 0;
	height: 80%;
	border-left: #000 1px solid;
}
.footer-company-flex .footer-link li:before {
	left: 0;
}
.footer-company-flex .footer-link li:after {
	right: 0;
}
.footer .copyright {
	font-size: 10px;
	line-height: 1;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.footer-nav .inner {
		padding: 13.3334vw 8vw;
	}
	.footer-nav .inner > ul {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
		gap: 10.6667vw 9.3334vw;
	}
	.footer-nav .inner > ul > li:nth-child(1) {
		margin-bottom: 0;
		grid-column: 1 / 2;
		grid-row: 1 / 2;
	}
	.footer-nav .inner > ul > li:nth-child(2) {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
	}
	.footer-nav .inner > ul > li:nth-child(3) {
		grid-column: 1 / 3;
		grid-row: 2 / 3;
	}
	.footer-nav .inner > ul > li:nth-child(4) {
		grid-column: 1 / 3;
		grid-row: 3 / 4;
	}
	.footer-nav .inner > ul > li:nth-child(5) {
		grid-column: 1 / 3;
		grid-row: 4 / 5;
	}
	.footer-nav .inner > ul > li:nth-child(6) {
		grid-column: 1 / 2;
		grid-row: 5 / 6;
	}
	.footer-nav .inner > ul > li:nth-child(n+7) {
		margin-top: 0;
	}
	.footer-nav .inner > ul > li:nth-child(7) {
		grid-column: 2 / 3;
		grid-row: 5 / 6;
	}
	.footer-nav .inner > ul > li:nth-child(8) {
		grid-column: 1 / 2;
		grid-row: 6 / 7;
	}
	.footer-nav .inner > ul > li:nth-child(9) {
		grid-column: 2 / 3;
		grid-row: 6 / 7;
	}
	.footer-nav .inner > ul > li > a {
		font-size: 3.7334vw;
	}
	.footer-nav .inner > ul > li > a::before {
		content: '→';
		padding-right: 1em;
		color: #f00;
	}
	.footer-nav .inner > ul > li > ul > li + li {
		margin-top: 0.4em;
	}

	.footer-nav .inner > ul > li.has-child > a::before {
		display: none;
	}
	.footer-nav .inner > ul > li:nth-child(3) > ul,
	.footer-nav .inner > ul > li:nth-child(5) > ul {
		display: flex;
		flex-wrap: wrap;
		gap: 0.6em 9.3334vw;
	}
	.footer-nav .inner > ul > li:nth-child(3) > ul > li,
	.footer-nav .inner > ul > li:nth-child(5) > ul > li {
		width: calc( (100% - 9.3334vw) / 2 );
		box-sizing: border-box;
	}
	.footer-nav .inner > ul > li:nth-child(3) > ul > li + li,
	.footer-nav .inner > ul > li:nth-child(5) > ul > li + li {
		margin-top: 0;
	}
	.footer-nav .inner > ul > li > ul > li > a {
		font-size: 3.4667vw;
	}
	.footer-comapny .inner {
		padding: 13.3334vw 0;
	}
	.footer-company-flex {
		display: block;
		margin-bottom: 10.6667vw;
	}
	.footer-company-flex .footer-logo {
		margin-left: 22.9334vw;
		margin-bottom: 10.6667vw;
		width: 52.8vw;
	}
	.footer-company-flex .footer-address {
		margin-left: 17.3334vw;
		margin-bottom: 10.6667vw;
		padding-top: 0;
	}
	.footer-company-flex .footer-address .footer-logo-ja {
		margin-bottom: 1.6vw;
		width: 34.6667vw;
	}
	.footer-company-flex .footer-address p,
	.footer-company-flex .footer-address li {
		font-size: 3.7334vw;
	}
	.footer-company-flex .footer-link {
		text-align: center;
	}
	.footer-company-flex .footer-link li {
		font-size: 3.2vw;
	}
	.footer .copyright {
		font-size: 2.6667vw;
	}
}

/* --------------------------------------------------
	.other-page
-------------------------------------------------- */
.other-page {}
.other-page .inner {
	padding: 80px 20px 200px;
	max-width: 840px;
}
.other-page a {
	text-decoration: underline;
}
.other-page a:hover {
	text-decoration: none;
}
.other-page h1 {
	margin-bottom: 25px;
	font-weight: 600;
	font-size: 30px;
	letter-spacing: 0.05em;
}
.other-page * + h1{
	margin-top: 120px;
}
.other-page h2,
.other-page h3 {
	margin-bottom: 25px;
	font-weight: 600;
	font-size: 22px;
	letter-spacing: 0.05em;
	text-align: left;
}
.other-page .mt0 {
	margin-top: 0;
}
.other-page .mt50 {
	margin-top: 50px;
}
.other-page .mt100 {
	margin-top: 100px;
}
.other-page .align-right {
	text-align: right;
}
.other-page address {
	font-sityle: normal;
}
.other-page p,
.other-page li,
.other-page dd {
	font-weight: 400;
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 2;
}
.other-page dt {
	font-weight: 600;
	font-size: 18px;
	letter-spacing: 0.05em;
}
.other-page dl div {
	margin-top: 60px;
}

.other-page p + p,
.other-page p + ul,
.other-page p + ol,
.other-page ul + p,
.other-page ul + ol {
	margin-top: 30px;
}
.other-page table + h2 {
	margin-top: 55px;
}
.other-page table {
	margin-top: 1em;
	margin-bottom: 1em;
	width: 100%;
	border-top: #707070 1px solid;
	border-left: #707070 1px solid;
}
.other-page table th,
.other-page table td {
	padding: 0.8em;
	border-right: #707070 1px solid;
	border-bottom: #707070 1px solid;
	font-size: 15px;
	font-weight: 400;
	text-align: left;
}
.other-page table th {
	width: 24%;
	vertical-align: middle;
}
@media screen and (max-width: 768px) {
	.other-page .inner {
		margin: 0 auto;
		padding-top: 8vw;
		padding-bottom: 26.6667vw;
		max-width: 90.6667vw;
	}
	.other-page h1 {
		margin-bottom: 9.3334vw;
		font-size: 5.3334vw;
	}
	.other-page * + h1{
		margin-top: 9.3334vw;
	}
	.other-page h2,
	.other-page h3 {
		margin-bottom: 9.3334vw;
		font-size: 4.8vw;
	}
	.other-page .mt50 {
		margin-top: 13.3334vw;
	}
	.other-page .mt100 {
		margin-top: 26.6667vw;
	}
	.other-page p,
	.other-page li,
	.other-page dd {
		font-size: 3.7334vw;
	}
	.other-page dt {
		font-size: 4.2667vw;
	}
	.other-page dl div {
		margin-top: 16vw;
	}
	.other-page p + p,
	.other-page p + ul,
	.other-page p + ol,
	.other-page ul + p,
	.other-page ul + ol {
		margin-top: 8vw;
	}
	.other-page table + h2 {
		margin-top: 14.6667vw;
	}
	.other-page table th,
	.other-page table td {
		font-size: 3.7334vw;
	}
	.other-page table th {
		width: 40%;
	}
}

/* --------------------------------------------------
	.page-top
-------------------------------------------------- */

/* --------------------------------------------------
	.page-top .top-kv
-------------------------------------------------- */
.page-top .top-kv {
	position: relative;
}
.page-top .top-kv .inner {
	max-width: 100%;
}
.page-top .top-kv .top-kv-swiper {
	padding-bottom: 50px;
	height: 600px;
}
.page-top .top-kv .top-kv-swiper .swiper-slide {
	background-color: #fff;
}
.page-top .top-kv .top-kv-swiper .swiper-slide .swiper-slide-inner {
	margin: 0 auto;
	padding-top: 85px;
	padding-right: 20px;
	padding-left: 20px;
	max-width: 1450px;
	box-sizing: border-box;
}
.page-top .top-kv .top-kv-swiper .swiper-slide.slide-01 {
	background: url("../img/top/kv_slide_1_pc.png") no-repeat;
	background-size: cover;
}
.page-top .top-kv .top-kv-swiper .swiper-slide .slide-01-base {
	position: relative;
	margin: 0 0 0 auto;
	padding: 50px 60px 0;
	width: 645px;
	height: 360px;
	box-sizing: border-box;
}
.page-top .top-kv .top-kv-swiper .swiper-slide .slide-01-base::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: #828999;
	mix-blend-mode: multiply;
	border-radius: 10px;
}
.page-top .top-kv .top-kv-swiper .swiper-slide .slide-01-base p {
	position: relative;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.7;
	letter-spacing: 0.05em;
	color: #fff;
}
.page-top .top-kv .top-kv-swiper .swiper-slide .slide-01-base .btn-detail {
	position: relative;
	margin-top: 30px;
}
.page-top .top-kv .top-kv-swiper .swiper-button-next,
.page-top .top-kv .top-kv-swiper .swiper-button-prev {
	top: 300px;
	width: 70px;
	height: 70px;
}
.page-top .top-kv .top-kv-swiper .swiper-button-next {
	right: 50px;
}
.page-top .top-kv .top-kv-swiper .swiper-button-prev {
	left: 50px;
}
.page-top .top-kv .top-kv-swiper .swiper-button-next::after,
.page-top .top-kv .top-kv-swiper .swiper-button-prev::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: url("../img/common/btn_next_blue.svg") no-repeat;
	background-size: cover;
}
.page-top .top-kv .top-kv-swiper .swiper-button-prev::after {
	background-image: url("../img/common/btn_prev_blue.svg");
}
.page-top .top-kv .top-kv-swiper .swiper-pagination {
	left: auto;
	right: 13px;
	bottom: 0;
	text-align: right;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 7px;
}
.swiper-pagination-bullet {
	width: 28px;
	height: 28px;
	text-align: center;
	line-height: 28px;
	font-size: 14px;
  font-family: "Roboto", sans-serif;
	font-weight: 700;
	color: #fff;
	opacity: 1;
	background-color: #D9D9D9;
}
.swiper-pagination-bullet-active {
	background-color: #0B99FF;
}
@media screen and (max-width: 768px) {
	.page-top .top-kv {
		margin-bottom: 5.3334vw;
	}
	.page-top .top-kv .top-kv-swiper {
		padding-bottom: 10.6667vw;
		height: auto;
	}
	.page-top .top-kv .top-kv-swiper .swiper-slide .swiper-slide-inner {
		padding-top: 58.6667vw;
		padding-right: 0;
		padding-left: 0;
	}
	.page-top .top-kv .top-kv-swiper .swiper-slide.slide-01 {
		background-image: url("../img/top/kv_slide_1_sp.png");
		background-size: 100% auto;
	}
	.page-top .top-kv .top-kv-swiper .swiper-slide .slide-01-base {
		padding: 5.3334vw 8vw 10.6667vw;
		width: 100%;
		height: calc( 100% - 58.6667vw );
	}
	.page-top .top-kv .top-kv-swiper .swiper-slide .slide-01-base::before {
		border-radius: 0 0 5.3334vw 5.3334vw;
	}
	.page-top .top-kv .top-kv-swiper .swiper-slide .slide-01-base p {
		font-size: 4.5334vw;
	}
	.page-top .top-kv .top-kv-swiper .swiper-slide .slide-01-base .btn-detail {
		margin-top: 4vw;
	}
	.page-top .top-kv .top-kv-swiper .swiper-button-next,
	.page-top .top-kv .top-kv-swiper .swiper-button-prev {
		display: none;
	}
	.page-top .top-kv .top-kv-swiper .swiper-pagination {
		right: auto;
		bottom: 0;
		text-align: center;
	}
	.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
	.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
		margin: 0 1.3334vw;
	}
	.swiper-pagination-bullet {
		width: 5.3334vw;
		height: 5.3334vw;
		line-height: 5.3334vw;
		font-size: 2.6667vw;
	}
}

/* --------------------------------------------------
	.page-top .top-news-ticker
-------------------------------------------------- */
.page-top .top-news-ticker {
	position: relative;
	top: -128px;
	z-index: 2;
	margin-left: calc( 50% + 60px );
	margin-bottom: 20px;
	padding: 0 0 0 30px;
	height: 50px;
	background-color: #fff;
	border-radius: 25px 0 0 25px;
	box-sizing: border-box;
}
.page-top .top-news-ticker ul {
	height: 100%;
}
.page-top .top-news-ticker li {
	display: flex;
	align-items: center;
	height: 100%;
	gap: 2em;
	font-size: 13px;
}
.page-top .top-news-ticker li .date {
	font-size: 14px;
	font-weight: 700;
	color: #f00;
	white-space: nowrap;
}
.page-top .top-news-ticker li .category {
	padding: 1px 10px 3px;
	background-color: #EFEFEF;
	border-radius: 10px;
	font-size: 12px;
	white-space: nowrap;
}
.page-top .top-news-ticker li .subject {
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 13px;
	white-space: nowrap;
}
@media screen and (max-width: 1400px) {
	.page-top .top-news-ticker {
		margin-left: auto;
		max-width: 700px;
	}
}
@media screen and (max-width: 768px) {
	.page-top .top-news-ticker {
		top: 0;
		margin-left: 4.2667vw;
		margin-bottom: 24vw;
		padding-left: 2.6667vw;
		height: 9.6vw;
		border-radius: 4.8vw 0 0 4.8vw;
		border: #DCDCDC 1px solid;
	}
	.page-top .top-news-ticker li {
		gap: 1em;
		font-size: 3.2vw;
	}
	.page-top .top-news-ticker li .date {
		font-size: 2.9334vw;
	}
	.page-top .top-news-ticker li .category {
		padding: 1px 2.6667vw 3px;
		border-radius: 2.6667vw;
		font-size: 2.6667vw;
	}
	.page-top .top-news-ticker li .subject {
		margin-right: 0.5em;
		font-size: 3.2vw;
	}
}

/* --------------------------------------------------
	.page-top .top-column
-------------------------------------------------- */
.page-top .top-column {
	margin-bottom: 200px;
}
.page-top .top-column .inner {
	padding: 0;
	max-width: 100%;
}
.page-top .top-column .top-column-swiper-container {
	position: relative;
	margin: 0 auto;
	padding-bottom: 10px;
	max-width: 1550px;
	overflow: hidden;
}
.page-top .top-column .top-column-swiper::before,
.page-top .top-column .top-column-swiper::after {
	content: '';
	position: absolute;
	top: 0;
	z-index: 2;
	display: block;
	width: 400px;
	height: calc( 100% + 10px );
	pointer-events: none;
}
.page-top .top-column .top-column-swiper::before {
	left: 0;
	background: linear-gradient(90deg, #FFFFFF 22.37%, rgba(255, 255, 255, 0) 85.14%);
}
.page-top .top-column .top-column-swiper::after {
	right: 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 22.37%, #FFFFFF 85.14%);
}
.page-top .top-column .top-column-swiper {
	position: relative;
	left: 50%;
	transform: translate(-50%,0);
	width: 100%;
	overflow: visible;
}
.page-top .top-column .top-column-swiper .top-column-swiper-wrapper {
	overflow: visible;
}
.page-top .top-column .top-column-swiper .swiper-slide {
	padding: 0 15px;
	width: 310px;
	box-sizing: border-box;
}
.page-top .top-column .top-column-swiper .swiper-button-next,
.page-top .top-column .top-column-swiper .swiper-button-prev {
	z-index: 3;
	width: 32px;
	height: 60px;
}
.page-top .top-column .top-column-swiper .swiper-button-next::after,
.page-top .top-column .top-column-swiper .swiper-button-prev::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: url("../img/common/btn_next_red.svg") no-repeat;
	background-size: cover;
}
.page-top .top-column .top-column-swiper .swiper-button-prev::after {
	background-image: url("../img/common/btn_prev_red.svg");
}
.page-top .top-column .top-column-swiper .swiper-slide-base {
	padding-bottom: 30px;
	background: #F9F9F9;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 10px 5px rgba(0, 0, 0, 0.1);
}
.page-top .top-column .top-column-swiper .swiper-slide-base picture {
	display: block;
	margin-bottom: 30px;
}
.page-top .top-column .top-column-swiper .swiper-slide-base .date {
	margin: 0 20px;
	font-size: 13px;
	font-weight: 700;
	color: #f00;
}
.page-top .top-column .top-column-swiper .swiper-slide-base .subject {
	margin: 0.3em 20px;
	font-size: 16px;
	font-weight: 600;
}
.page-top .top-column .top-column-swiper .swiper-slide-base .contents {
	margin: 0 20px;
	font-size: 13px;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
.page-top .top-column .btn-detail {
	margin: 35px auto 0;
}
@media screen and (max-width: 768px) {
	.page-top .top-column {
		margin-bottom: 24vw;
	}
	.page-top .top-column .top-column-swiper-container {
		padding-bottom: 5px;
	}
	.page-top .top-column .top-column-swiper::before,
	.page-top .top-column .top-column-swiper::after {
		display: none;
	}
	.page-top .top-column .top-column-swiper {
		left: 0;
		transform: none;
		width: 85.3334vw;
	}
	.page-top .top-column .top-column-swiper .swiper-slide {
		padding: 0 5.3334vw;
		width: 85.3334vw;
	}
	.page-top .top-column .top-column-swiper .swiper-button-next,
	.page-top .top-column .top-column-swiper .swiper-button-prev {
		margin-top: 18.6667vw;
		top: 0;
		width: 5.3334vw;
		height: 9.6vw;
	}
	.page-top .top-column .top-column-swiper .swiper-button-next {
		right: -3.2vw;
	}
	.page-top .top-column .top-column-swiper .swiper-button-prev {
		left: -3.2vw;
	}
	.page-top .top-column .top-column-swiper .swiper-slide-base {
		padding-bottom: 5.3334vw;
		border-radius: 2.6667vw;
		box-shadow: 0px 5px 3px rgba(0, 0, 0, 0.1);
	}
	.page-top .top-column .top-column-swiper .swiper-slide-base picture {
		margin-bottom: 5.3334vw;
	}
	.page-top .top-column .top-column-swiper .swiper-slide-base .date {
		margin: 0 5.3334vw;
		font-size: 2.9334vw;
	}
	.page-top .top-column .top-column-swiper .swiper-slide-base .subject {
		margin: 0.3em 5.3334vw;
		font-size: 4.2667vw;
	}
	.page-top .top-column .top-column-swiper .swiper-slide-base .contents {
		margin: 0 5.3334vw;
		font-size: 3.4667vw;
	}
	.page-top .top-column .btn-detail {
		margin-top: 5.3334vw;
	}
}

/* --------------------------------------------------
	.page-top .top-purpose
-------------------------------------------------- */
.page-top .top-purpose {
	margin-bottom: 200px;
	padding-bottom: 550px;
	background-position: center bottom;
	background-repeat: no-repeat;
}
.page-top .top-purpose p {
	font-size: 30px;
	line-height: 2;
	letter-spacing: 0.05em;
	text-align: center;
}
@media screen and (min-width: 1921px) {
	.page-top .top-purpose {
	 	background-image: url("../img/top/top_purpose_pc@2x.png");
	 	background-size: 100% auto;
	}
}
@media screen and (max-width: 1920px) {
	.page-top .top-purpose {
	 	background-image: url("../img/top/top_purpose_pc.png");
	}
}
@media screen and (max-width: 768px) {
	.page-top .top-purpose {
		margin-bottom: 24vw;
		padding-bottom: 62.6667vw;
	 	background-image: url("../img/top/top_purpose_sp.png");
	 	background-size: 100% auto;
	}
	.page-top .top-purpose p {
		font-size: 5.6001vw;
	}
}

/* --------------------------------------------------
	.page-top .top-about
-------------------------------------------------- */
.page-top .top-about {
	margin-bottom: 200px;
}
.page-top .top-about-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto 65px;
	max-width: 910px;
}
.page-top .top-about-flex div:nth-child(1) {
	padding-left: 25px;
}
.page-top .top-about-flex div:nth-child(2) {
	width: 62.6374%;
}
.page-top .top-about-flex h2 {
	margin-bottom: 0;
}
.page-top .top-about-flex .lead {
	font-size: 32px;
	letter-spacing: 0.05em;
	line-height: 1.5;
}
.page-top .top-about-flex .text {
	margin-top: 25px;
	font-size: 16px;
	line-height: 1.7;
}
.page-top .top-about-flex .btn-detail {
	margin-top: 25px;
}
.page-top .top-about-swiper {
	margin: 0 auto;
	max-width: 1422px;
}
.page-top .top-about-swiper .swiper-slide {
	padding: 0 7px;
	width: 460px;
	box-sizing: border-box;
}
.page-top .top-about-swiper .swiper-slide picture {
	display: block;
	border-radius: 10px;
	overflow: hidden;
}
@media screen and (max-width: 950px) {
	.page-top .top-about-flex {
		margin-left: 20px;
		margin-right: 20px;
	}
}
@media screen and (max-width: 950px) and (min-width: 769px) {
	.page-top .top-about-flex .lead br {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.page-top .top-about {
		margin-bottom: 24vw;
	}
	.page-top .top-about-flex {
		display: block;
		margin-bottom: 10.6667vw;
	}
	.page-top .top-about-flex div:nth-child(1) {
		padding-left: 0;
	}
	.page-top .top-about-flex div:nth-child(2) {
		width: 100%;
	}
	.page-top .top-about-flex h2 {
		margin-bottom: 5.3334vw;
	}
	.page-top .top-about-flex .lead {
		font-size: 5.6001vw;
		line-height: 1.6;
		text-align: center;
	}
	.page-top .top-about-flex .text {
		margin: 8vw auto 0;
		width: 90.6667vw;
		font-size: 3.7334vw;
		line-height: 1.8;
	}
	.page-top .top-about-flex .btn-detail {
		margin: 6.6667vw auto 0;
	}
	.page-top .top-about-swiper {
		margin: 0 auto;
		max-width: 1410px;
	}
	.page-top .top-about-swiper .swiper-wrapper {
	  transition-timing-function: linear;
	}
	.page-top .top-about-swiper .swiper-slide {
		padding: 0 1.3334vw;
		width: 76.8vw;
		box-sizing: border-box;
	}
	.page-top .top-about-swiper .swiper-slide picture {
		border-radius: 1.8667vw;
	}
}

/* --------------------------------------------------
	.page-top .top-business
-------------------------------------------------- */
.page-top .top-business {
	margin-bottom: 230px;
}
.page-top .top-business .lead {
	margin-bottom: 90px;
	font-size: 32px;
	letter-spacing: 0.05em;
	text-align: center;
}
.page-top .top-business .graph-sp {
	display: none;
}
.page-top .top-business .graph {
	position: relative;
	margin: 0 auto;
	width: 850px;
}
.page-top .top-business .top-business-flex {
	width: 47.0589%;
}
.page-top .top-business .top-business-pic {
	position: relative;
	margin-bottom: 25px;
	width: 100%;
}
.page-top .top-business .top-business-pic .num {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%,-50%);
	font-size: 120px;
	font-weight: 100;
  font-family: "Roboto", sans-serif;
  color: #f00;
  line-height: ;
}
.page-top .top-business .top-business-contents h3 {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.05em;
	text-align: center;
}
.page-top .top-business .top-business-contents h3 span {
	display: block;
	margin-top: 0.5em;
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
	color: #f00;
	text-align: center;
}
.page-top .top-business .top-business-contents p {
	margin-top: 1em;
	font-size: 15px;
	text-align: center;
}
.page-top .top-business .top-business-contents .btn-detail {
	margin: 20px auto 0;
}
.page-top .top-business .top-business-1 {
	position: relative;
	display: flex;
	gap: 15px;
	margin-bottom: 10px;
	margin-left: -28px;
	width: 77.0589%;
}
.page-top .top-business .top-business-1 .top-business-pic {
	margin-bottom: 0;
	order: 1;
	flex-shrink: 0;
	width: 61.0688%;
}
.page-top .top-business .top-business-1 .top-business-contents {
	order: 0;
	padding-top: 55px;
}
.page-top .top-business .top-business-1 .top-business-contents h3,
.page-top .top-business .top-business-1 .top-business-contents h3 span,
.page-top .top-business .top-business-1 .top-business-contents p {
	text-align: left;
}
.page-top .top-business .top-business-1 .top-business-contents .btn-detail {
	margin-left: 0;
}
.page-top .top-business .top-business-2 {
	float: left;
}
.page-top .top-business .top-business-3 {
	margin-left: auto;
}
.page-top .top-business .graph .logo {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%,148%);
	width: 29.4118%;
}
@media screen and (max-width: 940px) {
	.page-top .top-business .graph {
		width: 90%;
	}
	.page-top .top-business .top-business-1 .top-business-contents {
		padding-top: 0;
	}
}
@media screen and (max-width: 768px) {
	.page-top .top-business {
		margin-bottom: 24vw;
	}
	.page-top .top-business h2 {
		margin-bottom: 6.6667vw;
	}
	.page-top .top-business .lead {
		margin-bottom: 10.6667vw;
		font-size: 3.7334vw;
	}
	.page-top .top-business .graph-sp {
		position: relative;
		display: block;
		margin: 0 auto 12vw;
		width: 78.9334vw;
	}
	.page-top .top-business .graph-sp .top-business-pic {
		margin-bottom: 0;
		width: 100%;
	}
	.page-top .top-business .graph-sp .top-business-pic .num {
		font-size: 10.6667vw;
	}
	.page-top .top-business .graph-sp .top-business-1,
	.page-top .top-business .graph-sp .top-business-2,
	.page-top .top-business .graph-sp .top-business-3 {
		width: 36vw;
	}
	.page-top .top-business .graph-sp .top-business-1 {
		margin: 0 auto 0.8vw;
	}
	.page-top .top-business .graph-sp .logo {
		position: absolute;
		left: 50%;
		transform: translate(-50%,0);
		top: 33.3334vw;
		width: 22.6667vw;
	}
	.page-top .top-business .graph {
		padding-top: 8vw;
		width: 100%;
		overflow: hidden;
	}
	.page-top .top-business .graph .top-business-flex,
	.page-top .top-business .graph .top-business-1 {
		display: flex;
		align-items: flex-start;
		gap: 4vw;
		width: 105.0667vw;
	}
	.page-top .top-business .top-business-pic {
		margin-top: 1.0667vw;
		margin-bottom: 0;
		width: 58.6667vw;
		flex-shrink: 0;
	}
	.page-top .top-business .top-business-pic .num {
		font-size: 17.6vw;
	}
	.page-top .top-business .top-business-contents h3 {
		font-size: 4.8vw;
		text-align: left;
	}
	.page-top .top-business .top-business-contents h3 span {
		font-size: 4.2667vw;
		text-align: left;
	}
	.page-top .top-business .top-business-contents p {
		font-size: 3.4667vw;
		text-align: left;
	}
	.page-top .top-business .top-business-contents .btn-detail {
		margin: 4vw 0 0;
	}
	.page-top .top-business .graph .top-business-1 {
		margin-bottom: 21.3334vw;
		margin-left: -9.8667vw;
	}
	.page-top .top-business .graph .top-business-1 .top-business-pic {
		order: 0;
		width: 58.6667vw;
	}
	.page-top .top-business .graph .top-business-1 .top-business-contents {
		order: 1;
		padding-top: 0;
	}
	.page-top .top-business .top-business-1 .top-business-contents h3,
	.page-top .top-business .top-business-1 .top-business-contents h3 span,
	.page-top .top-business .top-business-1 .top-business-contents p {
		text-align: left;
	}
	.page-top .top-business .graph .top-business-2 {
		margin-right: -9.8667vw;
		margin-left: 4.8vw;
		margin-bottom: 21.3334vw;
		float: none;
	}
	.page-top .top-business .graph .top-business-2 .top-business-pic {
		order: 1;
	}
	.page-top .top-business .graph .top-business-2 .top-business-contents {
		order: 0;
	}
	.page-top .top-business .graph .top-business-3 {
		margin-left: -9.8667vw;
	}
	.page-top .top-business .graph .logo {
		display: none;
	}
}

/* --------------------------------------------------
	.page-top .top-well-being
-------------------------------------------------- */
.page-top .top-well-being {
	margin-bottom: 200px;
}
.page-top .top-well-being .inner {
	max-width: 1500px;
}
.page-top .top-well-being-base {
	position: relative;
	z-index: 2;
	margin: 0 auto;
	padding: 40px 70px 50px;
	width: 700px;
	background-color: #fff;
	box-sizing: border-box;
	border: 1px solid #EFEFEF;
	box-shadow: 0px 10px 5px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
}
.page-top .top-well-being-base h2 {
	margin-bottom: 25px;
}
.page-top .top-well-being-base h2 span {
	text-align: left;
}
.page-top .top-well-being-base .top-well-being-flex {
	display: flex;
	gap: 10px;
	margin-bottom: 30px;
	width: 100%;
}
.page-top .top-well-being-base .top-well-being-flex .lead {
	flex-grow: 1;
}
.page-top .top-well-being-base .top-well-being-flex .lead p {
	font-size: 32px;
	letter-spacing: 0.05em;
	line-height: 1.5;
}
.page-top .top-well-being-base .top-well-being-flex .logo {
	flex-shrink: 0;
	width: 154px;
}
.page-top .top-well-being-base .text {
	font-size: 15px;
	line-height: 1.7;
}
.page-top .top-well-being-base .btn-detail {
	margin-top: 20px;
	margin-left: auto;
}
.page-top .top-well-being .top-well-being-swiper {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0,-50%);
	width: 100%;
	overflow: visible;
}
.page-top .top-well-being .top-well-being-swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.page-top .top-well-being .swiper-slide {
	padding: 0 15px;
	width: 510px;
	box-sizing: border-box;
}
@media screen and (max-width: 768px) {
	.page-top .top-well-being {
		margin-bottom: 2.6667vw;
	}
	.page-top .top-well-being-base {
		padding: 0;
		width: 100%;
		border: none;
		box-shadow: none;
		border-radius: 0;
		background-color: transparent;
	}
	.page-top .top-well-being-base h2 {
		margin-bottom: 6.6667vw;
	}
	.page-top .top-well-being-base h2 span {
		text-align: center;
	}
	.page-top .top-well-being-base .top-well-being-flex {
		gap: 2.6667vw;
		margin: 0 auto 6.6667vw;
		width: 91.2vw;
	}
	.page-top .top-well-being-base .top-well-being-flex .lead p {
		font-size: 5.6001vw;
	}
	.page-top .top-well-being-base .top-well-being-flex .logo {
		width: 24.2667vw;
	}
	.page-top .top-well-being-base .text {
		margin: 0 auto 6.6667vw;
		width: 91.2vw;
		font-size: 3.7334vw;
		line-height: 1.8;
	}
	.page-top .top-well-being-base .btn-detail {
		margin-top: 40vw;
		margin-right: auto;
	}
	.page-top .top-well-being .top-well-being-swiper {
		position: relative;
		left: 0;
		top: -42vw;
		transform: none;
	}
	.page-top .top-well-being .swiper-slide {
		padding: 0 1.3334vw;
		width: 45.8667vw;
	}
}

/* --------------------------------------------------
	.page-top .top-news
-------------------------------------------------- */
.page-top .top-news {
	margin-bottom: 200px;
}
.page-top .top-news .top-news-list {
	margin: 0 auto;
	max-width: 900px;
	border-top: #E5E5E5 1px solid;
}
.page-top .top-news .top-news-list li {
	display: flex;
	gap: 20px;
	padding: 30px 40px;
	border-bottom: #E5E5E5 1px solid;
}
.page-top .top-news .top-news-list li .date {
	padding-top: 0.3em;
	font-size: 13px;
  font-family: "Roboto", sans-serif;
	font-weight: 700;
	color: #f00;
}
.page-top .top-news .top-news-list li .category {
	padding: 0.2em 1em;
	background: #EFEFEF;
	border-radius: 10px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
}
.page-top .top-news .top-news-list li .subject {
	display: block;
	margin-top: 1em;
	font-size: 14px;
}
.page-top .top-news .btn-detail {
	margin: 55px auto 0;
}
@media screen and (max-width: 1000px) {
	.page-top .top-news .top-news-list {
		width: 90%;
	}
}
@media screen and (max-width: 768px) {
	.page-top .top-news {
		margin-bottom: 24vw;
	}
	.page-top .top-news h2 {
		margin-bottom: 6.6667vw;
	}
	.page-top .top-news .top-news-list {
		max-width: 90.6667vw;
	}
	.page-top .top-news .top-news-list li {
		display: block;
		padding: 5.3334vw;
	}
	.page-top .top-news .top-news-list li .date {
		display: block;
		margin-bottom: 0.2em;
		padding-top: 0;
		font-size: 3.2vw;
	}
	.page-top .top-news .top-news-list li .category {
		border-radius: 4vw;
		font-size: 3.2vw;
	}
	.page-top .top-news .top-news-list li .subject {
		margin-top: 0.8em;
		font-size: 3.7334vw;
	}
	.page-top .top-news .btn-detail {
		margin-top: 8vw;
	}
}

/* --------------------------------------------------
	.page-top .top-recruit
-------------------------------------------------- */
.page-top .top-recruit {
	position: relative;
	margin-bottom: 200px;
}
.page-top .top-recruit .inner {
	position: relative;
	padding-top: 44px;
	padding-bottom: 44px;
	max-width: 1380px;
}
.page-top .top-recruit .inner::before {
	content: '';
	position: absolute;
	left: 470px;
	top: 0;
	display: block;
	width: 910px;
	height: 627px;
	background-image: url("../img/top/top_recruit_pic_pc.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 20px;
}
.page-top .top-recruit-base {
	position: relative;
	margin-left: 125px;
 	padding: 55px 70px 60px;
	width: 610px;
	background-color: #fff;
	box-sizing: border-box;
	border: 1px solid #EFEFEF;
	box-shadow: 0px 10px 5px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
}
.page-top .top-recruit-base h2 {
	margin-bottom: 20px;
}
.page-top .top-recruit-base h2 span {
	text-align: left;
}
.page-top .top-recruit-base .lead {
	font-size: 32px;
	letter-spacing: 0.05em;
	line-height: 1.5;
}
.page-top .top-recruit-base .text {
	margin-top: 1em;
	font-size: 16px;
	line-height: 1.7;
}
.page-top .top-recruit .btn-detail {
	margin-top: 16px;
}
@media screen and (max-width: 940px) {
	.page-top .top-recruit-base {
		margin-left: auto;
		margin-right: auto;
	}
}
@media screen and (max-width: 768px) {
	.page-top .top-recruit {
		margin: 0 auto 26.6667vw;
		width: 90.6667vw;
		background-image: none;
	}
	.page-top .top-recruit .inner {
		padding-top: 0;
		padding-bottom: 0;
	}
	.page-top .top-recruit .inner::before {
		position: relative;
		left: 0;
		margin-bottom: 5.3334vw;
		width: 100%;
		height: auto;
		aspect-ratio: 680 / 469;
		background-image: url("../img/top/top_recruit_pic_sp.png");
		border-radius: 2.1334vw;
	}
	.page-top .top-recruit-base {
		margin-left: 0;
	 	padding: 0;
		width: 100%;
		background-color: transparent;
		border: none;
		box-shadow: none;
		border-radius: 0;
	}
	.page-top .top-recruit-base h2 {
		margin-bottom: 6.6667vw;
	}
	.page-top .top-recruit-base h2 span {
		text-align: center;
	}
	.page-top .top-recruit-base .lead {
		font-size: 5.6001vw;
		line-height: 1.6;
		text-align: center;
	}
	.page-top .top-recruit-base .text {
		font-size: 3.7334vw;
		line-height: 1.8;
	}
	.page-top .top-recruit .btn-detail {
		margin: 5.3334vw auto 0;
		width: 42.6667vw;
	}
}

/* --------------------------------------------------
	.company-top
-------------------------------------------------- */
.company-top .inner {
	padding: 80px 20px 200px;
	max-width: 1040px;
	box-sizing: border-box;
}
.company-top .company-top-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
}
.company-top .company-top-nav li {
	border-radius: 10px;
	overflow: hidden;
}
.company-top .company-top-nav li a {
	position: relative;
	display: block;
}
.company-top .company-top-nav li a::before {
	content: '';
	position: absolute;
	right: 17px;
	bottom: 17px;
	z-index: 2;
	display: block;
	width: 30px;
	height: 30px;
	background: url("../img/common/icon_circle_arrow_right_blue.svg") no-repeat;
	background-size: contain;
}
.company-top .company-top-nav li figure {
	position: relative;
}
.company-top .company-top-nav li figure figcaption {
	position: absolute;
	left: 0;
	bottom: 0;
	display: grid;
	place-items: center;
	width: 100%;
	height: 65px;
}
.company-top .company-top-nav li figure figcaption span {
	position: relative;
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	color: #fff;
	text-align: center;
}
.company-top .company-top-nav li figure figcaption::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: #8F8D9F;
	mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
	.company-top .inner {
		padding: 9.3334vw 0 26.6667vw;
		max-width: 90.6667vw;
	}
	.company-top .company-top-nav {
		grid-template-columns: 1fr;
		gap: 8vw;
	}
	.company-top .company-top-nav li {
		border-radius: 2.1334vw;
	}
	.company-top .company-top-nav li a::before {
		right: 3.4667vw;
		bottom: 3.4667vw;
		width: 5.3334vw;
		height: 5.3334vw;
	}
	.company-top .company-top-nav li figure figcaption {
		height: 12.2667vw;
	}
	.company-top .company-top-nav li figure figcaption span {
		font-size: 4.2667vw;
	}
}

/* --------------------------------------------------
	.company-timeline
-------------------------------------------------- */
.company-timeline .inner {
	padding: 95px 20px 200px;
	max-width: 1040px;
	box-sizing: border-box;
}
.company-timeline dl div {
	display: flex;
	gap: 0 50px;
}
.company-timeline dl dt {
	flex-shrink: 0;
	width: 2.4em;
	font-size: 64px;
	font-weight: 100;
  font-family: "Roboto", sans-serif;
	letter-spacing: 0.05em;
  line-height: 1;
}
.company-timeline dl dt span {
	background: linear-gradient(180deg, #0B99FF 14.67%, rgba(11, 153, 255, 0.4) 78.67%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}
.company-timeline dl dd {
	flex: 1;
	position: relative;
	padding-top: 15px;
	padding-left: 83px;
	text-indent: -83px;
	padding-bottom: 65px;
	font-size: 16px;
}
.company-timeline dl div:last-child dd {
	padding-bottom: 0;
}
.company-timeline dl dd::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	height: 100%;
	border-left: #E5E5E5 1px solid;
}
.company-timeline dl div:first-child dd::before {
	top: 34px;
}
.company-timeline dl div:last-child dd::before {
	height: 34px;
}
.company-timeline dl dd span {
	position: relative;
	top: 0.1em;
	display: inline-block;
	padding-left: 13px;
	text-indent: 0;
	width: 83px;
	box-sizing: border-box;
	font-weight: 500;
	font-size: 20px;
}
.company-timeline dl dd span::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(-50%,-50%);
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #828999;
}
@media screen and (max-width: 768px) {
	.company-timeline .inner {
		padding: 8vw 0 26.6667vw;
		max-width: 90.6667vw;
	}
	.company-timeline dl div {
		gap: 0 4.8vw;
	}
	.company-timeline dl dt {
		font-size: 8.8vw;
	}
	.company-timeline dl dd {
		padding-top: 1.6vw;
		padding-left: 1.6vw;
		text-indent: 0;
		padding-bottom: 14.9334vw;
		font-size: 3.7334vw;
	}
	.company-timeline dl div:first-child dd::before {
		top: 4vw;
	}
	.company-timeline dl div:last-child dd::before {
		height: 4vw;
	}
	.company-timeline dl dd span {
		top: 0;
		display: block;
		padding-left: 0;
		width: 100%;
		font-size: 4vw;
	}
	.company-timeline dl dd span::before {
		left: -1.6vw;
		width: 1.6vw;
		height: 1.6vw;
	}
}

/* --------------------------------------------------
	.company-profile-outline
-------------------------------------------------- */
.company-profile-outline .inner {
	padding: 90px 20px 200px;
	max-width: 1040px;
	box-sizing: border-box;
}
.company-profile-outline table {
	width: 100%;
	border-top: #E5E5E5 1px solid;
}
.company-profile-outline table tr {
	border-bottom: #E5E5E5 1px solid;
}
.company-profile-outline table th,
.company-profile-outline table td {
	padding-top: 30px;
	padding-bottom: 30px;
	vertical-align: middle;
}
.company-profile-outline table th {
	padding-left: 40px;
	width: 220px;
	font-weight: 500;
	color: #9EA3AF;
	text-align: center;
}
.company-profile-outline table td {
	padding-right: 40px;
}
.company-profile-outline table th,
.company-profile-outline table td,
.company-profile-outline table td li {
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 2;
}
.company-profile-outline table th {
	line-height: 1.3;
}
@media screen and (max-width: 768px) {
	.company-profile-outline .inner {
		padding: 8vw 0 26.6667vw;
		max-width: 90.6667vw;
	}
	.company-profile-outline table {
		display: block;
	}
	.company-profile-outline table tr {
		display: block;
	}
	.company-profile-outline table th,
	.company-profile-outline table td {
		display: block;
		padding-top: 5.3334vw;
		padding-bottom: 5.3334vw;
	}
	.company-profile-outline table th {
		padding-top: 5.3334vw;
		padding-bottom: 2.1334vw;
		padding-left: 0;
		width: 100%;
		font-size: 3.7334vw;
		text-align: left;
	}
	.company-profile-outline table td {
		padding-top: 0;
		padding-bottom: 5.3334vw;
		padding-right: 0;
	}
	.company-profile-outline table th,
	.company-profile-outline table td,
	.company-profile-outline table td li {
		font-size: 3.7334vw;
	}
}

/* --------------------------------------------------
	.company-profile-organization
-------------------------------------------------- */
.company-profile-organization {
	margin-bottom: 200px;
	background-color: #F8F8F8;
}
.company-profile-organization .inner {
	padding: 80px 20px;
	max-width: 1040px;
	box-sizing: border-box;
}
.company-profile-organization h2 {
	margin-bottom: 60px;
}
.company-profile-organization-graph {
	margin: 0 auto;
	max-width: 917px;
}
@media screen and (max-width: 768px) {
	.company-profile-organization {
		margin-bottom: 26.6667vw;
	}
	.company-profile-organization .inner {
		padding: 13.3334vw 0;
		max-width: 91.4667vw;
	}
	.company-profile-organization h2 {
		margin-bottom: 8.5334vw;
	}
}

/* --------------------------------------------------
	.company-profile-certification
-------------------------------------------------- */
.company-profile-certification {
	margin-bottom: 200px;
}
.company-profile-certification .inner {
	padding: 0 20px;
	max-width: 1040px;
	box-sizing: border-box;
}
.company-profile-certification h2 {
	margin-bottom: 60px;
}
.company-profile-certification-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0 50px;
}
.company-profile-certification-grid-child {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
}
.company-profile-certification-grid-child h3 {
	padding: 20px 0;
	display: grid;
	place-items: center;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.6;
	text-align: center;
}
.company-profile-certification-grid-child p {
	font-size: 16px;
	line-height: 2;
	text-align: justify;
}
@media screen and (max-width: 768px) {
	.company-profile-certification {
		margin-bottom: 26.6667vw;
	}
	.company-profile-certification .inner {
		padding: 0;
		max-width: 90.6667vw;
	}
	.company-profile-certification h2 {
		margin-bottom: 0;
	}
	.company-profile-certification-grid {
		grid-template-columns: 1fr;
		gap: 10.6667vw;
	}
	.company-profile-certification-grid-child {
		display: block;
	}
	.company-profile-certification-grid-child .logo {
		margin: 0 auto;
		width: 69.3334vw;
	}
	.company-profile-certification-grid-child h3 {
		padding: 0 0 2.6667vw;
		font-size: 4.8vw;
	}
	.company-profile-certification-grid-child p {
		font-size: 3.7334vw;
		line-height: 1.8;
	}
}

/* --------------------------------------------------
	.company-profile-office
-------------------------------------------------- */
.company-profile-office {
	margin-bottom: 200px;
}
.company-profile-office .inner {
	padding: 0 20px;
	max-width: 1040px;
	box-sizing: border-box;
}
.company-profile-office h2 {
	margin-bottom: 60px;
}
.company-profile-office table {
	width: 100%;
	border-top: #E5E5E5 1px solid;
}
.company-profile-office table tr {
	border-bottom: #E5E5E5 1px solid;
}
.company-profile-office table th,
.company-profile-office table td {
	padding-top: 30px;
	padding-bottom: 30px;
	vertical-align: middle;
}
.company-profile-office table th {
	padding-left: 40px;
	width: 180px;
	font-weight: 500;
	color: #9EA3AF;
	text-align: left;
}
.company-profile-office table td {
	padding-right: 40px;
}
.company-profile-office table th,
.company-profile-office table td,
.company-profile-office table td p,
.company-profile-office table td li {
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 2;
}
.company-profile-office table th {
	line-height: 1.3;
}
.company-profile-office-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 50px;
}
.company-profile-office-flex address {
	flex-grow: 1;
}
.company-profile-office-map {
	width: 350px;
}
@media screen and (max-width: 768px) {
	.company-profile-office {
		margin-bottom: 26.6667vw;
	}
	.company-profile-office .inner {
		padding: 0;
		max-width: 90.6667vw;
	}
	.company-profile-office h2 {
		margin-bottom: 8vw;
	}
	.company-profile-office table th,
	.company-profile-office table td {
		display: block;
		padding: 0 2.6667vw;
	}
	.company-profile-office table th {
		padding-top: 5.3334vw;
		padding-bottom: 2.1334vw;
		width: 100%;
	}
	.company-profile-office table td {
		padding-bottom: 5.3334vw;
		padding-right: 0;
	}
	.company-profile-office table th,
	.company-profile-office table td,
	.company-profile-office table td p,
	.company-profile-office table td li {
		font-size: 3.7334vw;
		line-height: 1.6;
	}
	.company-profile-office-flex {
		flex-wrap: wrap;
		gap: 2.1334vw;
	}
	.company-profile-office-flex address {
	}
	.company-profile-office-map {
		width: 100%;
	}
}

/* --------------------------------------------------
	.company-greeting
-------------------------------------------------- */
.company-greeting .inner {
	padding: 95px 20px 200px;
	max-width: 840px;
	box-sizing: border-box;
}
.company-greeting p {
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 2.4;
}
.company-greeting p + p {
	margin-top: 2em;
}
.company-greeting .lead {
	margin-bottom: 100px;
	font-size: 26px;
	line-height: 2;
	text-align: center;
}
.company-greeting .signature {
	margin-top: 100px;
}
.company-greeting .signature span {
	display: block;
	line-height: 1;
}
.company-greeting .signature .date {
	font-size: 15px;
}
.company-greeting .signature .company {
	margin-top: 0.8em;
	font-size: 18px;
	font-weight: 500;
}
.company-greeting .signature .name {
	font-size: 18px;
	font-weight: 500;
}
.company-greeting .signature .name img {
	transform: translate(6%,10%);
	width: 239px;
	vertical-align: text-bottom;
}
@media screen and (max-width: 768px) {
	.company-greeting .inner {
		padding: 8vw 0 26.6667vw;
		max-width: 90.6667vw;
	}
	.company-greeting p {
		font-size: 3.7334vw;
		line-height: 2.2;
	}
	.company-greeting .lead {
		margin-bottom: 18.6667vw;
		font-size: 5.0667vw;
		line-height: 1.8;
	}
	.company-greeting .signature {
		margin-top: 13.3334vw;
	}
	.company-greeting .signature .date {
		font-size: 3.4667vw;
	}
	.company-greeting .signature .company {
		font-size: 4vw;
	}
	.company-greeting .signature .name {
		font-size: 4vw;
	}
	.company-greeting .signature .name img {
		transform: translate(4%,13%);
		width: 63.7334vw;
	}
}

/* --------------------------------------------------
	.about-contents
-------------------------------------------------- */
.about-contents h2.ttl-enja {
	margin-bottom: 60px;
}
.about-contents h2.ttl-enja span {
	text-align: left;
}
.about-contents .inner {
	padding: 60px 20px 200px;
	max-width: 1040px;
	box-sizing: border-box;
}
.about-concept-flex {
	display: flex;
	justify-content: space-between;
	gap: 56px;
	margin-bottom: 150px;
}
.about-concept-flex-text {
	width: 100%;
	max-width: 460px;
}
.about-contents h3 {
	margin-bottom: 0.3em;
	font-size: 18px;
	font-weight: 600;
}
.about-contents p + h3 {
	margin-top: 3em;
}
.about-contents p {
	font-size: 18px;
	line-height: 2;
}
.about-contents p + p {
	margin-top: 1.5em;
}
.about-contents p.lead1 {
	font-size: 24px;
	font-weight: 500;
}
.about-contents p.lead2 {
	width: 130%;
	font-size: 28px;
	font-weight: 500;
	line-height: 1.8;
}
.about-contents .about-concept-flex-pic {
	width: 100%;
	max-width: 596px;
}
.about-contents .about-concept-flex-pic img {
	width: 138.6046%;
}
.about-contents .about-flex {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}
.about-contents .about-flex + .about-flex {
	margin-top: 140px;
}
.about-contents .about-flex h3 {
	width: 100%;
	max-width: 445px;
}
.about-contents .about-flex ol {
	width: 100%;
	max-width: 525px;
}
.about-contents .about-flex ol li {
	position: relative;
	display: flex;
	align-items: center;
	padding-left: 70px;
	min-height: 60px;
	font-size: 18px;
	font-weight: 500;
	line-height: 2;
}
.about-contents .about-flex ol li + li {
	margin-top: 50px;
}
.about-contents .about-flex ol .num {
	position: absolute;
	left: 0;
	top: 0;
	display: grid;
	place-items: center;
	margin-top: 0.25em;
	margin-bottom: 0.25em;
	width: 44px;
	height: 44px;
	border: #f00 1px solid;
	font-family: "Roboto", sans-serif;
	font-weight: 100;
	font-size: 33px;
	line-height: 1;
	color: #f00;
}
.about-contents .about-flex ol strong {
	display: block;
	margin-bottom: 0.3em;
	font-size: 36px;
	font-weight: 700;
	color: #0B99FF;
	line-height: 1.2;
	text-align: left;
}
.about-contents .about-flex ol strong small {
	font-size: 45%;
}
.about-contents .about--pic2 {
	position: relative;
	margin-top: 140px;
	margin-bottom: 150px;
	height: 380px;
}
.about-contents .about--pic2 ul {
	position: relative;
	left: 50%;
	transform: translate(-50%,0);
	display: flex;
	justify-content: space-between;
	gap: 30px;
	width: 2520px;
	height: 100%;
}
.about-contents .about--pic2 ul li {
	width: 480px;
	border-radius: 20px;
	overflow: hidden;
}
.about-contents .about--pic2 ul li:nth-child(even) {
	margin-top: auto;
}
@media screen and (max-width: 768px) {
	.about-contents h2.ttl-enja {
		margin-bottom: 10.6667vw;
	}
	.about-contents .inner {
		padding: 10.6667vw 0 26.6667vw;
		max-width: 90.6667vw;
	}
	.about-concept-flex {
		display: block;
		margin-bottom: 26.6667vw;
	}
	.about-concept-flex-text {
		margin-bottom: 10.6667vw;
		max-width: 100%;
	}
	.about-contents h3 {
		font-size: 3.7334vw;
	}
	.about-contents p {
		font-size: 3.7334vw;
	}
	.about-contents p.lead1 {
		font-size: 4.8vw;
	}
	.about-contents p.lead2 {
		width: 100%;
		font-size: 5.3334vw;
	}
	.about-contents .about-concept-flex-pic {
		max-width: 100%;
	}
	.about-contents .about-concept-flex-pic img {
		width: 100%;
	}
	.about-contents .about-flex {
		display: block;
	}
	.about-contents .about-flex + .about-flex {
		margin-top: 26.6667vw;
	}
	.about-contents .about-flex h3 {
		margin-bottom: 10.6667vw;
		max-width: 100%;
	}
	.about-contents .about-flex ol {
		max-width: 100%;
	}
	.about-contents .about-flex ol li {
		padding-left: 15.4667vw;
		min-height: 16vw;
		font-size: 3.7334vw;
	}
	.about-contents .about-flex ol li + li {
		margin-top: 10.6667vw;
	}
	.about-contents .about-flex ol .num {
		width: 10.6667vw;
		height: 10.6667vw;
		font-size: 6.9334vw;
	}
	.about-contents .about-flex ol strong {
		font-size: 6.4vw;
	}
	.about-contents .about--pic2 {
		margin-top: 26.6667vw;
		margin-bottom: 26.6667vw;
		height: 41.6vw;
	}
	.about-contents .about--pic2 ul {
		gap: 3.2vw;
		width: 265.3334vw;
	}
	.about-contents .about--pic2 ul li {
		width: 50.6667vw;
		border-radius: 2.1334vw;
	}
}




/* --------------------------------------------------
	.post-type-archive-news .news-list-area
	.tax-newscat .news-list-area
-------------------------------------------------- */
.news-list-area {
	margin-bottom: 200px;
}
.news-list-area .inner {
	padding-left: 20px;
	padding-right: 20px;
	max-width: 1040px;
	box-sizing: border-box;
}
.news-list-area .news-list {
	margin-top: 90px;
	margin-bottom: 80px;
}
.news-list-area .news-list ul {
	border-top: #E5E5E5 1px solid;
}
.news-list-area .news-list ul li {
	padding: 30px 40px;
	border-bottom: #E5E5E5 1px solid;
}
.news-list-area .news-list ul li a {
	display: flex;
	gap: 20px;
	width: 100%;
}
.news-list-area .news-list ul li .date {
	flex-shrink: 0;
	padding-top: 0.3em;
	width: 75px;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.05em;
	color: #0B99FF;
}
.news-list-area .news-list ul li .contents {
	flex: 1;
}
.news-list-area .news-list ul li .category {
	display: inline-block;
	padding: 0.1em 1em 0.2em;
	background: #EFEFEF;
	border-radius: 10px;
	font-weight: 500;
	font-size: 12px;
	line-height: 1;
	color: #6D6D6D;
}
.news-list-area .news-list ul li .subject {
	display: block;
	margin-top: 0.5em;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.8;
	color: #464646;
}
.news-list-area .news-list li a:hover {
	text-decoration: none;
}
@media screen and (max-width: 768px) {
	.news-list-area {
		margin-bottom: 18.6667vw;
	}
	.news-list-area .inner {
		padding-left: 0;
		padding-right: 0;
		max-width: 90.6667vw;
	}
	.news-list-area .news-list {
		margin-top: 5.3334vw;
		margin-bottom: 37.3334vw;
	}
	.news-list-area .news-list ul li {
		padding: 5.3334vw;
	}
	.news-list-area .news-list ul li a {
		flex-wrap: wrap;
		gap: 0;
	}
	.news-list-area .news-list ul li .date {
		padding-top: 0;
		width: 100%;
		font-size: 3.2vw;
	}
	.news-list-area .news-list ul li .contents {
		width: 100%;
	}
	.news-list-area .news-list ul li .category {
		border-radius: 2.6667vw;
		font-size: 3.7334vw;
	}
	.news-list-area .news-list ul li .subject {
		font-size: 3.7334vw;
	}
}

/* --------------------------------------------------
	.single-news .news-detail-area
-------------------------------------------------- */
.single-news .news-detail-area {
	margin-top: 80px;
	margin-bottom: 180px;
}
.single-news .news-detail-area .inner {
	padding-left: 20px;
	padding-right: 20px;
	max-width: 1040px;
	box-sizing: border-box;
}
.single-news .news-detail-area .heading-area {
	margin-bottom: 50px;
	padding-bottom: 50px;
	border-bottom: #E5E5E5 1px solid;
}
.single-news .news-detail-area .heading-area h1 {
	margin-bottom: 0.2em;
	font-weight: 600;
	font-size: 32px;
}
.single-news .news-detail-area .heading-area .date {
	display: inline-block;
	margin-right: 1em;
  font-family: "Roboto", sans-serif;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.05em;
	color: #0B99FF;
}
.single-news .news-detail-area .heading-area .category,
.single-news .news-detail-area .heading-area .category li	{
	display: inline;
}
.single-news .news-detail-area .heading-area .category li a {
	display: inline-block;
	padding: 0.5em 1em 0.6em;
	background: #EFEFEF;
	border-radius: 13px;
	font-weight: 500;
	font-size: 12px;
	line-height: 1;
	color: #6D6D6D;
}
.single-news .news-detail-area .btn-newstop {
	margin: 80px auto 0;
	background-color: #EFEFEF;
}
.single-news .news-detail-area .btn-newstop a {
	padding-left: 13px;
  color: #464646;
}
.single-news .news-detail-area .btn-newstop::before {
	right: auto;
	left: 15px;
	background-image: url("../img/common/icon_arrow_left_gray.svg");
}
.single-news .news-detail-area .contents-area {
	margin: 0 auto;
	max-width: 850px;
	width: 100%;
}
.single-news .news-detail-area .contents-area .aligncenter {
	text-align: center;
}
.single-news .news-detail-area .contents-area > * +  [class^="wp-block-"] {
	margin-top: 2em;
}
.single-news .news-detail-area .contents-area > * +  h1,
.single-news .news-detail-area .contents-area > * +  h2,
.single-news .news-detail-area .contents-area > * +  h3,
.single-news .news-detail-area .contents-area > * +  h4,
.single-news .news-detail-area .contents-area > * +  h5,
.single-news .news-detail-area .contents-area > * +  h6,
.single-news .news-detail-area .contents-area > * + p,
.single-news .news-detail-area .contents-area > * + table,
.single-news .news-detail-area .contents-area > * + ul,
.single-news .news-detail-area .contents-area > * + ol {
	margin-top: 2em;
}
.single-news .news-detail-area .contents-area > * +  .wp-block-image {
	text-align: center;
}

.single-news .news-detail-area .contents-area p {
	font-size: 16px;
	line-height: 2;
	text-align: left;
}
.single-news .news-detail-area .contents-area p + *,
.single-news .news-detail-area .contents-area * + p {
	margin-top: 2em;
}
.single-news .news-detail-area .contents-area img {
	width: auto;
	max-width: 	100%;
}
.single-news .news-detail-area .contents-area table th,
.single-news .news-detail-area .contents-area table td {
	padding: 10px;
	border: #000 1px solid;
	text-align: left;
}
.single-news .news-detail-area .contents-area table,
.single-news .news-detail-area .contents-area ul,
.single-news .news-detail-area .contents-area ol {
	margin-top: 2em;
	margin-bottom: 2em;
}
.single-news .news-detail-area .contents-area ul,
.single-news .news-detail-area .contents-area ol {
	margin-left: 1em;
}
.single-news .news-detail-area .contents-area ul {
	list-style: disc outside;
}
.single-news .news-detail-area .contents-area ol {
	list-style: decimal outside;
}
.single-news .news-detail-area .contents-area h1 {
	font-size: 36px;
}
.single-news .news-detail-area .contents-area h2 {
	font-size: 30px;
}
.single-news .news-detail-area .contents-area h3 {
	font-size: 24px;
}
.single-news .news-detail-area .contents-area h4 {
	font-size: 22px;
}
.single-news .news-detail-area .contents-area h5 {
	font-size: 18px;
}
.single-news .news-detail-area .contents-area h6 {
	font-size: 16px;
}
.single-news .news-detail-area .contents-area .has-huge-font-size {
	font-size: 36px;
}
.single-news .news-detail-area .contents-area .has-large-font-size {
	font-size: 30px;
}
.single-news .news-detail-area .contents-area .has-medium-font-size {
	font-size: 24px;
}
.single-news .news-detail-area .contents-area .has-regular-font-size {
	font-size: 16px;
}
.single-news .news-detail-area .contents-area .has-small-font-size {
	font-size: 14px;
}
@media screen and (max-width: 768px) {
	.single-news .news-detail-area {
		margin-top: 5.3334vw;
		margin-bottom: 18.6667vw;
	}
	.single-news .news-detail-area .inner {
		padding-left: 0;
		padding-right: 0;
		max-width: 90.6667vw;
	}
	.single-news .news-detail-area .heading-area {
		margin-bottom: 10.6667vw;
		padding-bottom: 10.6667vw;
	}
	.single-news .news-detail-area .heading-area h1 {
		font-size: 5.3334vw;
	}
	.single-news .news-detail-area .heading-area .date {
		font-size: 3.2vw;
	}
	.single-news .news-detail-area .heading-area .category li a {
		border-radius: 3.2vw;
		font-size: 3.2vw;
	}
	.single-news .news-detail-area .btn-newstop {
		margin-top: 18.6667vw;
	}
	.single-news .news-detail-area .btn-newstop a {
		padding-left: 3.2vw;
		font-size: 2.6667vw;
	}
	.single-news .news-detail-area .btn-newstop::before {
		left: 3.2vw;
	}
	.single-news .news-detail-area .contents-area p {
		font-size: 3.7334vw;
	}
	.single-news .news-detail-area .contents-area h1 {
		font-size: 6.4vw;
	}
	.single-news .news-detail-area .contents-area h2 {
		font-size: 5.3334vw;
	}
	.single-news .news-detail-area .contents-area h3 {
		font-size: 4.8vw;
	}
	.single-news .news-detail-area .contents-area h4 {
		font-size: 4.2667vw;
	}
	.single-news .news-detail-area .contents-area h5 {
		font-size: 4vw;
	}
	.single-news .news-detail-area .contents-area h6 {
		font-size: 3.7334vw;
	}
	.single-news .news-detail-area .contents-area .has-huge-font-size {
		font-size: 6.4vw;
	}
	.single-news .news-detail-area .contents-area .has-large-font-size {
		font-size: 5.3334vw;
	}
	.single-news .news-detail-area .contents-area .has-medium-font-size {
		font-size: 4.8vw;
	}
	.single-news .news-detail-area .contents-area .has-regular-font-size {
		font-size: 3.7334vw;
	}
	.single-news .news-detail-area .contents-area .has-small-font-size {
		font-size: 3.2vw;
	}
}


/* --------------------------------------------------
	.pagination
-------------------------------------------------- */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	margin: 0 auto;
}
.pagination h2 {
	display: none;
}
.case .articleDetail .pagination {
	gap: 75px;
}
.pagination a { color: #000; }
.pagination ul.page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
}
.pagination ul.page-numbers li span,
.pagination ul.page-numbers li a {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	font-size: 14px;
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	line-height: 1;
}
.pagination ul.page-numbers li span {
	background-color: #828999;
	color: #fff;
}
.pagination ul.page-numbers li a {
	background-color: #fff;
	color: #828999;
}
.pagination .page-numbers.current {
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
	display: block;
	width: 14px;
	height: 28px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	text-indent: -9999px;
	background-color: transparent;
}
.pagination .page-numbers.prev {
	background-image: url("../img/common/btn_prev_red.svg");
}
.pagination .page-numbers.next {
	background-image: url("../img/common/btn_next_red.svg");
}
.pagination .pagination-prev-article a,
.pagination .pagination-next-article a {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 16px;
	line-height: 1;
}
.pagination .pagination-prev-article a:before,
.pagination .pagination-next-article a:after {
	content: '';
	display: block;
	width: 11px;
	height: 19px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
.pagination .pagination-prev-article a:before {
	background-image: url("../img/common/btn_prev_red.svg");
}
.pagination .pagination-next-article a:after {
	background-image: url("../img/common/btn_next_red.svg");
}
@media screen and (max-width: 768px) {
	.pagination {
		gap: 4vw;
	}
	.case .articleDetail .pagination {
		gap: 20vw;
	}
	.pagination ul.page-numbers {
		gap: 4vw;
	}
	.pagination ul.page-numbers li span,
	.pagination ul.page-numbers li a {
		width: 6.9334vw;
		height: 6.9334vw;
		font-size: 3.4667vw;
	}
	.pagination .page-numbers.prev,
	.pagination .page-numbers.next {
		width: 3.4667vw;
		height: 6.4vw;
	}
	.pagination .page-numbers.prev {
		margin-right: 8vw;
	}
	.pagination .page-numbers.next {
		margin-left: 8vw;
	}
	.pagination .pagination-prev-article a,
	.pagination .pagination-next-article a {
		gap: 4vw;
		font-size: 4.2667vw;
	}
	.pagination .pagination-prev-article a:before,
	.pagination .pagination-next-article a:after {
		width: 3.4667vw;
		height: 6.4vw;
	}
}

/* --------------------------------------------------
	.post-type-archive-column .column-list-area
-------------------------------------------------- */
.post-type-archive-column .column-list-area {
	margin-top: 90px;
	margin-bottom: 200px;
}
.post-type-archive-column .column-list-area .inner {
	padding-left: 20px;
	padding-right: 20px;
	max-width: 1040px;
	box-sizing: border-box;
}
.post-type-archive-column .column-list-area .column-list {
	margin-top: 90px;
	margin-bottom: 80px;
}
.post-type-archive-column .column-list-area .column-list ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 70px 35px;
}
.post-type-archive-column .column-list-area .column-list ul li {}
.post-type-archive-column .column-list-area .column-list ul li a {
	display: block;
	width: 100%;
	background-color: #F8F8F8;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
.post-type-archive-column .column-list-area .column-list ul li .column-list-contents {
	padding: 25px;
}
.post-type-archive-column .column-list-area .column-list ul li .date {
	width: 75px;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.05em;
	color: #FF0000;
}
.post-type-archive-column .column-list-area .column-list ul li .category {
	display: inline-block;
	padding: 0.3em 1em 0.4em;
	background: #828999;
	border-radius: 10px;
	font-weight: 500;
	font-size: 12px;
	line-height: 1;
	color: #FFFFFF;
}
.post-type-archive-column .column-list-area .column-list ul li .subject {
	display: block;
	margin-top: 0.5em;
	font-weight: 600;
	font-size: 18px;
	letter-spacing: 0.05em;
}
.post-type-archive-column .column-list-area .column-list li a:hover {
	text-decoration: none;
}
@media screen and (max-width: 768px) {
}


/* --------------------------------------------------
	.case-search-area
-------------------------------------------------- */
.case-search-area {
	margin-top: 90px;
}
.single-case .case-search-area,
.post-type-archive-case .case-search-area {
	margin-bottom: 200px;
}
.img-contents + .case-search-area,
.case-search-area + .common-contact {
	margin-top: 200px;
}
.case-search-area .inner {
	padding-left: 20px;
	padding-right: 20px;
	max-width: 1040px;
	box-sizing: border-box;
}
.case-search-area-base {
	padding: 50px 75px;
	background: #F8F8F8;
	border-radius: 10px;
}
.case-search-area-base h2 {
	margin-bottom: 30px;
	font-weight: 500;
	font-size: 28px;
	line-height: 1;
	text-align: center;
}
.case-search-area-base dl {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 0;
}
.case-search-area-base dl .grid-col2 {
	grid-column: 1 / 3;
}
.case-search-area-base dl div {
	display: flex;
	align-items: center;
	gap: 20px;
}
.case-search-area-base dl dt {
	width: 100px;
	font-size: 18px;
	text-align: right;
}
.case-search-area-base dl dd {
	position: relative;
	flex: 1;
}
.case-search-area-base dl dd input,
.case-search-area-base dl dd select {
	width: 100%;
	padding: 0.5em;
	font-size: 18px;
	background: #FFFFFF;
	border: 1px solid #828999;
	border-radius: 5px;
	box-sizing: border-box;
}
.case-search-area-base dl dd .unit {
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translate(100%,-50%);
	font-size: 18px;
}
.case-search-area-base .btn-search {
	margin: 30px auto 0;
}
@media screen and (max-width: 1000px) {
	.case-search-area-base {
		padding: 50px;
	}
}
@media screen and (max-width: 768px) {
	.case-search-area {
		margin-top: 5.3334vw;
	}
	.single-case .case-search-area,
	.post-type-archive-case .case-search-area {
		margin-bottom: 18.6667vw;
	}
	.img-contents + .case-search-area,
	.case-search-area + .common-contact {
		margin-top: 26.6667vw;
	}
	.case-search-area .inner {
		padding-left: 0;
		padding-right: 0;
		max-width: 90.6667vw;
	}
	.case-search-area-base {
		padding: 7.4667vw 5.3334vw 13.3334vw;
		border-radius: 2.6667vw;
	}
	.case-search-area-base h2 {
		margin-bottom: 1em;
		font-size: 5.3334vw;
	}
	.case-search-area-base dl {
		grid-template-columns: 1fr;
		gap: 2.6667vw;
	}
	.case-search-area-base dl .grid-col2 {
		grid-column: 1 / 2;
	}
	.case-search-area-base dl div {
		display: block;
	}
	.case-search-area-base dl dt {
		width: 100%;
		margin-bottom: 0.5em;
		font-size: 4vw;
		text-align: left;
	}
	.case-search-area-base dl dd input,
	.case-search-area-base dl dd select {
		font-size: 4vw;
		border-radius: 1.3334vw;
	}
	.case-search-area-base dl dd select:has(+ .unit) {
		width: calc( 100% - 2.5em );
	}
	.case-search-area-base dl dd .unit {
		position: absolute;
		right: 0;
		top: 50%;
		transform: translate(0,-50%);
		font-size: 4vw;
	}
	.case-search-area-base .btn-search {
		margin-top: 5.3334vw;
	}
}


/* --------------------------------------------------
	.case-search-result-terms
-------------------------------------------------- */
.case-search-result-terms {
	margin-top: 100px;
	margin-bottom: 100px;
}
.case-search-result-terms .inner {
	padding-left: 20px;
	padding-right: 20px;
	max-width: 1040px;
	box-sizing: border-box;
}
.case-search-result-terms-base {
	padding: 5px 0 35px;
	border-top: #E5E5E5 1px solid;
	border-bottom: #E5E5E5 1px solid;
}
.case-search-result-terms-base h3,
.case-search-result-terms-base h3 span {
	font-weight: 400;
	font-size: 18px;
	line-height: 1;
	text-align: center;
}
.case-search-result-terms-base h3 {
	margin-bottom: 0.5em;
}
.case-search-result-terms-base h3 span {
	display: inline-block;
	padding: 0 2em;
	background-color: #fff;
	transform: translate(0,-85%);
}
.case-search-result-terms-base ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.5em;
}
.case-search-result-terms-base ul li {
	font-weight: 600;
	font-size: 18px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.case-search-result-terms {
		margin-top: 16vw;
		margin-bottom: 13.3334vw;
	}
	.case-search-result-terms .inner {
		padding-left: 0;
		padding-right: 0;
		max-width: 90.6667vw;
	}
	.case-search-result-terms-base {
		padding: 1.3334vw 0 8vw;
	}
	.case-search-result-terms-base h3,
	.case-search-result-terms-base h3 span {
		font-size: 4.2667vw;
	}
	.case-search-result-terms-base ul li {
		font-size: 4vw;
	}
}

/* --------------------------------------------------
	.case-search-result-list
-------------------------------------------------- */
.case-search-result-list {
	margin-top: 90px;
	margin-bottom: 200px;
}
.case-search-result-list .inner {
	padding-left: 20px;
	padding-right: 20px;
	max-width: 1040px;
	box-sizing: border-box;
}
.case-search-result-list li {
	display: flex;
	align-items: center;
	gap: 40px;
	padding: 40px 50px;
	background: #F8F8F8;
	border-radius: 10px;
}
.case-search-result-list li + li {
	margin-top: 10px;
}
.case-search-result-list li div:nth-child(1) {
	flex: 1;
}
.case-search-result-list li div:nth-child(2) {
	flex-shrink: 0;
	width: 160px;
}
.case-search-result-list li dl {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 25px 20px;
}
.case-search-result-list li dl div {
	display: flex;
	gap: 10px;
}
.case-search-result-list li dl div.grid-w100 {
	grid-column: 1 / 5;
}
.case-search-result-list li dl div dt span {
	display: inline-block;
	padding: 0.3em 1em 0.4em;
	width: 90px;
	background: #9EA3AF;
	border-radius: 13px;
	box-sizing: border-box;
	white-space: nowrap;
	font-weight: 600;
	font-size: 13px;
	line-height: 1;
	color: #FFFFFF;
	text-align: center;
}
.case-search-result-list li dl div.case-subject {
	padding-bottom: 25px;
	border-bottom: #9EA3AF 1px solid;
}
.case-search-result-list li dl div.case-subject dt span {
	background-color: #828999;
}
.case-search-result-list li dl div dd {
	font-size: 16px;
}
.case-search-result-list li dl div:not(.grid-w100) dd {
	white-space: nowrap;
}
.case-search-result-list .btn-detail {
	width: 160px;
	height: 36px;
	font-size: 13px;
}
@media screen and (max-width: 960px) {
	.case-search-result-list li dl {
		grid-template-columns: 1fr 1fr;
	}
	.case-search-result-list li dl div.grid-w100 {
		grid-column: 1 / 3;
	}
}
@media screen and (max-width: 768px) {
	.case-search-result-list {
		margin-top: 5.3334vw;
		margin-bottom: 18.6667vw;
	}
	.case-search-result-list .inner {
		padding-left: 0;
		padding-right: 0;
		max-width: 90.6667vw;
	}
	.case-search-result-list li {
		display: block;
		gap: 5.3334vw;
		padding: 8vw;
		border-radius: 2.6667vw;
	}
	.case-search-result-list li + li {
		margin-top: 5.3334vw;
	}
	.case-search-result-list li div:nth-child(2) {
		width: 100%;
	}
	.case-search-result-list li dl {
		grid-template-columns: 1fr;
		gap: 2.6667vw;
	}
	.case-search-result-list li dl div {
		display: flex;
		gap: 2.6667vw;
	}
	.case-search-result-list li dl div.grid-w100 {
		display: block;
		grid-column: 1 / 2;
	}
	.case-search-result-list li dl div.grid-w100 dt {
		margin-bottom: 0.5em;
	}
	.case-search-result-list li dl div dt {
		font-size: 3.2vw;
	}
	.case-search-result-list li dl div dt span {
		width: 21.3334vw;
		border-radius: 3.2vw;
		font-size: 3.2vw;
	}
	.case-search-result-list li dl div.case-subject {
		margin-bottom: 3.6vw;
		padding-bottom: 5.3334vw;
	}
	.case-search-result-list li dl div.case-subject dt span {
		font-size: 3.2vw;
	}
	.case-search-result-list li dl div dd {
		margin-top: -0.2em;
		font-size: 4vw;
	}
	.case-search-result-list li dl div.case-subject dd {
		margin-top: 0;
		font-size: 4.2667vw;
	}
	.case-search-result-list li dl div:not(.grid-w100) dd {
		white-space: nowrap;
	}
	.case-search-result-list .btn-detail {
		margin: 5.3334vw auto 0;
		width: 34vw;
		height: 8vw;
		border-radius: 4vw;
		font-size: 3.2vw;
	}
	.case-search-result-list .btn-detail::before {
		right: 4.2667vw;
		width: 1.8667vw;
		height: 2.9334vw;
	}
}

/* --------------------------------------------------
	.case-detail-area
-------------------------------------------------- */
.case-detail-area {
	margin-top: 90px;
	margin-bottom: 80px;
}
.case-detail-area .inner {
	padding-left: 20px;
	padding-right: 20px;
	max-width: 1040px;
	box-sizing: border-box;
}
.case-detail-area h1 {
	margin-bottom: 1em;
	font-weight: 600;
	font-size: 30px;
	line-height: 1.2;
}
.case-detail-base-data {
	padding: 30px 0;
	border-top: #E5E5E5 1px solid;
	border-bottom: #E5E5E5 1px solid;
}
.case-detail-base-data dl div {
	display: flex;
	gap: 10px;
}
.case-detail-base-data dl div + div {
	margin-top: 20px;
}
.case-detail-base-data dl div dt {
}
.case-detail-base-data dl div dt span {
	display: inline-block;
	padding: 0.5em 1em 0.6em;
	width: 90px;
	background: #9EA3AF;
	border-radius: 13px;
	box-sizing: border-box;
	white-space: nowrap;
	font-weight: 600;
	font-size: 13px;
	line-height: 1;
	color: #FFFFFF;
	text-align: center;
}
.case-detail-base-data dl div dd {
	font-size: 16px;
}
.case-detail-base-explanation {
	margin-top: 80px;
	padding-bottom: 80px;
	border-bottom: #E5E5E5 1px solid;
	display: flex;
	justify-content: center;
	gap: 100px;
}
.case-detail-base-explanation > div {
	width: 100%;
	max-width: 800px;
}
.case-detail-base-explanation h2 {
	margin-bottom: 1.2em;
	padding-bottom: 0.5em;
	border-bottom: #E5E5E5 1px solid;
	font-weight: 600;
	font-size: 22px;
}
.case-detail-base-explanation p {
	font-size: 16px;
	line-height: 2;
}
.case-detail-area .btn-casetop {
	margin: 80px auto 0;
	background-color: #EFEFEF;
}
.case-detail-area .btn-casetop a {
	padding-left: 13px;
	color: #464646;
}
.case-detail-area .btn-casetop::before {
	right: auto;
	left: 15px;
	background-image: url("../img/common/icon_arrow_left_gray.svg");
}
@media screen and (max-width: 1040px) {
	.case-detail-base-explanation {
		gap: 50px;
	}
}
@media screen and (max-width: 768px) {
	.case-detail-area {
		margin-top: 5.3334vw;
		margin-bottom: 18.6667vw;
	}
	.case-detail-area .inner {
		padding-left: 0;
		padding-right: 0;
		max-width: 90.6667vw;
	}
	.case-detail-area h1 {
		margin-bottom: 6.4vw;
		font-size: 5.8667vw;
	}
	.case-detail-base-data {
		padding: 6.4vw 0;
	}
	.case-detail-base-data dl div {
		gap: 2.6667vw;
	}
	.case-detail-base-data dl div + div {
		margin-top: 5.3334vw;
	}
	.case-detail-base-data dl div dt {
		font-size: 3.2vw;
	}
	.case-detail-base-data dl div dt span {
		width: 21.3334vw;
		border-radius: 3.2vw;
		font-size: 3.2vw;
	}
	.case-detail-base-data dl div dd {
		font-size: 4vw;
	}
	.case-detail-base-explanation {
		margin-top: 16vw;
		padding-bottom: 13.3334vw;
		flex-wrap: wrap;
		gap: 16vw;
	}
	.case-detail-base-explanation > div {
		max-width: 100%;
	}
	.case-detail-base-explanation h2 {
		font-size: 4.8vw;
	}
	.case-detail-base-explanation p {
		font-size: 4vw;
	}
	.case-detail-area .btn-casetop {
		margin-top: 13.3334vw;
		width: 53.3334vw;
		height: 10.6667vw;
		border-radius: 5.3334vw;
	}
	.case-detail-area .btn-casetop a {
		padding-left: 1.7334vw;
	}
	.case-detail-area .btn-casetop::before {
		left: 5.3334vw;
	}
}

/* --------------------------------------------------
	.img-contents
-------------------------------------------------- */
.img-contents {
	overflow: hidden;
}
.img-contents.img-contents-pc {
	padding-bottom: 10px;
}
.img-contents .inner {
	padding-left: 10px;
	padding-right: 10px;
	max-width: 1020px;
	box-sizing: border-box;
}
.img-contents a:hover {
	opacity: 1;
}
.img-contents .img-data  {
	margin-left: -46%;
	width: 192%;
}
.img-contents .img-data-flex  {
	display: flex;
	margin: 0 auto;
	width: 100%;
	max-width: 1000px;
}
.img-contents .img-data-flex-3 {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 auto;
	width: 1031px;
}
.img-contents .img-data-flex-3 > div  {
	width: 33%;
}
.img-contents .img-btn  {
	margin: 0 auto;
	width: 900px;
}
.img-contents .img-btn-500  {
	margin: 0 auto;
	width: 500px;
}
.img-contents .btn-area-flex  {
	margin-top: 70px;
	margin-bottom: 200px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
}
.img-contents .btn-page {
	width: 250px;
	height: 50px;
	border-radius: 25px;
}
.img-contents .btn-center {
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 768px) {
	.img-contents .inner {
		padding-left: 0;
		padding-right: 0;
		max-width: 100%;
	}
	.img-contents .img-data  {
		margin-left: 0;
		width: 100%;
	}
	.img-contents.img-contents-pc .img-data  {
		margin-left: -46%;
		width: 192%;
	}
	.img-contents.img-contents-pc .inner {
		margin-left: 10px;
		margin-right: 10px;
	}
	.img-contents.img-contents-pc .img-data-flex  {
		display: flex;
	}
	.img-contents .img-data-flex  {
		display: block;
	}

	.img-contents .btn-area-flex  {
		margin-top: 9.3334vw;
		margin-bottom: 26.6667vw;
		gap: 5.3334vw;
	}

	.img-contents .img-data-flex-3 {
		width: 100%;
	}
	.img-contents .img-btn-500  {
		width: 50%;
	}

	.img-contents .img-btn  {
		width: 100%;
	}
	.img-contents .img-btn-500  {
		width: 100%;
	}

	.img-contents .btn-page {
		width: 58.6667vw;
		height: 9.6vw;
		border-radius: 4.8vw;
	}
}

/* --------------------------------------------------
	.recruit
-------------------------------------------------- */
.recruit .inner {
	padding: 0;
	max-width: 1000px;
	box-sizing: border-box;
}
.recruit {
}
@media screen and (max-width: 768px) {
}

