@charset "UTF-8";
/*--------------- ▽ 変数設定 ▽ ---------------*/
/*メインカラー*/
:root {
	--col-main: #ffd442;
	--col-sub: #cd1717;
	--col-text: #000000;
	--col-wh: #fff;
	--col-wh-rgb: 255, 255, 255;
	--col-base: #fff;
	--col-base-rgb: 255, 255, 255;
}

/*フォント*/
:root {
	--font-text: 'DotGothic16', sans-serif;
	--font-ttl-ja: 'DotGothic16', sans-serif;
	--font-ttl-en: 'DotGothic16', sans-serif;
}

:root {
	--font-size-base: 1.8rem;
	--font-size-base-sp: 1.7rem;
}

/*
  --font-notosans: "Noto Sans JP",sans-serif;
  --font-serif: "Noto Serif JP",serif;
  --font-meirio: "メイリオ",Meiryo,sans-serif;
  --font-yu_go: "游ゴシック体","Yu Gothic",YuGothic,"ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"MS Pゴシック","MS PGothic","Noto Sans JP",sans-serif;
*/
:root {
	--round-base: 20px;
	--round-small: 10px;
}

/*--------------- △ 変数設定 △ ---------------*/
/*--------------- ▽ header ▽ ---------------*/
.header {
	position: absolute;
	width: 100%;
	margin: 0 auto;
	z-index: 60;
}
.header h1 span {
	display: block;
}
.header-logo {
	display: block;
	width: 150px;
}
.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 50px;
}
.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);
}

.header-nav-link.current .nav-wrap::before {
	background: var(--col-main);
	border: 1px solid --col-main;
}

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

/*--------------- △ header △ ---------------*/
/*--------------- ▽ footer ▽ ---------------*/
.footer {
	background: url(../img/common/footer-bg.png) no-repeat center bottom/100%, #020202;
	position: relative;
	box-sizing: border-box;
	padding: 90px 0 0;
	min-height: 785px;
}
.footer-logo {
	display: block;
	width: 150px;
	margin: 0 auto 10%;
}
.footer-logo:hover {
	opacity: 0.7;
}
.footer-wrap {
	display: block;
}
.footer-nav {
	margin: 50px auto 0;
	width: fit-content;
	color: var(--col-wh);
	padding: 40px 60px;
}
.footer-nav-list {
	gap: 20px 40px;
}
.footer-nav-link {
	position: relative;
	display: block;
}
.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;
	margin: 0 auto 6%;
}
.footer #copyright {
	position: absolute;
	margin: 0 auto;
	text-align: center;
	padding: 5px 0;
	bottom: 80px;
	left: 0;
	right: 0;
}
.footer #copyright small {
	color: var(--col-wh);
	font-size: 12px;
}
.footer #copyright small a {
	color: var(--col-wh);
}
.footer #copyright small a:hover {
	opacity: 0.7;
}

/*--------------- △ footer △ ---------------*/
/*--------------- ▽ top-page ▽ ---------------*/
/*--------------- ▼ main-visual ▼ ---------------*/
.mv {
	position: relative;
	width: 100%;
	height: 650px;
	background: url(../img/mv/mv-bg.png) no-repeat center left/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;
}
.mv-catch .catch-sub01 {
	display: block;
	text-align: center;
	position: relative;
	color: var(--col-wh);
	font-size: 1.6rem;
	line-height: 1.8;
	padding: 6%;
	margin: -5px auto 30px;
	width: 90%;
}
.mv-catch .catch-main::after {
	position: absolute;
	content: '';
	background: url(../img/mv/mv-deco.png) no-repeat top left;
	width: 80px;
	height: 70px;
	margin: auto;
	left: -15px;
	top: 120px;
	background-size: contain;
	transition: all 0.3s ease;
	z-index: 4;
}
.mv-catch .catch-sub01 .large {
	font-size: 2.4rem;
}
.mv-catch .catch-sub01 .large02 {
	font-size: 2rem;
}
.mv-catch .catch-sub02 {
	width: fit-content;
	margin: 0 auto;
	color: var(--col-wh);
	font-size: 1.5rem;
	padding: 8% 6%;
}
.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-section {
	padding: 17% 0;
	box-sizing: border-box;
}

/*--------------------
top-lead
---------------------*/
.top-lead {
	box-sizing: border-box;
	padding: 17% 0 200px;
	background: url(../img/top/lead-bg.png) no-repeat center top;

}
.top-lead-text .large {
	font-size: 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: 6px solid var(--col-text);
}
/*--------------------
top-skill
---------------------*/
.top-skill {
	background: url(../img/top/skill-bg.png) no-repeat center bottom/100%, #1e98cd;
	box-sizing: border-box;
	padding: 17% 0 250px;
	overflow: hidden;
}
.top-skill-ttl {
	margin: 0 auto 110px;
}
.top-skill-list {
	counter-reset: number 0;
	position: relative;
	gap: 70px;
}
.top-skill-list::before {
	position: absolute;
	content: '';
	background: url(../img/top/skill-illust.png) no-repeat center bottom;
	width: 500px;
	height: 200px;
	bottom: -210px;
	left: -70px;
	margin: auto;
	right: 0;
	background-size: contain;
	transition: all 0.3s ease;
}
.top-skill-item {
	position: relative;
	display: block;
	border-radius: 0 9px 9px 9px;
	z-index: 1;
	height: fit-content;
}
.top-skill-item::before {
	border-radius: 0 9px 9px 9px;
}
.top-skill-item figure {
	display: flex;
	align-items: center;
	gap: 15px;
	border-bottom: 1px solid var(--col-wh);
	box-sizing: border-box;
	padding: 3% 3% 5% 3%;
}
.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;
	width: 60px;
}
.top-skill-item .item-ttl {
	font-size: 2rem;
	letter-spacing: 0;
	color: var(--col-main);
	box-sizing: border-box;
	padding: 12px 5px;
	flex: 1;
}
.top-skill-item .item-text {
	box-sizing: border-box;
	padding: 12px 26px 35px;
	color: var(--col-wh);
}

/*--------------------
top-works
---------------------*/
.top-works-ttl {
	margin: 0 auto 100px;
}
.top-works-list {
	gap: 70px;
}
.top-works-item {
	width: 100%;
	position: relative;
	z-index: 1;
}
.top-works-item .item-ttl {
	padding: 0 20px;
	margin-bottom: 40px;
	position: relative;
}
.top-works-item .item-ttl::before {
	position: absolute;
	content: '';
	background: url(../img/common/deco02.png) no-repeat;
	width: 100%;
	height: 120px;
	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: -30px;
	right: 40px;
	margin: auto;
	width: 80px;
}
.top-works-item .item-ttl .ttl {
	position: relative;
	display: block;
	left: 30px;
}
.top-works-item .item-ttl .ttl img {
	height: 72px;
}
.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: 70px;
	height: 80px;
	margin: auto;
	right: 0;
	top: -110px;
	background-size: contain;
	transition: all 0.3s ease;
	z-index: 2;
}

/*--------------------
top-worksite
---------------------*/
.top-worksite {
	background: url(../img/top/worksite-bg.png) no-repeat center bottom/100%, #2fa8e1;
}
.top-worksite-list {
	gap: 45px 5%;
}
.top-worksite-item {
	position: relative;
	width: 47.5%;
}

/*--------------------
top-member
---------------------*/
.top-member {
	background: url(../img/top/member-bg.png) no-repeat center center/cover;
}
.top-member-list {
	gap: 120px;
	margin-top: 170px;
	justify-content: center;
}
.top-member-item {
	position: relative;
	width: 340px;
	padding: 100px 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-img img {
	width: 140px;
}
.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: 20px;
}
.top-career-wrap {
	overflow: auto;
}
.top-career-list {
	width: 860px;
	overflow: hidden;
}
.top-career-item {
	position: relative;
	width: 200px;
}
.top-career-item .item-img {
	margin: 0 auto 30px;
	height: 360px;
}
.top-career-item .item-textbox {
	color: var(--col-wh);
	height: 100%;
	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: 1.8rem;
}
.top-career-item .item-ttl .ttl-sub {
	display: block;
	font-size: 1.6rem;
}
.top-career-item .item-text {
	box-sizing: border-box;
	padding: 20px;
	font-size: 1.5rem;
}
.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;
	z-index: 1;
}
.top-career-item .item-table th,
.top-career-item .item-table td {
	box-sizing: border-box;
	padding: 10px 25px;
	font-size: 1.5rem;
}
.top-career-item .item-table th {
	width: 70%;
}
.top-career-item .item-table td {
	width: 30%;
	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: -30px;
	margin: auto;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}

/*--------------------
top-recruit
---------------------*/
.top-recruit {
	padding: 17% 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 bottom/100%, #7acbe0;
}
.top-news .news-list {
	width: 90%;
	margin: 0 auto;
}
.top-news-btn {
	margin: 10% auto 0;
}

/*--------------------
top-entry
---------------------*/
.top-entry-wrap {
	box-sizing: border-box;
	padding: 10% 5%;
	border: 10px solid var(--col-text);
	background: var(--col-wh);
	position: relative;
	top: -15px;
}
.top-entry-illust {
	position: relative;
	top: -10px;
}
/*--------------- ▲ top ▲ ---------------*/
/*--------------- ▽ sub-page ▽ ---------------*/
.sub-section {
	padding: 20% 0;
	box-sizing: border-box;
	position: relative;
}

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

.sv-ttl {
	font-size: 2rem;
	color: var(--col-wh);
	padding: 15px 30px;
	width: 90%;
	position: relative;
	margin: 0 auto;
}

.sv-wrap {
	width: 100%;
	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);
	background-size: contain;
	width: 80px;
	height: 60px;
	margin: auto;
	left: -20px;
	top: -40px;
	z-index: 5;
}
.sv-ttl-wrap::after {
	position: absolute;
	content: '';
	background: url(../img/sv/sv-deco02.png);
	background-size: contain;
	width: 50px;
	height: 70px;
	margin: auto;
	right: 10px;
	bottom: -30px;
	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: relative;
	margin: 0 auto;
	padding: 2% 0;
	z-index: 100;
	line-height: 1;
}
#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_ ▲ ---------------*/
/*--------------- ▼ お知らせ ▼ ---------------*/
.post-wrp .tag-change {
	text-align: center;
	flex-wrap: nowrap;
	overflow-x: scroll;
	margin-bottom: 30px;
	-webkit-justify-content: start;
	justify-content: start;
}
.post-wrp .tag-change li {
	flex: 0 0 30%;
	margin: 2% 1% 0 0;
}
.post-wrp .tag-change li a {
	border: solid 1px var(--col-main);
	padding: 5px 0;
	display: block;
	color: var(--col-main);
	background: #fff;
	font-size: 3vw;
}
.post-wrp .tag-change .current a {
	background: var(--col-main);
}
.post-wrp .tag-change .current a span {
	color: #fff;
}

/*タグ一覧
-------------------------------*/
.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: 0;
	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 #333;
	cursor: pointer;
	border-radius: 0;
	background: none;
	color: #333;
	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: #fff;
	padding: 10px 15px;
	display: block;
}
.post-wrp .tag-change .current a {
	background: var(--col-main);
}
.post-wrp .tag-change .current a span {
	color: #fff;
}

/*詳細
-------------------------------*/
.s-time-tag {
	margin-bottom: 5%;
}

.s-post-taglist {
	margin-bottom: 30px;
}

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