@charset "UTF-8";
/*--------------- ▽ 変数設定 ▽ ---------------*/

/*--------------- △ 変数設定 △ ---------------*/
/*--------------- ▽ header ▽ ---------------*/
.header {
	position: absolute;
	width: 100%;
	margin: 0 auto;
	z-index: 60;
}
.header-inner {
	margin: 0 auto;
	min-width: 1100px;
}
.header h1 span {
	display: block;
}
.header-logo {
	display: block;
	width: clamp(150px, 16vw, 300px);
}
.header-logo:hover {
	opacity: 0.7;
}
.header-inner {
	box-sizing: border-box;
	padding: 20px;
}
.header-btn-list {
	margin: 0 0 0 auto;
	width: fit-content;
}

/*-------------------
header-nav
--------------------*/
.header-nav {
	margin-top: 20px;
	padding: 26px 36px;
}
.header-nav-list {
	gap: 20px;
}
.header-nav-link {
	box-sizing: border-box;
	padding: 0 15px;
	color: var(--col-wh);
	position: relative;
}
.header-nav-link::before {
	position: absolute;
	content: '';
	background: var(--col-wh);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	width: 8px;
	height: 15px;
	bottom: 0;
	left: -5px;
	margin: auto;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
	opacity: 0;
}
.header-nav-link:hover {
	color: var(--col-main);
}
.header-nav-link:hover::before {
	opacity: 1;
}

/*-------------------
現在の表示ページ
--------------------*/
.header-nav-link.current {
	color: var(--col-main);
}

.drawer-link.current {
	color: var(--col-main);
}

/*--------------- △ header △ ---------------*/
/*--------------- ▽ footer ▽ ---------------*/
.footer {
	background: url(../img/common/footer-bg.png) no-repeat center center/cover;
	position: relative;
	box-sizing: border-box;
	padding: 60px 0 0;
	min-height: 785px;
}
.footer-logo {
	display: block;
	width: fit-content;
	margin-bottom: 40px;
}
.footer-logo:hover {
	opacity: 0.7;
}
.footer-nav {
	margin: 50px auto 0;
	width: fit-content;
	color: var(--col-wh);
	padding: 40px 60px;
}
.footer-nav-list {
	gap: 20px 40px;
	justify-content: center;
}
.footer-nav-link {
	position: relative;
	display: block;
	font-size: 1.6rem;
	line-height: 1.9;
}
.footer-nav-link::before {
	position: absolute;
	content: '';
	background: var(--col-wh);
	width: 10px;
	height: 15px;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	bottom: 0;
	left: -22px;
	margin: auto;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
	opacity: 0;
}
.footer-nav-link:hover {
	opacity: 0.7;
}
.footer-nav-link:hover::before {
	opacity: 1;
	left: -20px;
}
.footer-address {
	font-size: 1.5rem;
	letter-spacing: 0;
}
.footer-right {
	width: 670px;
}
.footer-btn-list {
	gap: 12px;
	width: fit-content;
	margin: 0 0 0 auto;
}
.footer-btn-list .item {
	width: 320px;
}
.footer-btn-list .item a {
	width: 100%;
	height: 70px;
	min-height: auto;
}
.footer #copyright {
	position: absolute;
	margin: 0 auto;
	text-align: center;
	padding: 5px 0;
	bottom: 20px;
	left: 0;
	right: 0;
}
.footer #copyright small {
	color: var(--col-text);
	font-size: 12px;
}
.footer #copyright small a {
	color: var(--col-text);
}
.footer #copyright small a:hover {
	opacity: 0.7;
}

/*--------------- △ footer △ ---------------*/
/*--------------- ▽ 共通 ▽ ---------------*/
/*--------------- △ 共通 △ ---------------*/
/*--------------- ▽ top-page ▽ ---------------*/
.top-section {
	padding: 130px 0;
	box-sizing: border-box;
}

/*--------------- ▼ main-visual ▼ ---------------*/
.mv {
	position: relative;
	width: 100%;
	height: 1330px;
	background: url(../img/mv/mv-bg.png) no-repeat center center/cover;
}
.mv-catch {
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: fit-content;
	height: fit-content;
	letter-spacing: 0.08em;
}
.mv-catch .catch-main {
	display: block;
	text-align: center;
	position: relative;
}
.mv-catch .catch-sub01 {
	display: block;
	text-align: center;
	position: relative;
	color: var(--col-wh);
	font-size: 3.4rem;
	line-height: 1.8;
	padding: 30px;
	margin: -5px auto 30px;
}
.mv-catch .catch-main::after {
	position: absolute;
	content: '';
	background: url(../img/mv/mv-deco.png) no-repeat top left;
	width: 205px;
	height: 159px;
	margin: auto;
	left: -60px;
	bottom: -60px;
	background-size: contain;
	transition: all 0.3s ease;
	z-index: 4;
}
.mv-catch .catch-sub01 .large {
	font-size: 5rem;
}
.mv-catch .catch-sub01 .large02 {
	font-size: 4rem;
}
.mv-catch .catch-sub02 {
	max-width: 640px;
	margin: 0 auto;
	color: var(--col-wh);
}
.mv-catch .catch-sub02 .text {
	position: relative;
	display: block;
	box-sizing: border-box;
	padding: 0 0 0 20px;
	margin-bottom: 10px;
}
.mv-catch .catch-sub02 .text:last-of-type {
	margin-bottom: 0;
}
.mv-catch .catch-sub02 .text::before {
	position: absolute;
	content: '';
	background: var(--col-wh);
	width: 10px;
	height: 10px;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	bottom: 0;
	left: 0;
	margin: auto;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}
.mv-catch .catch-sub02 .text:last-of-type.text::before {
	content: none;
}
/*--------------- ▲ main-visual ▲ ---------------*/
/*--------------- ▼ top ▼ ---------------*/
/*--------------------
top-lead
---------------------*/
.top-lead {
	box-sizing: border-box;
	padding: 180px 0 300px;
	background: url(../img/top/lead-bg.png) no-repeat center center/cover;
	height: 1426px;
}
.top-lead-text {
	font-size: 2.2rem;
}
.top-lead-text .large {
	font-size: 5.2rem;
}

/*--------------------
top-movie
---------------------*/
.top-movie-ttl {
	margin: 0 auto 50px;
}
.top-movie-wrap {
	width: 100%;
	aspect-ratio: 16 / 9;
}
.top-movie-wrap iframe {
	width: 100%;
	height: 100%;
	border: 8px solid var(--col-text);
}
/*--------------------
top-skill
---------------------*/
.top-skill {
	background: url(../img/top/skill-bg.png) no-repeat center bottom/cover;
	box-sizing: border-box;
	padding: 130px 0 560px;
}
.top-skill .inbox {
	position: relative;
}
.top-skill-ttl {
	margin: 0 auto 110px;
}
.top-skill-list {
	counter-reset: number 0;
	position: relative;
}
.top-skill-list::before {
	position: absolute;
	content: '';
	background: url(../img/top/skill-illust.png) no-repeat center bottom;
	width: 1610px;
	height: 176px;
	bottom: -210px;
	left: -200px;
	margin: auto;
	right: 0;
	background-size: contain;
	transition: all 0.3s ease;
}

/* .top-skill-illust{
  position:absolute;
  margin: 0 auto;
    width: 1610px;
    bottom:0;
    left: -60px;
    right: 0;
    z-index: 1;
    bottom: -210px;
} */
.top-skill-item {
	position: relative;
	display: block;
	border-radius: 0 9px 9px 9px;
	padding: 0;
	z-index: 1;
	height: fit-content;
}
.top-skill-item::before {
	border-radius: 0 9px 9px 9px;
}
.top-skill-item:nth-child(even) {
	margin-top: 50px;
}
.top-skill-item .item-num {
	position: absolute;
	margin: auto;
	width: 110px;
	height: 50px;
	top: -45px;
	left: 0;
	background: var(--col-text);
	border-radius: 9px 9px 0 0;
	text-align: center;
	line-height: 3.1;
	z-index: 2;
}
.top-skill-item .item-num::before {
	position: absolute;
	content: '';
	border-right: 6px solid var(--col-wh);
	border-left: 6px solid var(--col-wh);
	border-top: 6px solid var(--col-wh);
	width: calc(100% - 10px);
	height: calc(100% - 4px);
	bottom: 0;
	left: 0;
	margin: auto;
	right: 0;
	background-size: contain;
	transition: all 0.3s ease;
	border-radius: 9px 9px 0 0;
}
.top-skill-item .item-icon {
	text-align: center;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 25px 15px;
	height: 170px;
}
.top-skill-item .item-ttl {
	font-size: 2.4rem;
	letter-spacing: 0;
	color: var(--col-main);
	text-align: center;
	box-sizing: border-box;
	padding: 12px 5px;
}
.top-skill-item .item-ttl::before {
	position: absolute;
	content: '';
	background: var(--col-wh);
	width: calc(100% - 10px);
	height: 1px;
	left: 0;
	margin: auto;
	right: 0;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}
.top-skill-item .item-ttl::after {
	position: absolute;
	content: '';
	background: var(--col-wh);
	width: calc(100% - 10px);
	height: 1px;
	left: 0;
	margin: auto;
	right: 0;
	bottom: 0;
	background-size: contain;
	transition: all 0.3s ease;
}
.top-skill-item .item-text {
	box-sizing: border-box;
	padding: 12px 26px 35px;
	color: var(--col-wh);
}
.top-skill-item.item-main {
	width: 330px;
	margin-right: 30px;
	margin-bottom: 130px;
}
.top-skill-item.item-main:last-child {
	margin-right: 0;
}
.top-skill-item.item-sub {
	width: 260px;
	margin-right: 13px;
	height: 520px;
}
.top-skill-item.item-sub:last-child {
	margin-right: 0;
}

/*--------------------
top-works
---------------------*/
.top-works-ttl {
	margin: 0 auto 120px;
}
.top-works-list {
	gap: 50px 40px;
}
.top-works-item {
	width: 520px;
	position: relative;
	z-index: 1;
}
.top-works-item .item-ttl {
	padding: 0 60px;
	margin-bottom: 50px;
	position: relative;
}
.top-works-item .item-ttl::before {
	position: absolute;
	content: '';
	background: url(../img/common/deco02.png) no-repeat;
	width: 529px;
	height: 174px;
	bottom: 0;
	left: 0;
	margin: auto;
	right: 0;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
	z-index: -1;
}
.top-works-item .item-ttl .illust {
	position: absolute;
	display: block;
	width: fit-content;
	bottom: -50px;
	right: 70px;
	margin: auto;
	width: 170px;
}
.top-works-item .item-img {
	margin-bottom: 20px;
}
.top-works-item .item-img .img {
	border-radius: 9px;
}
.top-works-item .item-txtbox {
	padding: 40px;
}
.top-works-item:nth-child(2)::before {
	position: absolute;
	content: '';
	background: url(../img/common/deco03.png) no-repeat;
	width: 113px;
	height: 151px;
	margin: auto;
	right: 0;
	top: -210px;
	background-size: contain;
	transition: all 0.3s ease;
	z-index: 2;
}
.top-works-item:nth-child(even) {
	margin-top: 100px;
}

/*--------------------
top-worksite
---------------------*/
.top-worksite {
	background: url(../img/top/worksite-bg.png) no-repeat center center/cover;
}
.top-worksite-list {
	gap: 45px;
}
.top-worksite-item {
	position: relative;
}
.top-worksite-item:nth-child(5) {
	top: 150px;
}
.top-worksite-item:nth-child(6) {
	top: -30px;
}

/*--------------------
top-member
---------------------*/
.top-member {
	background: url(../img/top/member-bg.png) no-repeat center center/cover;
}
.top-member-list {
	gap: 30px;
	margin-top: 170px;
}
.top-member-item {
	position: relative;
	width: 340px;
	padding: 180px 0 0 0;
}
.top-member-item .item-num {
	position: absolute;
	margin: auto;
	width: 110px;
	height: 50px;
	top: -45px;
	left: 0;
	background: var(--col-text);
	border-radius: 9px 9px 0 0;
	text-align: center;
	line-height: 3.1;
	z-index: 2;
}
.top-member-item .item-num::before {
	position: absolute;
	content: '';
	border-right: 6px solid var(--col-wh);
	border-left: 6px solid var(--col-wh);
	border-top: 6px solid var(--col-wh);
	width: calc(100% - 10px);
	height: calc(100% - 4px);
	bottom: 0;
	left: 0;
	margin: auto;
	right: 0;
	background-size: contain;
	transition: all 0.3s ease;
	border-radius: 9px 9px 0 0;
}
.top-member-item .item-img {
	text-align: center;
	display: block;
	margin: 0 auto 10px;
	box-sizing: border-box;
	padding: 30px 15px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	transform: translateY(-50%);
}
.top-member-item .item-ttl {
	font-size: 2.4rem;
	letter-spacing: 0;
	text-align: center;
	box-sizing: border-box;
	padding: 12px 5px;
	color: var(--col-wh);
}
.top-member-item .item-ttl::before {
	position: absolute;
	content: '';
	background: var(--col-wh);
	width: calc(100% - 10px);
	height: 1px;
	left: 0;
	margin: auto;
	right: 0;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}
.top-member-item .item-ttl::after {
	position: absolute;
	content: '';
	background: var(--col-wh);
	width: calc(100% - 10px);
	height: 1px;
	left: 0;
	margin: auto;
	right: 0;
	bottom: 0;
	background-size: contain;
	transition: all 0.3s ease;
}
.top-member-item .item-text {
	box-sizing: border-box;
	padding: 12px 26px 35px;
	color: var(--col-wh);
}

/*--------------------
top-career
---------------------*/
.top-career-list {
	gap: 25px;
}
.top-career-item {
	position: relative;
	width: 250px;
}
.top-career-item .item-img {
	margin: 0 auto 30px;
	height: 360px;
}
.top-career-item .item-textbox {
	color: var(--col-wh);
	height: 540px;
	position: relative;
	display: block;
	border-radius: 9px;
	padding: 30px 0;
}
.top-career-item .item-ttl {
	color: var(--col-main);
	text-align: center;
	box-sizing: border-box;
	padding: 0 0 12px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.top-career-item .item-ttl::before {
	position: absolute;
	content: '';
	background: var(--col-wh);
	width: calc(100% - 20px);
	height: 1px;
	bottom: 0;
	left: 0;
	margin: auto;
	right: 0;
	background-size: contain;
	transition: all 0.3s ease;
}
.top-career-item .item-ttl .ttl-main {
	display: block;
	font-size: 2.4rem;
}
.top-career-item .item-ttl .ttl-sub {
	display: block;
	font-size: 2rem;
}
.top-career-item .item-text {
	box-sizing: border-box;
	padding: 20px;
}
.top-career-item .item-table {
	width: 100%;
}
.top-career-item .item-table tr,
.top-career-item .item-table tbody {
	width: 100%;
}
.top-career-item .item-table tr {
	position: relative;
}
.top-career-item .item-table tr::before {
	position: absolute;
	content: '';
	background: var(--col-wh);
	width: calc(100% - 20px);
	height: 1px;
	bottom: 0;
	left: 0;
	margin: auto;
	right: 0;
	background-size: contain;
	transition: all 0.3s ease;
}
.top-career-item .item-table th,
.top-career-item .item-table td {
	box-sizing: border-box;
	padding: 10px 30px;
}
.top-career-item .item-table th {
	width: 60%;
}
.top-career-item .item-table td {
	width: 40%;
	text-align: right;
}
.top-career-item:nth-child(1)::before {
	position: absolute;
	content: '';
	background: url(../img/top/career-deco.png) no-repeat;
	width: 78px;
	height: 90px;
	margin: auto;
	right: -30px;
	top: 70px;
	background-size: contain;
	transition: all 0.3s ease;
}
.top-career-item:nth-child(1)::after {
	position: absolute;
	content: '';
	background: url(../img/top/career-deco02.png) no-repeat;
	width: 42px;
	height: 51px;
	left: 0;
	margin: auto;
	top: 50px;
	background-size: contain;
	transition: all 0.3s ease;
}
.top-career-item:nth-child(4)::before {
	position: absolute;
	content: '';
	background: url(../img/top/career-deco03.png) no-repeat;
	width: 82px;
	height: 127px;
	left: -55px;
	margin: auto;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}

/*--------------------
top-recruit
---------------------*/
.top-recruit {
	padding: 130px 0 0;
}

/*--------------------
top-outline 
---------------------*/
.top-outline-map {
	margin: 50px auto 0;
	border-radius: 10px;
}

/*--------------------
top-news
---------------------*/
.top-news {
	background: url(../img/top/news-bg.png) no-repeat center center/cover;
}
.top-news-btn {
	margin: 60px auto 0;
	width: 490px;
}

/*--------------------
top-entry
---------------------*/
.top-entry-wrap {
	box-sizing: border-box;
	padding: 50px;
	border: 10px solid var(--col-text);
	background: var(--col-wh);
	position: relative;
	top: -15px;
}

/*--------------- ▲ top ▲ ---------------*/
/*--------------- ▽ sub-page ▽ ---------------*/
.sub-section {
	position: relative;
	padding: 100px 0;
	box-sizing: border-box;
}

/*--------------- ▼ sub-visual ▼ ---------------*/
.sv {
	position: relative;
	width: 100%;
	height: 700px;
}

.sv-ttl {
	font-size: 5rem;
	color: var(--col-wh);
	padding: 30px 70px;
	width: 100%;
	position: relative;
}

.sv-wrap {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
}

.sv-ttl-wrap {
	position: relative;
	display: block;
	width: 100%;
	text-align: center;
}

.sv-ttl-wrap::before {
	position: absolute;
	content: '';
	background: url(../img/sv/sv-deco01.png);
	width: 209px;
	height: 159px;
	margin: auto;
	left: -30px;
	top: -80px;
	z-index: 5;
}
.sv-ttl-wrap::after {
	position: absolute;
	content: '';
	background: url(../img/sv/sv-deco02.png);
	width: 113px;
	height: 151px;
	margin: auto;
	right: 30px;
	bottom: -60px;
	z-index: 5;
}

/*---------------------
各ページの画像設定
-----------------------*/
.sv-news {
	background: url(../img/sv/sv-news-bg.jpg) no-repeat center center/cover;
}

.sv-contact {
	background: url(../img/sv/sv-contact-bg.jpg) no-repeat center center/cover;
}

.sv-complete {
	background: url(../img/sv/sv-complete-bg.jpg) no-repeat center center/cover;
}

.sv-privacy {
	background: url(../img/sv/sv-privacy-bg.jpg) no-repeat center center/cover;
}

.sv-site {
	background: url(../img/sv/sv-site-bg.jpg) no-repeat center center/cover;
}

.sv-notfound {
	background: url(../img/sv/sv-notfound-bg.jpg) no-repeat center center/cover;
}

/*--------------- ▼ 下層共通タイトル ▼ ---------------*/
/*--------------- ▲ 下層共通タイトル ▲ ---------------*/
/*--------------- ▼ ぱんくず ▼ ---------------*/
#bread-clumb {
	width: 100%;
	position: absolute;
	margin: 0 auto;
	padding: 10px 0;
	z-index: 1;
	min-width: 1280px;
}
#bread-clumb ul {
	display: flex;
	overflow: hidden;
	white-space: nowrap;
}
#bread-clumb li {
	position: relative;
	color: var(--col-text);
	font-size: 14px;
	float: left;
	margin-right: 20px;
}
#bread-clumb li:after {
	content: '>';
	position: absolute;
	display: block;
	right: -15px;
	top: 0;
}
#bread-clumb li:last-child {
	margin-right: 0;
}
#bread-clumb li:last-child:after {
	display: none;
}
#bread-clumb li a {
	color: var(--col-text);
	border-bottom: 1px solid;
	display: block;
}
#bread-clumb li a:hover {
	opacity: 0.7;
}

/*--------------- ▲ ぱんくず ▲ ---------------*/
/*--------------- ▼ sub02_ ▼ ---------------*/
/*-----------------------

-------------------------*/
/*-----------------------

-------------------------*/
/*-----------------------

-------------------------*/
/*--------------- ▲ sub02_ ▲ ---------------*/
/*--------------- ▼ sub03_ ▼ ---------------*/
/*-----------------------

-------------------------*/
/*-----------------------

-------------------------*/
/*-----------------------

-------------------------*/
/*--------------- ▲ sub03_ ▲ ---------------*/
/*--------------- ▼ sub04_ ▼ ---------------*/
/*-----------------------

-------------------------*/
/*-----------------------

-------------------------*/
/*-----------------------

-------------------------*/
/*--------------- ▲ sub04_ ▲ ---------------*/
/*--------------- ▼ sub05_ ▼ ---------------*/
/*-----------------------

-------------------------*/
/*-----------------------

-------------------------*/
/*-----------------------

-------------------------*/
/*--------------- ▲ sub05_ ▲ ---------------*/
/*--------------- ▼ お知らせ ▼ ---------------*/
.post-wrp .tag-change {
	margin-bottom: 50px;
}
.post-wrp .tag-change li {
	text-align: center;
	width: 19%;
	margin: 2% 1% 0 0;
}
.post-wrp .tag-change li a {
	border: solid 1px --col-main;
	padding: 10px 0;
	display: block;
	color: var(--col-main);
	background: var(--col-base);
}
.post-wrp .tag-change .current a {
	background: var(--col-main);
}
.post-wrp .tag-change .current a span {
	color: var(--col-base);
}

/*タグ一覧
-------------------------------*/
.tag-select-box {
	position: relative;
	width: 40%;
	margin: 0 0 20px auto;
	max-width: 230px;
}
.tag-select-box:before {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 2;
	right: 0.8em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid var(--col-text);
	pointer-events: none;
}
.tag-select-box #tag-select {
	width: 100%;
	padding: 5% 20% 5% 5%;
	box-sizing: border-box;
	font-size: 1.2rem;
	margin-left: auto;
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	border: none;
	border-bottom: 2px solid var(--col-text);
	cursor: pointer;
	border-radius: 0;
	background: none;
	color: var(--col-text);
	font-weight: 700;
	-webkit-appearance: none;
	appearance: none;
}
.tag-select-box #tag-select option {
	padding: 10px;
	box-sizing: border-box;
	cursor: pointer;
	box-sizing: border-box;
}

.post-wrp .tag-change {
	margin-bottom: 50px;
}
.post-wrp .tag-change li {
	text-align: center;
	margin: 10px 10px 0 0;
	min-width: 190px;
	display: inline-block;
	vertical-align: middle;
}
.post-wrp .tag-change li a {
	border: solid 1px var(--col-main);
	color: var(--col-main);
	background: var(--col-base);
	padding: 10px 15px;
	display: block;
}
.post-wrp .tag-change .current a {
	background: var(--col-main);
}
.post-wrp .tag-change .current a span {
	color: var(--col-base);
}

/*詳細
-------------------------------*/
.s-post .news-tag {
	margin-bottom: 20px;
}

.s-post time {
	margin-bottom: 10px;
}

.s-time-tag {
	margin-bottom: 20px;
}

.sb-post-body {
	line-height: 2;
}

/*--------------- ▲ お知らせ ▲ ---------------*/
