@charset "UTF-8";

/*----------------------------------------------------------*/
/* カスタマイズ用CSS 1
/*----------------------------------------------------------*/
:root {
	--main: #067fee;
	--sub:  #1434b2;
	--red: #B73531;
	--orange: #ff9505;
	--vorange: #ff6000;
	--yellow: #ffd800;
	--navy: #131c64;
	--base: #f4f7fa;
	--base2: #f6f6f6;
	--base3: #edf1f8;
	--text: #2a2f4e;
	--link: #067fee;
	--line: #5ac263;
	--act: #E53935;
	--gradient: linear-gradient(to right, #1434b2 0%, #0293fe 100%);
	--gradient-r: linear-gradient(to left, #1434b2 0%, #0293fe 100%);
	--ease-out: cubic-bezier(0.30, 1.00, 0.30, 1.00);
	--ease-in: cubic-bezier(0.75, 0.05, 0.9, 0.05);
	--ease-inout: cubic-bezier(0.85, 0.00, 0.07, 1.00);
	--font-jp: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	--font-en: "Poppins", sans-serif;
	--font-all: "Poppins", YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	--font-maru: YakuHanJP_Noto, "Zen Kaku Gothic New", sans-serif;
	--font-lato: "Lato", sans-serif;
	--ease: all 0.3s ease;
}
*{
	margin: 0;
	padding: 0;
}
*:focus {
	outline: none;
}
html{
	box-sizing:border-box;
	line-height:1;
	font-size: 62.5%; /*  50 56.25 62.5 68.75 75*/
	background: #fff;
	-webkit-font-smoothing: antialiased;
}
html {
visibility: hidden;
}
html.wf-active {
visibility: visible;
}
::placeholder {
	color: #ccc;
}
body {
	font-family: var(--font-jp);
	font-style: normal;
	font-weight: 500;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt" 1;
	overflow-x: hidden;
	counter-reset: count;
	animation: fadeIn 2.5s ease 0s 1 normal;
	color: var(--text);
}
.content div {
	margin: 0;
}

/*構成*/
#all_wrap {
	width: calc(100%);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap.lp_page {
	width: calc(100%);
	padding: 0;
	margin: 0;
	position: relative;
}
.widget {
	padding: 0;
	margin: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*構成*/
	#all_wrap {
		width: calc(100%);
		padding: 0;
		margin: 0 auto;
		position: relative;
	}
	#all_wrap.sub_page {
		width: calc(100%);
		padding: 50px 0 0;
		margin: 0 auto;
		position: relative;
	}
	.l-footer {
		width: calc(100%);
		padding: 0;
		margin: 0 auto;
		position: relative;
	}
	.widget {
		margin-bottom: 0;
	}
}


.content a { color: var(--text); font-weight: 500; text-decoration: underline; transition: var(--ease); }
.content a:hover { color: var(--text); font-weight: 500; text-decoration: none; transition: var(--ease); }

.content .size-full,
.content .size-large,
.content .size-medium,
.content .size-thumbnail {
	margin-bottom: 1em;
}

#all_wrap .content a.wp-block-button__link {
	display: block;
	width: 50%;
	color: #fff;
	transition: ease 0.2s;
	position: relative;
	padding: 10px 20px;
	margin: 0 auto;
}
#all_wrap .content a.wp-block-button__link:hover { text-decoration: none; opacity: 0.8; transition: ease 0.2s; }
#all_wrap .content a.wp-block-button__link::after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	background: none;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0,-50%) rotate(-45deg);
	-webkit-transform: translate(0,-50%) rotate(-45deg);
	transition: ease 0.2s;
}
#all_wrap .content a.wp-block-button__link:hover::after {
	right: 18px;
	transition: ease 0.2s;
}

/* スクロールの幅の設定 */
html::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

/* スクロールの背景の設定 */
html::-webkit-scrollbar-track {
	border-radius: 0;
	box-shadow: 0 0 4px #fff inset;
}

/* スクロールのつまみ部分の設定 */
html::-webkit-scrollbar-thumb {
	border-radius: 0;
	background: #c8c8c8;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}

#all_wrap .single_content a { color: var(--text); font-weight: 500; transition: ease 0.2s; }
#all_wrap .single_content a:hover { color: #var(--text); font-weight: 500; text-decoration: underline; transition: ease 0.2s; }


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap { position: relative; overflow: hidden; }
	#all_wrap .content a.wp-block-button__link {
		display: block;
		width: 90%;
		color: #fff;
		transition: ease 0.2s;
		position: relative;
		padding: 10px 50px;
		margin: 0 auto;
	}
}

/*ページトップ*/
#to_top {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 40px;
	height: 40px;
	background: var(--main);
	border-radius: 50%;
	position: fixed;
	bottom: 25px;
	right: 25px;
	filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.1));
}
#to_top::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
	margin: 0;
	background: none;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	top: calc(50% + 2px);
	left: 50%;
	transform: translate(-50%,-50%) rotate(-45deg);
	-webkit-transform: rtranslate(-50%,-50%) rotate(-45deg);
}
#to_top:hover {
	opacity: 0.8;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*ページトップ*/
	#to_top {
		width: 30px;
		height: 30px;
		bottom: 65px;
		right: 15px;
	}
}

/*reCAPTCHA*/
.grecaptcha-badge {
	z-index: 999;
}


/************************************************************/
/*　共通
/************************************************************/
#all_wrap .contHead {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 60px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#all_wrap .contHead > h2 {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	font-size: 17px;
	line-height: 1;
	color: var(--text);
	text-align: left;
}
#all_wrap .contHead > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	font-family: var(--font-en);
	font-size: 70px;
	line-height: 1;
	color: var(--text);
	font-style: normal;
	text-align: left;
}
#all_wrap .contHead > em small {
	font-size: 40px;
	position: relative;
	bottom: 5px;
}
#all_wrap .contHead > p {
	width: 100%;
	padding: 0;
	margin: 20px auto 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/* - 白 */
#all_wrap .contHead.white > h2 {
	color: #fff;
}
#all_wrap .contHead.white > em {
	color: #fff;
}
#all_wrap .contHead.white > p {
	color: #fff;
}
/* - 中央 */
#all_wrap .contHead.center > em {
	text-align: center;
}
#all_wrap .contHead.center > h2 {
	text-align: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .contHead {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 30px;
		grid-row-gap: 5px;
	}
	#all_wrap .contHead > h2 {
		width: 100%;
		font-size: 12px;
	}
	#all_wrap .contHead > em {
		display: block;
		width: 100%;
		font-size: 7vw;
	}
	#all_wrap .contHead > em small {
		font-size: 20px;
		position: relative;
		bottom: 5px;
	}
	#all_wrap .contHead > p {
		margin: 10px auto 0;
	}
}

/*sec*/
.sec {
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.sec.mb100 {
	margin-bottom: 100px;
}

/*本文*/
#all_wrap .content {
	font-size: 15px;
	line-height: 2;
	padding: 0;
	margin: 0 auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*本文*/
	#all_wrap .content {
		font-size: 15px;
		line-height: 2;
		padding: 0;
		margin: 0 auto;
	}
}

/************************************************************/
/*　コンテンツ整形
/************************************************************/
#all_wrap p {
	font-size: 18px;
	line-height: 2;
	font-weight: 500;
	font-feature-settings: "palt" 1;
	font-style: normal;
}
#all_wrap .content p {
	font-size: 18px;
	line-height: 2;
	padding: 0;
	margin: 0 auto 20px;
}
#all_wrap img.alignleft {
	margin-right: 30px;
	margin-bottom: 30px;
}
#all_wrap img.alignright {
	margin-left: 30px;
	margin-bottom: 30px;
}
#all_wrap p a {
	color: var(--link);
	text-decoration: underline;
}
#all_wrap p a:hover {
	color: var(--link);
	text-decoration: none;
}


/*下マージン*/
#all_wrap .content .mb0,
#all_wrap .content .mb0 { margin-bottom: 0px; }
#all_wrap .content .mb5,
#all_wrap .content .mb5 { margin-bottom: 5px; }
#all_wrap .content .mb10,
#all_wrap .content .mb10 { margin-bottom: 10px; }
#all_wrap .content .mb20,
#all_wrap .content .mb20 { margin-bottom: 20px; }
#all_wrap .content .mb30,
#all_wrap .content .mb30 { margin-bottom: 30px; }
#all_wrap .content .mb40,
#all_wrap .content .mb40 { margin-bottom: 40px; }
#all_wrap .content .mb50,
#all_wrap .content .mb50 { margin-bottom: 50px; }
#all_wrap .content .mb60,
#all_wrap .content .mb60 { margin-bottom: 60px; }
#all_wrap .content .mb70,
#all_wrap .content .mb70 { margin-bottom: 70px; }
#all_wrap .content .mb80,
#all_wrap .content .mb80 { margin-bottom: 80px; }
#all_wrap .content .mb90,
#all_wrap .content .mb90 { margin-bottom: 90px; }
#all_wrap .content .mb100,
#all_wrap .content .mb100 { margin-bottom: 100px; }
#all_wrap .content .mb150,
#all_wrap .content .mb150 { margin-bottom: 150px; }
#all_wrap .content .mb200,
#all_wrap .content .mb200 { margin-bottom: 200px; }

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap p {
		font-size: 15px;
		line-height: 2em;
		font-weight: 400;
		font-feature-settings: "palt" 1;
		font-style: normal;
	}
	#all_wrap .content p {
		font-size: 15px;
		line-height: 2em;
		padding: 0;
		margin-bottom: 10px;
	}

	/*下マージン*/
	#all_wrap .content .mb0,
	#all_wrap .content .mb0 { margin-bottom: 0px; }
	#all_wrap .content .mb5,
	#all_wrap .content .mb5 { margin-bottom: 5px; }
	#all_wrap .content .mb10,
	#all_wrap .content .mb10 { margin-bottom: 10px; }
	#all_wrap .content .mb20,
	#all_wrap .content .mb20 { margin-bottom: 20px; }
	#all_wrap .content .mb30,
	#all_wrap .content .mb30 { margin-bottom: 30px; }
	#all_wrap .content .mb40,
	#all_wrap .content .mb40 { margin-bottom: 20px; }
	#all_wrap .content .mb50,
	#all_wrap .content .mb50 { margin-bottom: 25px; }
	#all_wrap .content .mb60,
	#all_wrap .content .mb60 { margin-bottom: 30px; }
	#all_wrap .content .mb70,
	#all_wrap .content .mb70 { margin-bottom: 35px; }
	#all_wrap .content .mb80,
	#all_wrap .content .mb80 { margin-bottom: 40px; }
	#all_wrap .content .mb90,
	#all_wrap .content .mb90 { margin-bottom: 45px; }
	#all_wrap .content .mb100,
	#all_wrap .content .mb100 { margin-bottom: 50px; }
	#all_wrap .content .mb150,
	#all_wrap .content .mb150 { margin-bottom: 70px; }
	#all_wrap .content .mb200,
	#all_wrap .content .mb200 { margin-bottom: 100px; }
}

/*== スマホ・PC 非表示 ==*/
.pc_none { display: none !important; }
.sp_none { display: block !important; }
@media only screen and (max-width: 768px){
	.pc_none { display: block !important; }
	.sp_none { display: none !important; }
}

/*リスト*/
#all_wrap ul.disc {
	list-style: none;
	padding: 0;
	margin: 0;
	margin-bottom: 1em;
}
#all_wrap ul.disc li {
	position: relative;
	margin: 0 0 1em;
	font-size: 18px;
}
#all_wrap ul.disc li:last-child {
	margin-bottom: 0;
}
#all_wrap ul.disc li::before {
	content: "・";
	display: inline-block;
	font-weight: 900;
	width: auto;
	height: auto;
	background: none;
	border: none;
	color: var(--text);
	font-size: 18px;
	line-height: 1;
	margin-right: 5px;
}
@media only screen and (max-width: 768px){
	#all_wrap ul.disc li {
		font-size: 15px;
	}
	#all_wrap ul.disc li::before {
		font-size: 15px;
	}
}

/************************************************************/
/*　JS
/************************************************************/

/*lightbox*/
.nivo-lightbox-effect-fade {
	visibility: hidden;
	opacity: 0;
}
.nivo-lightbox-overlay.nivo-lightbox-open {
	visibility: visible;
	opacity: 1;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
	opacity: 1;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
	background-size: 20px 20px;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
	width: 20px;
	height: 20px;
}

/************************************************************/
/*　フェードアニメーション
/************************************************************/
/*フェードアップ*/
.fut {
	opacity: 0;
	transition-delay: 0.3s;
	transition-duration: 1s;
	animation-delay: 0.5s;
}
.fut.delay {
	animation-delay: 0.8s;
}
.fut.delay2 {
	animation-delay: 1.1s;
}
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/*フェードダウン*/
.fdt {
	opacity: 0;
	transition-delay: 0.3s;
	transition-duration: 1s;
	animation-delay: 0.5s;
}
.fdt.delay {
	animation-delay: 0.8s;
}
.fdt.delay2 {
	animation-delay: 1.1s;
}
.fadeDown {
	animation-name: fadeDownAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeDownAnime {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/*フェードイン*/
.fade {
	opacity: 0;
	transition-delay: 0.3s;
	transition-duration: 1s;
	animation-delay: 0.5s;
}
.fade.delay {
	animation-delay: 0.8s;
}
.fade.delay2 {
	animation-delay: 1.1s;
}
.fadeIn {
	animation-name: fadeInAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeInAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
/*フェードショー*/
.show::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	right: 0;
	transform-origin: right;
	z-index: 11;
	animation-delay: 0.7s;
}
.show.delay::before {
	animation-delay: 1s;
}
.show.delay2::before {
	animation-delay: 1.2s;
}
.showopen::before {
	animation-name: fadeShowAnime;
	animation-duration: 1s;
	animation-timing-function: cubic-bezier(0.4, 0.4, 0, 1);
	animation-fill-mode: forwards;
}
@keyframes fadeShowAnime {
	from {
		width: 100%;
	}
	to {
		width: 0%;
	}
}
/*ズームアウト（画像用）*/
.zoomout {
	animation-name: zoomout;
	animation-duration: 5s;
	animation-fill-mode: forwards;
}
@keyframes zoomout {
	from {
		transform: translate(-50%,-50%) scale(1.1);
		transform-origin: center;
	}
	to {
		transform: translate(-50%,-50%) scale(1);
		transform-origin: center;
	}
}

/************************************************************/
/*　構成
/************************************************************/
.l-main {
	width: calc(100%);
	margin-bottom: 0;
	z-index: 1;
	position: static;
}
.top_wrapper {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	background-color: #ffffff;
	position: relative;
	z-index: 0;
}
#all_wrap .l-wrapper {
	width: calc(100% - 100px);
	max-width: 1200px;
	padding: 50px 0 100px;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
	column-gap: 50px;
}
#all_wrap .l-wrapper.single {
	width: calc(100% - 100px);
	max-width: 1200px;
	padding: 50px 0 100px;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
	column-gap: 70px;
}
.l-wrapper-full {
	position: relative;
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
}
.l-wrapper-cat {
	position: relative;
	width: calc(100% - 100px);
	max-width: 1200px;
	padding: 50px 0 100px;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
	column-gap: 50px;
}

.wrapper {
	width: 100%;
	padding: 50px 0 100px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
.wrapper.cat {
	width: 100%;
	padding: 50px 0 100px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
	column-gap: 50px;
}

#all_wrap .l-wrapper .l-main {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	order: 1;
}
#all_wrap .l-wrapper-full .l-main {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0;
}
#all_wrap .l-wrapper-cat .l-main {
	width: 100%;
	padding: 0;
	margin: 0;
	order: 1;
}

.page {
	width: 100%;
}
.dividerBottom {
	margin-bottom: 0;
}
.pageContents .content,
.archiveContents .content {
	padding: 0;
	margin: 0 auto;
}
#all_wrap .l-wrapper-full .pageContents .content, #all_wrap .l-wrapper-full .archiveContents .content {
	margin: 0;
	padding: 0;
}
#all_wrap .l-wrapper-full .sitemap_content {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto 100px;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .l-wrapper .l-main {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap.main_page .l-wrapper {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap.sub_page .l-wrapper {
		width: 100%;
		max-width: 100%;
		padding: 30px 20px;
		margin: 0 auto;
		flex-wrap: wrap;
		grid-row-gap: 30px;
	}
	#all_wrap .l-wrapper.single {
		width: 100%;
		max-width: 100%;
		padding: 30px 20px;
		margin: 0 auto;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		align-content: stretch;
		align-items: stretch;
		column-gap: 0;
	}

	#all_wrap .l-wrapper .l-main {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap .l-wrapper-full .l-main {
		width: 100%;
		padding: 30px 0 50px;
		margin: 0 auto;
	}
	#all_wrap .l-wrapper-cat .l-main {
		width: 100%;
		padding: 0 20px;
		margin: 0;
		order: 1;
	}

	.l-wrapper {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.l-wrapper-full {
		position:relative;
		width: 100%;
		margin: 0 auto;
		padding: 0;
	}
	.l-wrapper-full.cat {
		position:relative;
		width: 100%;
		margin: 0 auto;
		padding: 30px;
	}
	.l-wrapper-cat {
		position: relative;
		width: 100%;
		padding: 30px 0;
		margin: 0 auto;
	}

	/*トップ構成*/
	.top_wrapper {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#topMain {
		width: calc(100%);
		padding: 0;
		margin: 0;
		overflow: hidden;
		background: #fff;
	}

	.side-banner {
		display: block;
		margin-bottom: 0 !important;
	}
	.side-contents {
		display: none;
	}

	.page {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.content {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.postContents {
		width: calc(100%);
		margin: 0 auto;
		padding: 0;
	}
	.pageContents .content,
	.archiveContents .content {
		padding: 0;
		margin: 0 auto;
	}

	/*グーグルマップ表示*/
	.l-wrapper iframe {
		width: 100%;
	}

}

#all_wrap .pager {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
	margin-top: 50px;
}

/************************************************************/
/*　見出し　＆　パンくず
/************************************************************/

h1,h2,h3,h4,h5,h6,b,strong {
	font-family: var(--font-ttl);
	font-weight: 700;
	font-style: normal;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt" 1;
	font-size: 1em;
	letter-spacing: 0.1em;
}

/*ページビジュアル*/
#pagevisual {
	width: 100%;
	height: 400px;
	padding: 100px 0 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}
#pagevisual::before {
	content: '';
	display: block;
	width: calc(100% - 200px);
	height: 100%;
	background: rgba(0,0,0,0.5);
	/*backdrop-filter: blur(5px);*/
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	clip-path: polygon(200px 0%, 100% 0, 100% 100%, 0% 100%);
}
#pagevisual::after {
	content: '';
	display: block;
	width: 100%;
	height: calc(100% - 132px);
	background-image: linear-gradient(to right, #29ABE2 0%, #1E3C8C 100%);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}
#all_wrap #page_title {
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
	width: 100%;
	max-width: 100%;
	padding: 50px 100px 0;
	margin: 0 auto;
	position: relative;
	z-index: 3;
}
#all_wrap #page_title > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	font-family: var(--font-en);
	font-size: 70px;
	line-height: 1;
	color: #fff;
	font-style: normal;
	text-align: left;
}
#all_wrap #page_title > em::first-letter {
	text-transform: uppercase;
}
#all_wrap #page_title > h1 {
	display: inline-block;
	width: fit-content;
	padding: 0;
	margin: 0;
	text-align: left;
	font-size: 20px;
	font-weight: 900;
	line-height: 1;
	color: #fff;
	text-align: center;
	letter-spacing: 0.1em;
	background: none;
	border: none;
	position: relative;
}
#pagevisual > figure {
	width: calc(100% - 200px);
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	overflow: hidden;
	z-index: 0;
	clip-path: polygon(200px 0%, 100% 0, 100% 100%, 0% 100%);
}
#pagevisual > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*ページビジュアル*/
	#pagevisual {
		width: 100%;
		height: 150px;
		padding: 0 20px;
	}
	#pagevisual::before {
		width: calc(100% - 20px);
		height: calc(100% - 19px);
		clip-path: polygon(50px 0%, 100% 0, 100% 100%, 0% 100%);
	}
	#pagevisual::after {
		width: 100%;
		height: calc(100% - 20px);
	}
	#all_wrap #page_title {
		padding: 0;
	}
	#all_wrap #page_title > em {
		font-size: 30px;
	}
	#all_wrap #page_title > h1 {
		font-size: 12px;
	}
	#pagevisual > figure {
		width: calc(100% - 20px);
		height: calc(100% - 20px);
		clip-path: polygon(50px 0%, 100% 0, 100% 100%, 0% 100%);
	}
}

/*h2*/
#all_wrap .content h2 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 2em auto 1em;
	font-size: 28px;
	line-height: 1.4em;
	color: var(--text);
	font-feature-settings: "palt" 1;
	font-style: normal;
	border: none;
	background: none;
	position: relative;
}
#all_wrap .content h2 small {
	font-size: 15px;
}
#all_wrap .content h2:first-of-type {
	margin-top: 10px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*h2*/
	#all_wrap .content h2 {
		display: block;
		width: 100%;
		padding: 0;
		margin: 1em auto 1em;
		font-size: 20px;
		line-height: 1.4em;
		color: var(--text);
		font-feature-settings: "palt" 1;
		font-style: normal;
		border: none;
		background: none;
		position: relative;
	}
}

/*h3*/
#all_wrap .content h3 {
	padding: 0;
	margin: 1em auto 1em;
	border: none;
	background: none;
	font-size: 24px;
	line-height: 1.4em;
	color: var(--text);
	position: relative;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*h3*/
	#all_wrap .content h3 {
		padding: 0;
		margin: 1em auto 1em;
		border: none;
		background: none;
		font-size: 16px;
		line-height: 1.4em;
		color: var(--text);
		position: relative;
	}
}

/*h4*/
#all_wrap .content h4 {
	display: block;
	padding: 0 0 10px;
	margin: 1em auto 1em;
	position: relative;
	font-size: 20px;
	line-height: 1.4em;
	position: relative;
	color: var(--text);
	border-bottom: 1px dotted #333;
	text-align: left;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*h4*/
	#all_wrap .content h4 {
		display: block;
		padding: 0;
		margin: 1em auto 0.5em;
		position: relative;
		font-size: 16px;
		line-height: 1.4em;
		position: relative;
		color: var(--text);
	}
}

/*h5*/
#all_wrap .content h5 {
	display: block;
	padding: 0;
	margin: 0.5em auto 5px;
	position: relative;
	font-size: 17px;
	line-height: 1.4em;
	position: relative;
	color: var(--text);
}
#all_wrap .content h5:first-of-type {
	margin-top: 0;
}

/************************************************************/
/*　ページネーション
/************************************************************/
.pager,
.pagination {
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0 auto;
	margin-top: 60px;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
}
.pagination {
	column-gap: 5px;
}
.pager > li {
	line-height: 1;
	padding: 0;
	margin: 0 5px 0 0;
	text-align: center;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--font-en);
	font-weight: lighter;
	font-style: normal;
	font-feature-settings: "palt";
	color: var(--text);
	border: 1px solid var(--sub);
}
.pager > li:hover,
.pagination > a:hover {
	border: 1px solid var(--sub);
	background: none;
}
.pager > li.pager__item-current,
.pagination > a.active {
	padding: 5px;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--sub);
	border: 1px solid var(--sub);
	color: #fff;
}
.pager > li.pager__item-next,
.pager > li.pager__item-prev,
.pagination > a.next,
.pagination > a.prev {
	background: none;
	border-radius: 0;
	font-family: var(--font-en);
	font-weight: lighter;
	font-style: normal;
	font-feature-settings: "palt";
}
.pager > li a {
	text-align: center;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--font-en);
	font-weight: lighter;
	font-style: normal;
	font-weight: normal;
	color: var(--sub);
	font-feature-settings: "palt";
	transition: var(--ease);
	line-height: 1;
	background: none;
}
.pager > li a:hover {
	background: var(--sub);
	color: #fff;
	font-family: var(--font-en);
	font-weight: lighter;
	font-style: normal;
	font-weight: normal;
	font-feature-settings: "palt";
	transition: var(--ease);
	line-height: 1;
}

.pagination > a {
	text-align: center;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 5px;
	font-family: var(--font-en);
	font-weight: lighter;
	font-style: normal;
	font-weight: normal;
	color: var(--sub);
	font-feature-settings: "palt";
	transition: var(--ease);
	line-height: 1;
	background: none;
	border: 1px solid var(--sub);
	padding: 10px;
	min-width: calc(1.2rem + 20px);
}
.pagination > a:hover {
	background: var(--sub);
	color: #fff;
	font-family: var(--font-en);
	font-weight: lighter;
	font-style: normal;
	font-weight: normal;
	font-feature-settings: "palt";
	transition: var(--ease);
	line-height: 1;
	border: 1px solid var(--sub);
}
.pagination > a.next::after {
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	margin: auto;
	border-top: 1px solid var(--text);
	border-right: 1px solid var(--text);
	transform: rotate(45deg);
}
.pagination > a.prev::before {
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	margin: auto;
	border-top: 1px solid var(--text);
	border-left: 1px solid var(--text);
	transform: rotate(-45deg);
}
.pagination > a:hover.next::after,
.pagination > a:hover.prev::before {
	border-color: #fff;
}

/************************************************************/
/*　パンくず
/************************************************************/
/*パンくず*/
.breadcrumb {
	width: calc(100%);
	max-width: 100%;
	padding: 25px 0;
	margin: 0 auto;
	background: none;
	border: none;
	overflow-x: scroll;
	z-index: 5;
	-ms-overflow-style: none;
	scrollbar-width: none;
	z-index: 10;
	position: relative;
}
.breadcrumb::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, #29ABE2 0%, #1E3C8C 100%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#all_wrap .breadcrumb .container {
	width: calc(100%);
	max-width: 1200px;
}
.breadcrumb::-webkit-scrollbar { 
	display:none;
}
.breadcrumb > ul {
	display: flex;
	justify-content: flex-start;
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	font-size: 12px;
	color: #fff;
	justify-content: flex-start;
	font-family: var(--font-jp);
}
.breadcrumb a {
	font-size: 12px;
	line-height: 1;
	padding: 0;
	margin: 0;
	text-decoration: none;
	transition: var(--ease);
	color: #fff;
	font-family: var(--font-jp);
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "palt";
}
.breadcrumb a:hover {
	text-decoration: underline;
	transition: var(--ease);
	color: #fff;
}
.breadcrumb__list {
	padding: 0;
}
.breadcrumb__item {
	position: relative;
	display: table-cell;
	white-space: nowrap;
	padding-right: 15px;
	padding-left: 15px;
	font-size: 12px;
	line-height: 1;
	color: #fff;
}
.breadcrumb__item::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -2px;
	width: 7px;
	height: 7px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*パンくず*/
	.breadcrumb {
		width: 100%;
		max-width: 100%;
		padding: 10px 20px;
		margin: 0 auto;
		border: none;
		overflow-x: scroll;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 5;
		-ms-overflow-style: none;
		scrollbar-width: none;
		z-index: 10;
	}
	#all_wrap .breadcrumb .container {
		width: 100%;
		max-width: 100%;
	}
	.breadcrumb::-webkit-scrollbar {
		display: none;
	}
	.breadcrumb::before {
		display: none;
	}
	.breadcrumb::after {
		display: none;
	}
	.breadcrumb > ul {
		width: 100%;
		padding: 0;
		margin: 0;
		font-size: 10px;
		background: none;
		justify-content: flex-start;
	}
	.breadcrumb a {
		font-size: 10px;
		line-height: 1;
		padding: 0;
		margin: 0;
		text-decoration: none;
		transition: ease 0.2s;
	}
	.breadcrumb a:hover {
		text-decoration: none;
		transition: ease 0.2s;
		opacity: 0.8;
	}
	.breadcrumb__list {
		padding: 0;
		display: block;
	}
	.breadcrumb__item {
		position: relative;
		display: table-cell;
		white-space: nowrap;
		padding-right: 15px;
		padding-left: 15px;
		font-size: 10px;
		line-height: 1;
	}
	.breadcrumb__item::after {
		content: "";
		position: absolute;
		right: 0;
		top: 50%;
		margin-top: -2px;
		width: 5px;
		height: 5px;
	}
}


/************************************************************/
/*　フォントサイズ
/************************************************************/
.content table {
	font-size: 16px;
	color: #fff;
}


/************************************************************/
/*　ヘッダー
/************************************************************/
#header {
	width: fit-content;
	padding: 40px;
	margin: 0 auto;
	background: none;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 30px;
}
#mainNav {
	width: fit-content;
	height: 55px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 30px;
	padding: 10px 10px 10px 30px;
	margin: 0;
	background: #fff;
	border-radius: 55px;
}
/*メインメニュー*/
#all_wrap #menu-header-menu {
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 20px;
	list-style: none;
	position: relative;
	padding: 0;
	margin: 0;
}
#all_wrap #menu-header-menu > li {
	width: fit-content;
	padding: 0;
	margin: 0;
}
#all_wrap #menu-header-menu > li a {
	font-size: 15px;
	line-height: 1;
	color: var(--text);
	transition: var(--ease);
}
#all_wrap #menu-header-menu > li a:hover {
	transition: var(--ease);
	color: var(--link);
}
/*ボタン*/
#all_wrap #menu-headerbtn-menu {
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 10px;
	list-style: none;
	position: relative;
	padding: 0;
	margin: 0;
}
#all_wrap #menu-headerbtn-menu > li {
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menu-headerbtn-menu > li > a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	height: 35px;
	padding: 10px 20px;
	background: var(--main);
	border-radius: 45px;
	font-size: 15px;
	line-height: 1;
	color: #fff;
	text-decoration: none;
	position: relative;
	transition: var(--ease);
}
#all_wrap #menu-headerbtn-menu > li.remote > a {
	background: var(--orange);
	transition: var(--ease);
}
#all_wrap #menu-headerbtn-menu > li > a:hover {
	background: var(--sub);
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#header {
		width: 100%;
		height: 50px;
		padding: 0;
		background: #fff;
		column-gap: 10px;
	}
	#mainNav {
		width: fit-content;
		height: auto;
		column-gap: 10px;
		padding: 0;
		margin: 0;
		background: none;
		border-radius: 0;
	}
	/*メインメニュー*/
	#all_wrap #menu-header-menu {
		display: none;
	}
	/*ボタン*/
	#all_wrap #menu-headerbtn-menu {
		display: inline-flex;
		justify-content: flex-end;
		align-items: center;
		column-gap: 5px;
	}
	#all_wrap #menu-headerbtn-menu > li > a {
		height: 30px;
		padding: 5px 10px;
		border-radius: 30px;
		font-size: 10px;
	}
}

/************************************************************/
/*　ハンバーガーメニュー
/************************************************************/
/* ドロワーメニュー */
.navicon {
	display: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/* ドロワーメニュー */
	.navicon {
		display: block;
		position: relative;
		width: 50px;
		height: 50px;
		min-width: 50px;
	}
	.humburger {
		width: 20px;
		height: 20px;
		padding: 0;
		margin: 0;
		background: none;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		grid-row-gap: 12px;
	}
	.humburger > span {
		width: 30px;
		display: inline-block;
		transition: var(--ease);
		position: relative;
		height: 1px;
		background: #fff;
		margin: auto;
	}
	.humburger span::before {
		content: '';
		width: 100%;
		display: inline-block;
		transition: var(--ease);
		position: absolute;
		right: 0;
		height: 1px;
		background: #fff;
	}
	.humburger span::after {
		content: '';
		width: 100%;
		display: inline-block;
		transition: var(--ease);
		position: absolute;
		left: 0;
		height: 1px;
		background: #fff;
	}
	.humburger span::before {
		top: -7px;
	}
	.humburger span::after {
		top: 7px;
	}
	#navTgl:checked + .open .humburger span {
		background: #fff;
	}
	#navTgl:checked + .open .humburger span::before {
		width: 0;
		transition: var(--ease);
	}
	#navTgl:checked + .open .humburger span::after {
		width: 0;
		transition: var(--ease);
	}
	#navTgl:checked + .open .humburger {
		background: none;
	}

	#navTgl {
		display: none;
	}
	label.open,
	label.close {
		cursor: pointer;
	}
	.open {
		opacity: 1;
		z-index: 10001;
		width: 50px;
		height: 50px;
		padding: 10px 10px;
		color: #fff;
		background: var(--text);
		border-radius: 0;
		box-sizing: border-box;
		font-size: 3em;
		text-align: center;
		transition: var(--ease);
		position: relative;
		display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		column-gap: 10px;
	}
	#navTgl:checked + .open,
	.open:hover {
		background: var(--orange);
		transition: var(--ease);
	}
	.close {
		pointer-events: none;
		z-index: 1;
		width: 100%;
		height: 100%;
		transition: var(--ease);
	}
	#navTgl:checked ~ .close {
		pointer-events: auto;
	}
}

/*パネル*/
#menu.menuNav {
	position: fixed;
	bottom: 0;
	right: 0;
	width: 100%;
	height: calc(100vh - 50px);
	background: rgba(0,0,0,0.8);
	transition: var(--ease);
	padding: 0;
	overflow: hidden;
	z-index: 99;
	transform: translateX(100%);
}
#menu.menuNav::-webkit-scrollbar {  /* Chrome, Safari 対応 */
	display:none;
}
#navTgl:checked ~ #menu.menuNav {
	width: 500px;
	transition: var(--ease);
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

/*メニュー*/
#menuNavBox {
	width: 100%;
	height: 100%;
	padding: 75px 50px 50px;
	margin: 0;
	background-color: #000;
	overflow-y: scroll;
	-ms-overflow-style: none;    /* IE, Edge 対応 */
	scrollbar-width: none;       /* Firefox 対応 */
	position: fixed;
	top: 0;
	left: 0;
	transition: var(--ease);
	visibility: hidden;
	opacity: 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
}
#menuNavBox::-webkit-scrollbar {  /* Chrome, Safari 対応 */
	display:none;
}
#navTgl:checked ~ #menu.menuNav #menuNavBox {
	width: 100%;
	transition: var(--ease);
	visibility: visible;
	opacity: 1;
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*パネル*/
	#menu.menuNav {
		position: fixed;
		bottom: 0;
		right: 0;
		width: 100%;
		height: calc(100% - 50px);
		padding: 20px;
		transform: translateX(100%);
		z-index: -1;
	}
	#menu.menuNav::-webkit-scrollbar {  /* Chrome, Safari 対応 */
		display:none;
	}
	#navTgl:checked ~ #menu.menuNav {
		width: 100%;
		transition: var(--ease);
		opacity: 1;
		visibility: visible;
		transform: translateX(0);
	}

	/*メニュー*/
	#menuNavBox {
		width: 100%;
		height: 100%;
		padding: 100px 30px 70px;
		margin: 0;
		background: rgba(0,0,0, 0.7);
		backdrop-filter: blur(5px);
		overflow-y: scroll;
		-ms-overflow-style: none;    /* IE, Edge 対応 */
		scrollbar-width: none;       /* Firefox 対応 */
		position: fixed;
		top: 0;
		left: 0;
		transition: var(--ease);
		visibility: hidden;
		opacity: 0;
		display: flex;
		flex-direction: column;
		grid-row-gap: 30px;
	}
	#menuNavBox::-webkit-scrollbar {  /* Chrome, Safari 対応 */
		display:none;
	}
	#navTgl:checked ~ #menu.menuNav #menuNavBox {
		width: 100%;
		transition: var(--ease);
		visibility: visible;
		opacity: 1;
	}
}

#all_wrap #menu-panel-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	border-top: 1px solid rgba(255,255,255,0.5);
}
#all_wrap #menu-panel-menu > li {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menu-panel-menu > li > a {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	padding: 15px 10px 15px 25px;
	margin: 0;
	background: none;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	position: relative;
	font-size: 16px;
	line-height: 1.2em;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap #menu-panel-menu > li > a::before {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translate(0,-50%) rotate(45deg);
}
#all_wrap #menu-panel-menu > li > a:hover {
	opacity: 0.8;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
/*-段落ちメニュー*/
#all_wrap #menu-panel-menu .sub-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
}
#all_wrap #menu-panel-menu .sub-menu > li {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menu-panel-menu .sub-menu > li > a {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	padding: 10px 10px 10px 45px;
	margin: 0;
	background: none;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	position: relative;
	font-size: 15px;
	line-height: 1.2em;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap #menu-panel-menu .sub-menu > li > a::before {
	content: '';
	display: block;
	width: 5px;
	height: 1px;
	border: none;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translate(0,-50%);
}
#all_wrap #menu-panel-menu .sub-menu > li > a:hover {
	opacity: 0.8;
	font-size: 15px;
	line-height: 1.2em;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}

/************************************************************/
/*　メインビジュアル
/************************************************************/
#mainVisual {
	position: relative;
	width: 100%;
	height: 100vh;
	z-index: 0;
	border-radius: 20px;
	border: 10px solid #fff;
}

/*Swiper*/
#all_wrap #mainVisual .swiper {
	border-radius: 10px;
	overflow: hidden;
	padding: 0;
	margin: 0;
	position: relative;
	z-index: -1;
}
#all_wrap .mainVisualSwiper {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	z-index: 0;
	overflow: visible;
}
#all_wrap .mainVisualSwiper .swiper-slide {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
}
#all_wrap .mainVisualSwiper .swiper-slide img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}

/*ロゴ*/
#all_wrap #logo {
	width: fit-content;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px 50px 25px 40px;
	margin: 0;
	background: #fff;
	border-radius: 0 0 40px 0;
	position: absolute;
	top: 0;
	left: 0;
	transition: var(--ease);
}
#all_wrap #logo::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/corner.svg');
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	right: -9.5px;
}
#all_wrap #logo::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/corner.svg');
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	position: absolute;
	bottom: -9.5px;
	left: 0;
}
#all_wrap #logo a {
	display: block;
}
#all_wrap #logo img {
	width: auto;
	height: 80px;
	transition: var(--ease);
}
#all_wrap #logo img:hover {
	opacity: 0.8;
	transition: var(--ease);
}
/* - fixed */
#all_wrap #logo.fixed {
	padding: 25px 50px;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	transform: translateY(-20px);
	transition: all 0.5s ease;
	z-index: 100;
}
#all_wrap #logo.fixed.show {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.5s ease;
}
/* - subpage */
#all_wrap.sub_page #logo.fixed {
	padding: 25px 50px;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 1;
	transform: unset;
	transition: all 0.5s ease;
	z-index: 100;
}
#all_wrap.sub_page #logo.fixed.show {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.5s ease;
}
#all_wrap #logo.fixed::before,
#all_wrap #logo.fixed::after {
	display: none;
}

/*テキスト*/
#all_wrap #mainVisual > .text {
	padding: 0;
	margin: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	border: none;
	background: none;
}
#all_wrap #mainVisual > .text strong {
	display: inline-block;
	padding: 25px 30px 0 30px;
	margin: 0;
	background: #fff;
	border-radius: 0 20px 0 0;
	font-size: 60px;
	line-height: 1;
	color: #131c64;
	letter-spacing: 0.1em;
	position: relative;
}
#all_wrap #mainVisual > .text span {
	display: inline-block;
	padding: 25px 30px 15px 30px;
	margin: 0;
	background: #fff;
	border-radius: 0 20px 0 0;
	font-size: 25px;
	line-height: 1;
	color: #131c64;
	letter-spacing: 0.1em;
	position: relative;
}
#all_wrap #mainVisual > .text strong::after,
#all_wrap #mainVisual > .text span::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background-image: url(https://test-daiei.coresv.com/wp-content/uploads/corner.svg);
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	position: absolute;
	bottom: 0;
	right: -9.8px;
	transform: rotate(-90deg);
}


/*ボタン*/
.mv_sideNav {
	width: fit-content;
	position: fixed;
	top: 50%;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	grid-row-gap: 90px;
	transform: translate(0,-50%);
	z-index: 200;
	transition: var(--ease);
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}
#all_wrap #menu-mv-menu {
	width: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	grid-row-gap: 10px;
	position: relative;
	list-style: none;
}
#all_wrap #menu-mv-menu > li {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menu-mv-menu > li a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 40px 15px;
	margin: 0;
	background: var(--main);
	writing-mode: vertical-rl;
	text-orientation: upright;
	font-size: 15px;
	line-height: 1;
	color: #fff;
	border-radius: 12px 0 0 12px;
	transition: var(--ease);
}
#all_wrap #menu-mv-menu > li a:hover {
	background: var(--sub);
	transition: var(--ease);
}

/*sns*/
#all_wrap #menu-sns-menu {
	width: 70px;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 1px;
}
#all_wrap #menu-sns-menu > li {
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menu-sns-menu > li a {
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: var(--ease);
}
#all_wrap #menu-sns-menu > li:first-child a {
	border-radius: 12px 0 0 0;
}
#all_wrap #menu-sns-menu > li:last-child a {
	border-radius: 0 0 0 12px;
}
#all_wrap #menu-sns-menu > li a img {
	width: 44px;
	height: auto;
}
#all_wrap #menu-sns-menu > li a:hover {
	opacity: 0.8;
	transition: var(--ease);
}

/*ニュース*/
.mv_news {
	width: 650px;
	padding: 25px 90px 25px 30px;
	margin: 0;
	background: #fff;
	border-radius: 10px 0 0 0;
	position: absolute;
	bottom: 0;
	right: 0;
}
.mv_news::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/corner.svg');
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	transform: rotate(-180deg);
	position: absolute;
	top: -10px;
	right: 0;
}
.mv_news::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/corner.svg');
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	transform: rotate(-180deg);
	position: absolute;
	bottom: 0;
	left: -10px;
}
#all_wrap .mv_news > a {
	display: block;
	width: 30px;
	min-width: 30px;
	height: 30px;
	aspect-ratio: 1/1;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/arrow.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translate(0,-50%);
	transition: var(--ease);
}
#all_wrap .mv_news > a:hover {
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/arrow_2.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	transition: var(--ease);
}
#all_wrap .mv_newsList {
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
}
#all_wrap .mv_newsList > li {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 20px;
}
#all_wrap .mv_newsList > li .date {
	display: inline-block;
	width: fit-content;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 16px;
	line-height: 1;
}
#all_wrap .mv_newsList > li h3 {
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	width: 100%;
	overflow: hidden;
}
#all_wrap .mv_newsList > li h3 a {
	font-size: 16px;
	line-height: 1;
	text-decoration: none;
	color: var(--text);
	font-weight: 400;
	transition: var(--ease);
	white-space: nowrap;
}
#all_wrap .mv_newsList > li h3 a:hover {
	text-decoration: none;
	color: var(--link);
	text-decoration: underline;
	transition: var(--ease);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#mainVisual {
		position: relative;
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1.5;
		z-index: 0;
		border-radius: 0;
		border: none;
	}

	/*Swiper*/
	#all_wrap #mainVisual .swiper {
		border-radius: 0;
	}

	/*ロゴ*/
	#all_wrap #logo {
		display: none;
	}
	#all_wrap #logo::before {
		display: none;
	}
	#all_wrap #logo::after {
		display: none;
	}
	#all_wrap #logo img {
		height: 30px;
	}
	/* - fixed */
	#all_wrap #logo.fixed {
		display: block;
		padding: 0;
		position: fixed;
		top: 10px;
		left: 10px;
		opacity: 1;
		transform: unset;
		transition: all 0.5s ease;
		z-index: 1001;
	}
	/* - subpage */
	#all_wrap.sub_page #logo.fixed {
		display: block;
		padding: 0;
		position: fixed;
		top: 10px;
		left: 10px;
		opacity: 1;
		transform: unset;
		transition: all 0.5s ease;
		z-index: 1001;
	}

	/*テキスト*/
	#all_wrap #mainVisual > .text {
		padding: 0;
		margin: 0;
		position: absolute;
		bottom: 0;
		left: 0;
		border: none;
		background: none;
	}
	#all_wrap #mainVisual > .text strong {
		display: inline-block;
		padding: 15px 20px 0 20px;
		border-radius: 0 10px 0 0;
		font-size: 35px;
	}
	#all_wrap #mainVisual > .text span {
		display: inline-block;
		padding: 15px 20px 10px 20px;
		border-radius: 0 10px 0 0;
		font-size: 13px;
	}
	#all_wrap #mainVisual > .text strong::after,
	#all_wrap #mainVisual > .text span::after {
		content: '';
		display: block;
		width: 10px;
		height: 10px;
		background-image: url(https://test-daiei.coresv.com/wp-content/uploads/corner.svg);
		background-position: center;
		background-size: 100%;
		background-repeat: no-repeat;
		position: absolute;
		bottom: 0;
		right: -9.8px;
		transform: rotate(-90deg);
	}


	/*ボタン*/
	.mv_sideNav {
		width: fit-content;
		top: 50%;
		grid-row-gap: 30px;
		transform: translate(0,-50%);
		z-index: 100;
		align-items: flex-end;
	}
	#all_wrap #menu-mv-menu {
		width: 30px;
		grid-row-gap: 10px;
	}
	#all_wrap #menu-mv-menu > li {
		width: 100%;
	}
	#all_wrap #menu-mv-menu > li a {
		padding: 20px 5px;
		font-size: 13px;
		border-radius: 5px 0 0 5px;
	}

	/*sns*/
	#all_wrap #menu-sns-menu {
		width: 50px;
	}
	#all_wrap #menu-sns-menu > li a {
		width: 100%;
		height: auto;
		aspect-ratio: 1/1;
	}
	#all_wrap #menu-sns-menu > li:first-child a {
		border-radius: 5px 0 0 0;
	}
	#all_wrap #menu-sns-menu > li:last-child a {
		border-radius: 0 0 0 5px;
	}
	#all_wrap #menu-sns-menu > li a img {
		width: 30px;
		height: auto;
	}

	/*ニュース*/
	.mv_news {
		width: calc(100% - 40px);
		padding: 15px 20px 10px 20px;
		margin: 0;
		background: #fff;
		border-radius: 10px 10px 0 0;
		position: absolute;
		bottom: 0;
		right: 20px;
	}
	.mv_news::before {
		display: none;
	}
	.mv_news::after {
		display: none;
	}
	#all_wrap .mv_newsList {
		padding: 0;
		margin: 0;
		position: relative;
		list-style: none;
	}
	#all_wrap .mv_newsList > li {
		width: 100%;
		padding-right: 40px;
		flex-wrap: wrap;
		grid-row-gap: 5px;
		column-gap: 20px;
	}
	#all_wrap .mv_newsList > li .date {
		display: block;
		width: 100%;
		font-size: 11px;
	}
	#all_wrap .mv_newsList > li h3 {
		width: 100%;
		overflow: hidden;
	}
	#all_wrap .mv_newsList > li h3 a {
		font-size: 13px;
	}
	#all_wrap .mv_newsList > li h3 a:hover {
		font-size: 13px;
	}
	#all_wrap .mv_newsList > li::after {
		width: 20px;
		min-width: 20px;
		height: 20px;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translate(0,-50%);
	}
}

/************************************************************/
/*　サイドバー
/************************************************************/
.l-sidebar {
	width: 300px;
	min-width: 300px;
	padding: 0;
	margin: 0;
	position: relative;
}
.l-sidebar .aside {
	margin-bottom: 40px;
}
.l-sidebar .aside > header {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 5px;
	padding: 12px;
	margin: 0 auto 10px;
	background: var(--gradient);
	position: relative;
	z-index: 0;
}
.l-sidebar .aside > header.mb0 {
	margin-bottom: 0;
}
.l-sidebar .aside > header > em {
	font-family: var(--font-en);
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 700;
	font-style: normal;
	color: #fff;
	text-decoration: none;
}
#all_wrap .l-sidebar .aside > header > h2 {
	font-size: 10px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
}
.sideTags {
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 5px;
}
.sideTags .tag {
	display: inline-block;
	padding: 0;
	margin: 0;
	line-height: 1;
}
.sideTags .tag a {
	display: inline-block;
	padding: 5px 8px;
	margin: 0;
	background: var(--main);
	font-size: 10px;
	line-height: 1;
	color: #fff;
	font-weight: lighter;
	border-radius: 16px;
	text-decoration: none;
	transition: var(--ease);
}
.sideTags .tag a:hover {
	background: var(--sub);
	transition: var(--ease);
}

/* - 記事一覧*/
#all_wrap .sid_blogList {
	padding: 5px 20px 20px;
	margin: 0;
	background: var(--base);
	position: relative;
	list-style: none;
}
#all_wrap .sid_blogList > li {
	padding: 15px 0;
	margin: 0 auto;
	border-bottom: 1px dotted #999;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 10px;
	position: relative;
}
#all_wrap .sid_blogList > li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}
#all_wrap .sid_blogList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
#all_wrap .sid_blogList > li figure {
	width: 70px;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
}
#all_wrap .sid_blogList > li figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .sid_blogList > li figure img {
	width: 100%;
	max-width: unset;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .sid_blogList_info {
	width: calc(100% - 70px - 10px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
#all_wrap .sid_blogList_info > h3 {
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 12px;
	line-height: 1.4em;
	font-weight: 500;
	color: #19244c;
	transition: all 0.3s ease;
}
#all_wrap .sid_blogList_info > .date {
	font-size: 10px;
	line-height: 1;
	color: #999;
}
#all_wrap .sid_blogList > li:hover .sid_blogList_info > h3 {
	text-decoration: underline;
	transition: all 0.3s ease;
	color: #2585b5;
}


/*メニュー*/
#all_wrap #menu-sidebar-menu {
	width: 100%;
	padding: 0;
	margin: 0;
	background: var(--base2);
	border: 10px solid var(--base2);
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 1px;
}
#all_wrap #menu-sidebar-menu > li {
	width: 100%;
	padding: 0;
	margin: 0;
	background: #fff;
	position: relative;
}
#all_wrap #menu-sidebar-menu > li > a {
	display: block;
	width: 100%;
	padding: 10px 10px 10px 30px;
	margin: 0;
	position: relative;
	font-size: 13px;
	line-height: 1.2em;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap #menu-sidebar-menu > li > a::before {
	content: '';
	display: block;
	width: 6px;
	height: auto;
	aspect-ratio: 23 / 31;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/arrow-1.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: absolute;
	top: 14px;
	left: 12px;
}
#all_wrap #menu-sidebar-menu > li > a:hover {
	color: var(--sub);
	transition: var(--ease);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.l-sidebar {
		display: none;
	}
}

/************************************************************/
/*　フッター
/************************************************************/
.l-footer {
	width: 100%;
	padding: 120px 0 80px;
	margin: 0 auto;
	position: relative;
}
#all_wrap.sub_page .l-footer {
	background: #fafafa;
}
.footer_wrap {
	width: 100%;
	max-width: 1200px;
	min-width: 1200px;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 30px;
}
.footer_left {
	width: 370px;
	min-width: 370px;
	padding: 0;
	margin: 0;
	position: relative;
}
.footer_right {
	width: calc(100% - 370px - 30px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
}
#all_wrap .info {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .info > header {
	width: fit-content;
	padding: 0;
	margin: 0 0 60px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 8px;
}
#all_wrap .info > header > small {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 0.8rem;
	line-height: 1;
	color: var(--text);
	text-align: center;
}
#all_wrap .info > header > .logo {
	width: 100%;
	height: 65px;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	text-align: center;
}
#all_wrap .info > header > .logo img {
	width: auto;
	height: 100%;
}
#all_wrap .info > header > h2 {
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 13px;
	line-height: 1;
	color: var(--text);
	text-align: center;
}
#all_wrap .info > p {
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	position: relative;
	font-size: 12px;
	line-height: 1.4em;
	text-align: left;
}
#all_wrap .info > p:last-of-type {
	margin-bottom: 0;
}

/*メニュー*/
.footer_menu_wrap {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	column-gap: 40px;
}
#all_wrap .footer_menu_wrap > ul {
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#all_wrap .footer_menu_wrap > ul > li {
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .footer_menu_wrap > ul > li > a {
	font-size: 16px;
	line-height: 1.2em;
	font-weight: 500;
	color: var(--text);
	transition: var(--ease);
	text-decoration: none;
}
#all_wrap .footer_menu_wrap > ul > li > a:hover {
	color: var(--link);
	transition: var(--ease);
	text-decoration: underline;
}
#all_wrap .footer_menu_wrap .sub-menu {
	width: fit-content;
	padding: 0;
	margin: 15px 0 0;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#all_wrap .footer_menu_wrap .sub-menu > li {
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .footer_menu_wrap .sub-menu > li > a {
	font-size: 15px;
	line-height: 1.2em;
	font-weight: 500;
	color: #7a7c8a;
	transition: var(--ease);
	text-decoration: none;
}
#all_wrap .footer_menu_wrap .sub-menu > li > a:hover {
	color: var(--link);
	transition: var(--ease);
	text-decoration: underline;
}

/*その他メニュー*/
#all_wrap .footer_menu_wrap .other {
	width: 180px;
	min-width: 180px;
	max-width: 180px;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
}
#all_wrap .footer_menu_wrap .other #menu-headerbtn-menu {
	flex-wrap: wrap;
	grid-row-gap: 15px;
}
#all_wrap .footer_menu_wrap .other #menu-headerbtn-menu > li {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .footer_menu_wrap .other #menu-headerbtn-menu > li > a {
	width: 100%;
}

/*sns*/
#all_wrap .footer_menu_wrap #menu-sns-menu {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: unset;
	column-gap: 15px;
	grid-row-gap: 15px;
}
#all_wrap .footer_menu_wrap #menu-sns-menu > li {
	width: 22px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .footer_menu_wrap #menu-sns-menu > li a img {
	width: 100%;
	height: auto;
}
#all_wrap .footer_menu_wrap #menu-sns-menu > li a:hover {
	opacity: 0.8;
	transition: var(--ease);
}

/*サブメニュー*/
#all_wrap #menu-footer-sub-menu {
	width: 100%;
	padding: 0;
	margin: auto auto 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	column-gap: 40px;
	grid-row-gap: 20px;
}
#all_wrap #menu-footer-sub-menu > li {
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menu-footer-sub-menu > li > a {
	font-size: 15px;
	line-height: 1.2em;
	font-weight: 500;
	color: #7a7c8a;
	transition: var(--ease);
	text-decoration: none;
}
#all_wrap #menu-footer-sub-menu > li > a:hover {
	color: var(--link);
	transition: var(--ease);
	text-decoration: underline;
}

/*cta*/
.footer_cta {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
.footer_cta::after {
	content: '';
	display: block;
	width: 100%;
	height: 170px;
	background: #fafafa;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}

/*コピーライト*/
.copyright {
	display: block;
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: right;
	font-size: 12px;
	line-height: 1;
	color: var(--text);
	font-style: normal;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.l-footer {
		width: 100%;
		padding: 50px 20px 50px;
	}
	.footer_wrap {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		flex-wrap: wrap;
		column-gap: 20px;
		grid-row-gap: 30px;
	}
	.footer_left {
		width: 100%;
		min-width: 100%;100%;
	}
	.footer_right {
		width: 100%;
		flex-direction: unset;
		flex-wrap: wrap;
		grid-row-gap: 20px;
	}
	#all_wrap .info {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
	}
	#all_wrap .info > header {
		width: fit-content;
		padding: 0;
		margin: 0 auto 20px;
		grid-row-gap: 8px;
	}

	/*メニュー*/
	.footer_menu_wrap {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: flex-start;
		flex-wrap: wrap;
		grid-row-gap: 20px;
		column-gap: 20px;
	}
	#all_wrap .footer_menu_wrap > ul {
		width: calc((100% - 20px) / 2);
		grid-row-gap: 10px;
	}
	#all_wrap .footer_menu_wrap > ul > li > a {
		font-size: 15px;
	}
	#all_wrap .footer_menu_wrap .sub-menu {
		width: 100%;
		padding: 0;
		margin: 10px 0 0;
		grid-row-gap: 10px;
	}
	#all_wrap .footer_menu_wrap .sub-menu > li > a {
		font-size: 12px;
	}
	/*その他メニュー*/
	#all_wrap .footer_menu_wrap .other {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
		display: flex;
		flex-direction: unset;
		flex-wrap: wrap;
		justify-content: space-between;
		grid-row-gap: 20px;
		column-gap: 20px;
	}
	#all_wrap .footer_menu_wrap .other #menu-headerbtn-menu {
		width: 100%;
		flex-wrap: wrap;
		grid-row-gap: 15px;
		column-gap: 20px;
	}
	#all_wrap .footer_menu_wrap .other #menu-headerbtn-menu > li {
		width: calc((100% - 20px) / 2);
		margin: 0;
	}
	#all_wrap .footer_menu_wrap .other #menu-headerbtn-menu > li > a {
		width: 100%;
		font-size: 16px;
		padding: 10px 10px 12px;
	}

	/*sns*/
	#all_wrap .footer_menu_wrap #menu-sns-menu {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
		list-style: none;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		column-gap: 15px;
		grid-row-gap: 15px;
	}
	#all_wrap .footer_menu_wrap #menu-sns-menu > li {
		width: 22px;
		padding: 0;
		margin: 0;
		position: relative;
	}
	#all_wrap .footer_menu_wrap #menu-sns-menu > li a img {
		width: 100%;
		height: auto;
	}
	#all_wrap .footer_menu_wrap #menu-sns-menu > li a:hover {
		opacity: 0.8;
		transition: var(--ease);
	}

	/*サブメニュー*/
	#all_wrap #menu-footer-sub-menu {
		width: 100%;
		padding: 0;
		margin: auto auto 0;
		position: relative;
		list-style: none;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		column-gap: 40px;
		grid-row-gap: 10px;
	}
	#all_wrap #menu-footer-sub-menu > li {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
	}
	#all_wrap #menu-footer-sub-menu > li > a {
		font-size: 15px;
		line-height: 1.2em;
		font-weight: 500;
		color: #7a7c8a;
		transition: var(--ease);
		text-decoration: none;
	}
	#all_wrap #menu-footer-sub-menu > li > a:hover {
		color: var(--link);
		transition: var(--ease);
		text-decoration: underline;
	}

	/*cta*/
	.footer_cta {
		width: 100%;
		padding: 0 20px;
		margin: 0 auto;
		position: relative;
		z-index: 0;
	}
	.footer_cta::after {
		content: '';
		display: block;
		width: 100%;
		height: 170px;
		background: #fafafa;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: -1;
	}

	/*コピーライト*/
	.copyright {
		display: block;
		width: 100%;
		max-width: 100%;
		text-align: center;
		font-size: 0.8rem;
	}
}

/************************************************************/
/*　アーカイブ　リスト
/************************************************************/

/************************************************************/
/*　リスト
/************************************************************/
.content ul {
	list-style: none;
	padding: 0;
	margin: 5px auto 20px;
}
.content ul li {
	width: 100%;
	padding: 0 0 0 15px;
	margin: 0 0 5px;
	list-style: none;
	border: none;
	background: none;
	position: relative;
	line-height: 1.5em;
}
.content ul li::before {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	padding: 0;
	margin: 0;
	background: var(--text);
	position: absolute;
	top: 0.7em;
	left: 0;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	border-radius: 50%;
}

.content ol {
	list-style: none;
	padding: 0;
	margin: 10px auto 10px;
}
.content ol li {
	padding: 0 0 0 30px;
	margin: 0 0 15px;
	list-style: none;
	border: none;
	background: none;
	position: relative;
	line-height: 1.8em;
}
.content ol li::before {
	font-family: var(--font-en);
	counter-increment: count;
	content: counter(count);
	background: #fff;
	border: 1px solid var(--text);
	color: var(--text);
	width: 2.2rem;
	height: 2.2rem;
	line-height: 2rem;
	font-size: 1rem;
	font-weight: lighter;
	text-align: center;
	border-radius: 50%;
	position: absolute;
	top: 1.6em;
	left: 0;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	border-radius: 50%;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){

	.l-wrapper-full .pageContents .content ul.harf li,
	.l-wrapper-full .postContents .content ul.harf li {
		width: 100%;
		margin: 0 auto 10px
	}
	.l-wrapper-full .pageContents .content ul.harf li:last-child,
	.l-wrapper-full .postContents .content ul.harf li:last-child {
		margin-bottom: 0;
	}
}


/************************************************************/
/*　テーブル
/************************************************************/

/*表*/
#all_wrap table {
	overflow: hidden;
	table-layout: auto;
	border: none;
	background: none;
	padding: 0;
	width: 100%;
	max-width: 100%;
	margin: 0 auto 1em;
	border-radius: 0;
	background: #fff;
	border: none;
	border-top: 1px solid #ccc;
}
#all_wrap table th {
	display: table-cell;
	font-style: normal;
	font-feature-settings: "palt";
	border: none;
	border-bottom: 1px solid #ccc;
	text-align: center;
	vertical-align: middle;
	font-family: var(--font-jp);
	font-size: 18px;
	font-weight: 900;
	background: none;
	color: var(--text);
	width: auto;
	padding: 30px 15px;
	margin: 0;
}
#all_wrap table td {
	display: table-cell;
	border: none;
	background: none;
	vertical-align: inherit;
	padding: 30px 15px;
	margin: 0;
	font-size: 18px;
	font-weight: 400;
	border: none;
	border-bottom: 1px solid #ccc;
}
#all_wrap table td.ttl {
	display: table-cell;
	border: none;
	background: none;
	vertical-align: inherit;
	border-bottom: none;
	padding: 10px;
	margin: 0;
	font-size: 12px;
	font-weight: 400;
	border-bottom: 1px solid var(--text);
}
#all_wrap .content table td > p:last-of-type {
	margin-bottom: 0;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*表*/
	#all_wrap table {
		overflow: hidden;
		table-layout: fixed;
		border: none;
		background: #fff;
		padding: 0;
		width: 100%;
		max-width: 100%;
		margin: 0 auto 20px;
		border: none;
	}
	#all_wrap table th {
		font-style: normal;
		font-feature-settings: "palt";
		border: none;
		border-bottom: none;
		background: var(--main);
		color: #fff;
		vertical-align: inherit;
		padding: 10px 15px;
		margin: 0;
		width: 100%;
		min-width: 100%;
		font-size: 15px;
		display: block;
		text-align: left;
	}
	#all_wrap table td {
		border: none;
		background: #fafafa;
		vertical-align: inherit;
		border-bottom: none;
		padding: 10px 15px;
		margin: 0;
		border-left: 1px solid rgba(0,0,0,0.1);
		border-right: 1px solid rgba(0,0,0,0.1);
		border-bottom: 1px solid rgba(0,0,0,0.1);
		font-size: 15px;
		width: 100%;
		min-width: 100%;
		display: block;
	}
}


#all_wrap .js-scrollable {
	width: calc(100%);
	overflow-y: hidden !important;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
#all_wrap .js-scrollable::-webkit-scrollbar{
	display:none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*表*/
	#all_wrap .js-scrollable table {
		overflow: hidden;
		table-layout: auto;
		border: none;
		background: #fff;
		padding: 0;
		width: auto;
		max-width: unset;
		margin: 0 auto 20px;
		border: none;
	}
	#all_wrap .js-scrollable table th {
		font-style: normal;
		font-feature-settings: "palt";
		vertical-align: inherit;
		padding: 10px 15px;
		margin: 0;
		width: auto;
		min-width: auto;
		font-size: 15px;
		display: table-cell;
		text-align: center;
		border-bottom: 1px solid #fff;
		border-right: 1px solid #fff;
		background: var(--orange);
		color: #fff;
		white-space: nowrap;
	}
	#all_wrap .js-scrollable table td {
		vertical-align: inherit;
		border-bottom: none;
		padding: 10px 15px;
		margin: 0;
		font-size: 15px;
		width: auto;
		min-width: auto;
		display: table-cell;
		border-bottom: 1px solid #e3e3e3;
		border-right: 1px solid #e3e3e3;
		white-space: nowrap;
	}
}

/************************************************************/
/*　お問い合わせ&テーブル
/************************************************************/

/*新フォーム*/
#all_wrap .contactform {
	width: 100%;
	max-width: 950px;
	padding: 50px 0 0;
	margin: 0 auto 50px;
	background: #fff;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 0;
	border-top: 2px solid rgb(234, 232, 228);
}
#all_wrap .contactform > li {
	padding: 20px 10px;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	display: -webkit-flex;
	align-items: stretch;
	column-gap: 30px;
	border-bottom: 1px dotted rgb(234, 232, 228);
}
#all_wrap .contactform > li.center {
	align-items: center;
}
#all_wrap .contactform > li.top {
	align-items: flex-start;
}
#all_wrap .contactform > li::before,
#all_wrap .contactform > li::after {
	display: none;
}
#all_wrap .contactform > li p {
	width: calc(100% - 30px - 250px);
	padding: 0;
	margin: 0;
}
#all_wrap .contactform > li h3 {
	font-size: 17px;
	line-height: 1;
	font-weight: 600;
	color: var(--text);
	width: 250px;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	white-space: nowrap;
}
#all_wrap .contactform > li.center h3 {
	top: unset;
}
#all_wrap .contactform > li.top h3 {
	top: 1em;
}
#all_wrap .contactform > li h3 .att {
	display: inline;
	padding: 5px 10px 7px;
	margin: 0;
	font-size: 11px;
	line-height: 1;
	color: #fff;
	white-space: nowrap;
	background: var(--act);
	border-radius: 20px;
}
#all_wrap .contactform > li h3::before,
#all_wrap .contactform > li h3::after {
	display: none;
}
#all_wrap .contactform > li input {
	border-radius: 0;
	border: 1px solid #ccc;
	box-shadow: none;
	font-size: 16px;
	padding: 15px;
}
#all_wrap .contactform > li input[type="radio"] {
	width: 16px;
}
#all_wrap .contactform > li.add span:first-of-type input {
	margin: 0 0 10px;
}
#all_wrap .contactform > li input[type="file"] {
	border-radius: 0;
	border: none;
	box-shadow: none;
	font-size: 16px;
	padding: 0;
}
#all_wrap .contactform > li input.wpcf7-text {
	width: 100%;
	padding: 15px;
	margin: 0;
	border-radius: 5px;
	border: none;
	box-shadow: none;
	font-family: var(--font-jp);
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "palt";
	font-size: 16px;
	line-height: 1;
	background: rgb(245, 245, 245);
	outline: none;
}
#all_wrap .contactform > li input.wpcf7-text.w50 {
	width: 50%;
}
#all_wrap .contactform > li input.wpcf7-text.w25 {
	width: 25%;
}
/*ラジオボタン*/
#all_wrap .wpcf7-form-control.wpcf7-radio {
	width: 100%;
	padding: 0;
	margin: 0;
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 30px;
}
#all_wrap .wpcf7-list-item {
	display: inline-block;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .wpcf7-list-item label {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 6px;
	line-height: 1;
	padding: 0;
	margin: 0;
	font-size: 17px;
	font-weight: 700;
}
#all_wrap .wpcf7-list-item input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	width: 16px;
	height: 16px;
	aspect-ratio: 1/1;
	padding: 0;
	margin: 0;
	border: 1px solid #ccc;
	background: #f9f9f9;
	border-radius: 50%;
	position: relative;
	cursor: pointer;
	transition: all 0.2s ease;
}
#all_wrap .wpcf7-list-item input[type="radio"]:hover {
	border-color: #444;
}
#all_wrap .wpcf7-list-item input[type="radio"]:checked {
	border-color: #0078ff;
}
#all_wrap .wpcf7-list-item input[type="radio"]:checked::before {
	content: "";
	width: 10px;
	height: 10px;
	padding: 0;
	margin: 0;
	background: #0078ff;
	border-radius: 50%;
	position: absolute;
	top: 2px;
	left: 2px;
}
#all_wrap .wpcf7-list-item .wpcf7-list-item-label {
	line-height: 1;
}
/*チェックボックス*/
#all_wrap .wpcf7-checkbox {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 15px;
	position: relative;
}
#all_wrap .wpcf7-checkbox span {
	cursor: pointer;
}
#all_wrap .wpcf7-checkbox label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-size: 17px;
	line-height: 1.3;
	color: var(--text);
	user-select: none;
}
#all_wrap .wpcf7-checkbox label input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 15px;
	height: 15px;
	padding: 0;
	margin: 0;
	border: 1px solid #ccc;
	border-radius: 0;
	background: #f9f9f9;
	cursor: pointer;
	position: relative;
	transition: var(--ease);
}
#all_wrap .wpcf7-checkbox label input[type="checkbox"]:hover {
	border-color: #999;
}
#all_wrap .wpcf7-checkbox label input[type="checkbox"]:checked {
	background-color: var(--sub);
	border-color: var(--sub);
}
#all_wrap .wpcf7-checkbox label input[type="checkbox"]:checked::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 0px;
	width: 5px;
	height: 10px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
}
#all_wrap .wpcf7-checkbox label span {
	font-weight: 700;
}
.wpcf7-form-control-wrap {
	display: block;
}
.wpcf7-form-control-wrap[data-name="your-add-1"] {
	margin-bottom: 10px;
}

/*テキストエリア*/
#all_wrap .contactform > li textarea {
	width: 100%;
	padding: 15px;
	margin: 0;
	border-radius: 5px;
	border: none;
	box-shadow: none;
	font-family: var(--font-jp);
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "palt";
	font-size: 16px;
	line-height: 2;
	background: rgb(245, 245, 245);
	outline: none;
}

/*ボタン*/
#all_wrap .txt_cent {
	text-align: center;
}
#all_wrap .txt_cent > span {
	display: inline-block;
	background-image: linear-gradient(to right, #ffd078 0%, #fcb04e 100%);
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	box-shadow: 0 3px 0 var(--orange);
	border-radius: 60px;
	filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	transition: var(--ease);
	position: relative;
}
#all_wrap .txt_cent > span::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	margin: 0;
	min-width: 20px;
	aspect-ratio: 1 / 1;
	background: #fff;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translate(0,-50%);
}
#all_wrap .txt_cent > span::after {
	content: '';
	display: block;
	width: 8px;
	height: 10px;
	background: var(--orange);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	position: relative;
	position: absolute;
	top: 50%;
	right: 35px;
	transform: translate(0,-50%);
}
#all_wrap .txt_cent input[type="submit"] {
	-webkit-appearance: none;
}
#all_wrap .txt_cent input[type="submit"] {
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 10px;
	padding: 20px 100px;
	margin: 0;
	background: none;
	font-family: var(--font-jp);
	font-size: 20px;
	line-height: 1.4;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	z-index: 0;
	transition: var(--ease);
	cursor: pointer;
}
#all_wrap .txt_cent input[type="submit"]::after {
	content: '';
	display: block;
	width: 7px;
	height: 7px;
	background: none;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	transition: var(--ease);
}
#all_wrap .txt_cent > span:hover {
	box-shadow: 0 0 0 #ff6a00;
	filter: brightness(1.1) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
	transform: translateY(3px);
	transition: var(--ease);
}

#all_wrap .wpcf7 .ajax-loader {
	display: none;
}
.wpcf7-spinner {
	display: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*新フォーム*/
	#all_wrap .contactform {
		width: 100%;
		max-width: 100%;
		padding: 20px;
		margin: 0 auto;
		background: #fff;
		position: relative;
		list-style: none;
		display: flex;
		flex-direction: column;
		grid-row-gap: 20px;
		border-top: 2px solid rgb(234, 232, 228);
	}
	#all_wrap .contactform > li {
		padding: 0 0 20px;
		margin: 0;
		position: relative;
		list-style: none;
		display: flex;
		display: -webkit-flex;
		align-items: flex-start;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	#all_wrap .contactform > li::before,
	#all_wrap .contactform > li::after {
		display: none;
	}
	#all_wrap .contactform > li p {
		width: calc(100%);
		padding: 0;
		margin: 0;
	}
	#all_wrap .contactform > li h3 {
		font-size: 16px;
		line-height: 1;
		font-weight: 600;
		color: var(--text);
		width: 100%;
		padding: 0;
		margin: 0;
		border: none;
		background: none;
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		column-gap: 10px;
		top: 0;
	}
	#all_wrap .contactform > li h3 .att {
		display: inline;
		padding: 3px 7px 5px;
		font-size: 0.8rem;
		border-radius: 20px;
	}
	#all_wrap .contactform > li input {
		border-radius: 0;
		border: 1px solid #ccc;
		box-shadow: none;
		font-size: 15px;
		padding: 10px;
	}
	#all_wrap .contactform > li input[type="radio"] {
		width: 12px;
		height: 12px;
		min-width: 12px;
	}
	#all_wrap .contactform > li.add span:first-of-type input {
		margin: 0 0 10px;
	}
	#all_wrap .contactform > li input[type="file"] {
		border-radius: 0;
		border: none;
		box-shadow: none;
		font-size: 15px;
		padding: 0;
	}
	#all_wrap .contactform > li input.wpcf7-text {
		width: 100%;
		padding: 10px;
		margin: 0;
		border-radius: 5px;
		border: none;
		box-shadow: none;
		font-family: var(--font-jp);
		font-weight: 500;
		font-style: normal;
		font-feature-settings: "palt";
		font-size: 15px;
		line-height: 1;
		background: rgb(245, 245, 245);
		outline: none;
	}
	#all_wrap .contactform > li input.wpcf7-text.w50 {
		width: 50%;
	}
	#all_wrap .contactform > li input.wpcf7-text.w25 {
		width: 25%;
	}
	/*ラジオボタン*/
	#all_wrap .contactform > li .wpcf7-radio {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		column-gap: 20px;
		grid-row-gap: 10px;
	}
	#all_wrap .contactform > li .wpcf7-list-item {
		width: calc(50% - 10px);
		display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: nowrap;
		column-gap: 5px;
		padding: 0;
		margin: 0;
		cursor: pointer;
	}
	/*チェックボックス*/
	#all_wrap .wpcf7-checkbox {
		display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		column-gap: 20px;
		grid-row-gap: 10px;
		position: relative;
	}
	#all_wrap .wpcf7-checkbox > span {
		cursor: pointer;
	}
	#all_wrap .wpcf7-checkbox label {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		cursor: pointer;
		font-size: 16px;
		line-height: 1.3;
		color: var(--text);
		user-select: none;
	}
	#all_wrap .wpcf7-checkbox label input[type="checkbox"] {
		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		width: 15px;
		height: 15px;
		min-width: 15px;
		aspetc-ratio: 1/1;
		padding: 0;
		margin: 0;
		border: 1px solid #ccc;
		border-radius: 0;
		background: #f9f9f9;
		cursor: pointer;
		position: relative;
		transition: var(--ease);
	}
	#all_wrap .wpcf7-checkbox label input[type="checkbox"]:hover {
		border-color: #999;
	}
	#all_wrap .wpcf7-checkbox label input[type="checkbox"]:checked {
		background-color: var(--sub);
		border-color: var(--sub);
	}
	#all_wrap .wpcf7-checkbox label input[type="checkbox"]:checked::after {
		content: "";
		position: absolute;
		left: 4px;
		top: 0px;
		width: 5px;
		height: 10px;
		border-right: 2px solid #fff;
		border-bottom: 2px solid #fff;
		transform: rotate(45deg);
	}
	#all_wrap .wpcf7-checkbox label span {
		font-weight: 500;
		font-size: 15px;
	}

	/*テキストエリア*/
	#all_wrap .contactform > li textarea {
		width: 100%;
		padding: 10px;
		margin: 0;
		border-radius: 5px;
		border: none;
		box-shadow: none;
		font-family: var(--font-jp);
		font-weight: 500;
		font-style: normal;
		font-feature-settings: "palt";
		font-size: 15px;
		line-height: 1.7em;
		background: rgb(245, 245, 245);
		outline: none;
	}

	/*ボタン*/
	#all_wrap .txt_cent {
		text-align: center;
		margin-top: 20px;
	}
	#all_wrap .txt_cent > span {
		display: inline-block;
		font-size: 20px;
		line-height: 1;
		font-weight: 700;
		color: #fff;
		border-radius: 60px;
		filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
		text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
		transition: var(--ease);
		position: relative;
	}
	#all_wrap .txt_cent > span::before {
		content: '';
		display: block;
		width: 20px;
		height: 20px;
		padding: 0;
		margin: 0;
		min-width: 20px;
		aspect-ratio: 1 / 1;
		background: #fff;
		border-radius: 50%;
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translate(0,-50%);
	}
	#all_wrap .txt_cent > span::after {
		content: '';
		display: block;
		width: 8px;
		height: 10px;
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		position: relative;
		position: absolute;
		top: 50%;
		right: 25px;
		transform: translate(0,-50%);
	}
	#all_wrap .txt_cent input[type="submit"] {
		-webkit-appearance: none;
	}
	#all_wrap .txt_cent input[type="submit"] {
		display: inline-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: nowrap;
		column-gap: 10px;
		padding: 10px 50px;
		margin: 0;
		background: none;
		font-family: var(--font-jp);
		font-size: 18px;
		line-height: 1.4;
		font-weight: 600;
		color: #fff;
		white-space: nowrap;
		overflow: hidden;
		position: relative;
		z-index: 0;
		transition: var(--ease);
		cursor: pointer;
	}
	#all_wrap .txt_cent input[type="submit"]::after {
		content: '';
		display: block;
		width: 7px;
		height: 7px;
		background: none;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		transform: rotate(45deg);
		transition: var(--ease);
	}
	#all_wrap .txt_cent > span:hover {
		box-shadow: 0 0 0 #ff6a00;
		filter: brightness(1.1) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
		transform: translateY(3px);
		transition: var(--ease);
	}

	#all_wrap .wpcf7 .ajax-loader {
		display: none;
	}
	.wpcf7-spinner {
		display: none;
	}
	#all_wrap .wpcf7-list-item .wpcf7-list-item-label {
		line-height: 1;
		font-weight: 400;
		font-size: 15px;
	}
}

/*表削除*/
#all_wrap .pageContents .content .tablenone,
#all_wrap .postContents .content .tablenone {
	padding: 0;
	margin: 0;
	border-top: none;
	border-bottom: none;
	border-left: none;
	border-right: none;
	border-radius: none;
	background: none;
	color: var(--text);
}
#all_wrap .pageContents .content .tablenone tbody,
#all_wrap .pageContents .content .tablenone th,
#all_wrap .pageContents .content .tablenone td,
#all_wrap .pageContents .content .tablenone tr,
#all_wrap .pageContents .content .tablenone tr:nth-child(odd) td,
#all_wrap .pageContents .content .tablenone tr:nth-child(even) td {
	padding: 0;
	margin: 0;
	border-top: none;
	border-bottom: none;
	border-left: none;
	border-right: none;
	border-radius: none;
	background: none;
	color: var(--text);
}
#all_wrap .postContents .content .tablenone tbody,
#all_wrap .postContents .content .tablenone th,
#all_wrap .postContents .content .tablenone td,
#all_wrap .postContents .content .tablenone tr,
#all_wrap .postContents .content .tablenone tr:nth-child(odd) td,
#all_wrap .postContents .content .tablenone tr:nth-child(even) td {
	padding: 0;
	margin: 0;
	border-top: none;
	border-bottom: none;
	border-left: none;
	border-right: none;
	border-radius: none;
	background: none;
	color: var(--text);
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){

}


/************************************************************/
/*　Google Map
/************************************************************/
.google-maps {
	position: relative;
	padding-bottom: 30%;
	height: 0;
	overflow: hidden;
}
.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}
.access_info p {
	font-size: 1.1em;
	line-height: 2em;
	margin-bottom: 20px;
	text-align: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.access_info p {
		width: 90%;
		padding: 0;
		margin: 0 auto;
		font-size: 1.1em;
		line-height: 2em;
		margin-bottom: 20px;
		text-align: center;
	}
	.top_gmap iframe {
		height: 200px;
	}
}



/************************************************************/
/*　全体
/************************************************************/


/************************************************************/
/*　サイトマップ
/************************************************************/
.sitemap ul {
	width: 100%;
	max-width: 980px;
	padding: 0;
	margin: 0 auto;
}
.sitemap ul li {
	width: 100%;
	padding: 0;
	margin: 0;
	background: none;
	list-style: none;
}
.sitemap ul li a {
	display: block;
	padding: 15px 15px 15px 30px;
	margin: 0;
	font-family: var(--font-jp);
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	position: relative;
	transition: var(--ease);
	color: var(--text);
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
.sitemap ul li a:hover {
	transition: var(--ease);
	color: var(--link);
}
.sitemap ul li a::before {
	content: "";
	position: absolute;
	left: 10px;
	top: 50%;
	width: 5px;
	height: 5px;
	border-top: 1px solid rgba(0,0,0,0.2);
	border-right: 1px solid rgba(0,0,0,0.2);
	transform: translate(0,-50%) rotate(45deg);
	-webkit-transform: translate(0,-50%) rotate(45deg);
	transition: ease 0.2s;
}
.sitemap ul li a > span {
	display: none;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.sitemap ul {
		width: calc(100%);
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	.sitemap ul .sub-menu {
		padding: 0 0 0 10px;
	}
}

/*スマホ改行
------------------------------------------------------------*/

.pc { display:block !important; }
.sp { display:none !important; }
@media screen and (max-width: 768px){   
	.pc { display:none !important; }
	.sp { display:block !important; }
}


/************************************************************/
/*　本文ギャラリー
/************************************************************/

/*プラグイン*/
#swipebox-overlay {
	background: rgba(0, 0, 0, 0.8);
}
#swipebox-slider .slide img,
#swipebox-slider .slide .swipebox-video-container,
#swipebox-slider .slide .swipebox-inline-container {
	display: inline-block;
	max-height: 90%;
	max-width: 90%;
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
	vertical-align: middle;
}
/*ギャラリー*/
#all_wrap .content .gallery {
	width: 100%;
	max-width: 980px;
	padding: 0;
	margin: 0 auto 30px;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
}
#all_wrap .content .gallery::after {
	content: '';
	display: block;
	width: calc(100% / 3 - 13.4px);
}
#all_wrap .content .gallery dl {
	width: calc(100% / 3 - 13.4px);
	padding: 0;
	margin: 0;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
#all_wrap .content .gallery dt {
	padding: 0;
	margin: 0;
	text-align: center;
}
#all_wrap .content .gallery dd {
	padding: 0;
	margin: 0;
	text-align: center;
}
#all_wrap .content .gallery dl img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}
/*閉じる*/
.tos-close {
	height: 40px;
	top: 10px;
	left: 10px;
	right: unset;
}
.tos-close span:after,
.tos-close span:before {
	width: 10px;
	height: 10px;
	margin-top: -4px;
	margin-left: 0;
	margin-right: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .content .gallery {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 20px;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	#all_wrap .content .gallery::after {
		content: '';
		display: none;
	}
	#all_wrap .content .gallery dl {
		width: calc(100% / 2 - 10px);
		grid-row-gap: 5px;
	}
}

/************************************************************/
/*　Youtube
/************************************************************/
#all_wrap .l-wrapper .youtubeBox {
	width:860px;              /*横幅いっぱいにwidthを指定*/
	padding-bottom: 56.25%;  /*高さをpaddingで指定(16:9)*/
	height:0px;              /*高さはpaddingで指定するためheightは0に*/
	position: relative;
	margin: 0 auto;
}
#all_wrap .l-wrapper .youtubeBox > iframe {
	position: static;
	top: auto;
	left: auto;
	width: 860px;
	height: 500px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .l-wrapper .youtubeBox {
		width:100%;              /*横幅いっぱいにwidthを指定*/
		padding-bottom: 56.25%;  /*高さをpaddingで指定(16:9)*/
		height:0px;              /*高さはpaddingで指定するためheightは0に*/
		position: relative;
	}
	#all_wrap .l-wrapper .youtubeBox > iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
}


/************************************************************/
/*　アーカイブ
/************************************************************/
#all_wrap .archiveList {
	width: calc(100%);
	max-width: 980px;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#all_wrap .archiveList::after {
	content: '';
	display: block;
	width: 31%;
}
#all_wrap .archiveList > li {
	width: 31%;
	padding: 0;
	margin: 0 0 40px;
}
#all_wrap .archiveList > li::before,
#all_wrap .archiveList > li::after {
	display: none;
}
#all_wrap .archiveList > li figure {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	text-align: center;
	overflow: hidden;
	border-radius: 5px;
}
#all_wrap .archiveList > li figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
#all_wrap .archiveList > li figure img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .archiveList > li .date {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 12px;
	font-weight: lighter;
	line-height: 1em;
	color: #c8c8c8;
	font-style: normal;
	white-space: nowrap;
	padding: 0;
	margin: 0 0 5px;
}
#all_wrap .archiveList > li > h3,
#all_wrap .content .archiveList > li > h3 {
	padding: 0;
	margin: 0 auto 5px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4em;
	font-style: normal;
	border: none;
	background: none;
}
#all_wrap .archiveList > li > p {
	font-size: 15px;
	line-height: 1.7em;
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .archiveList {
		width: calc(100%);
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		list-style: none;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#all_wrap .archiveList::after {
		content: '';
		display: none;
	}
	#all_wrap .archiveList > li {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
	}
	#all_wrap .archiveList > li::before,
	#all_wrap .archiveList > li::after {
		display: none;
	}
	#all_wrap .archiveList > li figure {
		width: 100%;
		padding: 0;
		margin: 0 auto 10px;
		position: relative;
		text-align: center;
		overflow: hidden;
		border-radius: 5px;
	}
	#all_wrap .archiveList > li figure::before {
		content: '';
		display: block;
		padding-top: 56.25%;
	}
	#all_wrap .archiveList > li figure img {
		width: 100%;
		height: 100%;
		padding: 0;
		margin: 0;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		-webkit-transform: translate(-50%,-50%);
		object-fit: cover;
	}
	#all_wrap .archiveList > li .date {
		display: inline-block;
		font-family: var(--font-en);
		font-size: 12px;
		font-weight: lighter;
		line-height: 1em;
		color: #c8c8c8;
		font-style: normal;
		white-space: nowrap;
		padding: 0;
		margin: 0 0 5px;
	}
	#all_wrap .archiveList > li > h3,
	#all_wrap .content .archiveList > li > h3 {
		padding: 0;
		margin: 0 auto 5px;
		font-size: 16px;
		font-weight: 700;
		line-height: 1.4em;
		font-style: normal;
		border: none;
		background: none;
	}
	#all_wrap .archiveList > li > p {
		font-size: 15px;
		line-height: 1.7em;
		padding: 0;
		margin: 0;
		text-align: justify;
		text-justify: inter-ideograph;
	}
}

/************************************************************/
/*　記事詳細
/************************************************************/
#all_wrap .singleContent {
	margin-bottom: 100px;
}
#all_wrap .singleHeader {
	width: 100%;
	padding: 0 0 25px;
	margin: 0 auto 50px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
	border-bottom: 1px solid var(--text);
}
#all_wrap .singleHeader > .date {
	display: block;
	font-weight: lighter;
	font-family: var(--font-en);
	font-size: 17px;
	line-height: 1;
	color: #333;
	width: 100%;
	padding: 0;
	margin: 0;
}
#all_wrap .singleHeader > h1 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 28px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	text-align: left;
	border: none;
	background: none;
}

.single_eyecatch {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
}
.single_eyecatch img {
	width: 100%;
	height: auto;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .singleContent {
		margin-bottom: 50px;
	}
	#all_wrap .singleHeader {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		position: relative;
		display: flex;
		flex-direction: column;
		grid-row-gap: 5px;
	}
	#all_wrap .singleHeader_data {
		width: 100%;
		padding: 0;
		margin: 0;
		display: flex;
		flex-direction: column;
		grid-row-gap: 10px;
		position: relative;
	}
	#all_wrap .singleHeader > .date {
		display: block;
		font-family: var(--font-en);
		font-weight: lighter;
		font-size: 12px;
		line-height: 1;
		color: #ccc;
		padding: 0;
		margin: 0;
	}
	#all_wrap .tagList {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
		column-gap: 5px;
		grid-row-gap: 5px;
	}
	#all_wrap .tagList > .tag {
		display: inline-block;
		padding: 5px 7px;
		margin: 0;
		font-size: 0.8rem;
		line-height: 1;
		font-weight: 500;
		color: var(--sub);
		background: #fff;
		border: 1px solid var(--sub);
		border-radius: 5px;
		position: relative;
		transition: var(--ease);
	}
	#all_wrap .singleHeader > h1 {
		width: 100%;
		padding: 0 0 10px;
		margin: 0 auto;
		position: relative;
		font-size: 18px;
		line-height: 1.2em;
		color: var(--text);
		text-align: left;
		border: none;
		background: none;
	}

	.single_eyecatch {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		position: relative;
	}
	.single_eyecatch img {
		width: 100%;
		height: auto;
	}
}


/************************************************************/
/*　記事詳細　お客様の声
/************************************************************/
#all_wrap .cusHeader {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
/*キャッチコピー*/
#all_wrap .cusHeader > h1 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 28px;
	line-height: 1.2em;
	font-weight: 700;
	color: var(--text);
	letter-spacing: normal;
	text-align: left;
}
/*会社名*/
#all_wrap .cusHeader > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto !important;
	position: relative;
	border: none;
	background: none;
	font-size: 18px;
	line-height: 1.2em;
	font-weight: 700;
	color: var(--text);
	letter-spacing: normal;
	text-align: left;
}
/*代表名*/
#all_wrap .cusHeader > .customer_pres {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 16px;
	line-height: 1.2em;
	font-weight: 700;
	color: var(--text);
	text-align: left;
}
/*ご利用中のサービス*/
#all_wrap .cusHeader > .customer_use {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 20px;
	width: 100%;
	padding: 12px 20px;
	margin: 5px auto 10px;
	position: relative;
	font-size: 17px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	border-radius: 5px;
	border: 1px solid #e3e3e3;
	background: #fafafa;
}
#all_wrap .cusHeader > .customer_use > span {
	font-weight: 400;
	font-size: 15px;
	line-height: 1;
}
/*アイキャッチ*/
#all_wrap .cusHeader > .customer_eyecatch {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .cusHeader > .customer_eyecatch img {
	width: 100%;
	height: auto;
}
/*課題・解決策・成果*/
#all_wrap .cusHeader > .customer_result {
	width: 100%;
	padding: 0;
	margin: 40px auto;
	position: relative;
	border-top: 2px solid var(--text);
	border-bottom: 2px solid var(--text);
	background: #f5f5f5;
}
#all_wrap .cusHeader > .customer_result dl {
	width: 100%;
	padding: 25px 30px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 30px;
	border-bottom: 2px dotted #1c2a74;
}
#all_wrap .cusHeader > .customer_result dl:last-of-type {
	border-bottom: none;
}
#all_wrap .cusHeader > .customer_result dt {
	width: 100px;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 5px;
	border: none;
	background: none;
	font-size: 20px;
	line-height: 1;
	white-space: nowrap;
	font-weight: 700;
	color: var(--text);
}
#all_wrap .cusHeader > .customer_result dt::before {
	content: '-';
	display: inline-block;
}
#all_wrap .cusHeader > .customer_result dd {
	width: calc(100% - 100px - 30px);
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
}
#all_wrap .cusHeader > .customer_result dd p {
	padding: 0;
	margin: 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*会社説明*/
#all_wrap .cusHeader > .customer_company {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*会社プロフィール*/
#all_wrap .company_profile {
	width: 100%;
	padding: 30px 40px;
	margin: 50px auto;
	border-radius: 10px;
	border: none;
	background: #f5f5f5;
	position: relative;
}
#all_wrap .company_profile dt {
	width: 100%;
	padding: 0 0 20px;
	margin: 0 auto 25px;
	border: none;
	border-bottom: 1px solid #e3e3e3;
	font-size: 17px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	text-align: left;
	background: none;
}
#all_wrap .company_profile dd {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
}
#all_wrap .company_profile dd ul {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 25px;
}
#all_wrap .company_profile dd ul > li {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
#all_wrap .company_profile dd ul > li h4 {
	width: 100px;
	min-width: 100px;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	font-size: 17px;
	line-height: 1.2em;
	font-weight: 500;
	text-align: left;
	color: var(--text);
}
#all_wrap .company_profile dd ul > li p {
	width: calc(100% - 100px);
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	font-size: 17px;
	line-height: 1.2em;
	font-weight: 400;
	text-align: left;
	color: var(--text);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .cusHeader {
		width: 100%;
		grid-row-gap: 10px;
	}
	/*キャッチコピー*/
	#all_wrap .cusHeader > h1 {
		width: 100%;
		font-size: 18px;
	}
	/*会社名*/
	#all_wrap .cusHeader > h2 {
		width: 100%;
		font-size: 16px;
	}
	/*代表名*/
	#all_wrap .cusHeader > .customer_pres {
		width: 100%;
		font-size: 13px;
	}
	/*ご利用中のサービス*/
	#all_wrap .cusHeader > .customer_use {
		column-gap: 0;
		grid-row-gap: 5px;
		flex-wrap: wrap;
		width: 100%;
		padding: 12px 10px;
		margin: 5px auto 10px;
		position: relative;
		font-size: 12px;
		line-height: 1.4em;
		font-weight: 500;
	}
	#all_wrap .cusHeader > .customer_use > span {
		display: block;
		width: 100%;
		font-weight: 700;
		font-size: 15px;
		line-height: 1;
	}
	/*課題・解決策・成果*/
	#all_wrap .cusHeader > .customer_result {
		width: 100%;
		margin: 20px auto;
	}
	#all_wrap .cusHeader > .customer_result dl {
		width: 100%;
		padding: 15px 20px;
		column-gap: 15px;
		grid-row-gap: 10px;
		flex-wrap: wrap;
	}
	#all_wrap .cusHeader > .customer_result dt {
		width: 100%;
		column-gap: 5px;
		font-size: 17px;
	}
	#all_wrap .cusHeader > .customer_result dt::before {
		content: '-';
		display: inline-block;
	}
	#all_wrap .cusHeader > .customer_result dd {
		width: calc(100%);
		font-size: 12px;
		line-height: 1.5em;
	}
	/*会社説明*/
	#all_wrap .cusHeader > .customer_company {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
	}
	/*会社プロフィール*/
	#all_wrap .company_profile {
		width: 100%;
		padding: 15px;
		margin: 30px auto;
		border-radius: 5px;
	}
	#all_wrap .company_profile dt {
		width: 100%;
		padding: 0 0 15px;
		margin: 0 auto 15px;
		font-size: 15px;
	}
	#all_wrap .company_profile dd {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		border: none;
		background: none;
	}
	#all_wrap .company_profile dd ul {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		list-style: none;
		display: flex;
		flex-direction: column;
		grid-row-gap: 25px;
	}
	#all_wrap .company_profile dd ul > li {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
	#all_wrap .company_profile dd ul > li h4 {
		width: 80px;
		min-width: 80px;
		font-size: 12px;
	}
	#all_wrap .company_profile dd ul > li p {
		width: calc(100% - 80px);
		font-size: 12px;
		line-height: 1.2em;
	}
}

/*==============================*/
/*目次*/
/*==============================*/
#all_wrap .content .toc {
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
}
#all_wrap .content .toc-title {
	display: inline-block;
	padding: 5px 10px;
	margin: 0;
	background: #19244c;
	font-family: "Ubuntu", sans-serif;
	font-size: 15px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	position: relative;
	top: 15px;
	left: 0;
	z-index: 2;
}
#all_wrap .content .toc .toc-list {
	padding: 30px;
	margin: 0;
	position: relative;
	list-style: none;
	background: #f4f4f4;
}
#all_wrap .content .toc .toc-list li ul {
	margin: 10px 0 !important;
	padding: 0 0 0 1.2em;
}
#all_wrap .content .toc .toc-list li {
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .content .toc .toc-list li a {
	display: block;
	padding: 0 0 0 1.3em;
	position: relative;
	text-decoration: none;
	font-weight: bold;
	line-height: 1.6em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .content .toc .toc-list li ul li a {
	display: block;
	padding: 0 0 0 1.8em;
	position: relative;
	text-decoration: none;
	font-size: 13px;
	font-weight: lighter;
	line-height: 1.6em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .content .toc .toc-list li a:hover {
	text-decoration: underline;
	color: #0c61a8;
}
#all_wrap .content .contentstable-number {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	font-family: "Ubuntu", sans-serif;
}
#all_wrap .content .toc .toc-list > li > a > .contentstable-number::after {
	content: '.';
}
#all_wrap .content .toc-toggle > a {
	display: inline-block;
	font-size: 15px;
	line-height: 1;
	color: #fff;
	text-decoration: none;
}


/*タグ*/
.post-tag {
	margin-top: 5px;
}
.post-tag,
.post-tag a {
	font-size: 15px;
	text-decoration: none;
}
.post-tag a:hover {
	text-decoration: underline;
	color: #0c61a8;
	text-decoration: underline;
}


/*タグ*/
.post-tag {
	margin-top: 5px;
}
.post-tag,
.post-tag a {
	font-size: 15px;
	text-decoration: none;
}
.post-tag a:hover {
	text-decoration: underline;
	color: #0c61a8;
	text-decoration: underline;
}
@media only screen and (max-width: 768px){
	#all_wrap .content .toc .toc-list {
		padding: 20px;
		margin: 0;
		position: relative;
		list-style: none;
		background: #f4f4f4;
	}
	/*タグ*/
	.post-tag,
	.post-tag a {
		font-size: 12px;
	}
	.toc .toc-list {
		padding: 25px 20px 20px;
	}
}

/*==============================*/
/*記事詳細（関連記事）*/
/*==============================*/
.relatedPost {
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}
.relatedPost > header {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 5px;
	padding: 12px;
	margin: 0 auto;
	background: var(--gradient);
	position: relative;
	z-index: 0;
}
.relatedPost > header > em {
	font-family: var(--font-en);
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 700;
	font-style: normal;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
}
#all_wrap .relatedPost > header > h2 {
	font-size: 10px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
	background: none;
	border: none;
	padding: 0;
	margin: 0 !important;
}

/* 記事一覧*/
#all_wrap .relatedList {
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
}
#all_wrap .relatedList > li {
	padding: 20px 0;
	margin: 0 auto;
	border-bottom: 1px dotted #999;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 20px;
	position: relative;
}
.relatedList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.relatedList > li figure {
	width: 150px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.relatedList > li figure::before {
	content: '';
	display: block;
	padding-top: 75%;
}
.relatedList > li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .relatedList_info {
	width: calc(100% - 20px - 150px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
#all_wrap .relatedList_info > h3 {
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 16px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--text);
	background: none;
	border: none;
	transition: all 0.3s ease;
}
.relatedList_info > .date {
	font-size: 12px;
	line-height: 1;
	color: #999;
}
#all_wrap .relatedList > li:hover .relatedList_info > h3 {
	text-decoration: underline;
	transition: all 0.3s ease;
	color: var(--link);
	background: none;
	border: none;
}
@media screen and (max-width: 768px) {
	.relatedPost {
		margin: 0 auto;
	}
	#all_wrap .relatedList > li {
		padding: 10px 0;
		column-gap: 10px;
	}
	.relatedList > li figure {
		width: 80px;
	}
	#all_wrap .relatedList_info {
		width: calc(100% - 10px - 80px);
	}
	#all_wrap .relatedList_info > h3 {
		font-size: 15px;
	}
	.relatedList_info > .date {
		font-size: 11px;
	}
	#all_wrap .relatedList_info > h3 {
		font-size: 13px;
	}
	.relatedList_info > .date {
		font-size: 10px;
	}
}

/************************************************************/
/*　ブログ　詳細＆サイドバー 
/************************************************************/

/*ランキング*/
#all_wrap .sidRankList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	border: none;
	position: relative;
	display: flex;
	flex-direction: column;
}
#all_wrap .sidRankList > li {
	width: 100%;
	padding: 15px 0;
	margin: 0 auto;
	border-bottom: 1px solid #E5E5E5;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	column-gap: 15px;
}
.sidRankList > li > figure {
	width: 80px;
	padding: 0;
	margin: 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.sidRankList > li > figure:before {
	content: "";
	display: block;
	padding: 50%;
}
.sidRankList > li > figure a > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	padding: 0;
	margin: 0;
	transition: var(--ease);
}
.sidRankList > li:hover > figure a > img {
	transform: translate(-50%, -50%) scale(1.05);
	-webkit-transform: translate(-50%, -50%) scale(1.05);
	-ms-transform: translate(-50%, -50%) scale(1.05);
	transform-origin: center;
	transition: var(--ease);
}
.sidRankList > li > figure > .rank {
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	aspect-ratio: 1/1;
	background: var(--main);
	font-size: 0.8rem;
	line-height: 1;
	color: #fff;
	font-weight: 400;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.sidRankList > li > .sidRankInfo {
	width: calc(100% - 15px - 80px);
	padding: 0;
	margin: 0;
}
#all_wrap .sidRankList > li > .sidRankInfo > h3 {
	padding: 0;
	margin: 0;
	height: 100%;
	color: var(--text);
	font-size: 12px;
	line-height: 1.4em;
	font-weight: 400;
	border: none;
	background: none;
}
#all_wrap .sidRankList > li > .sidRankInfo > h3 a {
	width: 100%;
	height: 100%;
	display: -webkit-flex;
	display: flex;
	align-content: center;
	align-items: center;
	color: var(--text);
	font-family: var(--font-jp);
	font-size: 12px;
	line-height: 1.4em;
	font-weight: 400;
	text-decoration: none;
	text-align: justify;
	text-align: -webkit-justify;
	transition: var(--ease);
}
#all_wrap .sidRankList > li > .sidRankInfo > h3 a:hover {
	color: var(--main);
	transition: var(--ease);
}


/*==============================*/
/*記事詳細（関連記事）*/
/*==============================*/
#all_wrap .editor {
	padding: 0;
	margin: 50px auto 50px;
	position: relative;
}
#all_wrap .editor > header {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 5px;
	padding: 12px;
	margin: 0 auto;
	background: var(--main);
	position: relative;
	z-index: 0;
}
#all_wrap .editor > header > em {
	font-family: var(--font-en);
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 700;
	font-style: normal;
	color: #fff;
	text-decoration: none;
}
#all_wrap .editor > header > h2 {
	font-size: 10px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
	padding: 0;
	margin: 0;
}
#all_wrap .editorBox {
	width: 100%;
	padding: 20px;
	margin: 0;
	background: #fff;
	border: 5px solid var(--main);
	border-top: none;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 20px;
}
#all_wrap .editorBox > figure {
	width: 150px;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
	border-radius: 50%;
}
#all_wrap .editorBox > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .editorBox > figure img {
	width: 100%;
	max-width: unset;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover
}
#all_wrap .editorBox_info {
	width: calc(100% - 150px - 20px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	grid-row-gap: 5px;
}
#all_wrap .editorBox_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 17px;
	line-height: 1.2em;
	font-weight: bold;
	border: none;
	background: none;
}
#all_wrap .editorBox_info > h3 > small {
	font-size: 12px;
	font-weight: lighter;
}
#all_wrap .editorBox_info > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 12px;
	line-height: 1.7em;
}

@media screen and (max-width: 768px) {
	#all_wrap .editorBox > figure {
		width: 100px;
	}
	#all_wrap .editorBox_info {
		width: calc(100% - 100px - 20px);
	}
	#all_wrap .editorBox_info > h3 {
		font-size: 16px;
	}
	#all_wrap .editorBox {
		width: 100%;
		padding: 15px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	#all_wrap .editorBox > figure {
		width: 150px;
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap .editorBox_info {
		width: calc(100%);
	}
	#all_wrap .editorBox_info > h3 {
		width: 100%;
		font-size: 16px;
		text-align: center;
	}
}


/*前後の記事*/
#all_wrap .prevNext {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
#all_wrap .prevNext__pop {
	background-color: var(--text);
}
#all_wrap .eyecatch {
	background: var(--text);
}
#all_wrap .heading-secondary {
	color: var(--text);
}
#all_wrap .prevNext__text {
	padding: 0;
	margin: 0;
	color: var(--text);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*前後の記事*/
	#all_wrap .prevNext {
		width: 90%;
		padding: 0;
		margin: 0 auto;
	}
}

/*プロフィール*/
#all_wrap .profile {
	border: none;
	margin-top: 0;
	padding: 20px;
	background: var(--text);
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	align-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
#all_wrap .profile__text {
	background: none;
	font-size: 16px;
	padding: 0 0 0 13px;
	margin-bottom: 15px;
	margin-top: 40px;
	border-left: 2px solid #d3c8a8;
	font-style: italic;
	text-align: left;
	color: #d3c8a8;
}
#all_wrap .profile__contents {
	width: 80%;
	padding: 0;
	margin: 0;
}
#all_wrap .profile__name {
	color: #d3c8a8;
	font-size: 19px;
	line-height: 1.4em;
	font-style: italic;
	padding: 0 0 10px;
	margin: 0 auto 10px;
	border-bottom: 1px solid #d3c8a8;
}
#all_wrap .profile__author {
	width: 15%;
	text-align: left;
	padding: 0;
	margin: 0 20px 0 0;
}
#all_wrap .profile__author img {
	width: 100%;
	height: auto;
	margin: 0;
}
#all_wrap .profile__list {
	display: none;
}
#all_wrap .profile__description {
	padding: 0;
	margin: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*プロフィール*/
	#all_wrap .profile {
		border: none;
		margin-top: 0;
		padding: 20px;
		background: var(--text);
		display: -webkit-flex;
		display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	#all_wrap .profile__text {
		background: none;
		font-size: 16px;
		padding: 0 0 0 13px;
		margin-bottom: 15px;
		margin-top: 40px;
		border-left: 2px solid #d3c8a8;
		font-style: italic;
		text-align: left;
		color: #d3c8a8;
	}
	#all_wrap .profile__contents {
		width: 80%;
		padding: 0;
		margin: 0;
	}
	#all_wrap .profile__name {
		color: #d3c8a8;
		font-size: 19px;
		line-height: 1.4em;
		font-style: italic;
		padding: 0 0 10px;
		margin: 0 auto 10px;
		border-bottom: 1px solid #d3c8a8;
	}
	#all_wrap .profile__author {
		width: 15%;
		text-align: left;
		padding: 0;
		margin: 0 0 0 0;
	}
	#all_wrap .profile__author img {
		width: 100%;
		height: auto;
		margin: 0;
	}
	#all_wrap .profile__list {
		display: none;
	}
	#all_wrap .profile__description {
		padding: 0;
		margin: 0;
	}
}

/************************************************************/
/*　共通
/************************************************************/

/*mt*/
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt40 { margin-top: 40px !important; }
.mt50 { margin-top: 50px !important; }
.mt100 { margin-top: 100px !important; }
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*mt*/
	.mt10 { margin-top: 10px !important; }
	.mt15 { margin-top: 10px !important; }
	.mt20 { margin-top: 10px !important; }
	.mt30 { margin-top: 15px !important; }
	.mt40 { margin-top: 20px !important; }
	.mt50 { margin-top: 30px !important; }
	.mt100 { margin-top: 40px !important; }
}

/*リスト*/
.content ul {
	padding: 0;
	margin: 0;
	position: relative;
	list-style: disc;
	list-style-position: inside;
}
.content ul > li {
	padding: 0;
	margin: 0;
	margin-bottom: 5px;
}
.content ul > li:last-child {
	margin-bottom: 0;
}
.content ul > li::before,
.content ul > li::after {
	display: none;
}

/************************************************************/
/*　トップページ　アバウト
/************************************************************/
#topAbout {
	width: 100%;
	padding: 140px 0 230px;
	margin: 0 auto;
	position: relative;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/topAbout_bg.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center bottom;
	overflow: hidden;
}
.topAbout_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 100px;
}
.topAbout_left {
	width: 540px;
	min-width: 540px;
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 0;
}
.topAbout_right {
	width: calc(100% - 100px - 540px);
	padding: 100px 0 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 60px;
}
#all_wrap .topAbout_right > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 38px;
	line-height: 1.5em;
	color: var(--text);
	text-align: left;
	letter-spacing: normal;
}
#all_wrap .topAbout_right > p {
	padding: 0;
	margin: 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	line-height: 2.5em;
}
.topAbout_left > figure {
	position: relative;
}
.topAbout_left > figure::before {
	content: '';
	display: block;
	width: 840px;
	height: auto;
	aspect-ratio: 1500 / 848;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/logo_bg.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topAbout {
		width: 100%;
		padding: 50px 0;
	}
	.topAbout_wrap {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 0;
	}
	.topAbout_left {
		width: 100%;
		min-width: 100%;
		padding: 0 20px;
	}
	.topAbout_right {
		width: calc(100%);
		padding: 0 20px;
		grid-row-gap: 30px;
	}
	#all_wrap .topAbout_right > h3 {
		width: 100%;
		font-size: 20px;
		line-height: 1.5em;
	}
	#all_wrap .topAbout_right > p {
		line-height: 2em;
	}
	.topAbout_left > figure {
		position: relative;
	}
	.topAbout_left > figure::before {
		width: 40%;
		top: -110px;
		right: 0;
		z-index: -1;
	}
}

/************************************************************/
/*　トップページ　ソリューション
/************************************************************/
#topSolutions {
	width: 100%;
	padding: 140px 0 240px;
	margin: 0 auto;
	position: relative;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/solution_bg.webp');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 0 100px 0 0;
}
#topSolutions::after {
	content: '';
	display: block;
	width: 100%;
	height: 100px;
	background: var(--base);
	position: absolute;
	bottom: 0;
	left: 0;
	border-radius: 100px 100px 0 0;
}
#all_wrap #topSolutions .contHead {
	margin: 0 auto 90px;
}
/*リスト*/
#all_wrap .solutionsList {
	width: 100%;
	max-width: 600px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 0;
	grid-row-gap: 30px;
}
#all_wrap .solutionsList > li {
	width: 100%;
	height: auto;
	padding: 30px;
	margin: 0;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	z-index: 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 0;
	background: #fff;
	transition: var(--ease);
}
#all_wrap .solutionsList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
#all_wrap .solutionsList > li > figure {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	text-align: center;
	z-index: -1;
}
#all_wrap .solutionsList > li > figure::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: linear-gradient(to bottom, rgba(0,153,255,0.9) 0%, rgba(0,153,255,0) 60%, rgba(0,153,255,0) 100%);
	z-index: 1;
	transition: var(--ease);
}
#all_wrap .solutionsList > li:hover > figure::before {
	opacity: 0.5;
	transition: var(--ease);
}
#all_wrap .solutionsList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
	filter: brightness(0.8);
	transition: var(--ease);
}
#all_wrap .solutionsList > li:hover > figure img {
	transform: translate(-50%,-50%) scale(1.05);
	filter: brightness(1);
	transition: var(--ease);
}
#all_wrap .solutionsList > li > header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .solutionsList > li > header > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-family: var(--font-en);
	font-size: 17px;
	line-height: 1;
	color: var(--text);
	font-style: normal;
}
#all_wrap .solutionsList > li > header > h3 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	font-size: 30px;
	line-height: 1;
	color: var(--text);
	transition: var(--ease);
}
#all_wrap .solutionsList > li:hover {
	opacity: 0.9;
	transition: var(--ease);
}
#all_wrap .solutionsList > li:hover > header > h3 {
	color: var(--main);
	transition: var(--ease);
}
#all_wrap .solutionsList > li::after {
	content: '';
	display: block;
	width: 48px;
	height: 48px;
	min-width: 48px;
	aspect-ratio: 1/1;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/arrow.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translate(0,-50%);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topSolutions {
		width: 100%;
		padding: 50px 20px 100px;
		border-radius: 0 50px 0 0;
	}
	#topSolutions::after {
		height: 50px;
		border-radius: 50px 50px 0 0;
		bottom: -0.5px;
	}
	#all_wrap #topSolutions .contHead {
		margin: 0 auto 30px;
	}
	/*リスト*/
	#all_wrap .solutionsList {
		width: 100%;
		max-width: 100%;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	#all_wrap .solutionsList > li {
		width: 100%;
		height: auto;
		aspect-ratio: unset;
		padding: 20px;
		grid-row-gap: 0;
	}
	#all_wrap .solutionsList > li > header {
		width: 100%;
		grid-row-gap: 10px;
	}
	#all_wrap .solutionsList > li > header > em {
		font-size: 15px;
	}
	#all_wrap .solutionsList > li > header > h3 {
		font-size: 20px;
	}
	#all_wrap .solutionsList > li > p {
		font-size: 15px;
		line-height: 1.5em;
		column-gap: 20px;
	}
	#all_wrap .solutionsList > li::after {
		width: 25px;
		height: 25px;
		min-width: 25px;
		right: 20px;
	}
}

/************************************************************/
/*　トップページ　お客様の声
/************************************************************/
#topCustomer {
	width: 100%;
	padding: 40px 0 140px;
	margin: 0 auto;
	position: relative;
	background: var(--base);
}
/*リスト*/
#all_wrap .customerList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 60px;
}
#all_wrap .customerList > li {
	width: calc((100% - 60px) / 3);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#all_wrap .customerList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
#all_wrap .customerList > li > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .customerList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
	transition: var(--ease);
}
#all_wrap .customerList > li:hover > figure img {
	transform: translate(-50%,-50%) scale(1.05);
	transition: var(--ease);
}
#all_wrap .customerList > li > .customerList_info {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#all_wrap .customerList > li > .customerList_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 17px;
	line-height: 1.5em;
	color: var(--text);
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .customerList > li > .customerList_info > h3 a {
	font-size: 17px;
	line-height: 1.5em;
	color: var(--text);
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	transition: var(--ease);
}
#all_wrap .customerList > li > .customerList_info > h3 a:hover {
	color: var(--link);
	transition: var(--ease);
}
#all_wrap .tags {
	width: auto;
	padding: 0;
	margin: 0;
	position: relative;
	display: inline-flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 5px;
	line-height: 1;
}
#all_wrap .tags > span {
	padding: 0;
	margin: 0;
	position: relative;
	line-height: 1;
}
#all_wrap .tags > span a {
	display: inline-block;
	padding: 3px 8px 5px;
	margin: 0;
	background: none;
	border: 1px solid #7a7c8a;
	border-radius: 5px;
	font-size: 11px;
	line-height: 1;
	color: #7a7c8a;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .tags > span a:hover {
	background: var(--sub);
	border: 1px solid var(--sub);
	color: #fff;
	transition: var(--ease);
}
#all_wrap .customerList > li > .customerList_info .date {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 11px;
	line-height: 1;
	color: #7a7c8a;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topCustomer {
		width: 100%;
		padding: 0 20px 50px;
	}
	/*リスト*/
	#all_wrap .customerList {
		width: 100%;
		max-width: 100%;
		column-gap: 0;
		grid-row-gap: 0;
		border-top: 1px dotted #c8c8c8;
	}
	#all_wrap .customerList > li {
		width: 100%;
		padding: 15px 0;
		margin: 0;
		position: relative;
		display: flex;
		flex-direction: unset;
		justify-content: flex-start;
		align-items: center;
		column-gap: 15px;
		grid-row-gap: 0;
		border-bottom: 1px dotted #c8c8c8;
	}
	#all_wrap .customerList > li > figure {
		width: 130px;
		padding: 0;
		margin: 0;
		border-radius: 5px;
	}
	#all_wrap .customerList > li > .customerList_info {
		width: 100%;
		grid-row-gap: 5px;
	}
	#all_wrap .customerList > li > .customerList_info > h3 {
		width: 100%;
		font-size: 13px;
		line-height: 1.4em;
	}
	#all_wrap .customerList > li > .customerList_info > h3 a {
		font-size: 13px;
		line-height: 1.4em;
	}
	#all_wrap .tags {
		column-gap: 5px;
		grid-row-gap: 5px;
	}
	#all_wrap .tags > span a {
		display: inline-block;
		padding: 3px 5px 5px;
		font-size: 0.8rem;
	}
	#all_wrap .customerList > li > .customerList_info .date {
		width: 100%;
		font-size: 11px;
	}
}

/************************************************************/
/*　トップページ　会社概要
/************************************************************/
#topCompany {
	width: 100%;
	padding: 140px 0 140px;
	margin: 0 auto;
	position: relative;
	background: #fff;
	z-index: 0;
}
#topCompany::after {
	content: '';
	display: block;
	width: calc(50% - 50px);
	height: calc(100% - 280px);
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/topCompany_bg_2.webp');
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: left center;
}
#all_wrap #topCompany .contHead > h2 {
	font-size: 25px;
}
.topCompany_wrap {
	width: calc(100% - 100px);
	max-width: 1200px;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 50px;
}
.topCompany_box {
	width: 50%;
	min-width: 550px;
	padding: 0 50px;
	margin: 0;
	position: relative;
}
#all_wrap .topCompany_box > p {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .companyList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	border-top: 1px solid #e7e7e7;
	margin-top: 60px;
}
#all_wrap .companyList > li {
	width: 100%;
	padding: 20px 40px 20px 20px;
	margin: 0 auto;
	position: relative;
	border-bottom: 1px solid #e7e7e7;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 30px;
}
#all_wrap .companyList > li a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
#all_wrap .companyList > li::after {
	content: '';
	display: block;
	width: 12px;
	height: auto;
	aspect-ratio: 22 / 16;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/arrow_right.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	transition: var(--ease);
}
#all_wrap .companyList > li:hover::after {
	right: -3px;
	transition: var(--ease);
}
#all_wrap .companyList > li > figure {
	width: 130px;
	min-width: 130px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 5px;
}
#all_wrap .companyList > li > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .companyList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
	transition: var(--ease);
}
#all_wrap .companyList > li:hover > figure img {
	transform: translate(-50%,-50%) scale(1.05);
	transition: var(--ease);
}
.companyList_info {
	width: calc(100% - 30px - 130px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 7px;
}
#all_wrap .companyList_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 18px;
	line-height: 1.4em;
	text-align: left;
	color: var(--text);
	border: none;
	background: none;
	transition: var(--ease);
}
#all_wrap .companyList_info > h3 a {
	font-size: 18px;
	line-height: 1.4em;
	text-align: left;
	color: var(--text);
	transition: var(--ease);
}
#all_wrap .companyList > li:hover .companyList_info > h3 {
	font-size: 18px;
	line-height: 1.4em;
	text-align: left;
	color: var(--link);
	transition: var(--ease);
}
#all_wrap .companyList_info > p {
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 15px;
	line-height: 1.4em;
	color: #7a7c8a;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topCompany {
		width: 100%;
		padding: 50px 0;
		display: flex;
		flex-direction: column;
		grid-row-gap: 30px;
	}
	#topCompany::after {
		content: '';
		display: block;
		width: 80%;
		height: auto;
		aspect-ratio: 967 / 1061;
		position: relative;
		top: unset;
		right: unset;
		transform: unset;
		background-size: auto 100%;
		background-position: right top;
		margin-left: auto;
	}
	#all_wrap #topCompany .contHead > h2 {
		font-size: 16px;
	}
	.topCompany_wrap {
		width: calc(100% - 40px);
		max-width: 100%;
		padding: 0;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	.topCompany_box {
		width: 100%;
		min-width: 100%;
		padding: 0;
	}
	#all_wrap .topCompany_box > p {
		padding: 0;
		margin: 0 auto 10px;
		position: relative;
	}
	#all_wrap .companyList {
		width: 100%;
		margin-top: 30px;
	}
	#all_wrap .companyList > li {
		width: 100%;
		padding: 15px 30px 15px 15px;
		column-gap: 15px;
	}
	#all_wrap .companyList > li > figure {
		width: 130px;
		min-width: 130px;
	}
	.companyList_info {
		width: calc(100% - 15px - 130px);
		grid-row-gap: 7px;
	}
	#all_wrap .companyList_info > h3 {
		width: 100%;
		font-size: 18px;
	}
	#all_wrap .companyList_info > h3 a {
		font-size: 18px;
	}
	#all_wrap .companyList > li:hover .companyList_info > h3 {
		font-size: 18px;
	}
	#all_wrap .companyList_info > p {
		width: 100%;
		padding: 0;
		margin: 0;
		font-size: 15px;
		line-height: 1.4em;
		color: #7a7c8a;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
}

/************************************************************/
/*　トップページ　お知らせ
/************************************************************/
#topNews {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	background: var(--base);
	z-index: 0;
}
.topNews_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 100px;
}
#all_wrap .topNews_wrap > header {
	width: 200px;
	min-width: 200px;
	padding: 0;
	margin: 0 auto 60px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#all_wrap .topNews_wrap > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	font-size: 17px;
	line-height: 1;
	color: var(--text);
	text-align: left;
}
#all_wrap .topNews_wrap > header > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	font-family: var(--font-en);
	font-size: 70px;
	line-height: 1;
	color: var(--text);
	font-style: normal;
	text-align: left;
}
#all_wrap a.more {
	width: 100%;
	max-width: 200px;
	padding: 20px 30px;
	margin: 0;
	margin-top: 60px;
	background: var(--main);
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 30px;
	font-size: 15px;
	line-height: 1;
	color: #fff;
	transition: var(--ease);
}
#all_wrap a.more::after {
	content: '';
	display: block;
	width: 12px;
	height: auto;
	aspect-ratio: 22 / 16;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/arrow_right_w.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	transition: var(--ease);
}
#all_wrap a.more:hover {
	background: var(--sub);
	transition: var(--ease);
}
#all_wrap a.more:hover::after {
	transform: translateX(3px);
	transition: var(--ease);
}
.topNews_cont {
	width: calc(100% - 100px - 200px);
	padding: 0;
	margin: 0;
	position: relative;
}
/*ボタン*/
#all_wrap #category-buttons {
	width: 100%;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 20px;
}
#all_wrap #category-buttons .cat-btn {
	width: fit-content;
	padding: 12px 15px;
	margin: 0;
	border: none;
	background: none;
	box-shadow: none;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 15px;
	line-height: 1;
	color: var(--text);
	position: relative;
	transition: var(--ease);
	cursor: pointer;
}
#all_wrap #category-buttons .cat-btn::after {
	content: '';
	display: block;
	width: 0;
	height: 2px;
	background: var(--sub);
	position: absolute;
	bottom: 0;
	left: 0;
	transition: var(--ease);
}
#all_wrap #category-buttons .cat-btn.active,
#all_wrap #category-buttons .cat-btn:hover {
	color: var(--sub);
	transition: var(--ease);
}
#all_wrap #category-buttons .cat-btn.active::after,
#all_wrap #category-buttons .cat-btn:hover::after {
	width: 100%;
	transition: var(--ease);
}

/*リスト*/
#all_wrap .newsList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	border-top: 1px solid #e7e7e7;
}
#all_wrap .newsList.sub {
	max-width: 900px;
}
#all_wrap .newsList > li {
	width: 100%;
	padding: 30px 10px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 15px;
	border-bottom: 1px solid #e7e7e7;
}
#all_wrap .newsList > li::after {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/arrow_right.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translate(0,-50%);
}
#all_wrap .newsList > li.link::after {
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/icon_blank.svg');
}
#all_wrap .newsList > li .date {
	display: inline-block;
	width: 85px;
	min-width: 85px;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 16px;
	line-height: 1;
	color: #7a7c8a;
	white-space: nowrap;
}
#all_wrap .newsList > li .cat {
	display: inline-block;
	padding: 0;
	margin: 0;
}
#all_wrap .newsList > li .cat a {
	display: inline-block;
	padding: 5px 20px 5px;
	margin: 0;
	font-size: 12px;
	line-height: 1;
	color: #7a7c8a;
	background: #e0e0e0;
	border-radius: 20px;
	transition: var(--ease);
}
#all_wrap .newsList > li .cat.information a {
	color: #fff;
	background: var(--main);
}
#all_wrap .newsList > li .cat.column a {
	color: #fff;
	background: var(--orange);
}
#all_wrap .newsList > li .cat a:hover {
	filter: brightness(1.1);
	transition: var(--ease);
}
#all_wrap .newsList > li h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 18px;
	line-height: 1.4em;
	font-weight: 500;
	text-align: left;
}
#all_wrap .newsList > li h3 a {
	font-size: 18px;
	line-height: 1.4em;
	font-weight: 500;
	text-align: left;
	color: var(--text);
	transition: var(--ease);
}
#all_wrap .newsList > li h3 a:hover {
	color: var(--link);
	transition: var(--ease);
}
#all_wrap .newsList > li h3.pdf::after {
	content: 'PDF';
	display: inline-block;
	padding: 3px 5px;
	margin: 0 0 0 10px;
	background: var(--sub);
	border-radius: 3px;
	font-family: var(--font-en);
	font-size: 0.8rem;
	letter-spacing: normal;
	color: #fff;
	line-height: 1;
	position: relative;
	bottom: 3px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topNews {
		width: 100%;
		padding: 50px 0;
	}
	.topNews_wrap {
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
		flex-wrap: wrap;
		column-gap: 30px;
	}
	#all_wrap .topNews_wrap > header {
		width: 100%;
		min-width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		grid-row-gap: 5px;
	}
	#all_wrap .topNews_wrap > header > h2 {
		font-size: 12px;
	}
	#all_wrap .topNews_wrap > header > em {
		font-size: 7vw;
	}
	#all_wrap a.more {
		width: 100%;
		max-width: 200px;
		padding: 12px 30px;
		margin-top: 30px;
		border-radius: 5px;
		column-gap: 20px;
		font-size: 15px;
	}
	.topNews_cont {
		width: calc(100%);
	}
	/*ボタン*/
	#all_wrap #category-buttons {
		margin: 0 auto 20px;
		column-gap: 15px;
		grid-row-gap: 10px;
	}
	#all_wrap #category-buttons .cat-btn {
		width: fit-content;
		padding: 10px 12px;
		font-size: 12px;
	}

	/*リスト*/
	#all_wrap .newsList {
		width: 100%;
	}
	#all_wrap .newsList.sub {
		max-width: 100%;
	}
	#all_wrap .newsList > li {
		width: 100%;
		padding: 15px 30px 15px 10px;
		column-gap: 10px;
		grid-row-gap: 5px;
	}
	#all_wrap .newsList > li .date {
		font-size: 11px;
	}
	#all_wrap .newsList > li .cat a {
		padding: 3px 10px 3px;
		font-size: 0.8rem;
	}
	#all_wrap .newsList > li h3 {
		font-size: 13px;
	}
	#all_wrap .newsList > li h3 a {
		font-size: 13px;
	}
}

/************************************************************/
/*　トップページ　採用情報
/************************************************************/
#topRecruit {
	width: 100%;
	padding: 130px 0 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/topRecruit_bg.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
#topRecruit::after {
	content: '';
	display: block;
	width: 100%;
	height: 170px;
	background: #fff;
	position: absolute;
	bottom: -1px;
	left: 0;
	z-index: -1;
}
.topRecruit_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 120px;
}
.topRecruit_box {
	width: 600px;
	min-width: 600px;
	padding: 80px;
	margin: 0;
	position: relative;
	background: rgba(255,255,255,0.7);
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	grid-row-gap: 50px;
}
#all_wrap .topRecruit_box > header.contHead {
	margin-bottom: 0;
}
#all_wrap .topRecruit_box > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .topRecruit_box > a.more {
	width: fit-content;
	max-width: unset;
	padding: 20px 30px;
	margin: 0;
}

/*CTA*/
#all_wrap .cta {
	width: 100%;
	max-width: 1200px;
	padding: 80px 100px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 50px;
	background: var(--gradient);
	border-radius: 10px;
	overflow: hidden;
}
#all_wrap .cta::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/logo_bg_w.webp');
	background-position: right -100px center;
	background-repeat: no-repeat;
	background-size: auto 120%;
}
.cta_info {
	width: 50%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .cta_info > header.contHead.white {
	margin-bottom: 50px;
}
#all_wrap .cta_info > p {
	color: #fff;
	text-align: left;
	padding: 0;
	margin: 0;
}
#all_wrap .cta .btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 320px;
	min-width: 320px;
	padding: 20px;
	margin: 0;
	background: none;
	border: 1px solid #fff;
	font-size: 17px;
	line-height: 1;
	color: #fff;
	position: relative;
	border-radius: 60px;
	transition: var(--ease);
}
#all_wrap .cta .btn::after {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/arrow_w2.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0,-50%);
	transition: var(--ease);
}
#all_wrap .cta .btn:hover {
	background: #fff;
	border: 1px solid #fff;
	color: var(--main);
}
#all_wrap .cta .btn:hover::after {
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/arrow_2.svg');
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topRecruit {
		width: 100%;
		padding: 20px 20px 0;
		background-image: url('https://test-daiei.coresv.com/wp-content/uploads/topRecruit_bg_sp.webp');
	}
	#topRecruit::after {
		height: 40px;
	}
	.topRecruit_wrap {
		width: 100%;
		max-width: 100%;
		grid-row-gap: 20px;
	}
	.topRecruit_box {
		width: 100%;
		min-width: 100%;
		padding: 20px;
		grid-row-gap: 20px;
		background: rgba(255,255,255,0.8);
	}

	/*CTA*/
	#all_wrap .cta {
		width: 100%;
		max-width: 100%;
		padding: 20px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	.cta_info {
		width: 100%;
	}
	#all_wrap .cta_info > header.contHead.white {
		margin-bottom: 10px;
	}
	#all_wrap .cta .btn {
		width: 100%;
		min-width: 100%;
		padding: 15px;
		font-size: 17px;
	}
	#all_wrap .cta .btn::after {
		right: 15px;
	}
}


/************************************************************/
/*　お客様の声　絞り込み検索
/************************************************************/
#customer-list > p {
	text-align: center;
}
#all_wrap #customer-filter {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
}
#all_wrap #customer-filter h2 {
	color: var(--text);
	font-size: 18px;
	margin-bottom: 20px;
	text-align: left;
}
#all_wrap #customer-filter .customer-filter-wrap {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
	margin-bottom: 20px;
	width: 100%;
	padding: 20px;
	margin: 0 auto;
	background: #fafafa;
	position: relative;
	border-radius: 3px;
}
#all_wrap #customer-filter .filter-group {
	width: calc((100% - 40px) / 3);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #customer-filter .filter-group select {
	width: 100%;
	padding: 10px 15px;
	margin: 0;
	background: #fff;
	border-radius: 3px;
	border: 1px solid #ccc;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: none; /* Safari用 */
}
#all_wrap #customer-filter .filter-group::after {
	content: "";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 8px;
	height: 8px;
	border-right: 2px solid #555;
	border-bottom: 2px solid #555;
	pointer-events: none;
}
/*チェックボックス*/
#all_wrap #customer-filter .filter-group.full {
	width: 100%;
	padding: 10px 12px;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 20px;
	background: #fff;
	border-radius: 3px;
	border: 1px solid #ccc;
}
#all_wrap #customer-filter .filter-group.full::after {
	display: none;
}
#all_wrap #customer-filter .filter-group.full > p {
	width: 100px;
	padding: 0 20px 0 5px;
	margin: 0;
	position: relative;
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	color: #000;
	text-align: left;
	border-right: 1px solid #aaa;
	white-space: nowrap;
}
#all_wrap .checkbox_wrap {
	width: calc(100% - 100px - 20px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 5px;
}
#all_wrap .checkbox_wrap label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 16px;
	margin: 0;
	border-radius: 25px;
	font-size: 12px;
	line-height: 1;
	cursor: pointer;
	background: var(--base);
	color: #333;
	transition: all .2s ease;
	user-select: none;
}
#all_wrap .checkbox_wrap label input {
	display: none;
}
#all_wrap .checkbox_wrap label:hover {
	border-color: #ff9505;
	color: #ff9505;
}
#all_wrap .checkbox_wrap label:has(input:checked) {
	background: #ff9505;
	border-color: #ff9505;
	color: #fff;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#customer-list > p {
		text-align: center;
	}
	#all_wrap #customer-filter {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto 50px;
	}
	#all_wrap #customer-filter h2 {
		color: var(--text);
		font-size: 18px;
		margin-bottom: 20px;
		text-align: left;
	}
	#all_wrap #customer-filter .customer-filter-wrap {
		column-gap: 10px;
		grid-row-gap: 10px;
		margin-bottom: 0;
		padding: 15px;
		border-radius: 3px;
		flex-wrap: wrap;
	}
	#all_wrap #customer-filter .filter-group {
		width: 100%;
	}
	#all_wrap #customer-filter .filter-group select {
		width: 100%;
		padding: 10px 15px;
	}
	#all_wrap #customer-filter .filter-group::after {
		content: "";
		position: absolute;
		right: 15px;
		top: 50%;
		transform: translateY(-50%) rotate(45deg);
		width: 8px;
		height: 8px;
		border-right: 2px solid #555;
		border-bottom: 2px solid #555;
		pointer-events: none;
	}
	
	/*チェックボックス*/
	#all_wrap #customer-filter .filter-group.full {
		width: 100%;
		padding: 12px 12px;
		margin: 0;
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 10px;
		background: #fff;
		border-radius: 3px;
		border: 1px solid #ccc;
	}
	#all_wrap #customer-filter .filter-group.full::after {
		display: none;
	}
	#all_wrap #customer-filter .filter-group.full > p {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
		font-size: 12px;
		color: #000;
		text-align: left;
		border-right: none;
		white-space: nowrap;
	}
	#all_wrap .checkbox_wrap {
		width: calc(100%);
		padding: 0;
		margin: 0;
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
		column-gap: 5px;
		grid-row-gap: 5px;
	}
	#all_wrap .checkbox_wrap label {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 5px 12px;
		margin: 0;
		border-radius: 20px;
		font-size: 10px;
		line-height: 1;
		cursor: pointer;
		background: var(--base);
		color: #333;
		transition: all .2s ease;
		user-select: none;
	}

}

/************************************************************/
/*　私たちについて
/************************************************************/
#about {
	padding: 0;
	margin: 0;
}

/*メッセージ*/
#aboutMessage {
	width: 100%;
	padding: 40px 0 140px;
	margin: 0 auto;
	position: relative;
	background: var(--base);
	scroll-margin-top: 160px;
}
#all_wrap .aboutMessage_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 100px;
}
#all_wrap .aboutMessage_wrap > figure {
	width: 500px;
	min-width: 500px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .aboutMessage_wrap > figure img {
	width: 100%;
	height: auto;
	border-radius: 20px;
}
#all_wrap .aboutMessage_wrap > .aboutMessage_info {
	width: calc(100% - 100px - 500px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .aboutMessage_wrap > .aboutMessage_info > p {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .aboutMessage_wrap > .aboutMessage_info > p.name {
	text-align: right;
}
#all_wrap .aboutMessage_wrap > .aboutMessage_info > p.name strong {
	display: inline-block;
	font-size: 1.5em;
	font-weight: 700;
	line-height: 1;
	position: relative;
	top: 5px;
	margin-left: 5px;
}
#all_wrap .aboutMessage_wrap > .aboutMessage_info > p.name strong img {
	width: auto;
	height: 60px;
}

/*関連コンテンツ*/
#related {
	width: 100%;
	padding: 140px 0;
	margin: 0 auto;
	position: relative;
	background: var(--text);
}
#all_wrap .pageList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
	position: relative;
	list-style: none;
}
#all_wrap .pageList > li {
	width: calc((100% - 60px) / 3);
	padding: 0;
	margin: 0;
	border-radius: 10px;
	background: none;
	position: relative;
	overflow: hidden;
	aspect-ratio: 1/1;
}
#all_wrap .pageList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}
#all_wrap .pageList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0;
	overflow: hidden;
	text-align: center;
	position: relative;
	aspect-ratio: 1/1;
}
#all_wrap .pageList > li > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .pageList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
	transform-origin: center;
	transition: var(--ease);
}
#all_wrap .pageList > li > h3 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: calc(100% - 20px);
	height: 80px;
	padding: 15px 15px 15px 25px;
	margin: 0;
	border-radius: 5px;
	background: #fff;
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 5;
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	transition: var(--ease);
}
#all_wrap .pageList > li > h3::after {
	content: '';
	display: block;
	height: calc(100% - 30px);
	width: auto;
	aspect-ratio: 1/1;
	background-color: var(--base);
	border-radius: 5px;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/arrow_right.svg');
	background-repeat: no-repeat;
	background-size: 12px;
	background-position: center;
	transform-origin: center;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0,-50%);
	transition: var(--ease);
}
/* - ホバー */
#all_wrap .pageList > li:hover > figure img {
	transform: translate(-50%,-50%) scale(1.05);
	transform-origin: center;
	transition: var(--ease);
}
#all_wrap .pageList > li:hover > h3 {
	background: var(--link);
	color: #fff;;
	transition: var(--ease);
}
#all_wrap .pageList > li:hover > h3::after {
	background-color: #fff;
	transform: translate(0,-50%) scale(1.1);
	transition: var(--ease);
}

/*会社概要*/
#aboutCompany {
	width: 100%;
	padding: 140px 0;
	margin: 0 auto;
	position: relative;
	background: #fff;
	scroll-margin-top: 160px;
}
#all_wrap #aboutCompany .contHead {
	max-width: 950px;
}
#all_wrap .companyBox {
	width: 100%;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
}
#all_wrap .companyBox.mb0 {
	margin-bottom: 0;
}
#all_wrap .companyBox > h3 {
	width: 100%;
	max-width: 950px;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	text-align: left;
}
#all_wrap .companyTable {
	width: 100%;
	max-width: 950px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border-top: 1px solid rgb(234, 232, 228);
}
#all_wrap .companyTable th {
	width: 200px;
	padding: 30px 15px;
	margin: 0;
	background: none;
	border-bottom: 1px solid rgb(234, 232, 228);
	text-align: left;
	line-height: 2;
	vertical-align: top;
}
#all_wrap .companyTable td {
	width: calc(100% - 200px);
	padding: 30px 15px;
	margin: 0;
	background: none;
	border-bottom: 1px solid rgb(234, 232, 228);
	line-height: 2;
	vertical-align: top;
}

#all_wrap .companyTable table.none {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
}
#all_wrap .companyTable table.none th {
	width: auto;
	padding: 0 0 20px;
	margin: 0;
	background: none;
	border: none;
	text-align: left;
	vertical-align: top;
}
#all_wrap .companyTable table.none td {
	width: auto;
	padding: 0 0 20px;
	margin: 0;
	background: none;
	border: none;
	vertical-align: top;
	line-height: 2;
}
#all_wrap .companyTable table.none tr:last-of-type th,
#all_wrap .companyTable table.none tr:last-of-type td {
	padding: 0;
}

/*PDF*/
#all_wrap .pdfList {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 0.7em;
}
#all_wrap .pdfList > li {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 7px;
	font-size: 15px;
	line-height: 1.2em;
	font-weight: 500;
}
#all_wrap .pdfList > li::before {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/icon_pdf.svg');
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
}
#all_wrap .pdfList > li a {
	font-size: 15px;
	line-height: 1.2em;
	font-weight: 500;
	color: var(--text);
	text-decoration: underline;
	transition: var(--ease);
}
#all_wrap .pdfList > li a:hover {
	font-size: 15px;
	line-height: 1.2em;
	font-weight: 500;
	color: var(--link);
	text-decoration: none;
	transition: var(--ease);
}

/*主要仕入先*/
#all_wrap .supplierList {
	width: 100%;
	max-width: 950px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
}
#all_wrap .supplierList > li {
	width: calc((100% - 10px) / 2);
	padding: 15px;
	margin: 0;
	background: var(--text);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 17px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-align: center;
}

/*資格取得者*/
.box {
	width: 100%;
	max-width: 950px;
	padding: 0;
	margin: 0 auto;
}

/*拠点情報*/
#aboutAccess {
	scroll-margin-top: 160px;
}
#all_wrap .officeList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap .officeList > li {
	width: calc((100% - 60px) / 3);
	padding: 0;
	margin: 0;
	background: var(--base);
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}
#all_wrap .officeList > li.wide {
	width: 100%;
	max-width: 850px;
}
#all_wrap .officeList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .officeList > li > figure::before {
	content: '';
	display: block;
	padding-top: 50%;
}
#all_wrap .officeList > li > figure iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#all_wrap .officeList > li > .officeList_info {
	width: 100%;
	padding: 20px;
	margin: 0;
	position: relative;
}
#all_wrap .officeList > li > .officeList_info > h3 {
	width: 100%;
	padding: 0 0 15px;
	margin: 0 auto 15px;
	position: relative;
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	text-align: center;
	border: none;
	background: none;
}
#all_wrap .officeList > li > .officeList_info > h3::after {
	content: '';
	display: block;
	width: 50px;
	height: 1px;
	background: var(--text);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
}
#all_wrap .officeList > li > .officeList_info > p {
	padding: 0;
	margin: 0 auto;
	text-align: center;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#about {
		padding: 0;
		margin: 0;
	}

	/*メッセージ*/
	#aboutMessage {
		width: 100%;
		padding: 0 20px 30px;
		scroll-margin-top: 100px;
	}
	#all_wrap .aboutMessage_wrap {
		width: 100%;
		max-width: 100%;
		padding: 0;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	#all_wrap .aboutMessage_wrap > figure {
		width: 60%;
		min-width: 60%;
		margin: 0 auto;
	}
	#all_wrap .aboutMessage_wrap > .aboutMessage_info {
		width: calc(100%);
	}
	#all_wrap .aboutMessage_wrap > .aboutMessage_info > p.name {
		text-align: right;
		margin-bottom: 0;
	}
	#all_wrap .aboutMessage_wrap > .aboutMessage_info > p.name strong img {
		width: auto;
		height: 40px;
	}

	/*関連コンテンツ*/
	#related {
		width: 100%;
		padding: 50px 20px;
		z-index: 0;
	}
	#related::before {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		aspect-ratio: 1/1;
		background-image: url('https://test-daiei.coresv.com/wp-content/uploads/logo_bg_w_sp.webp');
		background-repeat: no-repeat;
		background-size: 70%;
		background-position: right -20px bottom -20px;
		position: absolute;
		bottom: 0;
		right: 0;
		z-index: -1;
		opacity: 0.2;
	}
	#all_wrap .pageList {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	#all_wrap .pageList > li {
		width: calc((100% - 20px) / 2);
		aspect-ratio: unset;
	}
	#all_wrap .pageList > li > figure {
		width: 100%;
		aspect-ratio: unset;
	}
	#all_wrap .pageList > li > figure::before {
		padding: 0;
		padding-top: 75%;
	}
	#all_wrap .pageList > li > h3 {
		width: calc(100% - 20px);
		height: unset;
		padding: 10px;
		border-radius: 5px;
		bottom: 10px;
		left: 50%;
		transform: translate(-50%,0);
		z-index: 5;
		font-size: 12px;
	}
	#all_wrap .pageList > li > h3::after {
		content: '';
		display: block;
		height: 20px;
		width: 20px;
		background-size: 6px;
		top: 50%;
		right: 10px;
		transform: translate(0,-50%);
		transition: var(--ease);
	}

	/*会社概要*/
	#aboutCompany {
		width: 100%;
		padding: 30px 20px;
		scroll-margin-top: 100px;
	}
	#all_wrap #aboutCompany .contHead {
		max-width: 100%;
	}
	#all_wrap .companyBox {
		width: 100%;
		padding: 0;
		margin: 0 auto 50px;
		position: relative;
	}
	#all_wrap .companyBox.mb0 {
		margin-bottom: 0;
	}
	#all_wrap .companyBox > h3 {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 15px;
		font-size: 17px;
	}
	#all_wrap .companyTable {
		width: 100%;
		max-width: 100%;
	}
	#all_wrap .companyTable th {
		width: 100%;
		padding: 10px 15px;
		background: var(--text);
	}
	#all_wrap .companyTable td {
		width: calc(100%);
		padding: 15px;
	}

	#all_wrap .companyTable table.none {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		border: none;
		display: table;
		table-layout: auto;
	}
	#all_wrap .companyTable table.none td {
		display: table-cell;
		width: fit-content;
		padding: 0 0 10px;
		font-size: 12px;
		line-height: 1.4em;
	}
	#all_wrap .companyTable table.none td:first-of-type {
		padding-right: 20px;
		white-space: nowrap;
		font-size: 15px;
		line-height: 1.4em;
	}
	#all_wrap .companyTable table.none tr:last-of-type th,
	#all_wrap .companyTable table.none tr:last-of-type td {
		padding: 0;
	}

	/*主要仕入先*/
	#all_wrap .supplierList {
		width: 100%;
		max-width: 100%;
		column-gap: 10px;
		grid-row-gap: 10px;
	}
	#all_wrap .supplierList > li {
		width: calc((100% - 10px) / 2);
		padding: 10px;
		font-size: 11px;
	}

	/*拠点情報*/
	#aboutAccess {
		padding: 20px;
		scroll-margin-top: 100px;
	}
	#all_wrap .officeList {
		width: 100%;
		max-width: 100%;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	#all_wrap .officeList > li {
		width: 100%;
	}
	#all_wrap .officeList > li > figure {
		width: 100%;
	}
	#all_wrap .officeList > li > .officeList_info {
		width: 100%;
		padding: 20px;
	}
	#all_wrap .officeList > li > .officeList_info > h3 {
		width: 100%;
		padding: 0 0 15px;
		margin: 0 auto 10px;
		font-size: 18px;
	}
}

/************************************************************/
/*　事業内容
/************************************************************/
#all_wrap .product_sec .contHead > h2 {
	font-size: 25px;
}
#all_wrap .product_sec {
	width: 100%;
	padding: 0;
	margin: 0 auto 200px;
	position: relative;
}
#product_01,
#product_02,
#product_03 {
	scroll-margin-top: 160px;
}
#all_wrap .product_sec_txt {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 80px;
	position: relative;
}
#all_wrap .product_sec_txt > h3 {
	padding: 0;
	margin: 0 auto 20px;
	border: none;
	background: none;
	position: relative;
	font-size: 25px;
	line-height: 1.4em;
	font-weight: 600;
	color: var(--text);
	text-align: center;
}
#all_wrap .product_sec_txt > p {
	padding: 0;
	margin: 0 auto 20px;
	text-align: center;
}
#all_wrap .product_sec_txt > p:last-of-type {
	margin-bottom: 0;
}
/*リスト*/
#all_wrap .productList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 0;
	grid-row-gap: 80px;
}
#all_wrap .productList > li {
	width: calc(100% / 3);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 0;
}
#all_wrap .productList.two {
	width: calc(100% / 3 * 2);
}
#all_wrap .productList.two > li {
	width: calc(100% / 2);
}
#all_wrap .productList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .productList > li > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .productList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .productList > li > .productList_txt {
	width: 100%;
	padding: 30px 50px;
	margin: 0 auto;
	position: relative;
}
#all_wrap .productList > li > .productList_txt > h3 {
	width: 100%;
	padding: 0 0 20px;
	margin: 0 auto 20px;
	position: relative;
	border: none;
	background: none;
	font-size: 25px;
	line-height: 1.2em;
	font-weight: 700;
	color: var(--text);
	text-align: center;
	letter-spacing: normal;
}
#all_wrap .productList > li > .productList_txt > h3::after {
	content: '';
	display: block;
	width: 40px;
	height: 1px;
	background: var(--text);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
}
#all_wrap .productList > li > .productList_txt h4 {
	text-align: center;
	font-size: 17px;
	line-height: 1.4em;
	font-weight: 600;
	padding: 0;
	margin: 0 auto;
}
#all_wrap .productList > li > .productList_txt p {
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 18px;
	line-height: 1.7em;
}
#all_wrap .productList > li > .productList_txt p b {
	display: inline-block;
	margin-top: 1em;
}
/*リスト*/
#all_wrap .productList ul.disc {
	list-style: none;
	padding: 0;
	margin: 0;
	margin-bottom: 1em;
	margin-top: 1em;
}
#all_wrap .productList ul.disc li {
	position: relative;
	margin: 0 0 0.5em;
	font-size: 18px;
	line-height: 1.4em;
}
#all_wrap .productList ul.disc li:last-child {
	margin-bottom: 0;
}
#all_wrap .productList ul.disc li::before {
	content: "・";
	display: inline-block;
	font-weight: 900;
	width: auto;
	height: auto;
	background: none;
	border: none;
	color: var(--text);
	font-size: 16px;
	line-height: 1;
	margin-right: 5px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 1200px){
	#all_wrap .productList > li {
		width: calc(100% / 2);
	}
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .product_sec .contHead > h2 {
		font-size: 17px;
	}
	#all_wrap .product_sec {
		width: 100%;
		margin: 0 auto 50px;
		scroll-margin-top: 100px;
	}
	#product_01,
	#product_02,
	#product_03,
	#product_04 {
		scroll-margin-top: 100px;
	}
	#all_wrap .product_sec_txt {
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
		margin: 0 auto 30px;
		position: relative;
	}
	#all_wrap .product_sec_txt > h3 {
		padding: 0;
		margin: 0 auto 10px;
		border: none;
		background: none;
		position: relative;
		font-size: 17px;
		line-height: 1.4em;
		font-weight: 600;
		color: var(--text);
		text-align: center;
	}
	#all_wrap .product_sec_txt > p {
		padding: 0;
		margin: 0 auto 20px;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
	#all_wrap .product_sec_txt > p:last-of-type {
		margin-bottom: 0;
	}
	/*リスト*/
	#all_wrap .productList {
		width: 100%;
		grid-row-gap: 0;
		background: var(--base);
	}
	#all_wrap .productList > li {
		width: 100%;
	}
	#all_wrap .productList.two {
		width: 100%;
	}
	#all_wrap .productList.two > li {
		width: 100%;
	}
	#all_wrap .productList > li > figure::before {
		content: '';
		display: block;
		padding-top: 40%;
	}
	#all_wrap .productList > li > .productList_txt {
		width: 100%;
		padding: 20px 20px;
		margin: 0 auto;
		position: relative;
	}
	#all_wrap .productList > li > .productList_txt > h3 {
		width: 100%;
		padding: 0 0 15px;
		margin: 0 auto 15px;
		font-size: 18px;
	}
	#all_wrap .productList > li > .productList_txt > h3::after {
		width: 40px;
	}
	#all_wrap .productList > li > .productList_txt p {
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
		font-size: 12px;
		line-height: 1.7em;
	}
	#all_wrap .productList > li > .productList_txt p b {
		display: inline-block;
		margin-top: 1em;
	}
}

/* コンテナ */
#all_wrap .maker-dropdown {
	width: calc(100% - 100px);
	animation-play-state: 0;
	margin: auto auto 0;
	position: relative;
	cursor: pointer;
	font-size: 15px;
}
#all_wrap .maker-dropdown__toggle {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 45px;
	background: #fafafa;
	border: 1px solid #999;
	padding: 10px 60px 10px 12px;
	position: relative;
}
#all_wrap .maker-dropdown__toggle::after {
	content: "";
	width: 45px;
	height: 45px;
	min-width: 45px;
	aspect-ratio: 1/1;
	background: var(--text);
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: var(--ease);
}
#all_wrap .maker-dropdown__toggle:hover::after {
	background: var(--link);
	transition: var(--ease);
}
#all_wrap .maker-dropdown__toggle::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background: none;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	position: absolute;
	right: 17px;
	top: calc(50% - 3px);
	transform: translate(0, -50%) rotate(45deg);
	z-index: 2;
}
#all_wrap .maker-dropdown__list {
	display: none;
	border: 1px solid #999;
	border-top: none;
	background: #fff;
	position: absolute;
	width: 100%;
	z-index: 10;
}
#all_wrap .maker-dropdown.open .maker-dropdown__list {
	display: block;
}
#all_wrap .maker-dropdown__list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#all_wrap .maker-dropdown__list li {
	display: block;
	padding: 8px 12px;
	text-decoration: none;
	color: var(--text);
}
/*#all_wrap .maker-dropdown__list li a {
	display: block;
	padding: 8px 12px;
	text-decoration: none;
	color: var(--text);
}
#all_wrap .maker-dropdown__list li a:hover {
	color: var(--link);
	text-decoration: underline;
	background: #f0f0f0;
}*/
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .maker-dropdown {
		width: 80%;
		font-size: 12px;
		padding-bottom: 30px;
	}
	#all_wrap .maker-dropdown__list {
		border: 1px solid #999;
	}
}

/************************************************************/
/*　お客様サポート
/************************************************************/
#faq {
	padding: 0;
	margin: 0 auto;
}
/*ナビ*/
.support-nav {
	width: 100%;
	padding: 0;
	margin: 0 auto 70px;
	position: relative;
	display: flex;
	justify-content: center;
	column-gap: 10px;
	grid-row-gap: 10px;
	flex-wrap: wrap;
}
.support-nav > a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc((100% - 40px) / 5);
	padding: 15px 15px;
	margin: 0;
	background: var(--main);
	border-radius: 3px;
	position: relative;
	font-size: 17px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	letter-spacing: normal;
	text-align: center;
	text-decoration: none;
	transition: var(--ease);
}
.support-nav > a:hover {
	background: var(--sub);
	transition: var(--ease);
}
/*リスト*/
#all_wrap .supportList {
	width: 100%;
	padding: 0;
	margin: 0 auto 70px;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#all_wrap .support-category-title {
	width: 100%;
	padding: 15px 20px;
	margin: 0 auto;
	background: var(--gradient);
	position: relative;
	border-radius: 5px;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-align: left;
}
#all_wrap .supportList > dl {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: none;
}
#all_wrap .supportList > dl > dt {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 20px;
	flex-wrap: nowrap;
	width: 100%;
	padding: 20px 70px 20px 20px;
	margin: 0 auto;
	background: none;
	border-bottom: 2px solid var(--text);
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	position: relative;
	cursor: pointer;
	transition: var(--ease);
}
#all_wrap .supportList > dl > dt:hover {
	color: var(--link);
	transition: var(--ease);
}
#all_wrap .supportList > dl > dt::before {
	content: 'Q.';
	display: inline-flex;
	width: 30px;
	min-width: 30px;
	height: 30px;
	font-family: var(--font-en);
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: var(--sub);
	white-space: nowrap;
	transition: var(--ease);
}
#all_wrap .supportList > dl > dt span {
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	margin: 0;
	background: none;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
}
#all_wrap .supportList > dl > dt span::before {
	content: '';
	display: block;
	width: 20px;
	height: 3px;
	background: var(--sub);
	border-radius: 3px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform-origin: center;
	transition: var(--ease);
}
#all_wrap .supportList > dl > dt span::after {
	content: '';
	display: block;
	width: 20px;
	height: 3px;
	background: var(--sub);
	border-radius: 3px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(90deg);
	-webkit-transform: translate(-50%,-50%) rotate(90deg);
	transform-origin: center;
	transition: var(--ease);
}
#all_wrap .supportList > dl > dt.active span::after {
	transform: translate(-50%,-50%) rotate(0deg);
	-webkit-transform: translate(-50%,-50%) rotate(0deg);
	transform-origin: center;
	transition: var(--ease);
}
#all_wrap .supportList > dl > dd {
	margin: 0 auto;
	padding: 30px 40px;
	background: #fff;
	font-size: 16px;
	line-height: 2;
	font-weight: 500;
}
#all_wrap .supportList > dl > dd p {
	padding: 0;
	margin: 0 auto 10px;
	font-size: 16px;
	line-height: 2;
	font-weight: 500;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*アンカー*/
#dengen {
	scroll-margin-top: 100px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#faq {
		padding: 0;
		margin: 0 auto;
	}
	/*ナビ*/
	.support-nav {
		width: 100%;
		margin: 0 auto 50px;
		justify-content: flex-start;
	}
	.support-nav > a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: calc((100% - 10px) / 2);
		padding: 12px 10px;
		font-size: 12px;
	}
	/*リスト*/
	#all_wrap .supportList {
		margin: 0 auto 50px;
		grid-row-gap: 0;
	}
	#all_wrap .support-category-title {
		width: 100%;
		padding: 12px 15px;
		font-size: 17px;
	}
	#all_wrap .supportList > dl > dt {
		column-gap: 10px;
		flex-wrap: nowrap;
		width: 100%;
		padding: 15px 30px 15px 10px;
		font-size: 15px;
		border-bottom: 1px solid var(--text);
	}
	#all_wrap .supportList > dl > dt::before {
		content: 'Q.';
		display: inline-flex;
		width: 20px;
		min-width: 20px;
		height: 20px;
		font-size: 17px;
	}
	#all_wrap .supportList > dl > dt span {
		display: block;
		width: 10px;
		height: 10px;
		top: 50%;
		right: 10px;
	}
	#all_wrap .supportList > dl > dt span::before {
		width: 10px;
		height: 2px;
		border-radius: 2px;
	}
	#all_wrap .supportList > dl > dt span::after {
		width: 10px;
		height: 2px;
		border-radius: 2px;
	}
	#all_wrap .supportList > dl > dd {
		margin: 0 auto;
		padding: 20px 20px;
		font-size: 15px;
	}
	#all_wrap .supportList > dl > dd p {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 15px;
	}
	/*アンカー*/
	#dengen {
		scroll-margin-top: 100px;
	}
}

/************************************************************/
/*　旧サイトCSS
/************************************************************/
#all_wrap img {
	max-width: 100%;
	height: auto;
}
#all_wrap #donyu img {
	margin: 1rem 0;
	border: 1px solid #DCDCDC;
	padding: 3px;
}
#all_wrap #donyu li {
	list-style: none;
}
#all_wrap #donyu .two_culm li {
	width: 50%;
	float:left;
	padding: 20px 2.5%;
}
#all_wrap .donyu_about {
	padding: 10px;
	background:#fff4c8;
}
#all_wrap .donyu_txt {
	padding: 20px;
	background: #FFF;	
}
#all_wrap li .donyu_txt {
	padding: 0px;
}
#all_wrap .donyu-flex ul {
	display: flex;
}
#all_wrap .donyu-flex li {
	padding:10px;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap #donyu .two_culm li {
		width: 100%;
		float:none;
	}
	#all_wrap #donyu .two_culm2 li {
		width: 100%;
		float:none;
	}
}


/*----------------------------
clearfix
----------------------------*/
.cf:before,
.cf:after {
	content: "";
	display: table; }

.cf:after {
	clear: both; }

/*IE6,7対策 （haslayout対策）*/
.cf {
	*zoom: 1; }



/************************************************************/
/*　採用情報
/************************************************************/
#page-recruit-lp {
	padding: 0;
}
#recruit {
	font-family: var(--font-maru);
	font-weight: 500;
}
/*--------------------*/
/* ヘッダー */
/*--------------------*/
#header_lp {
	width: 100%;
	min-width: 1300px;
	padding: 20px 50px;
	margin: 0 auto;
	background: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 20px;
}
#all_wrap #header_lp > h1 {
	width: fit-content;
	padding: 0;
	margin: 0 auto 0 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 15px;
}
#all_wrap #header_lp > h1 img {
	width: auto;
	height: 50px;
}
#all_wrap #header_lp > h1 p {
	padding: 0;
	margin: 0;
	font-family: var(--font-maru);
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	text-align: left;
}
/*メインメニュー*/
#all_wrap #lpNav {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 50px;
}
#all_wrap #menu-lp-menu {
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 30px;
	list-style: none;
	position: relative;
	padding: 0;
	margin: 0;
}
#all_wrap #menu-lp-menu > li {
	width: fit-content;
	padding: 0;
	margin: 0;
}
#all_wrap #menu-lp-menu > li a {
	font-family: var(--font-maru);
	font-size: 17px;
	line-height: 1;
	color: var(--text);
	white-space: nowrap;
	transition: var(--ease);
}
#all_wrap #menu-lp-menu > li a:hover {
	transition: var(--ease);
	color: var(--act);
}
/*ボタン*/
#all_wrap #menu-lpbtn-menu {
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 10px;
	list-style: none;
	position: relative;
	padding: 0;
	margin: 0;
}
#all_wrap #menu-lpbtn-menu > li {
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menu-lpbtn-menu > li > a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	height: 45px;
	padding: 10px 30px;
	background: var(--orange);
	border-radius: 45px;
	font-family: var(--font-maru);
	font-size: 17px;
	line-height: 1;
	color: #fff;
	white-space: nowrap;
	text-decoration: none;
	position: relative;
	transition: var(--ease);
}
#all_wrap #menu-lpbtn-menu > li > a:hover {
	opacity: 0.8;
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap #page-recruit-lp.l-wrapper-full .l-main {
		padding: 0;
		margin: 0;
	}
	#header_lp {
		width: 100%;
		height: 50px;
		padding: 10px;
		column-gap: 10px;
		background: #fff;
	}
	#all_wrap #header_lp > h1 {
		width: fit-content;
		column-gap: 10px;
	}
	#all_wrap #header_lp > h1 img {
		width: auto;
		height: 30px;
	}
	#all_wrap #header_lp > h1 p {
		font-size: 12px;
	}
	/*メインメニュー*/
	#all_wrap #lpNav {
		column-gap: 10px;
	}
	#all_wrap #menu-lp-menu {
		display: none;
	}
	/*ボタン*/
	#all_wrap #menu-lpbtn-menu {
		display: inline-flex;
		justify-content: flex-end;
		align-items: center;
		column-gap: 10px;
		list-style: none;
		position: relative;
		padding: 0;
		margin: 0;
	}
	#all_wrap #menu-lpbtn-menu > li {
		padding: 0;
		margin: 0;
		position: relative;
	}
	#all_wrap #menu-lpbtn-menu > li > a {
		height: 30px;
		padding: 5px 20px;
		border-radius: 30px;
		font-size: 12px;
	}
}

/*--------------------*/
/* メインビジュアル */
/*--------------------*/
#recruit_mv {
	width: 100%;
	height: 100vh;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image:
		linear-gradient(#f7f7f7 1px, transparent 1px),
		linear-gradient(90deg, #f7f7f7 1px, transparent 1px);
	background-size: 20px 20px;
	z-index: 0;
}
#recruit_mv::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/recruit_mv_pattern.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#recruit_mv > h1 {
	width: 100%;
	max-width: 700px;
	padding: 0;
	margin: 0 auto 80px;
	position: relative;
	border: none;
	background: none;
	z-index: 10;
}
#recruit_mv > h1 img {
	width: 100%;
	height: auto;
	filter:
		drop-shadow(0 0 6px  white)
		drop-shadow(0 0 12px white)
		drop-shadow(0 0 18px white)
		drop-shadow(0 0 24px white);
}
#recruit_mv > .obj_top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1300px;
	height: auto;
	position: absolute;
	bottom: 55%;
	left: 50%;
	transform: translate(-50%,0);
	z-index: -1;
}
#recruit_mv > .obj_btm {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,0);
	z-index: -1;
}
#recruit_mv > span img {
	width: 300px;
	height: auto;
}
#recruit_mv > .obj_btm img:last-of-type {
	width: 450px;
}
/*ニュースティッカー*/
#recruit_news {
	width: 100%;
	max-width: 900px;
	padding: 10px;
	margin: 0 auto;
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translate(-50%,0);
	border-radius: 5px;
	background-image: linear-gradient(to right, #ffd078 0%, #fcb04e 100%);
	display: flex;
	justify-content: center;
	align-items: center;
}
#recruit_news dt {
	width: fit-content;
	padding: 0 50px 0 40px;
	margin: 0;
	text-align: center;
	font-size: 18px;
	line-height: 1;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
}
#recruit_news dd {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
	background: #fff;
	padding: 0;
	border-radius: 5px;
	position: relative;
	height: 50px;
}
#recruit_news dd > a {
	display: block;
	width: 30px;
	height: 30px;
	background: none;
	border: 1px solid var(--orange);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/icon_arrow_orange.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 10px;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translate(0,-50%);
	transition: var(--ease);
}
#recruit_news dd > a:hover {
	background: var(--orange);
	border: 1px solid var(--orange);
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/icon_arrow_white.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 10px;
	transition: var(--ease);
}
#all_wrap #recruit_newsList {
	margin: 0;
	padding: 0 15px;
	list-style: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
#all_wrap #recruit_newsList > li {
	height: 50px;
	line-height: 50px;
	white-space: nowrap;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	padding-right: 60px;
}
#all_wrap #recruit_newsList > li span.date {
	display: inline-block;
	width: fit-content;
	padding: 0;
	margin: 0;
	font-size: 15px;
	line-height: 1;
	color: #aaa;
}
#all_wrap #recruit_newsList > li h3 {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-size: 15px;
	line-height: 1;
	color: var(--text);
	font-weight: 500;
}
#all_wrap #recruit_newsList > li h3 a {
	font-size: 15px;
	line-height: 1;
	color: var(--text);
	font-weight: 500;
	transition: var(--ease);
}
#all_wrap #recruit_newsList > li h3 a:hover {
	color: var(--act);
	text-decoration: underline;
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#recruit_mv {
		width: 100%;
		height: auto;
		padding: 80px 20px 180px;
		z-index: 0;
	}
	#recruit_mv > h1 {
		width: calc(100% - 40px);
		max-width: 100%;
		margin: 0 auto;
	}
	#recruit_mv > .obj_top {
		width: calc(100% - 40px);
		max-width: 100%;
		bottom: unset;
		top: 5px;
		z-index: 20;
	}
	#recruit_mv > .obj_btm {
		width: calc(100% - 40px);
		max-width: 100%;
		top: 50%;
		z-index: 20;
	}
	#recruit_mv > span img {
		width: 100px;
		height: auto;
	}
	#recruit_mv > .obj_btm img:last-of-type {
		width: 150px;
	}
	#recruit_mv > .obj_btm img {
		width: 120px;
	}
	/*ニュースティッカー*/
	#recruit_news {
		width: calc(100% - 40px);
		max-width: 100%;
		padding: 10px;
		bottom: 20px;
	}
	#recruit_news dt {
		padding: 0 10px 0 0;
		font-size: 12px;
		white-space: nowrap;
	}
	#recruit_news dd {
		height: 30px;
	}
	#recruit_news dd > a {
		display: block;
		width: 20px;
		height: 20px;
		background-size: 7px;
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translate(0,-50%);
		transition: var(--ease);
	}
	#recruit_news dd > a:hover {
		background-size: 7px;
		transition: var(--ease);
	}
	#all_wrap #recruit_newsList {
		padding: 0 15px;
	}
	#all_wrap #recruit_newsList > li {
		height: 30px;
		line-height: 30px;
		column-gap: 10px;
		padding-right: 60px;
	}
	#all_wrap #recruit_newsList > li span.date {
		font-size: 12px;
	}
	#all_wrap #recruit_newsList > li h3 {
		font-size: 11px;
	}
	#all_wrap #recruit_newsList > li h3 a {
		font-size: 11px;
	}
}

/*--------------------*/
/* メッセージ */
/*--------------------*/
#recruit_message {
	width: 100%;
	padding: 120px 0 240px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
	background-image: linear-gradient(to right, #ffd078 0%, #fcb04e 100%);
}
#recruit_message::before {
	content: '';
	display: block;
	width: 700px;
	height: 400px;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/logo_bg_w-1.webp');
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 120%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	opacity: 0.1;
	background-blend-mode: multiply;
}
#recruit_message::after {
	content: '';
	display: block;
	width: 100%;
	height: 100px;
	background: #fff;
	border-radius: 100px 100px 0 0;
	position: absolute;
	bottom: -0.5px;
	left: 0;
}
#recruit_message > header {
	width: calc(100% - 100px);
	padding: 0;
	margin: 0 auto 120px;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#recruit_message > header > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-family: var(--font-lato);
	font-size: 60px;
	line-height: 1;
	font-weight: 700;
	color: var(--navy);
	font-style: normal;
}
#all_wrap #recruit_message > header > h2 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 17px;
	line-height: 1;
	color: var(--navy);
	border: none;
	background: none;
}
.recruit_message_wrap {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 70px;
	align-items: flex-start;
	flex-wrap: wrap;
	grid-row-gap: 50px;
}
#all_wrap .recruit_message_wrap > h2 {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 34px;
	line-height: 1.4em;
	color: var(--navy);
	text-align: left;
	white-space: nowrap;
}
#all_wrap .recruit_message_wrap > figure {
	width: 500px;
	min-width: 500px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
	position: sticky;
	top: 160px;
	left: 0;
}
#all_wrap .recruit_message_wrap > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .recruit_message_wrap > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.recruit_message_info {
	width: calc(100% - 70px - 500px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .recruit_message_info > h3 {
	width: 100%;
	padding: 0;
	margin: 1em auto;
	border: none;
	background: none;
	font-size: 25px;
	line-height: 1.4em;
	letter-spacing: -0.05em;
}
#all_wrap .recruit_message_info > p {
	padding: 0;
	margin: 0 auto 30px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	color: var(--navy);
}
#all_wrap .recruit_message_info > p:last-of-type {
	margin-bottom: 0;
}
#all_wrap .recruit_message_info > p.name {
	text-align: right;
}
#all_wrap .recruit_message_info > p.name strong {
	display: inline-block;
	font-size: 1.5em;
	font-weight: 700;
	line-height: 1;
	position: relative;
	top: 5px;
	margin-left: 5px;
}
#all_wrap .recruit_message_info > p.name strong img {
	width: auto;
	height: 60px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#recruit_message {
		width: 100%;
		padding: 50px 20px 100px;
	}
	#recruit_message::before {
		content: '';
		display: block;
		width: 70%;
		height: 200px;
		background-size: 120%;
	}
	#recruit_message::after {
		width: 100%;
		height: 50px;
		border-radius: 50px 50px 0 0;
	}
	#recruit_message > header {
		width: 100%;
		margin: 0 auto 30px;
		grid-row-gap: 10px;
	}
	#recruit_message > header > em {
		font-size: 30px;
	}
	#all_wrap #recruit_message > header > h2 {
		font-size: 12px;
	}
	.recruit_message_wrap {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 15px;
	}
	#all_wrap .recruit_message_wrap > h2 {
		width: 100%;
		font-size: 20px;
		margin: 0 auto;
		text-align: center;
	}
	#all_wrap .recruit_message_wrap > figure {
		width: 50%;
		min-width: 50%;
		padding: 0;
		margin: 0 auto;
		border-radius: 50%;
	}
	.recruit_message_info {
		width: calc(100%);
		padding: 0;
	}
	#all_wrap .recruit_message_info > p {
		padding: 0;
		margin: 0 auto 15px;
	}
	#all_wrap .recruit_message_info > p.name {
		text-align: right;
	}
	#all_wrap .recruit_message_info > p.name strong {
		font-size: 1.3em;
		font-weight: 700;
	}
	#all_wrap .recruit_message_info > p.name strong img {
		width: auto;
		height: 40px;
	}
}

/*--------------------*/
/* 経営理念 */
/*--------------------*/
#recruit_philosophy {
	width: 100%;
	padding: 30px 0 120px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
	background: #fff;
	overflow: hidden;
}
#recruit_philosophy::before {
	content: 'PHILOSOPHY';
	display: block;
	width: 100%;
	height: 200px;
	font-family: var(--font-lato);
	font-size: 100px;
	line-height: 1;
	font-weight: 700;
	color: #f7f7f7;
	text-align: right;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
#recruit_philosophy > header {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#recruit_philosophy > header > em {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 8px;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 15px;
	line-height: 1;
	color: #aaa;
	font-style: normal;
}
#recruit_philosophy > header > em::before {
	content: '';
	display: block;
	width: 10px;
	height: 1px;
	background: #aaa;
}
#all_wrap #recruit_philosophy > header > h2 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 34px;
	line-height: 1.4em;
	color: var(--text);
	border: none;
	background: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#recruit_philosophy {
		width: 100%;
		padding: 20px 30px 50px;
	}
	#recruit_philosophy::before {
		width: 100%;
		height: 40px;
		font-size: 50px;
	}
	#recruit_philosophy > header {
		width: 100%;
		max-width: 100%;
		grid-row-gap: 10px;
	}
	#recruit_philosophy > header > em {
		column-gap: 8px;
		width: 100%;
		font-size: 12px;
	}
	#all_wrap #recruit_philosophy > header > h2 {
		font-size: 4.5vw;
	}
}

/*--------------------*/
/* ビジョン */
/*--------------------*/
#recruit_vision {
	width: 100%;
	padding: 120px 0 120px;
	margin: 0 auto 120px;
	border: 10px solid #fff;
	border-radius: 30px;
	position: relative;
	z-index: 0;
	background: #f7f7f7;
	overflow: hidden;
}
#recruit_vision::before {
	content: 'VISION';
	display: block;
	width: 100%;
	max-width: 1100px;
	height: 200px;
	font-family: var(--font-lato);
	font-size: 100px;
	line-height: 1;
	font-weight: 700;
	color: #e8e8e8;
	text-align: left;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
	z-index: -1;
}
.recruit_vision_wrap {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 100px;
	align-items: flex-start;
}
#all_wrap .recruit_vision_wrap > header {
	width: 350px;
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 34px;
	line-height: 1.4em;
	color: #fff;
	text-align: left;
	white-space: nowrap;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#all_wrap .recruit_vision_wrap > header > em {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 8px;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 15px;
	line-height: 1;
	color: #aaa;
	font-style: normal;
}
#all_wrap .recruit_vision_wrap > header > em::before {
	content: '';
	display: block;
	width: 10px;
	height: 1px;
	background: #aaa;
}
#all_wrap .recruit_vision_wrap > header > h2 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 34px;
	line-height: 1.4em;
	color: var(--text);
	border: none;
	background: none;
}
.recruit_vision_info {
	width: calc(100% - 100px - 350px);
	padding: 50px 0 0;
	margin: 0;
	position: relative;
}
#all_wrap .recruit_vision_info > h2 {
	padding: 0;
	margin: 0 auto 30px;
	border: none;
	background: none;
	position: relative;
	font-size: 20px;
	line-height: 1.4em;
}
#all_wrap .recruit_vision_info > p {
	padding: 0;
	margin: 0 auto 30px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .recruit_vision_info > p:last-of-type {
	margin-bottom: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#recruit_vision {
		width: 100%;
		padding: 50px 20px;
		margin: 0 auto 50px;
		border: 10px solid #fff;
		border-radius: 30px;
		position: relative;
		z-index: 0;
		background: #f7f7f7;
		overflow: hidden;
	}
	#recruit_vision::before {
		height: 40px;
		font-size: 50px;
		text-align: right;
	}
	.recruit_vision_wrap {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
	}
	#all_wrap .recruit_vision_wrap > header {
		width: 100%;
		font-size: 34px;
		grid-row-gap: 10px;
		margin: 0 auto;
	}
	#all_wrap .recruit_vision_wrap > header > em {
		column-gap: 8px;
		width: 100%;
		font-size: 12px;
	}
	#all_wrap .recruit_vision_wrap > header > h2 {
		font-size: 20px;
	}
	.recruit_vision_info {
		width: calc(100%);
		padding: 0;
		margin: 0;
	}
	#all_wrap .recruit_vision_info > h2 {
		padding: 0;
		margin: 0 auto 20px;
		font-size: 17px;
		line-height: 1.4em;
	}
	#all_wrap .recruit_vision_info > p {
		padding: 0;
		margin: 0 auto 15px;
	}
}

/*--------------------*/
/* 私たちについて */
/*--------------------*/
#recruit_about {
	width: 100%;
	padding: 120px 0;
	margin: 0 auto;
	position: relative;
	background: #f7f7f7;
}
#all_wrap .recruitHead {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 70px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#all_wrap #recruit_about .recruitHead {
	max-width: 1000px;
}
#all_wrap .recruitHead > em {
	color: var(--vorange);
	font-weight: 700;
	font-family: var(--font-lato);
	font-size: 55px;
	line-height: 1;
	font-style: normal;
	display: block;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
}
#all_wrap .recruitHead > h2 {
	font-weight: 700;
	color: var(--text);
	font-size: 18px;
	line-height: 1.5em;
	letter-spacing: -0.01em;
	white-space: nowrap;
	font-style: normal;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
}
#all_wrap .recruitHead > h2 small {
	font-size: 0.8em;
}
#all_wrap .recruitHead > p {
	padding: 0;
	margin: 50px 0 0 ;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}

.recruit_about_wrap {
	width: 100%;
	max-width: 1000px;
	min-width: 1000px;
	padding: 0;
	margin: 0 auto;
}
.recruit_about_left {
	width: 100%;
	padding: 0 0 50px;
	margin: 0 auto 50px;
	border-bottom: 1px solid #c8c8c8;
	position: relative;
}
.recruit_about_right {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 100px;
}
#all_wrap .recruit_about_left > p {
	padding: 0;
	margin: 0 auto;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*ボタンリスト*/
#all_wrap .recruit_about_btn {
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	column-gap: 15px;
}
#all_wrap .recruit_about_btn > li {
	width: fit-content;
	padding: 10px 30px;
	margin: 0;
	position: relative;
	border-radius: 40px;
	background: var(--orange);
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	transition: var(--ease);
}
#all_wrap .recruit_about_btn > li::after {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	min-width: 15px;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/icon_arrow_btm_w.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 100%;
}
#all_wrap .recruit_about_btn > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
#all_wrap .recruit_about_btn > li > h2 {
	font-weight: 700;
	color: #fff;
	font-size: 20px;
	line-height: 1;
	white-space: nowrap;
	font-style: normal;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	transition: var(--ease);
}
#all_wrap .recruit_about_btn > li:hover{
	opacity: 0.8;
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#recruit_about {
		width: 100%;
		padding: 50px 20px;
	}
	#all_wrap .recruitHead {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 30px;
		grid-row-gap: 10px;
	}
	#all_wrap .recruitHead > em {
		font-size: 30px;
	}
	#all_wrap .recruitHead > h2 {
		font-size: 17px;
	}
	#all_wrap .recruitHead > h2 small {
		font-size: 12px;
		position: relative;
	}
	#all_wrap .recruitHead > p {
		padding: 0;
		margin: 15px 0 0;
	}

	.recruit_about_wrap {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	.recruit_about_left {
		width: 100%;
		padding: 0 0 20px;
		margin: 0 auto 20px;
	}
	.recruit_about_right {
		width: 100%;
		grid-row-gap: 50px;
	}
	#all_wrap .recruit_about_left > p {
		padding: 0;
		margin: 0 auto;
	}
	/*ボタンリスト*/
	#all_wrap .recruit_about_btn {
		margin: 0 auto 15px;
		column-gap: 10px;
	}
	#all_wrap .recruit_about_btn > li {
		width: fit-content;
		padding: 7px 20px;
		border-radius: 30px;
	}
	#all_wrap .recruit_about_btn > li::after {
		width: 12px;
		height: 12px;
		min-width: 12px;
	}
	#all_wrap .recruit_about_btn > li > h2 {
		font-size: 15px;
	}
}

/*aboutBox*/
#all_wrap .aboutBox {
	width: 100%;
	padding: 50px;
	margin: 0 auto;
	background: #fff;
	border-radius: 10px;
	position: relative;
}
#all_wrap .aboutBox dt {
	width: 100%;
	padding: 0 0 15px;
	margin: 0 auto 30px;
	position: relative;
	background: none;
	border-bottom: 3px solid #ccc;
	display: flex;
	flex-direction: column;
	grid-row-gap: 6px;
}
#all_wrap .aboutBox dt::before {
	content: '';
	display: block;
	width: 100px;
	height: 3px;
	background: var(--vorange);
	position: absolute;
	bottom: -3px;
	left: 0;
}
#all_wrap .aboutBox dt > h2 {
	font-weight: 700;
	color: var(--text);
	font-size: 18px;
	line-height: 1.2em;
	white-space: nowrap;
	font-style: normal;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
}
#all_wrap .aboutBox dt > em {
	font-weight: 700;
	font-family: var(--font-lato);
	font-size: 40px;
	line-height: 1;
	color: var(--vorange);
	font-style: normal;
	display: inline-block;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .aboutBox dt > h2 small {
	display: inline-block;
	font-weight: 700;
	color: var(--text);
	font-size: 17px;
	line-height: 1em;
	white-space: nowrap;
	font-style: normal;
	padding: 0;
	margin: 0 0 0 10px;
	border: none;
	background: none;
	position: relative;
}
#all_wrap .aboutBox dd {
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	grid-row-gap: 30px;
}
#all_wrap .aboutBox dd h3 {
	font-weight: 700;
	color: var(--text);
	font-size: 22px;
	line-height: 1em;
	white-space: nowrap;
	font-style: normal;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
}
#all_wrap .aboutBox dd h3::before {
	content: '';
	display: block;
	width: 10px;
	height: 2px;
	background: #aaa;
}
#all_wrap .aboutBox dd > p {
	padding: 0;
	margin: 0 auto 50px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*紹介*/
.about_description {
	width: 100%;
	padding: 30px;
	margin: 0 auto;
	background: #fafafa;
	border-radius: 10px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#all_wrap .about_description > p {
	padding: 0;
	margin: 0 auto 10px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/* - スケジュール*/
#all_wrap .about_schedule {
	width: 100%;
	padding: 30px;
	margin: 0;
	background: #fafafa;
	border-radius: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 20px;
}
#all_wrap .schedule {
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
	margin: 0 auto;
	padding: 0;
	width: calc(100%);
	max-width: 500px;
}
#all_wrap .schedule > li {
	width: 100%;
	max-width: 500px;
	padding: 10px 0 10px 100px;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	grid-row-gap: 10px;
	position: relative;
	z-index: 0;
}
#all_wrap .schedule > li::after {
	content: '';
	display: block;
	width: 2px;
	height: 100%;
	position: absolute;
	bottom: -25px;
	left: 34px;
	background: var(--orange);
	z-index: -1;
}
#all_wrap .schedule > li:last-child::after {
	display: none;
}
#all_wrap .schedule > li > span {
	display: inline-block;
	width: 70px;
	padding: 5px 10px 7px;
	margin: 0;
	font-size: 17px;
	line-height: 1;
	font-weight: 700;
	text-align: center;
	color: #fff;
	background: var(--orange);
	border-radius: 30px;
	position: absolute;
	top: 5px;
	left: 0;
}
#all_wrap .schedule > li > h3 {
	font-weight: 700;
	color: var(--text);
	font-size: 17px;
	line-height: 1.4em;
	white-space: nowrap;
	font-style: normal;
	width: 100%;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
}
#all_wrap .schedule > li > h3::before,
#all_wrap .schedule > li > h3::after {
	display: none;
}
#all_wrap .schedule > li > p {
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 15px;
	line-height: 1.4em;
	color: var(--text);
}

/*スケジュール画像*/
#all_wrap .photos {
	width: 100%;
	min-width: 100%;
	padding: 0;
	margin: 10px 0 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	column-gap: 15px;
}
#all_wrap .photos > li {
	width: 120px;
	max-width: 120px;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
#all_wrap .photos > li > figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 50%;
}
#all_wrap .photos > li > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .photos > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .photos > li > span {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 12px;
}

/*先輩メッセージ*/
#all_wrap .aboutBox dd .about_message {
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 20px;
	width: 100%;
	padding: 30px;
	margin: 0;
	background: #fafafa;
	border-radius: 10px;
}
#all_wrap .aboutBox dd .about_message figure {
	width: 150px;
	height: auto;
	min-width: 150px;
	aspect-ratio: 1/1;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 50%;
}
#all_wrap .aboutBox dd .about_message figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .aboutBox dd .message_info {
	width: calc(100% - 20px - 150px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#all_wrap .aboutBox dd .message_info p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*aboutBox*/
	#all_wrap .aboutBox {
		width: 100%;
		padding: 20px;
	}
	#all_wrap .aboutBox dt {
		width: 100%;
		padding: 0 0 15px;
		margin: 0 auto 20px;
	}
	#all_wrap .aboutBox dt > em {
		font-size: 30px;
	}
	#all_wrap .aboutBox dt > h2 {
		font-size: 16px;
	}
	#all_wrap .aboutBox dt > h2 small {
		font-size: 12px;
	}
	#all_wrap .aboutBox dd {
		grid-row-gap: 20px;
	}
	#all_wrap .aboutBox dd h3 {
		font-size: 16px;
		line-height: 1.4em;
		font-weight: 700;
		width: 100%;
		padding: 0 0 10px;
		margin: 0;
		border-bottom: 1px solid #aaa;
	}
	#all_wrap .aboutBox dd h3::before {
		display: none;
	}
	#all_wrap .aboutBox dd > p {
		margin: 0 auto 30px;
	}
	/*紹介*/
	.about_description {
		width: 100%;
		padding: 20px;
		grid-row-gap: 10px;
	}
	/* - スケジュール*/
	#all_wrap .about_schedule {
		width: 100%;
		padding: 20px;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	#all_wrap .schedule {
		grid-row-gap: 10px;
		width: calc(100%);
		max-width: 100%;
	}
	#all_wrap .schedule > li {
		width: 100%;
		max-width: 100%;
		padding: 10px 0 10px 60px;
		margin: 0 auto;
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
		grid-row-gap: 5px;
		position: relative;
		z-index: 0;
	}
	#all_wrap .schedule > li::after {
		content: '';
		display: block;
		width: 2px;
		height: 100%;
		position: absolute;
		bottom: -25px;
		left: 24px;
		z-index: -1;
	}
	#all_wrap .schedule > li:last-child::after {
		display: none;
	}
	#all_wrap .schedule > li > span {
		display: inline-block;
		width: 50px;
		padding: 5px 10px 7px;
		font-size: 12px;
		border-radius: 20px;
		position: absolute;
		top: 5px;
		left: 0;
	}
	#all_wrap .schedule > li > h3 {
		font-size: 3.2vw;
		column-gap: 10px;
		padding: 0;
		margin: 0 auto 10px;
		border: none;
	}
	#all_wrap .schedule > li > h3::before,
	#all_wrap .schedule > li > h3::after {
		display: none;
	}
	#all_wrap .schedule > li > p {
		width: 100%;
		padding: 0;
		margin: 0;
		font-size: 12px;
		line-height: 1.4em;
		color: var(--text);
	}

	#all_wrap .photos > li {
		width: 80px;
		max-width: 80px;
	}
	
	/*先輩メッセージ*/
	#all_wrap .aboutBox dd .message {
		column-gap: 15px;
	}
	#all_wrap .aboutBox dd .message figure {
		width: 80px;
		height: auto;
		min-width: 80px;
	}
	#all_wrap .aboutBox dd .message_info {
		width: calc(100% - 15px - 80px);
	}
}

/*--------------------*/
/* 社員座談会 */
/*--------------------*/
#recruit_discussion {
	width: 100%;
	padding: 120px 0;
	margin: 0 auto;
	background-image: linear-gradient(to top, #f7f7f7 0%, #fff 100%);
}
#recruit_discussion .main {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 50px;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}
#recruit_discussion .main::before {
	content: '';
	display: block;
	padding-top: 400px;
}
#recruit_discussion .main::after {
	content: '近日公開予定';
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: rgba(0,0,0,0.7);
	font-size: 40px;
	line-height: 1;
	font-weight: 700;
	text-align: center;
	color: #fff;
}
#recruit_discussion .main img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap #recruit_discussion > h3 {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	border: none;
	background: none;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	color: var(--act);
}
#all_wrap #recruit_discussion > h3::before {
	content: '';
	display: block;
	width: 50px;
	height: 1px;
	background: var(--act);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#recruit_discussion {
		width: 100%;
		padding: 50px 20px;
	}
	#recruit_discussion .main {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		border-radius: 10px;
	}
	#recruit_discussion .main::before {
		padding-top: 200px;
	}
	#recruit_discussion .main::after {
		content: '近日公開予定';
		font-size: 20px;
	}
}


/*チーム*/
#all_wrap .teamList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap .teamList > li {
	width: calc((100% - 30px) / 2);
	padding: 25px;
	margin: 0;
	border: 1px solid #aaa;
	border-radius: 10px;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
#all_wrap .teamList > li > figure {
	width: 145px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 50%;
}
#all_wrap .teamList > li > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .teamList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .teamList > li .teamList_info {
	width: calc(100% - 145px - 20px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .teamList > li .teamList_info em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: left;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	color: var(--act);
	font-style: normal;
}
#all_wrap .teamList > li .teamList_info h3 {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 17px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 7px;
}
#all_wrap .teamList > li .teamList_info h3 span {
	display: inline-block;
	padding: 5px 10px;
	margin: 0;
	background: #aaa;
	font-size: 10px;
	line-height: 1;
	color: #fff;
	border-radius: 16px;
}
#all_wrap .teamList > li .teamList_info > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 15px;
}

/*ディスカッション*/
#all_wrap .discussionBox {
	width: 100%;
	max-width: 1200px;
	padding: 80px;
	margin: 0 auto;
	background: #f6f2ea;
	border-radius: 20px;
	position: relative;
}
#all_wrap .discussionBox > h2 {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	font-size: 30px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--act);
	text-align: left;
}
#all_wrap .discussionList {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 40px;
}
#all_wrap .discussionList > li {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	column-gap: 30px;
}
#all_wrap .discussionList > li > figure {
	width: 120px;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
#all_wrap .discussionList > li > figure h3 {
	width: 100%;
	padding: 0;
	margin: 0;
	text-align: center;
	font-size: 15px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
}
#all_wrap .discussionList > li > figure span {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 50%;
}
#all_wrap .discussionList > li > figure span::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .discussionList > li > figure span img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .discussionList > li .discussionList_info {
	padding: 20px 25px;
	margin: 0;
	background: #fff;
	border-radius: 10px;
	position: relative;
}
#all_wrap .discussionList > li .discussionList_info::before {
	content: '';
	display: block;
	width: 20px;
	height: 10px;
	background: #fff;
	clip-path: polygon(0 0, 100% 100%, 100% 0);
	position: absolute;
	top: 40px;
	left: -19px;
}
#all_wrap .discussionList > li .discussionList_info p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 15px;
}
#all_wrap .discussionBox .discussion_image {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .discussionBox .discussion_image img {
	width: 100%;
	height: auto;
	border-radius: 20px;
}

/*--------------------*/
/* スタッフ紹介 */
/*--------------------*/
#recruit_member {
	width: 100%;
	padding: 120px 0;
	margin: 0 auto;
	position: relative;
	background: #fff;
}
#all_wrap #recruit_member .recruitHead > h2 {
	font-size: 25px;
}
#all_wrap #recruit_member .recruitHead > p {
	margin-top: 20px;
}
#all_wrap .memberList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 40px;
	grid-row-gap: 60px;
}
#all_wrap .memberList > li {
	width: calc((100% - 120px) / 4);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#all_wrap .memberList > li figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	box-shadow: 0 0 0 rgba(0,0,0,0.15);
	transition: var(--ease);
}
#all_wrap .memberList > li figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .memberList > li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
	transition: var(--ease);
}
#all_wrap .memberList > li figure img:first-of-type {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
	z-index: 2;
}
#all_wrap .memberList > li:hover figure img:first-of-type {
	opacity: 0;
	visibility: hidden;
}
#all_wrap .memberList > li:hover figure {
	box-shadow: 0 7px 10px rgba(0,0,0,0.2);
	transition: var(--ease);
}
#all_wrap .memberList > li h3 {
	font-weight: 700;
	color: var(--text);
	font-size: 18px;
	line-height: 1em;
	font-style: normal;
	padding: 0;
	margin: 0 0 10px;
	border: none;
	background: none;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 15px;
	text-align: center;
}
#all_wrap .memberList > li h3 span {
	display: inline-block;
	padding: 5px 10px;
	margin: 0;
	background: none;
	border: 1px solid #aaa;
	font-size: 11px;
	line-height: 1;
	text-align: center;
	color: var(--text);
	border-radius: 25px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#recruit_member {
		width: 100%;
		padding: 50px 20px;
	}
	#all_wrap #recruit_member .recruitHead > h2 {
		font-size: 18px;
	}
	#all_wrap .memberList {
		width: 100%;
		max-width: 100%;
		column-gap: 20px;
		grid-row-gap: 30px;
	}
	#all_wrap .memberList > li {
		width: calc((100% - 20px) / 2);
		grid-row-gap: 10px;
	}
	#all_wrap .memberList > li h3 {
		font-size: 17px;
		margin: 0;
		column-gap: 15px;
	}
	#all_wrap .memberList > li h3 span {
		display: inline-block;
		padding: 4px 10px 5px;
	}
}

/*--------------------*/
/* 数字で見る大栄電通 */
/*--------------------*/
#recruit_benefits {
	width: 100%;
	padding: 120px 0;
	margin: 0 auto;
	position: relative;
	background: #f7f7f7;
}
#all_wrap .numsList {
	width: 100%;
	max-width: 1200px;
	padding: 70px;
	margin: 0 auto 100px;
	list-style: none;
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 30px;
	background: #fff;
	border-radius: 10px;
}
#all_wrap .numsList > li {
	width: calc((100% - 60px) / 3);
	padding: 30px;
	margin: 0;
	position: relative;
	background: #fff9e8;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#all_wrap .numsList > li.wide {
	width: calc((100% - 30px) / 2);
	padding: 30px;
}
#all_wrap .numsList > li h3 {
	width: fit-content;
	padding: 10px 20px;
	margin: 0 auto;
	border: none;
	background: var(--orange);
	font-size: 15px;
	line-height: 1;
	color: #fff;
	text-align: center;
	border-radius: 35px;
}
#all_wrap .numsList > li h3::before,
#all_wrap .numsList > li h3::after {
	display: none;
}
#all_wrap .numsList > li.wide h3 {
	position: absolute;
	top: 30px;
	left: 30px;
}
#all_wrap .numsList > li img {
	width: 100%;
	height: auto;
}

#all_wrap .benefitsBox {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
}
#all_wrap .benefits_header {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 70px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 70px;
}
#all_wrap .benefits_header > .recruitHead {
	width: calc(100% - 70px - 500px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .benefits_header > figure {
	width: 500px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .benefits_header > figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
#all_wrap .benefits_header > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .benefitsList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	background: none;
	list-style: none;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 50px;
}
#all_wrap .benefitsList > li {
	width: calc((100% - 100px) / 3);
	padding: 35px 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 20px;
	border-bottom: 1px solid #ccc;
	transition: var(--ease);
}
#all_wrap .benefitsList > li:nth-child(1),
#all_wrap .benefitsList > li:nth-child(2),
#all_wrap .benefitsList > li:nth-child(3){
	border-top: 1px solid #ccc;
}
#all_wrap .benefitsList > li figure {
	width: 90px;
	min-width: 90px;
	height: 90px;
	aspect-ratio: 1/1;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}
#all_wrap .benefitsList > li figure img {
	width: 100%;
	height: auto;
}
#all_wrap .benefitsList_info {
	width: calc(100% - 20px - 90px);
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .benefitsList_info h4 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-weight: 700;
	color: var(--text);
	font-size: 18px;
	line-height: 1.2em;
	text-align: left;
	transition: var(--ease);
}
#all_wrap .benefitsList_info p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 15px;
	line-height: 1.4em;
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#recruit_benefits {
		width: 100%;
		padding: 50px 20px;
	}
	#all_wrap .numsList {
		width: 100%;
		max-width: 100%;
		padding: 10px;
		margin: 0 auto 50px;
		gap: 10px;
	}
	#all_wrap .numsList > li {
		width: calc((100% - 10px) / 2);
		padding: 20px;
	}
	#all_wrap .numsList > li.wide {
		width: 100%;
		padding: 20px;
	}
	#all_wrap .numsList > li h3 {
		width: fit-content;
		padding: 7px 15px;
		font-size: 12px;
	}
	#all_wrap .numsList > li.wide h3 {
		position: absolute;
		top: 20px;
		left: 20px;
	}

	#all_wrap .benefitsBox {
		width: 100%;
		max-width: 100%;
	}
	#all_wrap .benefits_header {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto 30px;
		column-gap: 20px;
	}
	#all_wrap .benefits_header > .recruitHead {
		width: calc(100%);
	}
	#all_wrap .benefitsList {
		width: 100%;
		max-width: 100%;
		column-gap: 10px;
	}
	#all_wrap .benefitsList > li {
		width: calc((100% - 10px) / 2);
		padding: 10px 0;
		column-gap: 10px;
	}
	#all_wrap .benefitsList > li:nth-child(1),
	#all_wrap .benefitsList > li:nth-child(2){
		border-top: 1px solid #ccc;
	}
	#all_wrap .benefitsList > li:nth-child(3){
		border-top: none;
	}
	#all_wrap .benefitsList > li figure {
		width: 40px;
		min-width: 40px;
		height: 40px;
	}
	#all_wrap .benefitsList_info {
		width: calc(100% - 10px - 40px);
		grid-row-gap: 5px;
	}
	#all_wrap .benefitsList_info h4 {
		font-size: 12px;
		
	}
	#all_wrap .benefitsList_info p {
		width: 100%;
		font-size: 11px;
	}
}

/*--------------------*/
/* 採用情報 メニュー */
/*--------------------*/
#recruit_nav {
	width: 100%;
	max-width: 1200px;
	padding: 120px 100px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
	background-image: linear-gradient(to right, #ffd078 0%, #fcb04e 100%);
	display: flex;
	justify-content: space-between;
	column-gap: 100px;
}
#recruit_nav > header {
	width: calc(100% - 550px);
	padding: 0;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
	align-items: flex-start;
}
#recruit_nav > header > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-family: var(--font-lato);
	font-size: 17px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	font-style: normal;
}
#all_wrap #recruit_nav > header > h2 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 45px;
	line-height: 1;
	color: #fff;
	border: none;
	background: none;
}
#all_wrap #recruit_nav > header > p {
	padding: 0;
	margin: 40px 0 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	color: #fff;
}
#all_wrap .recruit_nav_list {
	width: fit-content;
	max-width: 550px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
}
#all_wrap .recruit_nav_list > li {
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .recruit_nav_list > li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 30px;
	width: 100%;
	padding: 25px 30px;
	margin: 0 auto;
	position: relative;
	background: #fff;
	border-radius: 10px;
	font-size: 18px;
	line-height: 1.2em;
	font-weight: 600;
	color: var(--text);
	transition: var(--ease);
	white-space: nowrap;
}
#all_wrap .recruit_nav_list > li a:hover {
	opacity: 0.8;
	transition: var(--ease);
}
#all_wrap .recruit_nav_list > li a::after {
	content: '';
	display: block;
	width: 30px;
	min-width: 30px;
	height: 30px;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/icon_arrow_btm_w.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 10px;
	background-color: var(--orange);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#recruit_nav {
		width: 100%;
		max-width: 100%;
		padding: 50px 20px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	#recruit_nav > header {
		width: calc(100%);
		grid-row-gap: 10px;
	}
	#recruit_nav > header > em {
		font-size: 12px;
	}
	#all_wrap #recruit_nav > header > h2 {
		font-size: 20px;
	}
	#all_wrap #recruit_nav > header > p {
		padding: 0;
		margin: 10px 0 0;
	}
	#all_wrap .recruit_nav_list {
		width: 100%;
		max-width: 100%;
		grid-row-gap: 15px;
	}
	#all_wrap .recruit_nav_list > li {
		width: 100%;
	}
	#all_wrap .recruit_nav_list > li a {
		column-gap: 15px;
		width: 100%;
		padding: 15px 20px;
		font-size: 16px;
	}
}

/*--------------------*/
/* 採用情報 */
/*--------------------*/
#recruit_description {
	width: 100%;
	padding: 120px 0;
	margin: 0 auto;
	position: relative;
	background: #fafafa;
}
#recruit_description > header em,
#recruit_description > header h2 {
	text-align: center;
}
#all_wrap .recruit_data {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
	scroll-margin-top: 160px;
}
#all_wrap .recruit_data > h3 {
	font-weight: 700;
	color: var(--text);
	font-size: 30px;
	line-height: 1.2em;
	white-space: nowrap;
	font-style: normal;
	padding: 0 0 15px;
	margin: 0 auto 30px;
	border-bottom: 3px solid #ccc;
	background: none;
	position: relative;
}
#all_wrap .recruit_data > h3::before {
	content: '';
	display: block;
	width: 100px;
	height: 3px;
	background: var(--vorange);
	position: absolute;
	bottom: -3px;
	left: 0;
}

#all_wrap .recruitTable {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border-top: 1px solid rgb(234, 232, 228);
	table-layout: auto;
}
#all_wrap .recruitTable td.column-1 {
	white-space: nowrap;
	font-weight: 600;
}
#all_wrap .recruitTable td {
	width: auto;
	padding: 30px 30px;
	margin: 0;
	background: none;
	border-bottom: 1px solid rgb(234, 232, 228);
	line-height: 2;
	vertical-align: top;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#recruit_description {
		width: 100%;
		padding: 50px 20px;
	}
	#all_wrap .recruit_data {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 30px;
		scroll-margin-top: 70px;
	}
	#all_wrap .recruit_data:last-of-type {
		margin-bottom: 0;
	}
	#all_wrap .recruit_data > h3 {
		font-size: 18px;
		padding: 0 0 10px;
		margin: 0 auto 15px;
		white-space: unset;
		letter-spacing: -0.01em;
	}

	#all_wrap .recruitTable {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		border-top: 1px solid rgb(234, 232, 228);
		table-layout: auto;
	}
	#all_wrap .recruitTable td.column-1 {
		white-space: nowrap;
		font-weight: 600;
		background: #fafafa;
	}
	#all_wrap .recruitTable td {
		width: auto;
		padding: 10px 20px;
		margin: 0;
		background: none;
		border-bottom: 1px solid rgb(234, 232, 228);
		line-height: 2;
		vertical-align: top;
	}
}

/*--------------------*/
/* エントリー */
/*--------------------*/
#recruit_entry {
	width: 100%;
	padding: 0 0 120px;
	margin: 0 auto;
	position: relative;
	background: #f9f9f9;
}
#recruit_entry > header {
	width: 100%;
	padding: 120px 0 220px;
	margin: 0 auto;
	position: relative;
	background: linear-gradient(to right, #ffefd1 0%, #ffd078 80%, #ffd078 100%);
	z-index: 0;
}
#recruit_entry > header::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
		#fbd3a1;
	opacity: 0.2;
	z-index: -2;
}
#recruit_entry > header::before {
	content: '';
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 400 / 60;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/wave_gray.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
#recruit_entry > header .recruit_entry_head_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap #recruit_entry > header em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	position: relative;
	font-family: var(--font-lato);
	font-size: 20px;
	line-height: 1;
	color: var(--vorange);
	font-style: normal;
	text-align: left;
}
#all_wrap #recruit_entry > header h2 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	font-size: 36px;
	line-height: 1.4em;
	color: var(--text);
	font-style: normal;
	text-align: left;
}
#all_wrap #recruit_entry > header p {
	padding: 0;
	margin: 0;
	text-align: left;
	color: var(--text);
}
#all_wrap #recruit_entry > header a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	padding: 20px 80px;
	margin: 0;
	background: var(--orange);
	border-radius: 60px;
	font-size: 17px;
	line-height: 1;
	font-weight: 600;
	color: #fff;
	text-align: center;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	transition: var(--ease);
}
#all_wrap #recruit_entry > header a::before {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/icon_arrow_btm_w.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0,-50%) rotate(-90deg);
}
#all_wrap #recruit_entry > header a:hover {
	opacity: 0.8;
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#recruit_entry {
		width: 100%;
		padding: 0;
	}
	#recruit_entry > header {
		width: 100%;
		padding: 50px 20px 100px;
	}
	#recruit_entry > header::before {
		width: 100%;
	}
	#recruit_entry > header .recruit_entry_head_wrap {
		width: 100%;
		max-width: 100%;
	}
	#all_wrap #recruit_entry > header em {
		margin: 0 auto 10px;
		font-size: 16px;
	}
	#all_wrap #recruit_entry > header h2 {
		margin: 0 auto 15px;
		position: relative;
		font-size: 20px;
	}
	#all_wrap #recruit_entry > header p {
		margin: 0 auto 20px;
	}
	#all_wrap #recruit_entry > header a {
		padding: 10px 40px 10px 30px;
		border-radius: 60px;
		font-size: 15px;
		top: unset;
		right: unset;
		transform: unset;
		transition: var(--ease);
	}
	#all_wrap #recruit_entry > header a::before {
		content: '';
		display: block;
		width: 10px;
		height: 10px;
		top: 50%;
		right: 15px;
	}
}

/*フォーム*/
#entry_form {
	width: 100%;
	max-width: 950px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap #entry_form .recruitHead {
	justify-content: center;
}
#entry_form .recruitHead em,
#all_wrap #entry_form .recruitHead h2 {
	text-align: center;
}
#entry_form .entryform {
	padding: 80px;
	margin: 0 auto;
	background: #fff;
}
#all_wrap #entry_form .contactform {
	padding: 0;
	border: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*フォーム*/
	#entry_form {
		width: 100%;
		max-width: 100%;
		padding: 20px 20px 0;
	}
	#all_wrap #entry_form .recruitHead {
		justify-content: center;
	}
	#entry_form .recruitHead em,
	#all_wrap #entry_form .recruitHead h2 {
		text-align: center;
	}
	#entry_form .entryform {
		padding: 20px;
		margin: 0 auto;
		background: #fff;
	}
	#all_wrap #entry_form .contactform {
		padding: 0;
		border: none;
	}
	#all_wrap .contactform > li.top h3 {
		top: unset;
	}

}

/************************************************************/
/*　社内見学
/************************************************************/
#page-office-tour {
	padding-top: 130px;
}
/*--------------------*/
/* メインビジュアル */
/*--------------------*/
#tour_mv {
	width: 100%;
	height: auto;
	padding: 30px;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/tour_mv.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: 0;
}
#tour_mv > header {
	width: fit-content;
	padding: 70px;
	margin: 0 auto;
	position: relative;
	background: rgba(0,0,0,0.5);
	z-index: 0;
	text-align: center;
}
#tour_mv > header::before {
	content: '';
	display: block;
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	background: none;
	border: 1px solid #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -1;
}
#all_wrap #tour_mv h1 {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	border: none;
	background: none;
	font-size: 40px;
	line-height: 1.4em;
	font-weight: 700;
	color: #fff;
	text-align: center;
}
#all_wrap #tour_mv em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	font-family: var(--font-en);
	font-size: 20px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	font-style: normal;
	text-align: center;
	opacity: 0.5;
}
#all_wrap #tour_mv p {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	text-align: center;
	font-size: 18px;
	line-height: 1.7em;
	font-weight: 500;
	color: #fff;
}
#all_wrap #tour_mv a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	padding: 20px 50px;
	margin: 0 auto;
	position: relative;
	background: var(--main);
	border-radius: 60px;
	font-size: 17px;
	line-height: 1;
	font-weight: 600;
	color: #fff;
	text-align: center;
	transition: var(--ease);
}
#all_wrap #tour_mv a:hover {
	background: var(--orange);
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#page-office-tour {
		padding-top: 0;
	}
	#all_wrap #page-office-tour.l-wrapper-full .l-main {
		padding: 0;
	}
	#tour_mv {
		width: 100%;
		padding: 20px;
		background-image: url('https://test-daiei.coresv.com/wp-content/uploads/mv_02_sp.webp');
		z-index: 0;
	}
	#tour_mv > header {
		width: 100%;
		padding: 30px 20px;
	}
	#tour_mv > header::before {
		width: calc(100% - 20px);
		height: calc(100% - 20px);
	}
	#all_wrap #tour_mv h1 {
		margin: 0 auto 10px;
		font-size: 4.5vw;
	}
	#all_wrap #tour_mv em {
		display: block;
		font-size: 12px;
		margin: 0 auto 15px;
	}
	#all_wrap #tour_mv p {
		width: 100%;
		font-size: 12px;
		margin: 0 auto 15px;
	}
	#all_wrap #tour_mv a {
		width: fit-content;
		padding: 12px 40px;
		border-radius: 50px;
		font-size: 15px;
	}
}


/*--------------------*/
/*ループスライド*/
/*--------------------*/
.imageLoop {
	width: 100%;
	overflow: hidden;
	position: relative;
}
#all_wrap .imageLoop ul {
	display: flex;
	gap: 0;
	padding: 0;
	margin: 0;
	list-style: none;
	animation: loop 80s linear infinite;
	width: max-content;
}
#all_wrap .imageLoop ul li {
	flex: 0 0 auto;
}
#all_wrap .imageLoop ul li img {
	width: auto;
	height: 300px; /* 必要なら変更してOK（比率は4:3のまま） */
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
	pointer-events: none;
}
@keyframes loop {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}
#all_wrap .imageLoop ul::after {
	content: "";
	display: flex;
}
#all_wrap .imageLoop ul::after {
	content: attr(data-duplicate);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .imageLoop ul li img {
		height: 150px;
	}
}

/*--------------------*/
/*オフィス*/
/*--------------------*/
#all_wrap .officeBox {
	width: 100%;
	max-width: 950px;
	padding: 120px 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 40px;
	z-index: 0;
}
#all_wrap .officeBox::before {
	content: '';
	display: block;
	width: 100vw;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
	z-index: -1;
}
#all_wrap .officeBox.gray::before {
	background: #f3f3f3;
}
#all_wrap .officeBox dt {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: block;
	font-family: var(--font-en);
	font-size: 40px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	font-style: normal;
	text-align: center;
}
#all_wrap .officeBox dd {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .officeBox dd > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .officeBox dd > figure::before {
	content: '';
	display: block;
	padding-top: 300px;
}
#all_wrap .officeBox dd > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .officeBox_info {
	padding: 30px;
	margin: 0 auto;
	position: relative;
}
#all_wrap .officeBox_info h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	border: none;
	background: none;
	font-size: 30px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
}
#all_wrap .officeBox_info p {
	padding: 0;
	margin: 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .officeBox {
		width: 100%;
		max-width: 100%;
		padding: 50px 0;
		grid-row-gap: 20px;
	}
	#all_wrap .officeBox dt {
		font-size: 6vw;
	}
	#all_wrap .officeBox dd > figure::before {
		content: '';
		display: block;
		padding-top: 150px;
	}
	#all_wrap .officeBox_info {
		padding: 20px 20px 0;
	}
	#all_wrap .officeBox_info h2 {
		margin: 0 auto 10px;
		font-size: 20px;
	}
}

/*--------------------*/
/* 特徴 */
/*--------------------*/
#tour_feature {
	width: 100%;
	padding: 120px 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .tourHead {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .tourHead h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: block;
	font-family: var(--font-en);
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	font-style: normal;
	text-align: center;
}
#all_wrap .tourHead em {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: block;
	font-family: var(--font-en);
	font-size: 40px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	font-style: normal;
	text-align: center;
}
#all_wrap .tourHead p {
	text-align: center;
	margin-top: 20px;
}
/*リスト*/
#all_wrap .tourFeatureList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 70px;
}
#all_wrap .tourFeatureList > li {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#all_wrap .tourFeatureList > li figure {
	width: 53%;
	padding: 0;
	margin: 0;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#all_wrap .tourFeatureList > li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .tourFeatureList_info {
	width: 100%;
	max-width: 1000px;
	padding: 100px 0 100px 470px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
#all_wrap .tourFeatureList_info > h3 {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	padding: 12px 20px 13px;
	margin: 0 0 20px;
	background: var(--text);
	font-size: 25px;
	line-height: 1;
	font-weight: 600;
	color: #fff;
}
#all_wrap .tourFeatureList_info > p {
	padding: 0;
	margin: 0;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	text-shadow:
		-1px -1px 0 rgba(255,255,255,0.8),
		1px -1px 0 rgba(255,255,255,0.8),
		-1px  1px 0 rgba(255,255,255,0.8),
		1px  1px 0 rgba(255,255,255,0.8),
		0 0 3px rgba(255,255,255,0.6);

}
/*even*/
#all_wrap .tourFeatureList > li:nth-child(even) figure {
	right: 0;
	left: unset;
}
#all_wrap .tourFeatureList > li:nth-child(even) .tourFeatureList_info {
	padding: 100px 470px 100px 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#tour_feature {
		width: 100%;
		padding: 50px 0;
	}
	#all_wrap .tourHead {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 20px;
	}
	#all_wrap .tourHead h2 {
		font-size: 12px;
	}
	#all_wrap .tourHead em {
		font-size: 6vw;
	}
	#all_wrap .tourHead p {
		text-align: center;
		margin-top: 20px;
	}
	/*リスト*/
	#all_wrap .tourFeatureList {
		width: 100%;
		grid-row-gap: 50px;
	}
	#all_wrap .tourFeatureList > li {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		z-index: 0;
		display: flex;
		flex-direction: column;
		grid-row-gap: 0;
	}
	#all_wrap .tourFeatureList > li figure {
		width: 100%;
		height: auto;
		height: unset;
		position: relative;
		overflow: hidden;
		text-align: center;
		top: unset;
		left: unset;
		z-index: -1;
	}
	#all_wrap .tourFeatureList > li figure::before {
		content: '';
		display: block;
		padding-top: 56.25%;
	}
	#all_wrap .tourFeatureList_info {
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
		order: 2;
	}
	#all_wrap .tourFeatureList_info > h3 {
		padding: 10px 15px 11px;
		margin: 0;
		font-size: 17px;
		position: relative;
		top: -20px;
	}
	/*even*/
	#all_wrap .tourFeatureList > li:nth-child(even) figure {
		right: unset;
		left: unset;
	}
	#all_wrap .tourFeatureList > li:nth-child(even) .tourFeatureList_info {
		padding: 0 20px;
	}
}

/*--------------------*/
/* こういぅ企業様に来てほしい */
/*--------------------*/
#tour_hope {
	width: 100%;
	padding: 120px 0;
	margin: 0 auto;
	position: relative;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/tour_hope_bg.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 0;
}
#tour_hope::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#all_wrap #tour_hope > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#all_wrap #tour_hope > header > em {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: block;
	font-family: var(--font-en);
	font-size: 40px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	font-style: normal;
	text-align: center;
}
#all_wrap #tour_hope > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: block;
	font-family: var(--font-en);
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	font-style: normal;
	text-align: center;
}
/*リスト*/
#all_wrap #tour_hope > ul {
	width: fit-content;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#all_wrap #tour_hope > ul > li {
	width: auto;
	padding: 0 0 0 30px;
	margin: 0;
	display: block;
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	position: relative;
}
#all_wrap #tour_hope > ul > li::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-image: url('https://test-daiei.coresv.com/wp-content/uploads/icon_check.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#tour_hope {
		width: 100%;
		padding: 50px 20px;
		background-image: url('https://test-daiei.coresv.com/wp-content/uploads/mv_02_sp.webp');
	}
	#all_wrap #tour_hope > header {
		width: 100%;
		margin: 0 auto 20px;
		grid-row-gap: 10px;
	}
	#all_wrap #tour_hope > header > em {
		font-size: 6vw;
		line-height: 1.4em;
	}
	#all_wrap #tour_hope > header > h2 {
		font-size: 17px;
	}
	/*リスト*/
	#all_wrap #tour_hope > ul {
		width: fit-content;
		grid-row-gap: 15px;
	}
	#all_wrap #tour_hope > ul > li {
		width: auto;
		padding: 0 0 0 20px;
		font-size: 16px;
		line-height: 1.2em;
	}
	#all_wrap #tour_hope > ul > li::before {
		width: 15px;
		height: 15px;
	}
}

/*--------------------*/
/* フォーム */
/*--------------------*/
#tour_form {
	padding: 120px 0 0;
}
#all_wrap #tour_form .contactform > li h3 {
	font-size: 17px;
	line-height: 1.2em;
	font-weight: 600;
	color: var(--text);
	width: 300px;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	white-space: nowrap;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap #tour_form {
		width: 100%;
		padding: 30px;
		margin: 0 auto;
	}
	#all_wrap #tour_form .contactform {
		padding: 20px 0 0;
		margin: 0;
	}
	#all_wrap #tour_form .contactform > li h3 {
		font-size: 15px;
		width: 100%;
	}
}

/*--------------------*/
/*アクセス*/
/*--------------------*/
#tour_access {
	width: 100%;
	padding: 120px 0;
	margin: 0 auto;
	position: relative;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#tour_access {
		width: 100%;
		padding: 50px 20px;
	}
}

/*--------------------*/
/*リキャプチャ削除*/
/*--------------------*/

.grecaptcha-badge {
    visibility: hidden;
}