@charset "utf-8";
/* --------------------------------------------------------------------------------
	Reset
-------------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	font-family: "Zen Kaku Gothic New", sans-serif;
	text-align: justify;
}
html {
	scroll-behavior: smooth;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
input, textarea {
	font-weight: normal;
	font-size: 100%;
}
ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
input, textarea, select {}
a {
	overflow: hidden;
	outline: none;
	text-decoration: none;
	color: #212020;
}
a:hover, a:active {
	text-decoration: none;
	/*opacity: 0.8;*/
}
input[type="text"]:focus {
	outline: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	border: none;
	-ms-interpolation-mode: bicubic;
	/*vertical-align: bottom;*/
	max-width: 100%;
	height: auto;
}
a img {
	border: none;
	transition: opacity 0.3s ease;
}
a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70); /* ie7 */
	-ms-filter: "alpha(opacity=70)"; /* ie8 */
}
/* --------------------------------------------------------------------------------
	タグ
-------------------------------------------------------------------------------- */
html, body {
	height: 100%;
	margin: 0 !important;
	font-feature-settings: "palt";
	color: #222;
}
body {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
}
/* --------------------------------------------------------------------------------
	モーション
-------------------------------------------------------------------------------- */
/* =========================================
   A) Section Reveal（フェードアップ）
========================================= */
.js-reveal {
	opacity: 0;
	transform: translate3d(0, 24px, 0);
	transition:
		opacity .8s ease, transform .8s ease;
	will-change: opacity, transform;
}
.js-reveal.is-inview {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}
/* 任意：遅延 */
.js-reveal[data-delay="1"] {
	transition-delay: .08s;
}
.js-reveal[data-delay="2"] {
	transition-delay: .16s;
}
.js-reveal[data-delay="3"] {
	transition-delay: .24s;
}
.js-reveal[data-delay="4"] {
	transition-delay: .32s;
}
/* =========================================
   B) Text Reveal（要素そのものをマスク）
   .js-reveal の中の h2/h3/h4/p に JS で .js-text-reveal を付ける
========================================= */
/* 初期：下側が隠れていて、少し下にいる */
.js-reveal .js-text-reveal {
	opacity: 0;
	transform: translate3d(0, 14px, 0);
	clip-path: inset(0 0 100% 0); /* 下側を隠す（マスク） */
	transition:
		clip-path .9s cubic-bezier(.22, .61, .36, 1), opacity .6s ease, transform .9s cubic-bezier(.22, .61, .36, 1);
	will-change: clip-path, opacity, transform;
}
/* 親がinviewになったら表示 */
.js-reveal.is-inview .js-text-reveal {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	clip-path: inset(0 0 0 0);
}
/* 順番ディレイ（JSが data-td を付ける） */
.js-reveal .js-text-reveal[data-td="1"] {
	transition-delay: .08s;
}
.js-reveal .js-text-reveal[data-td="2"] {
	transition-delay: .16s;
}
.js-reveal .js-text-reveal[data-td="3"] {
	transition-delay: .24s;
}
.js-reveal .js-text-reveal[data-td="4"] {
	transition-delay: .32s;
}
/* アクセシビリティ */
@media (prefers-reduced-motion: reduce) {
	.js-reveal {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
	.js-reveal .js-text-reveal {
		opacity: 1 !important;
		transform: none !important;
		clip-path: none !important;
		transition: none !important;
	}
}
/* --------------------------------------------------------------------------------
	共通クラス
-------------------------------------------------------------------------------- */
.device-pc {
	display: none !important;
}
.device-sp {
	display: block !important;
}
.inner {
	padding: 0 20px;
}
.link-btn {}
.link-btn a {
	font-size: 18px;
	font-weight: 500;
	padding: 0 0 0 40px;
	position: relative;
}
.link-btn a::before {
	content: "";
	position: absolute;
	left: 6px;
	top: 55%;
	transform: translateY(-50%) rotate(45deg);
	width: 7px;
	height: 7px;
	border-top: 2px solid #fff !important;
	border-right: 2px solid #fff !important;
	z-index: 1;
}
.link-btn a::after {
	content: "";
	position: absolute;
	left: 0px;
	top: 55%;
	transform: translateY(-50%);
	width: 23px;
	height: 23px;
	background: #EA3525;
	border-radius: 50%;
}
h2.ttl {
	font-size: 35px;
	font-weight: bold;
	line-height: 1.2;
}
h2.ttl span {
	display: block;
	font-size: 16px;
	font-weight: bold;
}
.breadcrumbs {
	padding: 60px 20px 0;
	margin: 15px 0 35px;
	font-size: 12px;
}
/* --------------------------------------------------------------------------------
	container
-------------------------------------------------------------------------------- */
#container {}
.page-ttl p {
	font-size: 35px;
	color: rgba(25, 25, 25, 0.1);
	text-align: center;
	font-family: "Roboto", "Noto Sans JP", sans-serif;
	font-weight: 400 !important;
}
.page-ttl h2 {
	font-size: 15px;
	color: #0F0F0F;
	text-align: center;
	font-weight: bold;
}
/* --------------------------------------------------------------------------------
	header
-------------------------------------------------------------------------------- */
#header {
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 9999;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.5s ease, visibility 0.5s ease;
	min-height: auto;
	padding: 0;
	background: #fff;
}
#header .header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	padding: 5px 15px;
	border-bottom: 1px solid #707070;
}
#header .header-logo {
	width: 140px;
	flex-shrink: 0;
}
/* --- ハンバーガーボタン --- */
.humburger-btn {
	position: absolute;
	right: 15px;
	top: 15px;
	width: 30px;
	height: 30px;
	background: #222222;
	display: flex;
	justify-content: center;
	flex-direction: column;
	cursor: pointer;
	transition: background 0.3s;
	z-index: 1100;
	padding: 0 6px;
}
.humburger-btn span {
	display: block;
	width: 18px;
	height: 1px;
	background: #fff;
	margin: 1.5px 0;
	transition: all 0.3s ease;
}
.humburger-btn.active {
	background: #fff;
}
.humburger-btn.active span {
	background: #222222;
}
.humburger-btn span:nth-child(3) {
	width: 12px;
}
/* 開いた時の × 変形 */
.humburger-btn.active span:nth-child(1) {
	transform: translateY(4px) rotate(45deg);
}
.humburger-btn.active span:nth-child(2) {
	opacity: 0;
}
.humburger-btn.active span:nth-child(3) {
	width: 18px;
	transform: translateY(-4.5px) rotate(-45deg);
}
/* --- メニュー --- */
.humburger-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	overflow: hidden;
	background: #222222;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	transition: height 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
	z-index: 1000;
	overflow-y: auto; /* ← 中身をスクロール */
	-webkit-overflow-scrolling: touch; /* iOS慣性スクロール */
	overscroll-behavior: contain; /* 画面外へのバウンス防止 */
}
.humburger-menu.open {
	height: 100vh;
}
.humburger-menu.open {
	transform: translateY(0);
}
.humburger-inner {
	padding: 30px 35px 40px;
}
.humburger-logo {
	padding: 15px 15px 10px;
}
.menu-open #header .humburger-logo {
	border-bottom: 1px solid #fff;
}
/* --- 背景をスクロールさせない制御 --- */
body.menu-open {
	overflow: hidden;
}
#header .header-nav {
	margin: 0 0 30px;
}

#header .humburger-inner .col h3 a{
	display: block;
	margin: 0;
	padding: 18px 40px 18px 10px;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	cursor: pointer;
}

#header .humburger-inner .f-info-inner{
	
	margin: 0 0 40px;
	
}

#header .humburger-inner .f-info-inner p{
	display: flex;
	flex-direction: column;
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	
}

#header .humburger-inner .f-info-inner p a{
	
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	margin: 0 0 15px;
	
}

#header .humburger-inner .f-sns ul{
	display: flex;
	gap:15px;
	
}

#header .humburger-inner .f-sns ul img{
	height: 30px;
	object-fit: contain;
	
}






/* --------------------------------------------------------------------------------
	header(recruit)

-------------------------------------------------------------------------------- */
#header.recruit-header{
	background: #222;
}


#header.recruit-header .h-logo {
	display: flex;
	align-items: center;
	gap: 30px;
}
#header.recruit-header .h-logo h2 {
	font-size: 13px;
	padding: 2px 20px;
	border: 1px solid #fff;
	border-radius: 17px;
	text-align: center;
	color: #fff;
}
#header.recruit-header .header-nav ul li.recruit-link a {
	background: #fff;
}
#header.recruit-header .header-nav.device-pc > ul {
	gap: 20px;
}
#header.recruit-header .h-info p.ttl {
	font-size: 14px;
	color: #fff;
	margin: 60px 0 20px;
}
#header.recruit-header .humburger-logo {
	display: flex;
	align-items: center;
	gap: 30px;
}
#header.recruit-header .humburger-logo h2 {
	font-size: 13px;
	padding: 2px 20px;
	border: 1px solid #fff;
	border-radius: 17px;
	text-align: center;
	color: #fff;
}


#header.recruit-header .humburger-btn {
      
       
        background: #fff;
        
    }

#header.recruit-header .humburger-btn span{
      
       
        background: #222;
        
    }





/* --------------------------------------------------------------------------------
	footer
-------------------------------------------------------------------------------- */
#footer {
	background: #2B2B2B;
	margin: 0 auto;
	padding: 0 0 35px;
}
#footer a {
	color: #fff;
}
#footer .footer-img {
	margin: 0 0 80px;
}
#footer .footer-img ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#footer .footer-img ul li {
	width: 33.3%;
}
#footer .footer-img ul li:last-child {
	display: none;
}
#footer .footer-img ul li img {
	vertical-align: bottom;
}
#footer .footer-inner {
	padding: 0 30px;
}
#footer .f-logo {
	width: 50vw;
	margin: 0 auto 45px;
	text-align: center;
}

.f-nav {
    margin: 0 0 40px;
}

.f-nav .col {
    border-top: 1px solid rgba(255,255,255,.2);
}

.f-nav .col:last-child {
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.f-nav .f-nav-toggle {
    position: relative;
    margin: 0;
    padding: 18px 40px 18px 10px;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
}

.f-nav .f-nav-toggle {
    position: relative;
    margin: 0;
    padding: 18px 40px 18px 10px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
}

.f-nav .f-nav-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;

    /* 閉：下向き */
    transform: translateY(-50%) rotate(45deg);
    transition: transform .25s ease;
}

/* 開：上向き */
.f-nav .col.is-open .f-nav-toggle::after {
    transform: translateY(-50%) rotate(-135deg);
}

.f-nav .f-nav-list {
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 10px;
    list-style: none;
    transition: max-height .35s ease, padding .35s ease;
}

.f-nav .col.is-open .f-nav-list {
    max-height: 500px;
    padding: 0 10px 18px;
}

.f-nav .f-nav-list li + li {
    margin-top: 12px;
}

.f-nav .f-nav-list a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    opacity: .9;
}

.f-nav .f-nav-list a:hover {
    opacity: 1;
}








#footer .f-recruit {
	margin: 0 0 30px;
}
#footer .f-recruit ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 15px;
}
#footer .f-recruit ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 145px;
	height: 38px;
	font-size: 14px;
	font-weight: bold;
	background: #E64A4A;
	border-radius: 999px;
	color: #fff;
}
#footer .f-recruit ul li:first-child a {
	background: #E64A4A;
}
#footer .f-recruit ul li:nth-child(2) a {
	background: #ADD601;
}
#footer .f-recruit ul li:nth-child(3) a {
	background: #2484CB;
	width: 165px;
}
#footer .f-info p {
	color: #fff;
	font-size: 14px;
	margin: 0 0 20px;
	padding: 0 30px;
}
#footer .f-sns {
	display: flex;
	margin: 0 0 20px;
}
#footer .f-sns ul {
	display: flex;
	gap: 20px;
}
#footer .f-sns ul img {
	height: 30px;
	object-fit: cover;
}
#footer .f-info p.copy {
	text-align: center;
	font-size: 12px;
	color: #fff;
	border-top: 1px solid #fff;
	padding: 20px 0 0;
}
#fix-bnr {
	/*opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease, visibility 0.5s ease;*/
	position: fixed;
	bottom: 10px;
	right: 0px;
	z-index: 10;
	width: 100%;
	;
}
/*#fix-bnr.show {
	opacity: 1;
	visibility: visible;
}*/
#fix-bnr ul {
	display: flex;
	justify-content: center;
	gap: 5px;
	width: 96%;
	margin: 0 auto;
}

#fix-bnr .btn.red a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 45px;
	font-size: 16px;
	font-weight: bold;
	background: #EA3525;
	border-radius: 0px;
	color: #fff;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}
#fix-bnr .btn.red a::before {
	content: "";
	position: absolute;
	right: 37px;
	top: 55%;
	transform: translateY(-50%) rotate(45deg);
	width: 7px;
	height: 7px;
	border-top: 2px solid #EA3525 !important;
	border-right: 2px solid #EA3525 !important;
	z-index: 1;
}
#fix-bnr .btn.red a::after {
	content: "";
	position: absolute;
	right: 25px;
	top: 55%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background: #fff;
	border-radius: 50%;
}
/* --------------------------------------------------------------------------------
	wrapper
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
  パンくずリスト
-------------------------------------------------------------------------------- */
#pankuzu {
	background-color: #fff;
}
#pankuzu .breadcrumbs {
	padding-top: 20px;
	padding-bottom: 50px;
	margin: 0 auto;
	max-width: 1100px;
	width: 100%;
	display: flex;
	align-items: center;
}
#pankuzu .breadcrumbs > span {
	color: #333333;
	font-size: 12px;
	padding: 5px;
}
/* --------------------------------------------------------------------------------
	main
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
	トップページ home.php
-------------------------------------------------------------------------------- */
/*mv*/
#index {
	overflow-x: hidden;
	padding: 80px 0 0;
}
#index #mv {
	position: relative;
	height: 650px;
	background: #fff;
}
#index #mv .view {
	height: 650px;
}
#index #mv .view::after {
	content: "";
	display: block;
	position: relative;
	width: 100%;
	height: 180px;
	z-index: 10;
	background: url(https://cont-p.com/comline/wp-content/themes/comline/images/index/mv-01.png) repeat-x 0 0;
	overflow: hidden;
	animation: typeloop 80s linear infinite;
	background-size: auto 180px;
}
#index #mv .view::before {
	content: "";
	display: block;
	position: relative;
	width: 100%;
	height: 180px;
	z-index: 10;
	background: url(https://cont-p.com/comline/wp-content/themes/comline/images/index/mv-02.png) repeat-x 0 0;
	overflow: hidden;
	animation: typeloop-reverse 80s linear infinite;
	background-size: auto 180px;
}
#index #mv h2 {
	color: #E64A4A;
	font-size: 27px;
	font-weight: 900;
	margin: 30px 0 10px;
	text-align: center;
	letter-spacing: 0.1em;
}
#index #mv h3 {
	position: relative;
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 30px;
	text-align: center;
}
#index #mv h3::before {
	content: "「";
	font-size: 26px;
	color: #E64A4A;
	padding: 0 0.5em 0 0;
}
#index #mv h3::after {
	content: "」";
	font-size: 26px;
	color: #E64A4A;
	padding: 0 0 0 0.5em;
}
/* → 右から左 */
@keyframes typeloop {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: -2060px 0;
	}
}
/* ← 左から右 */
@keyframes typeloop-reverse {
	0% {
		background-position: -2060px 0;
	}
	100% {
		background-position: 0 0;
	}
}
@keyframes fadeInSoft {
	0% {
		opacity: 0;
		transform: scale(0.99);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
/* フェードイン＆スケール */
@keyframes fadeInSoft {
	0% {
		opacity: 0;
		transform: scale(0.99);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
/* 上下ふわふわ */
@keyframes floatY {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(10px);
	}
	100% {
		transform: translateY(0);
	}
}
/*PHILOSOPHY*/
#index #philosophy {
	padding: 50px 0;
	position: relative;
}
#index #philosophy::before {
	content: '';
	background: url("../images/common/dot-or.svg");
	background-size: contain;
	height: 204px;
	width: 204px;
	display: block;
	position: absolute;
	top: 30px;
	right: -140px;
	z-index: -1;
	overflow: hidden;
}
#index #philosophy::after {
	content: '';
	background: url("../images/common/dot-red.svg");
	background-size: contain;
	height: 180px;
	width: 180px;
	display: block;
	position: absolute;
	top: 380px;
	left: -120px;
	z-index: -1;
	overflow: hidden;
}
#index #philosophy h2 {
	color: #F6C1C1;
	font-size: 40px;
	font-weight: 900;
	margin: 0 0 30px;
	text-align: center;
}
#index #philosophy h2 span {
	color: #222222;
	font-size: 18px;
	font-weight: 900;
	display: block;
	text-align: center;
	letter-spacing: 0.3em;
}
#index #philosophy h3 {
	position: relative;
	font-size: 26px;
	font-weight: 500;
	margin: 0 0 30px;
	text-align: center;
}
#index #philosophy h3::before {
	content: "「";
	font-size: 26px;
	color: #E64A4A;
	padding: 0 0.5em 0 0;
}
#index #philosophy h3::after {
	content: "」";
	font-size: 26px;
	color: #E64A4A;
	padding: 0 0 0 0.5em;
}
#index #philosophy .video {
	width: 90vw;
	margin: 0 auto;
}
/*vision*/
#index #vision {
	background: #EFEFEF;
	padding: 50px 0 50px;
	position: relative;
	z-index: 2;
}
#index #vision h2 {
	font-size: 28px;
	font-weight: 500;
	text-align: center;
	color: #E64A4A;
	position: relative;
	z-index: 3;
	margin: 0 0 40px;
	display: flex !important;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}
#index #vision h2 span {
	display: block;
	margin: 0 0 10px;
	text-align: center;
}
#index #vision h2 span::after {
	content: '';
	display: block;
	background: url(https://cont-p.com/comline/wp-content/themes/comline/images/index/vision-ttl-bg.svg);
	height: 8px;
	margin: 5px auto 0;
}
#index #vision .view {
	position: relative;
	width: 100%;
	height: 345px;
	z-index: 1;
	margin: 0 0 65px;
}
#index #vision .view::after {
	content: "";
	display: block;
	position: relative;
	width: 100%;
	height: 345px;
	z-index: 10;
	background: url(https://cont-p.com/comline/wp-content/themes/comline/images/index/view.png) repeat-x 0 0;
	overflow: hidden;
	-moz-animation: newsloop 80s linear infinite;
	animation: typeloop 80s linear infinite;
	background-size: 2123px 345px;
}
@keyframes typeloop {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: -2060px 0;
	}
}
#index #vision .btn {
	display: flex;
	justify-content: center;
}
#index #vision .btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #E64A4A;
	font-size: 15px;
	font-weight: bold;
	border: 1px solid #E64A4A;
	border-radius: 999px;
	width: 300px;
	height: 50px;
	position: relative;
}
#index #vision .btn a::after {
	content: "";
	display: block;
	width: 23px;
	height: 23px;
	z-index: 10;
	background: url(https://cont-p.com/comline/wp-content/themes/comline/images/common/arr-red.svg);
	position: absolute;
	right: 20px;
}
#index #vision .vision-list {
	margin: 70px 0 0;
}
#index #vision .vision-list ul {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}
#index #vision .vision-list ul li {
	width: 320px;
	text-align: center;
}
#index #vision .vision-list ul li h4 {
	font-size: 20px;
	text-align: center;
	margin: 0 0 15px;
}
#index #vision .vision-list ul li img {
	border-radius: 10px;
	width: 320px;
	height: 172px;
	object-fit: cover;
}
/*news*/
#news-part {
	padding: 70px 0;
	position: relative;
}
#news-part::before {
	content: '';
	background: url("../images/common/dot-bl.svg");
	background-size: contain;
	height: 210px;
	width: 210px;
	display: block;
	position: absolute;
	top: -70px;
	right: -100px;
	z-index: -1;
}
#news-part::after {
	content: '';
	background: url("../images/common/dot-p.svg");
	background-size: contain;
	height: 187px;
	width: 187px;
	display: block;
	position: absolute;
	bottom: -90px;
	left: -120px;
	z-index: -1;
	overflow: hidden;
}
#news-part h2 {
	margin: 0 0 30px;
}
#news-part .news-area {
	position: relative;
}
#news-part .news-tabs {
	display: none;
	position: absolute;
	top: -110px;
	right: 0;
}
#news-part .news-tabs button {
	background: #fff;
	text-align: center;
	color: #222222;
	border-radius: 999px;
	padding: 5px 20px;
}
#news-part .news-tabs button.active {
	background: #222222;
	text-align: center;
	color: #fff;
	border-radius: 999px;
	padding: 5px 20px;
}
#news-part .news-list {
	margin: 0 0 30px;
}
#news-part .news-list li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #DEDEDE;
}
/*#news-part .news-list li:last-child {
	border-bottom: none;
}*/
#news-part .news-list li .cat {
	font-size: 15px;
	margin-right: 20px;
	font-weight: 600;
	background: #000;
	color: #fff;
	border-radius: 999px;
	width: 80px;
	text-align: center;
}
#news-part .news-list li.shinsotsu .cat {
	background: #E64A4A;
}
#news-part .news-list li.chuto .cat {
	background: #ADD601;
}
#news-part .news-list li.part .cat {
	background: #2484CB;
}
#news-part .news-list li .date {
	font-size: 15px;
	margin-right: 50px;
	font-weight: 600;
}
#news-part .news-list li .title {
	margin: 15px 0 0;
	width: 100%;
}
#news-part .news-list li .title a {
	font-size: 15px;
	font-weight: 600;
	display: block;
	position: relative;
	padding: 0 40px 0 0;
}
#news-part .news-list li .title a::before {
	content: "";
	position: absolute;
	right: 23px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 7px;
	height: 7px;
	border-top: 2px solid #fff !important;
	border-right: 2px solid #fff !important;
	z-index: 1;
}
#news-part .news-list li .title a::after {
	content: "";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background: #EA3525;
	border-radius: 50%;
}
/* フェード用：初期は表示 */
#news-part .news-list li {
	opacity: 1;
	transition: opacity .25s ease;
}
/* 非表示状態（フェードアウト→高さ0で詰める） */
#news-part .news-list li.is-hidden {
	opacity: 0;
	height: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	pointer-events: none;
	transition: opacity .25s ease, height .25s ease, margin .25s ease, padding .25s ease;
}
#news-part .link-btn {
	text-align: center;
}
/*OUR BUSINESS*/
#business {
	position: relative;
}
#business h2 {
	margin: 0 0 25px;
}
#business .business-bg {
	width: 100%;
	height: 290px;
}
#business .business-bg img {
	width: 100%;
	height: 290px;
	object-fit: cover;
}
#business .inner {
	width: 100%;
}
#business .business-inner {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	width: 90vw;
	margin: -90px auto 0;
	background: #fff;
	padding: 60px 10px;
}
#business .business-inner p {
	font-size: 15px;
	margin: 0 0 40px;
}
#business .business-list ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 0 20px;
}
#business .business-list ul li {
	width: 100%;
}
#business .business-list img {
	border-radius: 10px;
	text-align: center;
	margin: 0 0 20px;
}
#business .business-list h4 {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	margin: 0 0 10px;
}
#business .business-list h4 span {
	font-size: 13px;
	display: block;
	color: #969696;
	font-weight: bold;
	text-align: center;
}
#business .business-list p {
	font-size: 15px;
	font-weight: 500;
	text-align: center;
}
#business .business-list .en {
	font-size: 13px;
	color: #969696;
	font-weight: 500;
	text-align: center;
	margin: 0 0 10px;
}
#business .link-btn {
	text-align: center;
}
#business .video {
	width: 90vw;
	margin-top: 70px;
	margin-left: 50%;
	transform: translateX(-50%)
}
#business .video video{
	width: 100%;
	
}

#business .bnr-list ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 70px 0 0;
	width: 90vw;
	margin-left: 50%;
	transform: translateX(-50%)
}
#business .bnr-list ul li {
	width: 100%;
	margin: 0 0 25px;
}
/*experience*/
#experience {
	padding: 60px 0;
	background: #E64A4A;
}
#experience h2 {
	color: #fff;
	font-size: 30px;
	margin: 0 0 35px;
	text-align: center;
}
#experience h2 span {
	text-align: center;
}
#experience .experience-list ul {
	display: flex;
	overflow-x: scroll;
	gap: 20px;
}
#experience .experience-list ul li {
	width: 260px;
	flex-shrink: 0;
}
#experience .experience-list ul li iframe {
	width: 260px !important;
	max-width: 260px !important;
	min-width: 260px !important;
}
/*actions*/
#actions {
	padding: 60px 0;
	background: #EFEFEF;
}
#actions h2 {
	margin: 0 0 25px;
}
#actions .actions-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 40px;
}
#actions .actions-head .link-btn {
	display: none;
}
#actions .link-btn {
	text-align: center;
	;
}
#actions .actions-head p {
	font-size: 15px;
}
#actions .actions-list ul {
	display: flex;
	overflow-x: scroll;
	gap: 30px;
	padding: 0 0 20px;
	margin: 0 0 40px;
}
#actions .actions-list ul li {
	width: 230px;
	flex-shrink: 0;
}
#actions .actions-list ul li img {
	width: 230px;
	height: 315px;
	object-fit: contain;
	border-right: 10px;
	margin: 0 0 20px;
	background: #fff;
	border-radius: 15px;
}
#actions .actions-list ul li .date {
	font-size: 16px;
	color: #999999;
	margin: 0 0 20px;
}
#actions .actions-list ul li .title {
	font-size: 18px;
	margin: 0 0 20px;
}
#actions .actions-list ul li .tag {
	display: flex;
	gap: 10px;
}
#actions .actions-list ul li .tag a {
	font-size: 14px;
	color: #999999;
	border: 1px solid #999;
	border-radius: 999px;
	padding: 5px 10px;
}
/*bland*/
#bland {
	padding: 70px 0;
	position: relative;
	z-index: 2;
}
/*#bland::before{
	content: '';
	background: url("../images/common/dot-red.svg");
	background-size: contain;
	height: 437px;
	width: 437px;
	display: block;
	position: absolute;
	top:80px;
	right: -135px;
	z-index: -1;
	
	
}

#bland::after{
	content: '';
	background: url("../images/common/dot-or.svg");
	background-size: contain;
	height: 270px;
	width: 270px;
	display: block;
	position: absolute;
	bottom:-100px;
	left: -60px;
	z-index: -1;
	overflow: hidden;
}
*/
#bland h2 {
	margin: 0 0 30px;
}
#bland ul.bland-main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 15px;
	padding: 0 20px;
	margin: 0 0 30px;
}
#bland ul.bland-main li {
	width: 320px;
}
#bland ul.bland-main li img {
	border-radius: 15px;
}
.bland-sub-wrap {
	overflow: hidden;
	width: 100%;
	position: relative;
}
.bland-sub-track {
	display: flex;
	align-items: center;
	width: max-content;
	will-change: transform;
	animation: blandMarquee linear infinite;
	animation-duration: var(--marquee-duration, 30s);
}
.bland-sub {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-shrink: 0;
	gap: 32px;
	margin: 0 0 60px;
	padding: 0 20px;
	list-style: none;
}
.bland-sub li {
	width: 140px;
	min-width: 140px;
	max-width: 140px;
	flex: 0 0 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
}
.bland-sub img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	flex-shrink: 0;
}
.js-bland-marquee:hover .bland-sub-track {
	animation-play-state: paused;
}
@keyframes blandMarquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-1 * var(--loop-width, 0px)));
	}
}
#bland .link-btn {
	display: flex;
	justify-content: center;
}
/*recruit-info*/
#recruit-info {
	position: relative;
	padding: 220px 0 50px;
	z-index: 2;
}
#recruit-info::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 250px;
	background: url(https://cont-p.com/comline/wp-content/themes/comline/images/index/recruit-bg.jpg) no-repeat center center;
	background-size: cover;
	z-index: -1;
}
#recruit-info .recruit-info-box {
	background: #fff;
	padding: 20px;
	margin: 0 auto;
}
#recruit-info .recruit-info-box h2 {
	margin: 0 0 20px;
}
#recruit-info .recruit-info-box p {
	font-size: 15px;
	margin: 0 0 30px;
}
#recruit-info .link-btn {
	text-align: center;
}
#recruit-bnr {
	position: relative;
	z-index: 3;
	height: 585px;
	margin: 0 auto;
	background: url("../images/index/recruit-bnr-bg-sp.jpg");
	background-size: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
#recruit-bnr h2 {
	font-size: 71px;
	color: #fff;
	text-align: center;
	line-height: 0.9;
	margin: 0 0 60px;
}
#recruit-bnr h2 span {
	display: block;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: .1em;
	text-align: center;
}
#recruit-bnr ul {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}
#recruit-bnr ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 145px;
	height: 38px;
	font-size: 14px;
	font-weight: bold;
	background: #E64A4A;
	border-radius: 999px;
	color: #fff;
}
#recruit-bnr ul li:first-child a {
	background: #E64A4A;
}
#recruit-bnr ul li:nth-child(2) a {
	background: #ADD601;
}
#recruit-bnr ul li:nth-child(3) a {
	background: #2484CB;
	width: 165px;
}
/* --------------------------------------------------------------------------------

 会社概要

-------------------------------------------------------------------------------- */
#company {
	overflow-x: hidden;
}
#company h2 {
	margin: 0 0 20px;
}
#company .sub-nav {
	margin: 0 0 50px;
}
#company .sub-nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
#company .sub-nav ul li {
	width: 48%;
}
#company .sub-nav ul a {
	border: 2px solid #222;
	border-radius: 999px;
	padding: 10px;
	font-size: 12px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
}
#company .sub-nav ul a.active {
	background: #222;
	color: #fff;
}
#company #mv {
	position: relative;
}
#company #mv .mv-img img {
	width: 100%;
	height: 329px;
	object-fit: cover;
}
#company #mv .logo {
	position: absolute;
	width: 100px;
	top: 120px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
#company-info {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	width: 90vw;
	margin: -60px auto 60px;
	background: #fff;
	padding: 20px 10px;
	border: 10px solid #CCCCCC;
}
/*#company-info::after {
	content: '';
	background: url("../images/common/dot-or.svg");
	background-size: contain;
	height: 203px;
	width: 203px;
	display: block;
	position: absolute;
	bottom: -70px;
	right: -150px;
	z-index: -1;
	overflow: hidden;
}*/

.company__head {
	margin: 0;
	padding: 5px 10px;
	background: #1f1f1f;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .04em;
}
/* DLをテーブル風に */
.company__table {
	margin: 0;
	border-top: 1px solid #d9d9d9;
	background: #fff;
}
.company__row {
	padding: 16px 20px;
	border-bottom: 1px solid #d9d9d9;
}
.company__row dt {
	margin: 0;
	font-weight: 700;
	color: #111;
	white-space: nowrap;
}
.company__row dd {
	margin: 0;
	line-height: 1.8;
}
/*recruit-info*/


#message h3 {
	font-size: 20px;
	text-align: center;
	font-weight: 600;
	margin: 0 0 15px;
	
}


#message .owner-name {
	font-size: 15px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin: 0 0 15px;
}
#message .owner-name span {
	font-size: 15px;
	font-weight: bold;
	display: block;
	padding: 0 10px 10px 0;
}


#message .message-mv {
	margin: 0 0 30px;
	
}




#message .message-box h3 {
	font-size: 26px;
	color: #E64A4A;
	margin: 0 0 10px;
	text-align: center
}
#message .message-box h4 {
	font-size: 20px;
	margin: 0 0 30px;
	text-align: center
}

#message .message-box p {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.2em
}
#message .message-box .owner-name {
	font-size: 26px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
#message .message-box .owner-name span {
	font-size: 15px;
	font-weight: bold;
	display: block;
	padding: 0 10px 10px 0;
}



#anv50 {
	padding: 40px 20px;
	position: relative;
	text-align: center;
	
}

#anv50 .his{
	margin: 0 0 30px;
	text-align: center;
	
}

#anv50 .his-bnr{
	
	margin: 0 auto;
	
	
	
}





#company #philosophy {
	padding: 70px 0;
	position: relative;
	background: #FFF7F7;
}
#company #philosophy h3 {
	color: #E64A4A;
	font-size: 35px;
	font-weight: 900;
	margin: 0 0 30px;
	text-align: center;
}
#company #philosophy h4 {
	position: relative;
	font-size: 20px;
	font-weight: 500;
	margin: 0 0 30px;
	text-align: center;
}
#company #philosophy .video {
	width: 100%;
	margin: 0 auto;
}
#business-style {
	/*padding: 60px 0 0;*/
}
#business-style .logo {
	width: 160px;
	text-align: center;
	margin: 0 auto 45px;
}
#business-style .business-category {
	margin: 0 0 40px;
}
.business-category__list {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
}
.business-category__list .circle {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-weight: 700;
	transition: .3s;
	cursor: pointer;
}
.business-category__list .circle .en {
	font-size: 23px;
	letter-spacing: .05em;
	margin-bottom: 6px;
	font-weight: bold;
}
.business-category__list .circle .jp {
	font-size: 12px;
}
/* 色別 */
.business-category__list .circle.red {
	border: 2px solid #E60012;
	color: #E60012;
}
.business-category__list .circle.orange {
	border: 2px solid #F5A623;
	color: #F5A623;
}
.business-category__list .circle.blue {
	border: 2px solid #0070C9;
	color: #0070C9;
}
.business-category__list .circle.green {
	border: 2px solid #2BA84A;
	color: #2BA84A;
}
/* hover */
.business-category__list .circle:hover {
	transform: translateY(-6px);
}
#business-style h3 {
	color: #E64A4A;
	font-size: 35px;
	font-weight: 900;
	margin: 0 0 20px;
	text-align: center;
}
#business-style h3 span {
	color: #222222;
	font-size: 25px;
	font-weight: 900;
	display: block;
	text-align: center;
}
#business-style h4 {
	position: relative;
	font-size: 23px;
	font-weight: 500;
	margin: 0 0 30px;
	text-align: center;
}
#business-style h4::before {
	content: "「";
	font-size: 23px;
	color: #E64A4A;
	padding: 0 0.5em 0 0;
}
#business-style h4::after {
	content: "」";
	font-size: 23px;
	color: #E64A4A;
	padding: 0 0 0 0.5em;
}
#business-style .img ul {
	display: flex;
	justify-content: center;
	gap: 0px;
	margin: 0 0 30px;
}
#business-style .img ul li {}
#business-style p {
	text-align: center;
	font-size: 16px;
	margin: 30px 0;
}
#business-style .bg {
	position: relative;
	/*margin: 0 0 80px;*/
}
#business-style .bg .img img {
	height: 450px;
	width: 100%;
	object-fit: cover;
}


#about #business-style .bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7); 
	z-index: 1;
	pointer-events: none;
}

#about #business-style .bg .img video {
	height: 450px;
	width: 100%;
	object-fit: cover;
}



#business-style .bg p {
	position: absolute;
	width: 90vw;
	top: 90px;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 2;
}




#company #business .movie {
	padding: 140px 0 0;
	text-align: center;
	position: relative;
	z-index: 2;
}
#company #business .movie::before {
	content: '';
	background: url("../images/common/dot-red.svg");
	background-size: contain;
	height: 200px;
	width: 200px;
	display: block;
	position: absolute;
	top: 62px;
	right: -112px;
	z-index: -1;
}
#company #business .movie::after {
	content: '';
	background: url("../images/common/dot-or.svg");
	background-size: contain;
	height: 110px;
	width: 110px;
	display: block;
	position: absolute;
	bottom: -66px;
	left: -66px;
	z-index: -1;
}
#company #business .business-inner {
	padding: 50px 0 0px;
}
#company .view {
	padding: 40px 0;
	position: relative;
	width: 100%;
	height: 128px;
	z-index: 3;
	margin: 0 0 60px;
}
#company .view::after {
	content: "";
	display: block;
	position: relative;
	width: 100%;
	height: 128px;
	z-index: 10;
	background: url(https://cont-p.com/comline/wp-content/themes/comline/images/company/view.jpg) repeat-x 0 0;
	overflow: hidden;
	-moz-animation: newsloop 80s linear infinite;
	animation: typeloop 80s linear infinite;
	background-size: 740px 128px;
}
#company #map {
	padding: 0 0 90px;
	position: relative;
	z-index: 2;
}
#company #map::before {
	content: '';
	background: url("../images/common/dot-bl.svg");
	background-size: contain;
	height: 200px;
	width: 200px;
	display: block;
	position: absolute;
	top: 150px;
	right: -80px;
	z-index: -1;
}
#company #bland h2 {
	word-break: break-all;
}
#company #map p {
	font-size: 15px;
	padding: 0 0 40px;
}
#company #map .img {
	text-align: center;
}
#company #history {
	display: none;
	position: relative;
	z-index: 2;
}
#company #history::before {
	content: '';
	background: url("../images/common/dot-gr.svg");
	background-size: contain;
	height: 200px;
	width: 200px;
	display: block;
	position: absolute;
	top: 80px;
	right: -100px;
	z-index: -1;
}
/*history*/
#company .history-inner {
	margin: 0 auto 100px;
}
/* タブ */
#company .history-tab {
	display: flex;
	list-style: none;
	padding: 0;
}
#company .history-tab li {
	padding: 6px 8px;
	margin-right: 8px;
	background: #222222;
	color: #fff;
	font-size: 11px;
	cursor: pointer;
	transition: 0.3s;
	border-radius: 10px 10px 0 0;
}
#company .history-tab li.active {
	background: #E64A4A;
}
/* コンテンツ */
#company .history-content {
	display: none;
	margin: 0 auto;
	padding: 40px 10px 50px;
	border: 5px solid #E64A4A;
	background: #fff;
}
#company .history-content.active {
	display: block;
}
/* タイムライン */
#company .timeline {
	position: relative;
	padding-left: 40px;
	margin-bottom: 60px;
}
#company .timeline::before {
	content: "";
	position: absolute;
	left: 10px;
	top: 7px;
	bottom: 0;
	width: 2px;
	background: #e53935;
}
#company .timeline-item {
	position: relative;
	margin-bottom: 30px;
	display: flex;
	align-items: baseline;
	flex-direction: column;
}
#company .timeline-item::before {
	content: "";
	position: absolute;
	left: -40px;
	top: 9px;
	width: 24px;
	height: 24px;
	background: #e53935;
	border-radius: 50%;
}
#company .timeline-item .year {
	font-weight: bold;
	margin-right: 15px;
	font-size: 20px;
}
#company .history-images {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
#company .history-images img {
	width: 100%;
	border-radius: 15px;
}
/* --------------------------------------------------------------------------------

 コムラインについて

-------------------------------------------------------------------------------- */
#about {
	overflow-x: hidden;
}
#about #mv {
	position: relative;
	margin: 0 0 50px;
}
#about #mv .mv-img img {
	width: 100%;
	height: 545px;
	object-fit: cover;
}
#about #mv .logo {
	position: absolute;
	width: 210px;
	top: 190px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
#about #philosophy {
	position: relative;
	z-index: 2;
	margin: 0 0 60px;
	padding: 90px 0 0;
}
#about #philosophy::after {
	content: '';
	background: url("../images/common/dot-red.svg");
	background-size: contain;
	height: 200px;
	width: 200px;
	display: block;
	position: absolute;
	top: 0px;
	right: -100px;
	z-index: -1;
}
#about #philosophy h3 {
	color: #000;
	font-size: 29px;
	font-weight: 900;
	margin: 0 ;
	text-align: center;
}
#about #philosophy h3 span {
	color: #222222;
	font-size: 18px;
	font-weight: 900;
	display: block;
	text-align: center;
	margin: 0 0 15px;
}
#about #philosophy h4 {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	margin: 0 0 25px;
	text-align: center;
}
#about #philosophy p {
	margin: 0 0 40px;
	text-align: center;
	font-size: 14px;
	line-height: 2;
}
#about #philosophy .img {
	margin: 0 0 40px;
	text-align: center;
}
#about #philosophy .img::before {
	content: '';
	background: url("../images/common/dot-or.svg");
	background-size: contain;
	height: 165px;
	width: 165px;
	display: block;
	position: absolute;
	top: 270px;
	left: -80px;
	z-index: -1;
}
#about #philosophy .img::after {
	content: '';
	background: url("../images/common/dot-bl.svg");
	background-size: contain;
	height: 207px;
	width: 207px;
	display: block;
	position: absolute;
	bottom: -130px;
	right: -80px;
	z-index: -1;
}

#about #philosophy .scroll-wrap {
	display: flex;
	overflow-x: scroll;
	margin: 0 0 20px;
	
}

#about #philosophy ul {
	display: flex;
	
	align-items: center;
	gap: 20px;
	margin: 0 0 20px;
}
#about #philosophy ul li {
	width: 260px;
	flex-shrink: 0;
	
}
#about #mission {
	background: #FFF7F7;
	padding: 70px 0 50px;
}
#about #mission .inner {}
#about #mission h3 {
	font-size: 30px;
	text-align: center;
	color: #E64A4A;
	margin: 0 0 15px;
}

#about #mission h3 span{
	display: block;
	font-size: 18px;
	text-align: center;
	color: #E64A4A;
	margin: 0 0 15px;
}


#about #mission h4 {
	font-size: 20px;
	text-align: center;
	margin: 0 0 25px;
}
#about .view {
	position: relative;
	width: 100%;
	height: 120px;
	z-index: 2;
}
#about .view::after {
	content: "";
	display: block;
	position: relative;
	width: 100%;
	height: 120px;
	z-index: 10;
	background: url(https://cont-p.com/comline/wp-content/themes/comline/images/about/view.jpg) repeat-x 0 0;
	overflow: hidden;
	-moz-animation: newsloop 80s linear infinite;
	animation: typeloop 80s linear infinite;
	background-size: auto 120px;
}
.biz {
	background: #f6efee;
	padding: 60px 0;
}
.biz.yel {
	background: #FFFBF4;
	padding: 60px 0;
}
.biz .biz-inner {
	padding: 0 20px;
	margin: 0 auto;
}
/* --- 上段（左画像＋右白ボックス） --- */
.biz .biz-hero {
	gap: 50px;
	align-items: center;
	margin-bottom: 50px;
}
.biz .biz-hero__img {
	margin: 0;
	overflow: hidden;
	position: relative;
	z-index: 0;
}
.biz .biz-hero__txt {
	position: relative;
	background: #fff;
	border-radius: 10px;
	padding: 40px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 80vw;
	margin: -40px auto 0;
	z-index: 2;
}
.biz .biz-kicker {
	margin: 0 0 10px;
	letter-spacing: .12em;
	font-weight: bold;
	color: #E64A4A;
	font-size: 26px;
	font-family: "Montserrat", sans-serif;
	text-align: center;
}
.biz.yel .biz-kicker {
	color: #F2AE33;
}
.biz .biz-kicker span {
	font-size: 1.2em;
	font-family: "Montserrat", sans-serif;
}
.biz .biz-title {
	margin: 0 0 14px;
	font-size: 26px;
	line-height: 1.35;
	color: #E64A4A;
	font-weight: 700;
	text-align: center;
}
.biz.yel .biz-title {
	color: #F2AE33;
}
.biz .biz-lead {
	margin: 0;
	font-size: 14px;
	text-align: center;
}
/* --- 下段（3カラム） --- */
.biz .biz-cards {
	display: flex;
	overflow-x: scroll;
	gap: 20px;
	margin: 0 0 20px;
	
}
.biz .biz-card {
	text-align: center;
	width: 280px;
	margin: 0 auto;
	flex-shrink: 0;
}
.biz .biz-card__img {
	margin: 0 0 20px;
	overflow: hidden;
}
.biz .biz-card__title {
	margin: 0 0 20px;
	font-size: 16px;
	text-align: center;
	font-weight: bold;
	border-top: 4px dotted #F6C1C1;
	border-bottom: 4px dotted #F6C1C1;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	min-height: 5em;
}
.biz.yel .biz-card__title {
	border-top: 2px dotted #F2AE33;
	border-bottom: 2px dotted #F2AE33;
}
.biz .biz-card__desc {
	margin: 0 0 30px;
	font-size: 15px;
	text-align: center;
}
.biz .biz-card__meta {
	text-align: center;
	font-size: 13px;
	margin: 0 0 30px;
}
.biz .link-btn {
	text-align: center;
	margin: 0;
}
#contact-cta {
	width: 90vw;
	margin: 90px auto;
	padding: 50px 20px;
	background: #39A935;
	border-radius: 24px;
}
.contact-cta__inner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	color: #fff;
}
.contact-cta__sub {
	margin: 0;
	font-size: 13px;
	font-weight: bold;
}
.contact-cta__title {
	margin: 0 0 30px;
	font-size: 42px;
	font-weight: bold;
	letter-spacing: .05em;
}
.contact-cta__text {
	margin: 0 0 40px;
	font-size: 14px;
	line-height: 2;
	text-align: center;
}
.contact-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	color: #333;
	padding: 16px 36px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: bold;
	transition: 0.3s;
	font-size: 15px;
}
.contact-cta__btn:hover {
	opacity: .85;
}
/* 矢印 */
.contact-cta__btn .arrow {
	width: 24px;
	height: 24px;
	background: #333;
	border-radius: 50%;
	position: relative;
}
.contact-cta__btn .arrow::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translate(-60%, -50%) rotate(45deg);
}


    #about .video video{
       width: 100%;
    }

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

 店舗・ブランドのご案内

-------------------------------------------------------------------------------- */
#page-bland {
	overflow-x: hidden;
}
#page-bland h2 {
	font-size: 28px;
	margin: 0 0 20px;
	word-break: break-all;
}
#page-bland #mv {
	position: relative;
	margin: 0 0 40px;
}
#page-bland #mv .mv-img img {
	width: 100%;
	height: 365px;
	object-fit: cover;
}
#page-bland #mv .logo {
	position: absolute;
	width: 144px;
	top: 100px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
#page-bland #mv .logo p {
	color: #fff;
	font-size: 12px;
	text-align: center;
	padding: 10px 0 0;
}
#page-bland #heading {
	padding: 0 0 70px;
	position: relative;
}
#page-bland #heading::before {
	content: '';
	background: url("../images/common/dot-red.svg");
	background-size: contain;
	height: 132px;
	width: 132px;
	display: block;
	position: absolute;
	bottom: -93px;
	left: -27px;
	z-index: -1;
}
#page-bland #heading::after {
	content: '';
	background: url("../images/common/dot-or.svg");
	background-size: contain;
	height: 132px;
	width: 132px;
	display: block;
	position: absolute;
	top: -100px;
	right: -70px;
	z-index: -1;
}
#page-bland #heading h3 {
	position: relative;
	font-size: 23px;
	font-weight: 600;
	margin: 0 0 40px;
	text-align: center;
}
#page-bland #heading h3::before {
	content: "「";
	font-size: 23px;
	color: #E64A4A;
	padding: 0 0.5em 0 0;
}
#page-bland #heading h3::after {
	content: "」";
	font-size: 23px;
	color: #E64A4A;
	padding: 0 0 0 0.5em;
}
#page-bland #heading p {
	font-size: 14px;
	text-align: center;
}
/* =========================
   Brand 
========================= */
.brand-block {
	padding: 35px 0;
	background: #F4F4F4;
}
.brand-block__inner {
	width: 90%;
	margin: 0 auto;
}
/* 1アイテム */
.brand-item {
	background: #fff;
	margin: 0 0 50px;
}
/* 上段（ロゴ＋テキスト） */
.brand-item__top {
	gap: 40px;
	align-items: center;
	margin-bottom: 28px;
	padding: 50px 20px;
}
.brand-item__logo {
	margin: 0 0 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.brand-item__logo img {
	width: 100%;
	max-width: 170px;
	height: 115px;
	display: block;
	object-fit: contain;
}
/* テキスト */
.brand-item__kicker {
	margin: 0 0 5px;
	font-size: 15px;
	letter-spacing: .12em;
}
.brand-item__title {
	margin: 0 0 14px;
	font-size: 20px;
	line-height: 1.6;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 10px;
}
.brand-item__text {
	margin: 0 0 25px;
	font-size: 14px;
	line-height: 2;
}
.brand-item__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	color: #333;
	text-decoration: none;
}
.brand-item__link:hover {
	text-decoration: underline;
}
.brand-item .link-btn {
	text-align: center;
}
/* 赤ドット */
.dot {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #e64a4a;
	flex: 0 0 auto;
}
/* 下段：4枚ギャラリー */
.brand-item__gallery {
	display: grid;
	grid-template-columns: repeat(2, 2fr);
	gap: 0;
}
.brand-item__gallery img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	display: block;
}
#page-bland .link-btn.center {
	text-align: center;
}
/* --------------------------------------------------------------------------------

 店舗一覧

-------------------------------------------------------------------------------- */
#page-shoplist {
	overflow-x: hidden;
}

    #page-shoplist h2.ttl {
       margin: 0 0 20px;
    }


#page-shoplist {
	overflow-x: hidden;
}

#page-shoplist #mv {
	position: relative;
	margin: 0 0 50px;
}
#page-shoplist #mv .mv-img img {
	width: 100%;
	height: 530px;
	object-fit: cover;
}
#page-shoplist #philosophy {
	position: relative;
}
#page-shoplist #philosophy::before {
	content: '';
	background: url("../images/common/dot-gr.svg");
	background-size: contain;
	height: 372px;
	width: 372px;
	display: block;
	position: absolute;
	bottom: -391px;
	left: -328px;
	z-index: -1;
}
#page-shoplist #philosophy::after {
	content: '';
	background: url("../images/common/dot-or.svg");
	background-size: contain;
	height: 293px;
	width: 293px;
	display: block;
	position: absolute;
	top: -116px;
	right: -245px;
	z-index: -1;
}
#page-shoplist #philosophy h3 {
	/*color: #F6C1C1;*/
	font-size: 40px;
	font-weight: 900;
	margin: 0 0 30px;
	text-align: center;
}
#page-shoplist #philosophy h3 span {
	color: #222222;
	font-size: 18px;
	font-weight: 900;
	display: block;
	text-align: center;
}
#page-shoplist #philosophy h4 {
	position: relative;
	font-size: 21px;
	font-weight: 600;
	margin: 0 0 60px;
	text-align: center;
}
/*#page-shoplist #philosophy h4::before {
	content: "「";
	font-size: 38px;
	color: #E64A4A;
	padding: 0 0.5em 0 0;
	
}


#page-shoplist #philosophy h4::after {
	content: "」";
	font-size: 38px;
	color: #E64A4A;
	padding: 0 0 0 0.5em;
	
}
*/
#shop-list {
	padding: 25px 0;
}
.shop-inner {
	border: 5px solid #222222;
	border-radius: 6px;
	margin: 0 auto;
	padding: 25px;
	background: #fff;
}
/* 見出し */
.shop-head {
	margin: 0 0 0 20px;
}
.shop-head span {
	display: inline-block;
	background: #222;
	color: #fff;
	padding: 5px 12px 4px;
	font-size: 16px;
	border-radius: 10px 10px 0 0;
}
/* ================= タブ ================= */
.shop-tabs {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 50px;
}
/* タブ */
.shop-tab {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 68px;
	padding: 14px 78px 14px 22px; /* 右：アイコン領域ぶん */
	text-align: left;
	background: #fff;
	border: 2px solid #2b2b2b;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
}
.shop-tab::after {
	content: "›";
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #e54848;
	display: grid;
	place-items: center;
	color: #fff;
	font-weight: 900;
	font-size: 16px;
	line-height: 1;
}
/* アクティブ */
/*.shop-tab.is-active {
	background: #e54848;
	color: #fff;
	border-color: #e54848;
}
.shop-tab.is-active::before {
	background: rgba(255, 255, 255, .35);
}
.shop-tab.is-active::after {
	background: #fff;
	color: #e54848;
}
*/
.shop-tab:hover {
	background: #e54848;
	color: #fff;
	border-color: #e54848;
}
.shop-tab:hover::before {
	background: rgba(255, 255, 255, .35);
}
.shop-tab:hover::after {
	background: #fff;
	color: #e54848;
}


.shop-tab .tab-arrow {
	display: none;
}
.shop-content {
	margin: 0 0 70px;
}
/* ================= タイトル ================= */
.shop-title {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 20px;
	position: relative;
	padding-left: 15px;
	display: flex;
	align-items: center;
}
.shop-title::before {
	content: "";
	width: 5px;
	height: 25px;
	background: #e54848;
	margin: 0 10px 0 0;
}
/* ================= 店舗ブロック ================= */

.shop-item {
	margin: 0 0 60px;
}



.shop-item h3 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 30px;
	padding-bottom: 10px;
	position: relative;
}
.shop-item h3::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 4px;
	background: #cfcfcf;
}
.shop-item h3::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 160px;
	height: 4px;
	background: #e54848;
}
.shop-item-inner {
	display: flex;
	flex-direction: column;
}
.shop-info {}
.shop-info p {
	font-size: 16px;
	font-weight: bold;
	margin: 0 0 30px;
}
.shop-links {}
.shop-links .map-link {
	font-size: 16px;
	font-weight: bold;
	position: relative;
	display: flex;
	align-items: center;
	margin: 0 0 15px;
}
.shop-links .map-link::after {
	content: "›";
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #E64A4A;
	display: flex;
	justify-content: center;
	place-items: center;
	color: #fff;
	font-weight: 900;
	font-size: 16px;
	line-height: 1;
	margin: 0 0 0 10px;
}
.shop-links .tel-link {
	font-size: 18px;
	font-weight: bold;
	position: relative;
	display: flex;
	align-items: center;
}
.shop-links .tel-link span {
	font-size: 14px;
	background: #222;
	color: #fff;
	border-radius: 999px;
	font-weight: bold;
	padding: 2px 10px;
	margin: 0 10px 0 0;
	display: flex;
	align-items: center;
}
/* ================= 画像 ================= */
.shop-images {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin: 30px 0 0;
}
.shop-images img {
	width: 100%;
	height: auto;
	object-fit: cover;
}
/* --------------------------------------------------------------------------------

 ととまる
-------------------------------------------------------------------------------- */
#page-totomaru #mv {
	margin: 0 auto 50px;
}
#page-totomaru #heading {
	margin: 0 auto 50px;
}
#page-totomaru #heading .heading-inner {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	align-items: center;
	padding: 0;
	margin: 0 0 50px;
}
#page-totomaru #heading .heading-inner .txt {}
#page-totomaru #heading .heading-inner .txt h2.ttl span {
	margin: 0 0 10px;
}
#page-totomaru #heading .heading-inner .txt h2.ttl {
	font-size: 33px;
	margin: 0 0 30px;
}
#page-totomaru #heading .heading-inner .txt p {
	font-size: 16px;
	margin: 0 0 30px;
	line-height: 2;
}
#page-totomaru #heading .link-btn {
	text-align: left;
	margin: 20px 0 0;
}
#page-totomaru #heading .heading-inner .img {
	width: 333px;
	
}

#page-totomaru #heading .heading-inner .img img{
	margin: 0 0 40px;
	
}

#page-totomaru #heading ul {
	margin: 0 auto;
	display: flex;
	justify-content: center;
}
#page-totomaru #heading ul li {}
#page-totomaru #heading ul li img {
	object-fit: cover;
}
#page-totomaru #pickup {
	border-bottom: 1px solid #D8D8D8;
	margin: 0 0 50px;
	padding: 0 0 50px;
}
#page-totomaru #pickup h3 {
	font-size: 28px;
	text-align: center;
	font-weight: bold;
	margin: 0 0 50px;
}
#page-totomaru #pickup h3 span {
	display: block;
	font-size: 16px;
	text-align: center;
	font-weight: bold;
	margin: 0 0 15px;
}
#page-totomaru #pickup ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#page-totomaru #pickup ul li {
	width: 48%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 0 40px;
}
#page-totomaru #pickup ul li .thum {
	text-align: center;
	margin: 0 0 10px;
}
#page-totomaru #pickup ul li .itemname {
	text-align: center;
	margin: 0 0 10px;
	font-size: 15px;
	font-weight: bold;
}
#page-totomaru #pickup ul li .price {
	text-align: center;
	margin: 0 0 30px;
	font-size: 17px;
	font-weight: bold;
	margin-top: auto;
}
#page-totomaru #pickup ul li .link-btn {
	text-align: center;
}
#page-totomaru #follow {
	margin: 0 0 120px;
}
#page-totomaru #follow h3 {
	font-size: 16px;
	text-align: center;
	font-weight: bold;
	margin: 0 0 20px;
}
#page-totomaru #follow p {
	font-size: 18px;
	text-align: center;
	font-weight: bold;
	margin: 0 0 40px;
}
#page-totomaru #follow ul {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	gap: 15px;
}
/* --------------------------------------------------------------------------------

 Ai Tec Foods
-------------------------------------------------------------------------------- */
#page-ai-tec-foods {
	overflow-x: hidden;
	padding: 0 0 200px;
}
#page-ai-tec-foods #mv {
	background: #FFFBF4;
	padding: 35px 0;
	/*height: 440px;*/
	position: relative;
	z-index: 2;
}
#page-ai-tec-foods #mv .inner {
	position: relative;
}
#page-ai-tec-foods #mv h2 {
	font-size: 25px;
	font-weight: bold;
	color: #F2AE33;
	margin: 0 0 30px;
	position: relative;
	z-index: 2;
	text-shadow: 0 0px 1px rgba(0, 0, 0, 0.35);
}
#page-ai-tec-foods #mv h2 span {
	font-size: 15px;
	font-weight: bold;
	display: block;
}
#page-ai-tec-foods #mv p {
	font-size: 16px;
	font-weight: bold;
	margin: 120px 0 0;
}
#page-ai-tec-foods #mv .mv-img {
	position: absolute;
	width: 240px;
	right: -50px;
	z-index: 1;
	top: 20px;
}
#page-ai-tec-foods #ai-tec-foods {
	padding: 60px 0 0;
	position: relative;
	z-index: 2;
}
#page-ai-tec-foods #ai-tec-foods::before {
	content: '';
	background: url("../images/common/dot-or.svg");
	background-size: contain;
	height: 200px;
	width: 200px;
	display: block;
	position: absolute;
	bottom: 300px;
	left: -150px;
	z-index: -1;
}
#page-ai-tec-foods #ai-tec-foods::after {
	content: '';
	background: url("../images/common/dot-red.svg");
	background-size: contain;
	height: 160px;
	width: 160px;
	display: block;
	position: absolute;
	top: -33px;
	right: -105px;
	z-index: -1;
}
#page-ai-tec-foods #ai-tec-foods h3 {
	text-align: center;
	margin: 0 0 45px;
}
#page-ai-tec-foods #ai-tec-foods p {
	font-size: 18px;
	line-height: 1.8;
	text-align: center;
	margin: 0 0 50px;
}
#page-ai-tec-foods #ai-tec-foods .img {
	text-align: center;
	margin: 0 0 50px;
}
#page-ai-tec-foods #ai-tec-foods ul {
	display: flex;
	justify-content: center;
	margin: 0 auto;
}
#page-ai-tec-foods #strengths {
	padding: 80px 0 0;
	position: relative;
	z-index: 2;
}
#page-ai-tec-foods .sp-img {
	padding: 0 0 80px;
	
}

/*#page-ai-tec-foods #strengths::before {
	content: '';
	background: url("../images/common/dot-bl.svg");
	background-size: contain;
	height: 200px;
	width: 200px;
	display: block;
	position: absolute;
	bottom: -170px;
	right: -150px;
	z-index: -1;
}*/
#page-ai-tec-foods #strengths::after {
	content: '';
	background: url("../images/common/dot-p.svg");
	background-size: contain;
	height: 235px;
	width: 235px;
	display: block;
	position: absolute;
	top: 400px;
	left: -180px;
	z-index: -1;
}
#page-ai-tec-foods #strengths h3 {
	font-size: 25px;
	text-align: center;
	font-weight: bold;
	margin: 0 0 70px;
}
#page-ai-tec-foods #strengths h3 span {
	display: block;
	font-size: 16px;
	text-align: center;
	font-weight: bold;
	margin: 0 0 20px;
}
#page-ai-tec-foods .feature-box:nth-of-type(2) {}
#page-ai-tec-foods .feature-box:nth-of-type(3) {}
#page-ai-tec-foods .feature-box {
	margin: 0 0 50px;
}
#page-ai-tec-foods .feature-head {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 25px;
	position: relative;
}
#page-ai-tec-foods .feature-num {
	width: 55px;
	height: 55px;
	background: #E64A4A;
	color: #fff;
	font-weight: bold;
	font-size: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
#page-ai-tec-foods .feature-head .txt {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#page-ai-tec-foods .feature-head .txt h4 {
	font-size: 25px;
	font-weight: bold;
	margin: 0 0 15px;
	padding-bottom: 12px;
	border-bottom: 3px dotted #B5B5B5;
	text-align: center;
	display: inline-block;
}
#page-ai-tec-foods .feature-list {
	margin: 0;
	font-size: 18px;
}
#page-ai-tec-foods .feature-list li {
	margin-bottom: 8px;
	text-align: center;
}
#page-ai-tec-foods .img {
	position: relative;
}
#page-ai-tec-foods .img .icon01 {
	display: none;
	position: absolute;
	top: -805px;
	right: -100px;
	width: 310px;
}
#page-ai-tec-foods .img .icon02 {
	display: none;
	position: absolute;
	top: -280px;
	left: -80px;
	width: 310px;
}
#page-ai-tec-foods .img .icon03 {
	display: none;
	position: absolute;
	top: -420px;
	right: 50px;
	width: 244px;
}
/*   DEPARTMENTS*/
#departments {
	padding: 0 0 50px;
	position: relative;
	z-index: 2;
}
/* セクションタイトル */
#departments h3 {
	text-align: center;
	font-size: 35px;
	font-weight: bold;
	margin-bottom: 50px;
}
#departments h3 span {
	display: block;
	font-size: 25px;
	text-align: center;
	margin-bottom: 10px;
}
/* グリッド */
#departments .dept-inner {
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}
/* カード */
#departments .dept-card {
	border: 3px solid #222222;
	border-radius: 20px;
	padding: 25px 10px;
	text-align: center;
	background: #fff;
	width: 340px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
/* 画像 */
#departments .dept-img {
	width: 170px;
	height: 170px;
	margin: 0 0 20px;
}
#departments .dept-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}
/* タイトル */
#departments .dept-card h3 {
	font-size: 23px;
	font-weight: bold;
	margin-bottom: 10px;
}
/* 赤テキスト */
#departments .dept-lead {
	color: #F59A9A;
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 18px;
}
/* リスト */
#departments .dept-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
	text-align: center;
}
#departments .dept-card ul li {
	text-align: center;
	line-height: 2;
}
#at-info .company-info {}
#at-info .company-info__inner {
	margin: 0 auto;
	background: #F2AE33;
	border-radius: 24px;
	padding: 20px;
	text-align: center;
	color: #fff;
}
#at-info .company-info__address {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}
#at-info .company-info__row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 10px;
}
#at-info .company-info__label {
	background: #fff;
	color: #EAA531;
	font-weight: 700;
	padding: 1px 10px;
	border-radius: 999px;
	font-size: 13px;
	letter-spacing: .1em;
	text-align: center;
}
#at-info .company-info__number {
	font-size: 30px;
	font-weight: bold;
	letter-spacing: .05em;
}
/* ===============================
   PAGE NEWS
================================= */
#page-news {}
/* ---------- MV ---------- */
#page-news #mv {
	background: #F2F2F2;
	text-align: center;
	height: 130px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#page-news #mv h2 span {
	display: block;
	font-size: 38px;
	font-weight: bold;
	letter-spacing: .1em;
	text-align: center;
}
#page-news h2 {
	font-size: 15px;
	text-align: center;
}
/* ---------- CONTENT WRAP ---------- */
#page-news .news-wrap {
	padding: 50px 0 100px;
}
#page-news .news-inner {
	margin: 0 auto;
}
/* ---------- FILTER ---------- */
#page-news .news-filter {
	text-align: center;
	margin-bottom: 50px;
}
#page-news .news-filter__label {
	font-size: 20px;
	margin: 0 0 36px;
	text-align: center;
	font-weight: bold;
}
#page-news .news-filter__tabs {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}
#page-news .news-tab {
	min-width: 160px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid #333;
	background: #fff;
	font-size: 15px;
	cursor: pointer;
	transition: .2s;
}
#page-news .news-tab:hover {
	background: #222;
	color: #fff;
}
#page-news .news-tab.is-active {
	background: #222;
	color: #fff;
}
/* ---------- LIST ---------- */
#page-news .news-list {
	list-style: none;
	padding: 0 20px;
	margin: 0;
}
#page-news .news-item {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	padding: 22px 0;
	border-bottom: 1px solid #ddd;
	font-size: 14px;
}
#page-news .news-cat {
	min-width: 70px;
	height: 24px;
	padding: 0 14px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}
#page-news .news-cat.is-shinsotsu {
	background: #E64A4A;
}
#page-news .news-cat.is-chuto {
	background: #ADD601;
}
#page-news .news-cat.is-sonota {
	background: #222;
}
#page-news .news-cat.is-part {
	background: #2484CB;
}
#page-news .news-date {
	min-width: 80px;
	font-size: 15px;
}
#page-news .news-title {
	width: 100%;
	color: #222;
	text-decoration: none;
	transition: .2s;
}
#page-news .news-title:hover {
	text-decoration: underline;
}
/* ---------- PAGER ---------- */
#page-news .news-pager {
	margin-top: 60px;
	text-align: center;
}
#page-news .news-pager ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-flex;
	gap: 15px;
}
#page-news .news-pager li {
	list-style: none;
}
#page-news .news-pager a, #page-news .news-pager span {
	display: inline-flex;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	text-decoration: none;
	font-size: 14px;
}
#page-news .news-pager a {
	background: #fff;
	border: 1px solid #ccc;
	color: #333;
}
#page-news .news-pager .current {
	background: #333;
	color: #fff;
}
/* ---------- EMPTY ---------- */
#page-news .news-empty {
	padding: 40px 0;
	text-align: center;
}
/* =====================
   BACK TO TOP
===================== */
.back-top-wrap {
	text-align: center;
	padding: 80px 0;
}
.back-top {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	padding: 0 60px;
	height: 50px;
	border-radius: 999px;
	border: 2px solid #222;
	text-decoration: none;
	color: #222;
	font-size: 15px;
	font-weight: 600;
	transition: .3s;
}
.back-top:hover {
	background: #222;
	color: #fff;
}
/* 右の黒丸 */
.back-top__icon {
	width: 23px;
	height: 23px;
	background: #222;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
}
.back-top__icon img {
	width: 23px;
	height: 23px;
}
/* ホバー時 */
.back-top:hover .back-top__icon {
	background: #fff;
}
.back-top:hover .back-top__icon img {
	filter: invert(1);
}
/* ===============================
   PAGE blog
================================= */
#page-blog {}
/* ---------- MV ---------- */
#page-blog #mv {
	background: #F2F2F2;
	text-align: center;
	height: 130px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#page-blog #mv h2 span {
	display: block;
	font-size: 38px;
	font-weight: bold;
	letter-spacing: .1em;
	text-align: center;
}
#page-blog h2 {
	font-size: 15px;
	text-align: center;
}
/* ---------- CONTENT WRAP ---------- */
#page-blog .news-wrap {
	padding: 50px 0 100px;
}
#page-blog .news-inner {
	padding: 0 20px;
	margin: 0 auto;
}
/* ---------- FILTER ---------- */
#page-blog .news-filter {
	text-align: center;
	margin-bottom: 50px;
}
#page-blog .news-filter__label {
	font-size: 20px;
	margin: 0 0 36px;
	text-align: center;
	font-weight: bold;
}
#page-blog .news-filter__tabs {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}
#page-blog .news-tab {
	width: 80%;
	height: 40px;
	border-radius: 999px;
	border: 1px solid #333;
	background: #fff;
	font-size: 12px;
	cursor: pointer;
	transition: .2s;
	padding: 0 20px;
}
#page-blog .news-tab:hover {
	background: #222;
	color: #fff;
}
#page-blog .news-tab.is-active {
	background: #222;
	color: #fff;
}
#page-blog .blog-card-list {
	list-style: none;
	padding: 0;
	margin: 60px 0 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 50px 0;
}
#page-blog .blog-card {
	list-style: none;
}
#page-blog .blog-card a {
	text-decoration: none;
	color: #111;
	display: block;
	transition: .3s;
}
#page-blog .blog-card__img {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 16px;
}
#page-blog .blog-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .4s;
}
#page-blog .blog-card:hover .blog-card__img img {
	transform: scale(1.05);
}
/* 下テキスト */
#page-blog .blog-card__body {
	margin-top: 15px;
}
#page-blog .blog-card__cat {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 8px;
}
/* カテゴリ色 */
#page-blog .blog-card__cat.is-info {
	color: #F7BCBC;
} /* お知らせ */
#page-blog .blog-card__cat.is-shop {
	color: #F7BCBC;
} /* 店舗 */
#page-blog .blog-card__cat.is-event {
	color: #F7BCBC;
} /* イベント */
#page-blog .blog-card__cat.is-recruit-news {
	color: #F7BCBC;
} /* リクルート */
/* タイトル */
#page-blog .blog-card__title {
	font-size: 18px;
	font-weight: bold;
}
/* ---------- PAGER ---------- */
#page-blog .news-pager {
	margin-top: 60px;
	text-align: center;
}
#page-blog .news-pager ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-flex;
	gap: 15px;
}
#page-blog .news-pager li {
	list-style: none;
}
#page-blog .news-pager a, #page-blog .news-pager span {
	display: inline-flex;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	text-decoration: none;
	font-size: 14px;
}
#page-blog .news-pager a {
	background: #fff;
	border: 1px solid #ccc;
	color: #333;
}
#page-blog .news-pager .current {
	background: #333;
	color: #fff;
}
/* ---------- EMPTY ---------- */
#page-blog .news-empty {
	padding: 40px 0;
	text-align: center;
}
/* ===============================
   SINGLE BLOG
================================ */
.blog-single__body {
	margin: 0 auto;
}
.blog-single__title {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.4;
	margin: 0 0 20px;
}
.blog-single__date {
	font-size: 14px;
	color: #888;
	margin: 0 0 40px;
}
.blog-single__content {
	font-size: 14px;
	line-height: 2;
}
.blog-single__content p {
	margin: 0 0 1.6em;
}
/*.blog-single__content h2{
	font-size:24px;
	margin:60px 0 20px;
	font-weight:bold;
}

.blog-single__content h3{
	font-size:20px;
	margin:40px 0 15px;
	font-weight:bold;
}

.blog-single__content img{
	max-width:100%;
	height:auto;
}

.blog-single__content ul{
	margin:0 0 20px 20px;
	list-style:disc;
}

.blog-single__content ol{
	margin:0 0 20px 20px;
	list-style:decimal;
}*/
/* ===============================
   PAGER
================================ */
.blog-single__pager {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	margin: 80px auto 0;
	padding-top: 40px;
	border-top: 1px solid #ddd;
	max-width: 900px;
}
.blog-single__pager-item {
	width: 50%;
}
.blog-single__pager-item a {
	display: block;
	text-decoration: none;
	color: #000;
}
.blog-single__pager-label {
	display: block;
	font-size: 12px;
	color: #888;
	margin-bottom: 6px;
}
.blog-single__pager-title {
	display: block;
	font-size: 16px;
	line-height: 1.6;
}
/* ===============================
   HOVER
================================ */
.blog-single__pager-item a:hover {
	opacity: .6;
}
/* =========================
   CONTACT PAGE
========================= */
#page-contact #mv {
	background: #F2F2F2;
	text-align: center;
	height: 130px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#page-contact #mv h2 span {
	display: block;
	font-size: 38px;
	font-weight: bold;
	letter-spacing: .1em;
	text-align: center;
}
#page-contact h2 {
	font-size: 15px;
	text-align: center;
}




.contact-links {
  padding: 80px 20px;
  background: #fff;
}

.contact-links__inner {
  
  margin: 0 auto;
  display: flex;
	flex-direction: column;
  gap: 30px;
}

.contact-box {
  flex: 1;
  padding: 40px 30px;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: .3s;
}

.contact-box:hover {
  transform: translateY(-5px);
}

/* 背景色 */
.contact-box--corporate {
  background: #FFF7F7;
}

.contact-box--recruit {
  background: #FFFBF4;
}

/* タイトル */
.contact-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
	text-align: center;
}

/* サブ */
.contact-box .sub {
  font-size: 16px;
  margin-bottom: 18px;
 text-align: center;
	font-weight: 600;
}

/* テキスト */
.contact-box .txt {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* リンク */
.contact-box .link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: bold;
}

/* 赤丸アイコン */
.contact-box .icon {
  width: 22px;
  height: 22px;
  background: #d74c4c;
  border-radius: 50%;
  position: relative;
}

/* 矢印 */
.contact-box .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-60%, -50%) rotate(45deg);
}



#page-contact h3.form-ttl {
	font-size: 25px;
  font-weight: 600;
	text-align: center;
}















/* フォームエリア */
#page-contact #contact-area {
	padding: 90px 0 100px;
}
#page-contact #contact-area .wpcf7 {
	padding: 0 20px;
	margin: 0 auto;
}
#page-contact .cform {
	width: 100%;
	margin: 0 auto;
}
#page-contact .cform-row {
	margin: 0 0 50px;
}
#page-contact .cform-label {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}
#page-contact .req {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	padding: 0 20px;
	border-radius: 4px;
	background: #F2AE33;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
} /* input / textarea */ #page-contact .cform .cform-input, #page-contact .cform .cform-textarea {
	width: 100%;
	border: 1px solid #333;
	border-radius: 0;
	padding: 12px 14px;
	font-size: 18px;
	box-sizing: border-box;
	background: #fff;
}
#page-contact .cform .cform-textarea {
	min-height: 220px;
	resize: vertical;
}
#page-contact .cform-note {
	font-size: 18px;
	color: #AAAAAA;
	margin: 8px 0 0;
} /* select right arrow red area */ #page-contact .cform-select {
	position: relative;
}
#page-contact .cform-select select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-right: 70px;
}
#page-contact .cform-select::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 54px;
	height: 100%;
	background: #E94A4A;
	pointer-events: none;
}
#page-contact .cform-select::before {
	content: "";
	position: absolute;
	right: 19px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: translateY(-55%) rotate(45deg);
	pointer-events: none;
	z-index: 1;
} /* checkbox (acceptance) */ #page-contact .cform-agree {
	margin: 40px 0 30px;
}
#page-contact .cform-check {
	display: flex;
	align-items: center;
	font-size: 18px;
	cursor: pointer;
	position: relative;
} /* CF7 checkbox hide */ #page-contact .cform-check input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
#page-contact .cform-check__box {
	width: 20px;
	height: 20px;
	border: 1px solid #222;
	background: #fff;
	display: inline-block;
	position: relative;
	flex-shrink: 0;
	border-radius: 10px;
}
#page-contact .cform-check input[type="checkbox"]:checked + .cform-check__box::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 2px;
	width: 8px;
	height: 12px;
	border-right: 2px solid #E94A4A;
	border-bottom: 2px solid #E94A4A;
	transform: rotate(45deg);
} /* submit */ #page-contact .cform-submit {
	text-align: center;
	display: flex;
	justify-content: center;
}
#page-contact .cform-submit {
	text-align: center;
	margin: 60px 0 80px;
} /* ラッパー（ボタンの外枠） */ #page-contact .cform-submit__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
} /* CF7のinputをボタン化 */ #page-contact .cform-submit__btn input[type="submit"] {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	width: 300px;
	border-radius: 999px;
	border: 2px solid #E94A4A;
	background: #fff;
	color: #E94A4A;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	transition: .25s;
} /* 右の丸アイコン */ #page-contact .cform-submit__icon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 23px;
	height: 23px;
	border-radius: 50%;
	background: #E94A4A;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	transition: .25s;
}
#page-contact .cform-submit__icon img {
	width: 23px;
	height: 23px;
} /* hover（NEWSと同じ反転イメージ） */ #page-contact .cform-submit__btn:hover input[type="submit"] {
	background: #E94A4A;
	color: #fff;
}
#page-contact .cform-submit__btn:hover .cform-submit__icon {
	background: #fff !important;
}
#page-contact .cform-submit__btn:hover .cform-submit__icon img {
	filter: invert(1);
} /* CF7 messages */ #page-contact .wpcf7-not-valid-tip {
	font-size: 12px;
	margin-top: 8px;
}
#page-contact .wpcf7 form.invalid .wpcf7-response-output, #page-contact .wpcf7 form.sent .wpcf7-response-output {
	margin: 25px 0 0;
}
#page-contact .contact-att {
	border-top: 1px solid #707070;
	padding: 60px 0 150px;
}
#page-contact .contact-att h4 {
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 25px;
}
#page-contact .contact-att p {
	font-size: 15px;
}
/* =========================
   Multi-Step Confirm Layout
========================= */
#page-contact .cform-confirm .cform-row {
	margin: 0 0 50px;
}
#page-contact .cform-confirm .cform-label {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 10px;
}
/* multiformの表示をinput風にする */
#page-contact .cform-confirm .cform-row p:last-child {
	border: 1px solid #333;
	padding: 12px 14px;
	font-size: 18px;
	background: #eee;
	min-height: 50px;
	box-sizing: border-box;
	line-height: 1.7;
	word-break: break-word;
}
/* textarea相当（お問い合わせ内容） */
#page-contact .cform-confirm .cform-row:last-child p:last-child {
	min-height: 220px;
}
/* 修正する */
#page-contact input.wpcf7-previous {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	width: 300px;
	border-radius: 999px;
	border: 2px solid #333;
	background: #fff;
	color: #333;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
}
/* 送信する */
#page-contact .cform-confirm input[type="submit"] {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	width: 300px;
	border-radius: 999px;
	border: 2px solid #E94A4A;
	background: #E94A4A;
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
}
/* 送信する */
#page-contact .cform-confirm input[type="submit"] {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	width: 300px;
	border-radius: 999px;
	border: 2px solid #E94A4A;
	background: #E94A4A;
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
}
.cform-confirm-actions {
	padding: 0 0 130px;
}
.cform-confirm-actions p {
	display: flex;
	justify-content: center;
	gap: 20px;
}
/* Multi-step hidden系 */
.wpcf7 .wpcf7-multistep .wpcf7-response-output {
	display: none;
}
.wpcf7-spinner {
	display: none !important;
	background-color: #23282d;
}
/* =========================
   CONTACT THANKS
========================= */
#page-contact .contact-thanks {
	margin: 0 auto;
	padding: 0 20px 100px;
	text-align: center;
}
#page-contact .contact-thanks__title {
	font-size: 24px;
	font-weight: bold;
	margin: 0 0 40px;
	text-align: center;
}
#page-contact .contact-thanks__lead {
	font-size: 18px;
	margin: 0 0 30px;
	line-height: 1.8;
	text-align: center;
}
#page-contact .contact-thanks__note {
	font-size: 15px;
	margin: 0 0 80px;
	line-height: 1.8;
	text-align: center;
}
#page-contact .contact-thanks__btn {
	display: flex;
	justify-content: center;
}
/* ボタン */
#page-contact .thanks-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	width: 300px;
	border-radius: 999px;
	border: 2px solid #E94A4A;
	background: #fff;
	color: #E94A4A;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	transition: .25s;
}
#page-contact .thanks-btn__icon {
	position: absolute;
	right: 20px;
	width: 23px;
	height: 23px;
	border-radius: 50%;
	background: #E94A4A;
	display: flex;
	align-items: center;
	justify-content: center;
}
#page-contact .thanks-btn__icon img {
	width: 23px;
	height: 23px;
}
#page-contact .thanks-btn:hover {
	background: #E94A4A;
	color: #fff;
}
#page-contact .thanks-btn:hover .thanks-btn__icon {
	background: #fff;
}
#page-contact .thanks-btn:hover .thanks-btn__icon img {
	filter: invert(1);
}
/* =========================
   Privacy Policy
========================= */
#page-privacy-policy #mv {
	background: #F2F2F2;
	text-align: center;
	height: 130px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
#page-privacy-policy #mv h2 span {
	display: block;
	font-size: 38px;
	font-weight: bold;
	letter-spacing: .1em;
	text-align: center;
}
#page-privacy-policy h2 {
	font-size: 15px;
	text-align: center;
}
#page-privacy-policy .inner {
	padding: 60px 20px;
}
/* メタ */
#page-privacy-policy .privacy-meta {
	margin: 0 0 6px;
	font-size: 14px;
}
/* 代表署名 */
#page-privacy-policy .privacy-sign {
	margin: 20px 0 35px;
	font-size: 14px;
}
/* 導入文 */
#page-privacy-policy .inner > p:not(.privacy-meta):not(.privacy-sign) {
	margin: 0 0 40px;
	font-size: 14px;
}
/* ---------- セクション ---------- */
#page-privacy-policy .privacy-section {
	border-top: 1px solid #ddd;
	padding: 50px 0;
}
/* 最初の線も画像に合わせて表示 */
#page-privacy-policy .privacy-section:first-of-type {
	margin-top: 30px;
}
/* セクションタイトル */
#page-privacy-policy .privacy-section h3 {
	font-size: 15px;
	font-weight: bold;
	margin: 0 0 25px;
}
/* サブ見出し */
#page-privacy-policy .privacy-section h4 {
	font-size: 15px;
	font-weight: bold;
	margin: 35px 0 18px;
}
/* 段落 */
#page-privacy-policy .privacy-section p {
	margin: 0 0 22px;
	font-size: 14px;
}
/* リスト */
#page-privacy-policy .privacy-section ol {
	margin: 0 0 25px 1.6em;
	padding: 0;
}
#page-privacy-policy .privacy-section li {
	margin: 0 0 12px;
	font-size: 14px;
}
/* =========================
   apply 
========================= */
#page-apply {
	overflow-x: hidden;
}
#page-apply #mv {
	padding: 30px 0;
	height: 740px;
	overflow: hidden;
	position: relative;
}
#page-apply #mv .inner {}
#page-apply #mv h2 {
	font-size: 35px;
	font-weight: bold;
	color: #E64A4A;
	margin: 0 0 30px;
	position: relative;
	z-index: 2;
	text-align: center;
}
#page-apply #mv h2 span {
	font-size: 22px;
	font-weight: bold;
	display: block;
	text-align: center;
}
#page-apply #mv p {
	font-size: 15px;
	font-weight: bold;
	margin: 0 0 20px;
	text-align: center;
}
#page-apply #mv ul {
	display: flex;
	justify-content: center;
	position: absolute;
	bottom: 20px;
	margin: 0 auto;
	left: 0;
	right: 0;
	width: 100%;
	gap: 10px;
}
#page-apply #mv ul li {
	width: 40%;
}
#page-apply #mv .mv-img {
	position: absolute;
	width: 420px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}
#page-apply #app {
	background: #FFF7F7;
	padding: 45px 0;
	text-align: center;
}
#page-apply #app h3 {
	font-size: 30px;
	margin: 0 0 50px;
	text-align: center;
	position: relative;
}
#page-apply #app ul {
	padding: 0 20px;
}
#page-apply #app ul li {
	display: flex;
	flex-wrap: wrap;
	font-size: 18px;
	margin: 0 0 25px;
	position: relative;
}
#page-apply #app ul li::before {
	content: '';
	display: inline-block;
	background: url("../images/apply/i-check.svg");
	width: 35px;
	height: 23px;
	margin: 0 10px 0 0;
}
#page-apply #app ul li p {
	font-weight: 600;
	width: 80%;
}
#page-apply #app ul li span {
	display: block;
	width: 100%;
	font-size: 16px;
	margin: 10px 0 0;
}
/* =========================
   APP FEATURE SECTION
========================= */
#app-feature {
	background: #FFF7F7;
	padding: 50px 0;
	min-height: 1250px
}
#app-feature h3 {
	font-size: 33px;
	color: #E64A4A;
	text-align: center;
	margin: 0 0 50px;
}
.app-feature-inner {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	position: relative;
}
/* 丸共通 */
.app-circle {
	flex-shrink: 0;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
}
.app-circle h4 {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	margin: 0;
}
/* 左赤 */
.app-circle--red {
	background: #E64A4A;
	color: #fff;
}
.app-circle--red ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.app-circle--red li {
	position: relative;
	padding: 15px 0 15px 20px;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
	font-size: 14px;
}
.app-circle--red li:last-child {
	border-bottom: none;
}
.app-circle--red li::before {
	content: "●";
	position: absolute;
	top: 37%;
	left: 0;
	color: #fff;
	font-size: 12px;
}
/* 右グレー */
.app-circle--gray {
	background: #efefef;
	color: #111;
	top: -30px;
}
.app-circle--gray h4 {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	margin: 0;
}
.app-circle--gray ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.app-circle--gray li {
	position: relative;
	padding: 10px 0 20px 20px;
	border-bottom: 1px dashed #ccc;
	display: flex;
	flex-direction: column;
	align-items: center
}
.app-circle--gray li strong {
	position: relative;
}
.app-circle--gray li:last-child {
	border-bottom: none;
}
.app-circle--gray li strong::before {
	content: "●";
	position: absolute;
	top: 20%;
	left: -20px;
	color: #e64848;
	font-size: 12px;
}
.app-circle--gray strong {
	display: block;
	font-size: 16px;
	margin-bottom: 6px;
}
.app-circle--gray span {
	font-size: 14px;
}
/* 中央スマホ */
.app-phone {
	position: absolute;
	width: 220px;
	margin: 0 auto;
	left: 0;
	right: 0;
	bottom: -450px;
	text-align: center;
	z-index: 3;
}
.app-phone img {
	width: 100%;
	height: auto;
	display: block;
}
/* =========================
   APP GUIDE
========================= */
#app-guide {
	background: #FFF7F7;
	padding: 60px 0;
}
.app-guide-inner {
	background: #fff;
	width: 90%;
	margin: 0 auto;
	border-radius: 24px;
	padding: 60px 0;
	text-align: center;
}
/* ---------- タイトル ---------- */
.app-guide-title {
	margin: 0 0 60px;
	font-size: 22px;
	font-weight: bold;
	position: relative;
	display: flex;
	justify-content: center;
}
.app-guide-title span {
	position: relative;
	display: flex;
	align-items: center;
	gap: 30px;
}
.app-guide-title span::before, .app-guide-title span::after {
	content: "";
	display: inline-block;
	background: url("../images/apply/i-ttl.svg");
	width: 14px;
	height: 53px;
}
.app-guide-title span::after {
	transform: scaleX(-1);
}
/* ---------- ステップ ---------- */
.app-guide-steps {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.guide-step {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 40px;
}
.guide-icon {
	height: 90px;
	margin-bottom: 30px;
}
.guide-icon img {
	height: 100%;
	width: auto;
}
.guide-step-num {
	font-size: 20px;
	font-weight: bold;
	color: #f2a6a6;
	letter-spacing: 1px;
	margin: 0 0 15px;
}
.guide-text {
	font-size: 20px;
	line-height: 1.8;
	margin: 0;
	text-align: center;
}
/* =========================
   APP DOWNLOAD
========================= */
#app-download {
	background: #FFF7F7;
	padding: 0 20px 120px;
}
.app-download-inner {
	margin: 0 auto;
	border: 3px solid #e64848;
	border-radius: 24px;
	padding: 30px 20px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column-reverse;
	background: #fff;
}
.app-download-phones {
	width: 100%;
}
/* ---------- 右コンテンツ ---------- */
.app-download-content {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.app-icon img {
	width: 100px;
	margin-bottom: 25px;
}
.app-download-text {
	font-size: 25px;
	margin: 0 0 30px;
	text-align: center;
}
.app-download-text span {
	color: #e64848;
	font-weight: bold;
}
.app-store-buttons ul {
	display: flex;
	gap: 20px;
	justify-content: center;
}
.app-store-buttons img {
	height: 43px;
	width: auto;
}
/* =========================================
  リクート
========================================= */
#recruit-top {
	margin: 59px 0 0;
}
#recruit-top #mv {
	background: #F2F2F2;
	text-align: center;
	height: 585px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
}
#recruit-top #mv img {
	width: 100%;
	height: 585px;
	object-fit: cover;
}
#recruit-top #mv h2 {
	font-size: 70px;
	color: #fff;
	text-align: center;
	position: absolute;
	bottom: 10px;
	line-height: 0.9;
}
#recruit-top #mv h2 span {
	display: block;
	font-size: 23px;
	font-weight: bold;
	letter-spacing: .1em;
	text-align: center;
}
#recruit-top #recruit-list {
	padding: 40px 0 90px;
}
#recruit-top #recruit-list h2 {
	font-size: 25px;
	font-weight: 600;
	text-align: center;
	margin: 0 0 30px;
	letter-spacing: 0.2em;
}
#recruit-top #recruit-list ul {
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 60px;
}
#recruit-top #recruit-list ul li {
	width: 100%;
	text-align: center;
}
#recruit-top #recruit-list ul li .img {
	position: relative;
	margin: 0 0 30px;
}
#recruit-top #recruit-list ul li:nth-child(1) .img p {
	position: absolute;
	bottom: 10px;
	left: 10px;
	z-index: 2;
	color: #fff;
	font-size: 19px;
	font-weight: 600;
}
#recruit-top #recruit-list ul li:nth-child(2) .img p {
	position: absolute;
	width: 100%;
	text-align: center;
	top: 47%;
	left: 10px;
	z-index: 2;
	color: #fff;
	font-size: 19px;
	font-weight: 600;
}
.btn-recruit {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 300px;
	height: 50px;
	background: #E54848;
	color: #fff;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	overflow: hidden;
	border: 2px solid transparent;
	transition: color .35s ease, border-color .35s ease;
}
/* 左から白が入るレイヤー */
.btn-recruit::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #fff;
	transform: translateX(-100%);
	transition: transform .35s ease;
	z-index: 1;
}
/* 前面表示 */
.btn-recruit .btn-text, .btn-recruit .btn-circle {
	position: relative;
	z-index: 2;
}
/* 右端の白丸 */
.btn-recruit .btn-circle {
	position: absolute;
	right: 18px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .35s ease;
}
/* 矢印 */
.btn-recruit .btn-circle svg {
	width: 16px;
	height: 16px;
	stroke: #E54848;
	stroke-width: 2;
	fill: none;
	stroke-linecap: square;
	stroke-linejoin: miter;
	transition: stroke .35s ease;
}
/* hover状態 */
.btn-recruit:hover {
	color: #E54848;
	border-color: #E54848;
}
.btn-recruit:hover::before {
	transform: translateX(0);
}
.btn-recruit:hover .btn-circle {
	background: #E54848;
}
.btn-recruit:hover .btn-circle svg {
	stroke: #fff;
}
/* =========================================
   GREEN（中途採用）
========================================= */
.btn-recruit--green {
	background: #9FD000;
	color: #fff;
}
.btn-recruit--green .btn-circle {
	background: #fff;
}
.btn-recruit--green .btn-circle svg {
	stroke: #9FD000;
}
.btn-recruit--green:hover {
	color: #9FD000;
	border-color: #9FD000;
}
.btn-recruit--green:hover .btn-circle {
	background: #9FD000;
}
.btn-recruit--green:hover .btn-circle svg {
	stroke: #fff;
}
/* =========================================
   BLUE（アルバイト・パート）
========================================= */
.btn-recruit--blue {
	background: #2F7FBD;
	color: #fff;
}
.btn-recruit--blue .btn-circle {
	background: #fff;
}
.btn-recruit--blue .btn-circle svg {
	stroke: #2F7FBD;
}
.btn-recruit--blue:hover {
	color: #2F7FBD;
	border-color: #2F7FBD;
}
.btn-recruit--blue:hover .btn-circle {
	background: #2F7FBD;
}
.btn-recruit--blue:hover .btn-circle svg {
	stroke: #fff;
}
/* hover共通（白切替） */
.btn-recruit:hover::before {
	transform: translateX(0);
}
/* =========================================
   BLACK
========================================= */
.btn-recruit--black {
	background: #222;
	color: #fff;
}
.btn-recruit--black .btn-circle {
	background: #fff;
}
.btn-recruit--black .btn-circle svg {
	stroke: #222;
}
.btn-recruit--black:hover {
	color: #222;
	border-color: #222;
}
.btn-recruit--black:hover .btn-circle {
	background: #222;
}
.btn-recruit--black:hover .btn-circle svg {
	stroke: #fff;
}
/* hover共通 */
.btn-recruit:hover::before {
	transform: translateX(0);
}
/* =========================================
  comlineとは？
========================================= */
#about-comline {
	overflow-x: hidden;
	padding: 0 0 80px;
	margin: 59px 0 0;
}
#about-comline #mv {
	background: #F2F2F2;
	text-align: center;
	height: 130px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
#about-comline #mv h2 {
	font-size: 43px;
	font-weight: bold;
	letter-spacing: .1em;
	text-align: center;
}
#about-comline h2 span {
	font-size: 26px;
	text-align: center;
}
#about-comline #heading {
	padding: 20px 0;
}
#about-comline #heading p {
	font-size: 14px;
	line-height: 1.8;
	text-align: center;
	padding: 0 0 60px;
}
#about-comline .business-list ul {
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 40px;
	margin: 0;
}
#about-comline .business-list ul li {
	position: relative;
}
#about-comline .business-list .no {
	border-radius: 999px;
	background: #E64A4A;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 26px;
	color: #fff;
	font-weight: 900;
	width: 60px;
	height: 60px;
	position: absolute;
	top: -30px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
#about-comline .business-list img {
	border-radius: 10px;
	text-align: center;
	margin: 0 0 25px;
}
#about-comline .business-list h4 {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	margin: 0 0 15px;
}
#about-comline .business-list h4 span {
	font-size: 14px;
	display: block;
	color: #969696;
	font-weight: bold;
	text-align: center;
}
#about-comline .business-list p {
	font-size: 18px;
	font-weight: 500;
	text-align: center;
}
#about-comline #market-section {
	padding: 0 20px 120px;
}
#about-comline .market-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	flex-direction: column;
	gap: 30px;
	margin: 0 auto 70px;
}
#about-comline .market-card {
	background: #fff;
	border: 2px solid #E54848;
	border-radius: 20px;
	padding: 40px 20px;
	text-align: center;
}
/* タイトル */
#about-comline .market-title {
	position: relative;
	display: inline-block;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
}
/* 左側（┌） */
#about-comline .market-title::before {
	content: "";
	position: absolute;
	top: 2px;
	left: -18px;
	width: 12px;
	height: 18px;
	border-top: 2px solid #E54848;
	border-left: 2px solid #E54848;
}
/* 右側（┘）← 修正ポイント */
#about-comline .market-title::after {
	content: "";
	position: absolute;
	bottom: -2px;
	right: -18px;
	width: 12px;
	height: 18px;
	border-bottom: 2px solid #E54848;
	border-right: 2px solid #E54848;
}
/* 画像 */
#about-comline .market-image {
	margin-bottom: 25px;
	margin: 0 auto;
}
#about-comline .market-image img {
	width: 100%;
	border-radius: 14px;
	display: block;
}
/* ロゴ */
#about-comline .market-logos {
	margin: 20px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 25px;
	align-items: center;
}
#about-comline .market-logos img {
	width: 120px;
	object-fit: contain;
}
/* テキスト */
#about-comline .market-text {
	font-size: 14px;
	line-height: 2;
	text-align: center;
}
/*#about-comline ul.bland-sub {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin: 0 auto 70px;
	max-width: 98vw;
}*/
#about-comline ul.bland-sub li {
	flex-shrink: 0;
}
#about-comline ul.bland-sub li img {
	height: 80px;
	object-fit: contain;
}
#about-comline .recruit-btn {
	display: flex;
	justify-content: center;
}
#about-comline #movie {
	background: #F7F7F7;
	padding: 140px 0 70px;
	display: flex;
	justify-content: center;
}
#about-comline #movie .inner {
	position: relative;
	z-index: 2;
}
#about-comline #movie .icon {
	position: absolute;
	top: -115px;
	right: -85px;
	width: 250px;
	z-index: 0;
}
/* -------------------------------
   vision 回転オブジェクト
--------------------------------*/
#about-comline #movie::before {
	content: '';
	display: block;
	background: url(https://cont-p.com/comline/wp-content/themes/comline/images/index/thanks-txt.svg) no-repeat center/contain;
	width: 255px;
	height: 250px;
	position: absolute;
	right: -120px;
	top: 50px;
	animation: rotate-left 40s linear infinite;
}
#about-comline #movie::after {
	content: '';
	display: block;
	background: url(https://cont-p.com/comline/wp-content/themes/comline/images/index/thanks-txt2.svg) no-repeat center/contain;
	position: absolute;
	width: 200px;
	height: 200px;
	right: -90px;
	top: 72px;
	animation: rotate-right 40s linear infinite;
}
/* 左回り（反時計回り） */
@keyframes rotate-left {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}
/* 右回り（時計回り） */
@keyframes rotate-right {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
#about-comline #movie .img {
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
#about-comline #movie .img video {
	width: 100%;
}




/* =========================================
   VISION
========================================= */
#about-comline .vision {
	background: #FFF7F7;
	padding: 80px 20px;
	
}
#about-comline .vision__inner {
	margin: 0 auto;
	text-align: center;
}
#about-comline .vision__en {
	font-size: 40px;
	font-weight: 900;
	letter-spacing: .14em;
	margin: 0 0 8px;
	text-align: center;
	color: #E64A4A;
}
#about-comline .vision__ja {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .12em;
	margin: 0 0 38px;
	opacity: .9;
	text-align: center;
	color: #E64A4A;
}
#about-comline .vision__headline {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: .06em;
	margin: 0 0 26px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

#about-comline .vision__headline::before {
	position: absolute;
	content: "「";
	font-size: 35px;
	color: #E64A4A;
	top: 0;
	left: 0;
}
#about-comline .vision__headline::after {
	position: absolute;
	content: "」";
	font-size: 35px;
	color: #E64A4A;
	bottom: 0;
	right: 0;
}




#about-comline .vision__lead {
	margin: 0 auto 40px;
	font-size: 14px;
	line-height: 2.2;
	opacity: .92;
	text-align: center;
	
	
}
#about-comline .vision__lead p {
	text-align: center;
	margin: 0 0 60px;
}
#about-comline .vision__subhead {
	font-size: 20px;
	font-weight: 800;
	letter-spacing: .08em;
	margin: 0 0 22px;
	text-align: center;
	color: #E64A4A;
}
#about-comline .vision__timeline-img {
	width: 100%;
	margin: 0 auto 32px;
}
#about-comline .vision__timeline-img img {
	width: 100%;
	height: auto;
	display: block;
}



/* ===== 3 cols ===== */
#about-comline .vision-cols {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 46px;
	text-align: left;
}
#about-comline .vision-col__head {
	font-size: 20px;
	font-weight: 800;
	margin: 0 0 14px;
}
#about-comline .vision-col__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
#about-comline .vision-col__list li {
	position: relative;
	padding-left: 20px;
	font-size: 14px;
	line-height: 2.15;
	opacity: .92;
}
#about-comline .vision-col__list li::before {
	content: "●";
	position: absolute;
	left: 0;
	top: 0;
	line-height: 2.15;
	color: #E64A4A;
}
/* =========================================
   GREETING
========================================= */
.greeting {
	padding: 60px 20px;
}
.greeting__inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
}
/* 左 */
.greeting__content {
	flex: 1;
}
.greeting__title {
	font-size: 48px;
	font-weight: 600;
	margin: 0 0 6px;
}
.greeting__subtitle {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: .12em;
	margin: 0 0 25px;
}
.greeting__text {
	font-size: 14px;
	line-height: 2.1;
}
.greeting__text p {
	margin: 0 0 18px;
}
/* 右 */
.greeting__profile {
	text-align: left;
}
.greeting__image {
	margin-bottom: 18px;
}
.greeting__image img {
	width: 100%;
	height: auto;
	display: block;
}
.greeting__position {
	font-size: 17px;
	margin: 0 0 6px;
}
.greeting__name {
	font-size: 35px;
	font-weight: 600;
	margin: 0;
	letter-spacing: .08em;
}
/* =========================================
   COMPANY OVERVIEW
========================================= */
.overview {
	background: #F2F2F2;
	padding: 60px 0;
}
.overview__inner {
	display: flex;
	flex-direction: column-reverse;
	gap: 35px;
	align-items: flex-start;
}
/* 左：写真 */
.overview__photo {
	margin: 0;
}
.overview__photo img {
	width: 100%;
	height: auto;
	display: block;
}
/* 右：ボックス */
.overview__box {
	flex: 1;
	padding-top: 10px;
}
/* 見出し */
.overview__head {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 14px;
	padding: 0 20px;
}
.overview__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #111;
	display: inline-block;
}
/* 表 */
.overview__table {
	width: 90%;
	margin: 0 auto;
	border-collapse: collapse;
	table-layout: fixed;
	font-size: 15px;
}
.overview__table th, .overview__table td {
	border: 1px solid #bdbdbd;
	padding: 12px 14px;
	vertical-align: middle;
	line-height: 1.7;
}
/* 左ラベル列（黒） */
.overview__table th {
	width: 130px;
	background: #2b2b2b;
	color: #fff;
	font-weight: 600;
	text-align: left;
	font-size: 14px;
}
/* 右 */
.overview__table td {
	background: #fff;
	font-size: 14px;
}
/* =========================================
   ENTRY INFO
========================================= */
.entry-info {
	padding: 40px 20px;
}
.entry-info__inner {
	background: #dcdcdc;
	border-radius: 20px;
	padding: 40px 20px;
	display: flex;
	flex-direction: column;
	gap: 25px;
}
/* 左 */
.entry-info__left {}
.entry-info__title {
	font-size: 29px;
	font-weight: 600;
}
.entry-info__subtitle {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: .12em;
	margin: 0;
}
/* 右 */
.entry-info__right {
	flex: 1;
}
.entry-info__text {
	font-size: 14px;
	line-height: 2;
	margin: 0 0 30px;
}
/* ボタン */
.entry-info__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}
/* 既存ボタン幅調整 */
.entry-info__buttons .btn-recruit {
	width: 320px;
	height: 50px;
}
/* =========================================
  数字で見るコムライン
========================================= */
#inside {
	overflow-x: hidden;
	padding: 0 0 80px;
	margin: 59px 0 0;
}
#inside #mv {
	background: #F2F2F2;
	text-align: center;
	height: 130px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
#inside #mv h2 {
	font-size: 38px;
	font-weight: bold;
	letter-spacing: .1em;
	text-align: center;
}
#inside h2 span {
	display: block;
	font-size: 15px;
	text-align: center;
}
#inside #heading {
	padding: 20px 0;
}
/*#about-comline #heading p {
	font-size: 18px;
	line-height: 1.8;
	text-align: center;
	padding: 0 0 120px;
}*/
/* =========================================
   COMPANY DATA
========================================= */
#company-data.company-data {
	background: #fff;
	padding: 20px 0 35px;
}
#company-data p {
	text-align: center;
	font-size: 14px;
	line-height: 2;
	margin: 0 0 40px;
}
/* ラッパー */
.company-data__list {
	width: 100%;
}
/* 注釈 */
#company-data p.company-data__note {
	font-size: 12px;
	text-align: right;
	margin: 0 0 18px !important;
}
/* ul */
.company-data__list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
/* li */
.company-data__list li {
	margin: 0;
	width: 48%;
}
/* 画像 */
.company-data__list img {
	width: 100%;
	height: auto;
	display: block;
}
/* =========================================
   BENEFITS
========================================= */
.benefits {
	background: #F2F2F2;
	padding: 60px 0;
}
.benefits__title {
	text-align: center;
	font-size: 30px;
	font-weight: 600;
	margin: 0 0 70px;
}
/* 3列×2段 */
.benefits__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 78px 15px;
}
/* カード */
.benefits__card {
	position: relative;
	background: #fff;
	border: 3px solid #E64A4A;
	border-radius: 18px;
	padding: 80px 30px 30px;
	min-height: 310px;
	width: 324px;
	margin: 0 auto;
}
/* 丸アイコン（画像） */
.benefits__icon {
	position: absolute;
	top: -53px;
	left: 50%;
	transform: translateX(-50%);
	width: 102px;
	height: 102px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.benefits__icon img {
	width: 102px;
	height: 102px;
	display: block;
	object-fit: contain;
}
/* 見出し */
.benefits__head {
	text-align: center;
	font-size: 22px;
	font-weight: 600;
	margin: 0 0 30px;
	color: #E64A4A;
}
/* 本文 */
.benefits__text {
	margin: 0;
	font-size: 16px;
	line-height: 2;
}
.js-more-list .is-sp-hide {
	display: none;
}
.js-more-list.is-open .is-sp-hide {
	display: list-item;
}
.js-more-btn {
	width: 100%;
	height: 60px;
	background: #bfbfbf;
	color: #fff;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: none;
	position: relative;
	padding: 0 50px;
	margin: 40px 0;
}
.js-more-btn::after {
	content: "";
	width: 8px;
	height: 8px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -6px;
	transition: .3s;
}
.js-more-btn.is-open::after {
	transform: rotate(-135deg);
	margin-top: -2px;
}
.js-more-btn.is-open {
	background: #8c8c8c;
}
/* =========================================
   COMPANY CTA
========================================= */
.company-cta {
	background: #fff;
	padding: 80px 0;
	position: relative;
}
.company-cta__inner {
	display: flex;
	flex-direction: column-reverse;
	gap: 40px;
	align-items: center;
}
.company-cta__media {}
.company-cta__media img {
	width: 100%;
	height: auto;
	display: block;
}
/* 右：テキスト */
.company-cta__content {}
.company-cta__catch {
	display: inline-flex;
	flex-direction: column;
	margin: 0 0 30px;
	align-items: flex-start;
}
.company-cta__catch span {}
.company-cta__catch-line {
	display: inline-block;
	padding: 5px 40px 5px 20px;
	color: #fff;
	font-size: 26px;
	font-weight: 700;
}
/* オレンジ */
.company-cta__catch-line--orange {
	background: #F2A11B;
	clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
}
/* ブルー */
.company-cta__catch-line--blue {
	background: #2F7FBD;
	clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
}
/* 本文 */
.company-cta__text {
	font-size: 14px;
	line-height: 2;
	margin: 0 0 50px;
	padding: 0 20px;
}
.company-cta__text p {
	margin: 0 0 12px;
}
/* ボタン */
.company-cta__btn {
	display: flex;
	justify-content: center;
}
.company-cta__btn .btn-recruit {
	width: 300px;
	height: 50px;
}
/* =========================================
   新卒
========================================= */
#new-graduate {
	overflow-x: hidden;
	margin: 59px 0 0;
}
#new-graduate #mv {
	height: 585px;
	position: relative;
}
#new-graduate #mv .mv-img img {
	width: 100%;
	height: 585px;
	object-fit: cover;
}
#new-graduate #mv .mv-txt {
	position: absolute;
	bottom: 0;
	left: 0px;
	z-index: 2;
}
#new-graduate #mv h2 {
	position: absolute;
	top: 50px;
	right: 10px;
	z-index: 2;
	font-size: 28px;
	text-align: right;
}
/* =========================================
   NEWS SECTION
========================================= */
#new-graduate .news-section {
	padding: 40px 0;
}
#new-graduate .news-section__inner {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 40px;
	padding: 0 20px;
}
/* 左側タイトル */
#new-graduate .news-section__head {}
#new-graduate .news-section__title-en {
	font-size: 35px;
	font-weight: 700;
	text-align: center;
}
#new-graduate .news-section__title-ja {
	font-size: 18px;
	margin: 0;
	font-weight: 600;
	text-align: center;
}
/* 右リスト */
#new-graduate .news-section__list {
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1;
}
#new-graduate .news-section__item {
	margin-bottom: 7px;
}
#new-graduate .news-section__item a {
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: #F7F7F7;
	border-radius: 8px;
	padding: 10px;
	text-decoration: none;
	color: #000;
	font-size: 14px;
	transition: background .2s ease;
}
#new-graduate .news-section__item a:hover {
	background: #dcdcdc;
}
#new-graduate .news-section__date {
	font-weight: 500;
	color: #8E8E8E;
	font-size: 15px;
}
#new-graduate .news-section__text {
	flex: 1;
}
/* =========================================
   MOVIE + INTERVIEW（紫上端斜めが出る版）
   - overflow hidden をやめる（縦は切らない）
   - 斜めは top:-H で確実に見せる
========================================= */
.mi-section {
	position: relative;
	overflow-x: hidden;
	overflow-y: visible;
	background: transparent;
	padding: 15vw 0 0;
}
/* 中の幅 */
.mi-inner {
	width: min(1080px, 90vw);
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
/* ===== 縦文字（画像） ===== */
.mi-vertical {
	position: absolute;
	left: -23px;
	width: 120px;
	height: auto;
	z-index: 5;
	pointer-events: none;
}
.ttl-interview {
	top: 70px;
}
/* =========================
   上：MOVIE（紫）
========================= */
.mi-movie {
	--angle: -6deg;
	--slantH: 240px; /* 紫の斜めの厚み */
	background: #7b60e1;
	position: relative;
	z-index: 1;
	padding: 60px 0 90px; /* 下は赤が重なる分、厚め */
}
/* 紫の上端斜め（白背景側へはみ出す） */
.mi-movie::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0vw;
	width: 100%;
	height: var(--slantH);
	background: #7b60e1;
	transform: skewY(var(--angle));
	transform-origin: left bottom;
}
.mi-movie h3 {
	margin: 0 0 20px;
	text-align: right;
	font-weight: 700;
	letter-spacing: .08em;
	font-size: 55px;
	color: #fff;
	padding: 0 15px 0 0;
}
/* MOVIEテキスト */
.mi-movie__catch {
	margin: 0 0 35px;
	font-weight: 700;
	letter-spacing: .08em;
	font-size: 20px;
	color: #fff;
}
/* 動画枠 */
.mi-movie__thumb {
	display: block;
	width: min(860px, 100%);
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	border-radius: 2px;
}
.mi-movie__thumb video {
	width: 100%;
	display: block;
}
/* =========================
   下：INTERVIEW（赤）
   - 赤を紫に“斜めでかぶせる”
========================= */
.mi-interview {
	--angle: -6deg;
	--slantH: 90px; /* 赤の斜めの厚み */
	background: #E64A4A;
	position: relative;
	z-index: 2;
	padding: 90px 0 90px; /* 斜めぶん＋中身 */
}
/* 赤の上端斜め（紫にかぶさる） */
.mi-interview::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: var(--slantH);
	background: #e54848;
	transform: skewY(var(--angle));
	transform-origin: left bottom;
	z-index: 1;
}
.mi-interview h3 {
	margin: 0 0 20px;
	text-align: right;
	font-weight: 700;
	letter-spacing: .08em;
	font-size: 55px;
	color: #fff;
	padding: 0 15px 0 0;
	z-index: 2;
}
/* カード */
.mi-cards {
	margin: 0 auto 46px;
	display: flex;
	flex-direction: column;
	gap: 26px;
}
.mi-card {
	overflow: hidden;
}
.mi-card__img {
	width: 100%;
	display: block;
	border-radius: 25px;
}
.mi-card__body {
	margin: 20px 0 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.mi-card__badge {
	display: flex;
	align-items: center;
	font-size: 18px;
	color: #fff;
	margin-bottom: 8px;
}
.mi-card__badge span {
	display: inline-block;
	line-height: 1;
	padding: 5px 10px;
	border-radius: 999px;
	background: #fff;
	color: #E64A4A;
	font-size: 14px;
	margin: 0 10px 0 0;
}
.mi-card__name {
	margin: 0 0 10px;
	font-size: 28px;
	font-weight: 700;
	color: #fff;
}
.mi-card__dept {
	margin: 0;
	font-size: 18px;
	color: #fff;
}
/* ボタンは配置だけ */
.mi-btn {
	display: flex;
	justify-content: center;
}
/* =============================
   Fresh Movie Section
============================= */
#fresh-movie {
	background: url("../images/recruit/new-graduate/fresh-movie-bg.png") center;
	padding: 70px 20px;
}
.fresh-movie__inner {
	margin: 0 auto;
}
.fresh-movie__title {
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
}
/* grid */
.fresh-movie__grid {
	width: 1085px;
	padding: 0 30px 30px;
	display: flex;
	overflow-x: scroll;
	gap: 30px;
}
/* card */
.fresh-card {
	flex-shrink: 0;
	position: relative;
	display: block;
	overflow: hidden;
	width: 260px;
}
.fresh-card img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform .4s ease;
}
.fresh-card:hover img {
	transform: scale(1.05);
}
/* play button */
.fresh-card__play {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 70px;
	height: 70px;
	transform: translate(-50%, -50%);
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s ease;
}
.fresh-card__play::before {
	content: "";
	width: 0;
	height: 0;
	border-left: 18px solid #333;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	margin-left: 4px;
}
.fresh-card:hover .fresh-card__play {
	background: #000;
}
.fresh-card:hover .fresh-card__play::before {
	border-left-color: #fff;
}
/* 下段3枚中央寄せ */
.fresh-movie__grid a:nth-child(n+5) {
	grid-column: span 1;
}
.fresh-movie__grid a:nth-child(5) {
	grid-column: 1 / span 1;
}
/* =========================
  WORK（斜め帯：正解版と同系）
  ※rotate/skewなし
========================= */
.work-sec {
	--bg: #E8A52B; /* 帯の色だけ差し替え */
	--top: 70px; /* 上のズレ量 */
	--top: 0px;
	--bottom: 80px; /* 下のズレ量 */
	position: relative;
	padding: 120px 0;
	overflow: hidden;
}
/* 斜め帯：擬似要素で1枚敷く（正解版の仕組みに寄せ） */
.work-sec::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--bg);
	z-index: 0;
	/* 斜めをclip-pathで作る（角度・位置はここで調整） */
	clip-path: polygon(0 var(--top), 100% 0, 100% calc(100% - var(--bottom)), 0 100%);
}
/* 中身 */
.work-sec__inner {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	text-align: center;
	padding: 0 20px;
}
.work-sec__title {
	margin: 0 0 40px;
	font-size: 35px;
	font-weight: 600;
	text-align: center;
}
.work-sec__title span {
	display: block;
	margin-top: 0px;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
}
.work-sec-wrap {
	padding: 40px 0;
	overflow-x: scroll;
}
/* cards */
.work-sec__grid {
	display: flex;
	gap: 28px;
	margin: 0 0 30px;
}
.work-card {
	position: relative;
	width: 280px;
	flex-shrink: 0;
}
.work-card__tag {
	position: absolute;
	top: -45px;
	left: 0px;
	margin: 0;
	background: #111;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	padding: 8px 14px;
	border-radius: 0 20px 0 0;
}
.work-card__box {
	background: #fff;
	border: 2px solid #111;
	border-radius: 0 18px 18px 18px;
	padding: 34px 20px 26px;
	min-height: 330px;
}
.work-card__logo {
	display: flex;
	justify-content: center;
	margin: 0 0 22px;
}
.work-card__logo img {
	display: block;
	max-width: 180px;
	height: auto;
}
.work-card__txt {
	margin: 0;
	text-align: left;
	font-size: 15px;
	line-height: 1.9;
	letter-spacing: .02em;
}
/* button */
.work-sec__btn {
	display: flex;
	justify-content: center;
}
.work-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 42px;
	border-radius: 999px;
	background: #111;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
}
.work-btn__icon {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	position: relative;
}
.work-btn__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-40%, -50%);
	width: 0;
	height: 0;
	border-left: 6px solid #111;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
}
/* =========================
  Numbers Section
========================= */
.numbers-sec {
	padding: 100px 20px 40px;
}
.numbers-sec__inner {
	margin: 0 auto;
	text-align: center;
}
.numbers-sec__title {
	font-size: 35px;
	font-weight: 700;
	text-align: center;
	margin: 0 0 40px;
}
.numbers-sec__sub {
	margin: 0 0 20px;
	font-size: 25px;
	font-weight: 700;
	text-align: center;
}
.numbers-sec__sub span {
	display: inline-block;
	margin-top: 6px;
	font-size: 15px;
	text-align: center;
}
.numbers-sec__list {
	list-style: none;
	margin: 0 0 10px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
}
.numbers-sec__item {
	width: 48%;
}
.numbers-sec__item img {
	display: block;
	width: 100%;
	height: auto;
}
.numbers-sec .date {
	font-size: 13px;
	text-align: right;
	margin: 0 0 40px;
}
/* =========================
  Welfare
========================= */
#welfare-sec {
	padding: 70px 20px 40px;
}
.welfare-sec__inner {
	margin: 0 auto;
	text-align: center;
}
.welfare-sec__title {
	margin: 0 0 30px;
	font-size: 25px;
	font-weight: 700;
	text-align: center;
}
.welfare-sec__title span {
	display: block;
	font-weight: 600;
	text-align: center;
	font-size: 15px;
}
.welfare-sec__list {
	list-style: none;
	margin: 0 0 75px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
.welfare-sec__item {
	width: 48%;
}
/* card */
.welfare-card {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 15px;
	padding: 20px;
	background: #fff;
	border: 2px solid #E64A4A;
	border-radius: 15px;
	text-decoration: none;
	color: #E64A4A;
}
.welfare-card img {
	width: 50px;
	height: 50px;
	display: block;
}
.welfare-card__txt {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	color: #E64A4A;
}
/* =========================
  Greeting
========================= */
#greeting-sec {
	padding: 50px 20px 100px;
}
.greeting-sec__inner {
	border: 5px solid #F2AE33;
	padding: 50px 20px;
}
.greeting-sec__grid {
	display: flex;
	flex-direction: column;
}
/* left */
.greeting-sec__left {}
.greeting-sec__title {
	margin: 0 0 26px;
	line-height: 1;
}
.greeting-sec__title-main {
	display: block;
	font-size: 35px;
	font-weight: 600;
	text-align: center;
}
.greeting-sec__title-sub {
	display: block;
	font-size: 18px;
	font-weight: 600;
	margin: 5px 0 0;
	text-align: center;
}
.greeting-sec__body p {
	margin: 0 0 18px;
	font-size: 14px;
	line-height: 2.0;
	/*text-align: center;*/
}
/* right */
.greeting-sec__right {
	display: flex;
	flex-direction: column;
}
.greeting-sec__photo {
	margin: 25px 0 15px;
}
.greeting-sec__photo img {
	display: block;
	width: 100%;
	height: auto;
}
.greeting-sec__name {
	text-align: left;
}
.greeting-sec__role {
	font-size: 14px;
	font-weight: 700;
}
.greeting-sec__person {
	margin: 0;
	font-size: 30px;
	font-weight: 700;
}
/* =========================
  ENTRY CTA
========================= */
#entry-cta-sec {
	background: #38AD35;
	padding: 70px 20px;
	position: relative;
	overflow: hidden;
}
.entry-cta-sec__inner {
	text-align: center;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-wrap: wrap;
}
.entry-cta-sec__bg {
	font-size: 70px;
	font-weight: 800;
	letter-spacing: .12em;
	color: rgba(255, 255, 255, .18);
	line-height: 1;
	margin: 0 0 30px;
	text-align: center;
}
/* リード文 */
.entry-cta-sec__lead {
	margin: 0 0 56px;
	color: #fff;
	font-size: 14px;
	line-height: 2;
	position: relative;
}
/* ボタン並び */
.entry-cta-sec__btns {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
	position: relative;
	z-index: 1;
}
/* =========================
  ENTRY CTA ボタン
========================= */
#entry-cta-sec .mi-btn {
	padding: 7px;
	background: #fff;
	border-radius: 999px;
	width: 300px;
}
#entry-cta-sec .btn-recruit {
	--btn-color: #000; /* デフォルト */
	background: #fff;
	border: 2px solid var(--btn-color);
	color: var(--btn-color);
	transition: .25s ease;
}
/* 丸 */
#entry-cta-sec .btn-recruit .btn-circle {
	border: 2px solid var(--btn-color);
	background: #fff;
	transition: .25s ease;
}
#entry-cta-sec .btn-recruit .btn-circle svg path {
	stroke: var(--btn-color);
	transition: .25s ease;
}
/* hover */
#entry-cta-sec .btn-recruit:hover {
	background: var(--btn-color);
}
#entry-cta-sec .btn-recruit:hover .btn-circle {
	background: var(--btn-color);
	border-color: #fff;
}
#entry-cta-sec .btn-recruit:hover .btn-circle svg path {
	stroke: #fff;
}
/* 色指定 */
#entry-cta-sec .btn-recruit--red {
	--btn-color: #E54B4B;
}
#entry-cta-sec .btn-recruit--lime {
	--btn-color: #9AD000;
}
#entry-cta-sec .btn-recruit--blue {
	--btn-color: #2D7BFF;
}
/* =========================
  hover
========================= */
#entry-cta-sec .mi-btn {
	padding: 7px;
	background: #fff;
	border-radius: 999px;
	transition:
		transform .25s ease, box-shadow .25s ease;
}
/* hover時（中のボタンhoverで発火） */
#entry-cta-sec .mi-btn:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}
/* クリック時 */
#entry-cta-sec .mi-btn:active {
	transform: translateY(-1px);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}
#entry-cta-sec .btn-recruit {
	transition:
		background .25s ease, box-shadow .25s ease, transform .25s ease;
}
/* hover */
#entry-cta-sec .btn-recruit:hover {
	transform: translateY(0px);
}
#entry-cta-sec .btn-recruit:active {
	transform: translateY(0px);
}
/* =========================
  新卒nterview 
========================= */
#newgraduat-interview {
	padding: 0 0 100px;
	overflow-x: hidden;
	margin: 59px 0 0;
}
#newgraduat-interview h2.ttl {
	display: none;
	/*display: flex;
	align-items: baseline;
	font-size: 102px;
	margin: 0 0 0 60px;*/
}
#newgraduat-interview h2.ttl span {
	display: none;
	/*display: inline-block;
	margin: 0 0 0 30px;
	font-size: 28px;*/
}
/* 2-2-3 配列 */
#newgraduat-interview #mv ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
}
#newgraduat-interview #mv ul li {
	width: 50%;
	position: relative;
}




/* 5個目以降（=3段目の3枚）は 3カラム */
#newgraduat-interview #mv ul li:nth-child(n+5) {
	width: 33.3333%;
}



#newgraduat-interview #mv ul li .icatch-txt{
	position: absolute;
	top: 5px;
	left: 5px;
	color: #fff;
	font-size: 10px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #E64A4A;
	display: flex;
	justify-content: center;
	align-items: center;
		text-align: center;
}


#newgraduat-interview #mv ul li:nth-child(5n+1) .icatch-txt{ background: #E64A4A; }
#newgraduat-interview #mv ul li:nth-child(5n+2) .icatch-txt{ background: #F2AE33; }
#newgraduat-interview #mv ul li:nth-child(5n+3) .icatch-txt{ background: #38AD35; }
#newgraduat-interview #mv ul li:nth-child(5n+4) .icatch-txt{ background: #2484CB; }
#newgraduat-interview #mv ul li:nth-child(5n+5) .icatch-txt{ background: #8966ED; }





#newgraduat-interview #mv ul li img {
	vertical-align: bottom;
	height: 260px;
	object-fit: cover;
}
#newgraduat-interview #mv ul li p {
	position: absolute;
	background: #000;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	bottom: 0;
	left: 0;
	padding: 0 30px 0 10px; /* 右に余白多め */
	/* 斜めカット */
	clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0 100%);
}
/* =========================
  Interview Day Section
========================= */
.interview-day {
	padding: 50px 0;
}
.interview-day__inner {}
.interview-day__grid {
	display: flex;
	flex-direction: column-reverse;
	gap: 30px;
}
/* 左 */
.interview-day__left {}
.interview-day__title {
	margin: 0 0 26px;
	font-size: 26px;
	text-align: center;
	font-weight: 600;
	line-height: 1.6;
}
.interview-day__body p {
	margin: 0 0 18px;
	font-size: 14px;
	line-height: 2.0;
}
/* スケジュール */
.interview-day__schedule {
	margin: 20px auto 50px;
	padding: 20px;
	border: 2px solid #333;
	border-radius: 12px;
}
.interview-day__schedule-title {
	margin: 0 0 18px;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
}
.interview-day__schedule-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	row-gap: 20px;
	column-gap: 20px;
}
.interview-day__schedule-list li {
	font-size: 15px;
	font-weight: 600;
}
.interview-day__schedule-list span {
	font-weight: 700;
	margin-right: 8px;
}
/* 右 */
.interview-day__right {
	text-align: center;
	padding: 0 20px;
}

.interview-day__photo  {
	position: relative;
}

.interview-day__photo img {
	width: 100%;
	display: block;
}



.interview-day__photo .icatch-txt{
	position: absolute;
	top: 10px;
	left: 10px;
	color: #fff;
	font-size: 12px;
	width: 65px;
	height: 65px;
	border-radius: 50%;
	background: #E64A4A;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}


#newgraduat-interview .interview-day:nth-child(5n+1) .icatch-txt{ background: #E64A4A; }
#newgraduat-interview .interview-day:nth-child(5n+2) .icatch-txt{ background: #F2AE33; }
#newgraduat-interview .interview-day:nth-child(5n+3) .icatch-txt{ background: #38AD35; }
#newgraduat-interview .interview-day:nth-child(5n+4) .icatch-txt{ background: #2484CB; }
#newgraduat-interview .interview-day:nth-child(5n+5) .icatch-txt{ background: #8966ED; }





.interview-day__profile {
	margin-top: 15px;
}
.interview-day__role {
	margin: 0 0 6px;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
}
.interview-day__name {
	margin: 0;
	font-size: 28px;
	font-weight: 600;
	text-align: center;
}
/* 下段ギャラリー */
.interview-day__gallery {
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	margin: 0;
	padding: 0;
}
.interview-day__gallery li {}
.interview-day__gallery img {
	width: 100%;
	display: block;
	border-radius: 20px;
}
/* =========================
  中途トップ
========================= */
#career {
	background: #E8E8E8;
	padding: 0 0 200px;
	margin: 59px 0 0;
}
#career #mv {
	position: relative;
	height: 580px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#career #mv img {
	width: 100%;
	height: 580px;
	object-fit: cover;
}
#career #mv h2 {
	font-size: 32px;
	font-weight: 600;
	position: absolute;
	color: #fff;
	text-align: center;
}
/* =========================
  About Section
========================= */
#career .about-sec {
	padding: 50px 20px 70px;
	position: relative;
}
#career .about-sec__inner {}
#career .about-sec__grid {}
/* left */
#career .about-sec__left {
	position: relative;
	z-index: 1;
}
#career .about-sec__kicker {
	margin: 0 0 10px;
	font-size: 35px;
}
#career .about-sec__title {
	margin: 0 0 40px;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.35;
}
#career .about-sec__text p {
	margin: 0 0 70px;
	font-size: 14px;
	line-height: 2.0;
	letter-spacing: .02em;
}
/* right */
#career .about-sec__right {
	margin: 40px 0 0;
}
#career .mi-btn {
	justify-content: center;
}
#career .btn-recruit {
	border-radius: 0px;
}
/* =========================================
   NEWS SECTION
========================================= */
#career .news-section {
	padding: 50px 20px;
}
#career .news-section__inner {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
/* 左側タイトル */
#career .news-section__head {}
#career .news-section__title-en {
	font-size: 35px;
	font-weight: 900;
}
#career .news-section__title-ja {
	font-size: 18px;
	margin: 0;
	font-weight: 600;
}
/* 右リスト */
#career .news-section__list {
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1;
}
#career .news-section__item {
	border-bottom: 1px solid #B7B7B7;
}
#career .news-section__item a {
	display: flex;
	flex-direction: column;
	;
	gap: 10px;
	border-radius: 8px;
	padding: 18px 0;
	text-decoration: none;
	color: #000;
	font-size: 14px;
	transition: background .2s ease;
}
#career .news-section__item a:hover {}
#career .news-section__date {
	font-weight: 500;
	color: #8E8E8E;
	font-size: 14px;
}
#career .news-section__text {
	flex: 1;
}
/* =========================
  Work Header Section
========================= */
#work-head-sec {
	padding: 40px 20px 70px;
	background: #fff;
}
#work-head-sec .work-head-sec__inner {}
#work-head-sec .work-head-sec__en {
	margin: 0 0 6px;
	font-size: 35px;
}
#work-head-sec .work-head-sec__title {
	margin: 0 0 30px;
	font-size: 30px;
	font-weight: 600;
}
#work-head-sec .work-head-sec__lead {
	margin: 0 0 30px;
	font-size: 14px;
	line-height: 2.0;
}
#work-head-sec .img {
	text-align: center;
	margin: 0 0 30px;
}

#work-head-sec ul{
	margin: 0 0 60px;
	text-align: center;
}



#work-head-sec ul li{
	margin: 0 0 30px;
	text-align: center;
}




#career #work-head-sec .mi-btn {
	justify-content: center;
}
#career #movie-section {
	background: #222222;
	padding: 50px 20px;
}
#career #movie-section h2 {
	font-size: 35px;
	color: #696969;
	margin: 0 0 20px;
}
/* =========================
  Interview Section
========================= */
#career #interview-section {
	padding: 50px 20px;
}
#career #interview-section .interview__en {
	margin: 0 0 6px;
	font-size: 35px;
}
#career #interview-section h2 {
	margin: 0 0 30px;
	font-size: 35px;
	font-weight: 600;
}
#career #interview-section .interview-section-inner p.interview__en {
	font-size: 35px;
}
#career .interview-section-inner {}
#career #interview-section .interview-section-inner p.interview-section__lead {
	margin: 0 0 70px;
	font-size: 18px;
}
#career #interview-section ul {
	display: flex;
	overflow-x: scroll;
	margin: 0 0 60px;
	padding: 0;
}
#career #interview-section ul li {
	position: relative;
	width: 260px;
	flex-shrink: 0;
	overflow: hidden;
}
/* 画像 */
#career #interview-section ul li .img img {
	width: 100%;
	display: block;
}
/* マスク */
#career #interview-section ul li::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	transition: .3s ease;
	z-index: 1;
}
/* hoverした人だけ明るく */
#career #interview-section ul li:hover::after {
	background: rgba(0, 0, 0, 0);
}
/* 名前 */
#career #interview-section ul li p {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	margin: 0;
	padding: 12px 18px;
	font-size: 25px;
	font-weight: 700;
	color: #fff;
}
#career #interview-section ul li p span {
	display: block;
	font-size: 12px;
	font-weight: 400;
	color: #fff;
}
#career #interview-section .mi-btn {
	justify-content: center;
}
/* =========================
  Interview Detail
========================= */
#career #interview-detail {
	background: #222222;
	padding: 20px;
}
#career #interview-detail .interview-detail__inner {
	width: 100%;
	height: 100%;
}
#career #interview-detail .interview-detail__grid {
	display: flex;
	flex-direction: column;
}
/* 左：写真固定幅＆左端 */
#career #interview-detail .interview-detail__photo {
	margin: 0;
	height: 100%;
	overflow: hidden;
	background: #ddd;
}
#career #interview-detail .interview-detail__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	display: block;
}
/* 右：背景を画面右まで伸ばす */
#career #interview-detail .interview-detail__content {
	flex: 1;
	color: #fff;
	display: flex;
	align-items: center; /* 縦中央 */
}
#career #interview-detail .interview-detail__content-inner {
	width: 100%;
	padding: 30px 20px;
}
#career #interview-detail .interview-detail__role {
	;
	font-size: 18px;
	font-weight: 600;
}
#career #interview-detail .interview-detail__name {
	margin: 0 0 24px;
	font-size: 35px;
	font-weight: 600;
}
#career #interview-detail .interview-detail__text p {
	margin: 0;
	font-size: 14px;
	line-height: 2.1;
	color: #fff;
}
/* =========================
  Career Flow
========================= */
#career-flow {
	padding: 100px 20px 70px;
}
#career-flow .career-flow__inner {}
#career-flow .career-flow__img-wrap {
	position: relative;
}
/* 絶対配置テキスト */
#career-flow .career-flow__heading {}
#career-flow .career-flow__heading h2 {
	font-size: 25px;
	font-weight: 600;
	line-height: 1.5;
}
#career-flow .career-flow__att {
	width: 100%w;
	border: 3px solid #222;
	padding: 20px;
	border-radius: 20px;
	margin: 20px 0 0;
}
#career-flow .career-flow__att p {
	font-size: 14px;
	font-weight: 600;
}
#career-flow .career-flow__att2 {
	margin: 15px 0 0;
	width: 100%;
	font-size: 12px;
}
/* =========================
  数字で見るコムライン
========================= */
#career #interview-numbers-sec {
	padding: 0 20px 100px;
}
#career #interview-numbers-sec .interview-numbers-sec-inner {}
#career #interview-numbers-sec p.interview__en {
	font-size: 35px;
	margin: 0;
}
#career #interview-numbers-sec h2 {
	font-size: 30px;
	margin: 0 0 30px;
}
#career #interview-numbers-sec p {
	font-size: 14px;
	margin: 0 0 40px;
}
#career #interview-numbers-sec p.date {
	font-size: 12px;
	text-align: right;
	margin: 0 0 75px;
}
#career #interview-numbers-sec .mi-btn {
	justify-content: center;
}
/* =========================
  福利厚生
========================= */
#career #interview-welfare-sec {
	padding: 0 20px 50px;
}
#career #interview-welfare-sec .interview-welfare-sec-inner {}
#career #interview-welfare-sec p.interview__en {
	font-size: 35px;
	margin: 0;
}
#career #interview-welfare-sec h2 {
	font-size: 30px;
	margin: 0 0 30px;
}
.interview-welfare-sec__list {
	margin: 0 0 30px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
}
.interview-welfare-sec__item {
	width: 48%;
	height: 100%;
}
/* card */
.interview-welfare-card {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 15px;
	border: 4px solid #E64A4A;
	text-decoration: none;
	padding: 25px 0;
}
.interview-welfare-card img {
	width: 50px;
	height: 50px;
	display: block;
}
.welfare-card__txt {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
}
#career #interview-welfare-sec .mi-btn {
	justify-content: center;
}
/* =========================
  中途interview 
========================= */
#career-interview {
	padding: 0 0 200px;
	overflow-x: hidden;
	background: #E8E8E8;
	margin: 59px 0 0;
}
#career-interview h2.ttl {
	display: none;
	/*display: flex;
	align-items: baseline;
	font-size: 102px;
	margin: 0 0 0 60px;*/
}
#career-interview h2.ttl span {
	display: none;
	/*display: inline-block;
	margin: 0 0 0 30px;
	font-size: 28px;*/
}
#career-interview #mv ul {
	display: flex;
	flex-wrap: wrap;
}
#career-interview #mv ul li {
	width: 50%;
	position: relative;
	overflow: hidden;
}
/* 5個目以降（=3段目の3枚）は 3カラム */
#career-interview #mv ul li:nth-child(n+5) {
	width: 33.3333%;
}
/* 画像 */
#career-interview #mv ul li .img img {
	width: 100%;
	display: block;
}
/* マスク */
#career-interview #mv ul li::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	transition: .3s ease;
	z-index: 1;
}
/* hoverした人だけ明るく */
#career-interview #mv ul li:hover::after {
	background: rgba(0, 0, 0, 0);
}
/* activeは最初から明るく */
#career-interview #mv ul li.is-current::after {
	background: rgba(0, 0, 0, 0);
}
/* 名前 */
#career-interview #mv ul li p {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	margin: 0;
	padding: 12px 18px;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
}


#career-interview #mv ul li span.icatch-txt {
	background: #ADD601;
	color: #000;
	padding: 2px;
	display: inline-block;
	
	
	
}
#career-interview #mv ul li p span {
	display: block;
	font-size: 10px;
	font-weight: 400;
	color: #fff;
}

#career-interview #mv ul li p span.ttl {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
}




/* =========================
  MV Career
========================= */
#career-interview #mv-career {
	position: relative;
	height: 480px;
}
#career-interview #mv-career img {
	width: 100%;
	height: 480px;
	object-fit: cover;
	display: block;
}
/* =========================
  右：縦キャッチ
========================= */
#career-interview #mv-career .mv-career__catch {
	position: absolute;
	right: 17px;
	top: 17px;
	margin: 0;
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	gap: 10px;
}
#career-interview #mv-career .mv-career__catch span {
	writing-mode: vertical-rl;
	background: #a6d608;
	padding: 15px 7px;
	font-size: 23px;
	font-weight: 600;
	letter-spacing: .08em;
	display: inline-block;
}
/* =========================
  左下：ネームボックス
========================= */
#career-interview #mv-career .mv-career__name {
	position: absolute;
	left: 0px;
	bottom: 20px;
	background: rgba(0, 0, 0, .8);
	color: #fff;
	padding: 15px;
}
#career-interview #mv-career .mv-career__position {
	margin: 0 0 6px;
	font-size: 12px;
}
#career-interview #mv-career .mv-career__person {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: .08em;
}


#career-interview #mv-career .icatch-txt {
	position: absolute;
	left: 0;
	top: -25px;
	background: #A2D60A;
	color: #000;
	padding: 2px 0px 2px 10px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	display: inline-block;
	z-index: 1;
}

#career-interview #mv-career .icatch-txt::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0px;
	width: 30px;
	height: 100%;
	background: #A2D60A;
	transform: skewX(30deg);
	transform-origin: top right;
	z-index: -1;
}




/* =========================
  Career First Section
========================= */
#career-interview #career-first {
	background: #1f1f1f;
	padding: 30px 0;
}
#career-interview #career-first .inner {}
/* 左テキスト */
#career-interview #career-first .career-first__content {
	color: #fff;
}
/* 英語 */
#career-interview #career-first .career-first__en {
	margin: 0 0 10px;
	font-size: 20px;
	text-align: center;
}
/* タイトル */
#career-interview #career-first .career-first__title {
	margin: 0 0 24px;
	font-size: 25px;
	font-weight: 600;
	text-align: center;
}
/* リード */
#career-interview #career-first .career-first__lead {
	margin: 0 0 40px;
	font-size: 14px;
	line-height: 2;
	text-align: center;
}
/* 緑ラベル */
#career-interview #career-first .career-first__label {
	display: inline-block;
	background: #a6d608;
	color: #000;
	font-weight: 700;
	padding: 14px;
	margin: 0 0 20px;
	font-size: 15px;
}
/* 本文 */
.txt-outer {
	position: relative;
}
#career-interview #career-first .career-first__text {}
#career-interview #career-first .career-first__text p {
	font-size: 14px;
	line-height: 2.1;
	color: #fff;
}
/* 右写真 */
#career-interview #career-first .career-first__photo {
	margin: 30px;
}
#career-interview #career-first .career-first__photo img {}
/* =========================
  Day Schedule
========================= */
#career-interview #day-schedule {
	background: #222222;
	padding: 50px 0px;
}
#career-interview #day-schedule .day-schedule__title {
	color: #fff;
	font-size: 23px;
	font-weight: 600;
	margin: 0 0 45px;
	display: flex;
	align-items: center;
	gap: 12px;
}
#career-interview #day-schedule .day-schedule__icon {
	font-size: 20px;
	line-height: 1;
}
#career-interview #day-schedule .day-schedule__grid {
	display: flex;
	flex-direction: column;
}
/* list */
#career-interview #day-schedule .day-schedule__list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	row-gap: 14px;
	margin: 0 0 14px;
}
/* item card */
#career-interview #day-schedule .day-schedule__item {
	display: flex;
	background: #fff;
	align-items: center;
	padding: 10px 15px;
	width: 100%;
}
#career-interview #day-schedule .day-schedule__time {
	display: block;
	font-size: 15px;
	font-weight: 700;
	width: 60px;
	border-right: 2px solid #ADD601;
	margin: 0 20px 0 0;
}
#career-interview #day-schedule .day-schedule__text {
	font-size: 15px;
	font-weight: 700;
}
#career-interview #common-sec {
	padding: 40px 0;
}
#career-interview #common-sec h3 {
	margin: 0 0 20px;
}
#career-interview #common-sec h3 span {
	background: #222;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	padding: 5px 10px;
}
#career-interview #common-sec p {
	font-size: 14px;
	margin: 0 0 40px;
}
#career-interview #common-sec .img img {
	width: 100%;
}
/* =========================
  Career Place Section
========================= */
#career-interview #career-place {
	background: #959595;
	padding: 50px 0;
}
#career-interview #career-place .career-place__inner {
	text-align: center;
}
/* 画像 */
#career-interview #career-place .career-place__media {
	position: relative;
	margin-bottom: 25px;
}
#career-interview #career-place .career-place__media img {
	width: 100%;
	display: block;
}

#career-interview #career-place .career-place__media video {
	width: 100%;
	display: block;
}


.career-place__text {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
/* タイトル */
#career-interview #career-place .career-place__title {
	margin: 0 0 20px;
	text-align: center;
	font-size: 23px;
	font-weight: 700;
	color: #fff;
	border-bottom: 1px solid #fff;
}
/* 本文 */
#career-interview #career-place .career-place__lead {
	font-size: 14px;
	line-height: 2;
	color: #fff;
	text-align: center;
}
/* =========================
  Career Gallery
========================= */
#career-interview #career-gallery {
	background: #efefef;
	padding: 80px 0;
}
#career-interview #career-gallery .inner {
	position: relative;
}
/* タイトル（右上） */
#career-interview #career-gallery .career-gallery__title {
	font-size: 29px;
	font-weight: 700;
	text-align: right;
	z-index: 2;
	margin: 0 0 30px;
}
/* 画像ラップ */
#career-interview #career-gallery .career-gallery__images {
	position: relative;
}
#career-interview #career-gallery .career-gallery__images ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
#career-interview #career-gallery .career-gallery__images ul img {
	width: 250px;
	height: 250px;
	object-fit: cover;
}
#career-interview #career-gallery .career-gallery__images ul li:nth-child(2) {
	margin: 0 0 0 36px;
}
#career-interview #career-gallery .career-gallery__images ul li:nth-child(3) {
	margin: 0 0 0 78px;
}
/* =========================
  Career Next Challenge
========================= */
#career-interview #career-next {
	background: #222;
	padding: 50px 0;
	position: relative;
	overflow: hidden;
}
#career-interview #career-next .inner {
	position: relative;
}
/* 背景の巨大文字 */
#career-interview #career-next .career-next__bg {
	font-size: 9vw;
	font-weight: 700;
	color: #626262;
	text-align: center;
}
/* 上段中央 */
#career-interview #career-next .career-next__head {
	position: relative;
	text-align: center;
	color: #fff;
	padding-top: 24px;
	margin-bottom: 30px;
}
#career-interview #career-next .career-next__title {
	margin: 0 0 30px;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
}
#career-interview #career-next .career-next__lead {
	text-align: center;
	font-size: 14px;
	line-height: 2.2;
}
/* 下段2カラム */
#career-interview #career-next .career-next__grid {
	display: flex;
	flex-direction: column-reverse;
	padding: 0 20px;
}
/* 左画像 */
#career-interview #career-next .career-next__photo {}
#career-interview #career-next .career-next__photo img {
	object-fit: cover;
}
/* 右 */
#career-interview #career-next .career-next__body {}
#career-interview #career-next .career-next__label {
	display: inline-block;
	background: #a6d608;
	font-size: 15px;
	color: #000;
	font-weight: 700;
	padding: 5px 12px;
	margin: 0 0 18px;
	letter-spacing: .06em;
}
#career-interview #career-next .career-next__text p {
	font-size: 14px;
	color: #fff;
	margin: 0 0 40px;
}






/* ===============================
   募集要項
================================= */
#job-description {}
/* ---------- MV ---------- */
#job-description #mv {
	background: #F2F2F2;
	text-align: center;
	height: 130px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
#job-description #mv h2 span {
	display: block;
	font-size: 38px;
	font-weight: 500;
	letter-spacing: .1em;
	text-align: center;
}
#job-description h2 {
	font-size: 15px;
	text-align: center;
}
/* ---------- CONTENT WRAP ---------- */
#job-description .news-wrap {
	padding: 50px 0 100px;
}
#job-description .news-inner {
	padding: 0 30px;
	margin: 0 auto;
}
/* ---------- FILTER ---------- */
#job-description .news-filter {
	text-align: center;
	margin-bottom: 50px;
}
#job-description .news-filter__label {
	font-size: 20px;
	margin: 0 0 36px;
	text-align: center;
	font-weight: bold;
}
#job-description .news-filter__tabs {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}
#job-description .news-tab {
	padding:5px 20px;
	border-radius: 999px;
	border: 1px solid #333;
	background: #fff;
	font-size: 15px;
	cursor: pointer;
	transition: .2s;
}
#job-description .news-tab:hover {
	background: #222;
	color: #fff;
}
#job-description .news-tab.is-active {
	background: #222;
	color: #fff;
}
/* ---------- LIST ---------- */
#job-description .news-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
#job-description .news-item {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 22px 0;
	border-bottom: 1px solid #ddd;
	font-size: 14px;
}
#job-description .news-cat {
	min-width: 70px;
	height: 24px;
	padding: 0 14px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}
#job-description .news-cat.is-shinsotsu {
	background: #E64A4A;
}
#job-description .news-cat.is-chuto {
	background: #ADD601;
}
#job-description .news-cat.is-sonota {
	background: #222;
}
#job-description .news-cat.is-part {
	background: #2484CB;
}
#job-description .news-date {
	min-width: 80px;
	font-size: 15px;
}
#job-description .news-title {
	flex: 1;
	color: #222;
	text-decoration: none;
	transition: .2s;
}
#job-description .news-title:hover {
	text-decoration: underline;
}
/* ---------- PAGER ---------- */
#job-description .news-pager {
	margin-top: 60px;
	text-align: center;
}
#job-description .news-pager ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-flex;
	gap: 15px;
}
#job-description .news-pager li {
	list-style: none;
}
#job-description .news-pager a, #job-description .news-pager span {
	display: inline-flex;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	text-decoration: none;
	font-size: 14px;
}
#job-description .news-pager a {
	background: #fff;
	border: 1px solid #ccc;
	color: #333;
}
#job-description .news-pager .current {
	background: #333;
	color: #fff;
}
/* ---------- EMPTY ---------- */
#job-description .news-empty {
	padding: 40px 0;
	text-align: center;
}
#job-description .job-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0 0 60px;
}
#job-description .job-card {
	border: 1px solid #222222;
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	cursor: pointer;
	display: block;
}


#job-description .job-card__inner {
	display: flex;
	flex-direction: column-reverse;
	justify-content: space-between;
	align-items: center;
	min-height: 160px;
}
#job-description .job-card__content {
	flex: 1;
	padding: 20px;
}
#job-description .job-card__status {
	position: relative;
	margin: 0 0 20px;
	padding-left: 14px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
}
#job-description .job-card__status::before {
	content: "";
	position: absolute;
	top: 2px;
	left: 0;
	width: 4px;
	height: 100%;
	background: #ef4b4b;
	border-radius: 2px;
}
#job-description .job-card__list {
	margin: 0 0 30px;
}
#job-description .job-card__row {
	display: flex;
	align-items: flex-start;
	margin: 0 0 10px;
	line-height: 1.8;
}
#job-description .job-card__row:last-child {
	margin-bottom: 0;
}
#job-description .job-card__row dt {
	flex: 0 0 90px;
	margin: 0;
	font-weight: 700;
	
	font-size: 14px;
}
#job-description .job-card__row dd {
	flex: 1;
	margin: 0;
	font-size: 12px;
}

#job-description .job-card__inner .to-recruit-contact {
        
    }


#job-description .job-card__image {
	width: 100%;
	margin: 0;
}
#job-description .job-card__image img {
	width: 100%;
	height: 210px;
	border-radius: 16px 16px 0 0;
	display: block;
	object-fit: cover;
}
#job-description.job-single .job-card {
	border: 2px solid #ef4b4b;
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
}


#job-description.job-single .job-card__content {
        flex: 1;
        padding: 22px 0 0;
    }


#job-description.job-single .job-card__inner {
	display: block;
}
#job-description.job-single .job-card__status {
	font-size: 18px;
	font-weight: 700;
	padding: 0 24px;
	margin: 20px ;
	border-bottom: 0px ;
}

#job-description.job-single .job-card__status::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: #ef4b4b;
        border-radius: 2px;
    }






#job-description.job-single .job-card__list {
	margin: 20px 0 0;
}
/* 行 */
#job-description.job-single .job-card__row {
	display: flex;
	border-bottom: 2px solid #FAE7E7;
	margin: 0;
	align-items: normal;
}
#job-description.job-single .job-card__row:last-child {
	border-bottom: none;
}
/* 左（項目） */
#job-description.job-single .job-card__row dt {
	
	
	
}

#job-description.job-single .job-card__row dt {
	font-size: 14px;
	background: #FFF7F7;
	font-weight: 700;
	flex: 0 0 120px;
	padding: 20px;
	justify-content: center;
	align-items: center;
	display: flex;
}
#job-description.job-single .job-card__row dd {
	padding: 20px ;
	flex: 1;;
	margin: 0;
	line-height: 1.8;
	font-size: 14px;
	
}

.description-btn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 30px;
	margin: 60px 0;
}
.back-top-red {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	padding: 0 45px;
	height: 50px;
	border-radius: 999px;
	border: 2px solid #E64A4A;
	background: #E64A4A;
	text-decoration: none;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	transition: .3s;
}
.back-top-red:hover {
	background: #fff;
	color: #E64A4A;
}
/* 右の黒丸 */
.back-top-red .back-top__icon {
	width: 23px;
	height: 23px;
	background: #E64A4A;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
}
.back-top-red .back-top__icon img {
	width: 23px;
	height: 23px;
}
/* ホバー時 */
.back-top-red .back-top:hover .back-top__icon {
	background: #fff;
}
.back-top-red .back-top:hover .back-top__icon img {
	filter: invert(1);
}
.to-recruit-contact {
	display: flex;
	align-items: center;
	justify-content: center;
}
/* リンク */
.to-recruit-contact .link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: bold;
}
/* 赤丸アイコン */
.to-recruit-contact .icon {
	width: 22px;
	height: 22px;
	background: #d74c4c;
	border-radius: 50%;
	position: relative;
}
/* 矢印 */
.to-recruit-contact .icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translate(-60%, -50%) rotate(45deg);
}


/* ===============================
   ENTRY FORM
================================= */
#entry-form-page{
	
	
}
/* ---------- MV ---------- */
#entry-form-page #mv {
	background: #F2F2F2;
	text-align: center;
	height: 130px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
#entry-form-page #mv h2 span {
	display: block;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: .1em;
	text-align: center;
}
#entry-form-page h2 {
	font-size: 18px;
	text-align: center;
}


#entry-form-page .entry-form-page__inner{
	
	
	margin:40px auto;
	box-sizing:border-box;
	
}

#entry-form-page .entry-lead-bar{
	background:#8d8d8d;
	color:#fff;
	font-size:14px;
	font-weight:700;
	line-height:1.6;
	padding:9px 18px;
	margin:0 0 36px;
}
#entry-form-page .entry-common-error{
	margin:0 0 24px;
	padding:12px 14px;
	border:1px solid #e49a9a;
	background:#fff4f4;
	color:#cf3f3f;
	font-size:13px;
	line-height:1.7;
}
#entry-form-page .entry-common-error p{
	margin:0 0 4px;
}
#entry-form-page .entry-common-error p:last-child{
	margin-bottom:0;
}
#entry-form-page .entry-block{
	margin:0 0 42px;
}
#entry-form-page .entry-block__title,
#entry-form-page .entry-section-heading{
	margin:0 0 18px;
	color:#222;
	font-size:21px;
	font-weight:700;
	line-height:1.4;
	text-align: left;
}
#entry-form-page .entry-block__caption{
	margin:0 0 20px;
	color:#666;
	font-size:12px;
	line-height:1.9;
}
#entry-form-page .entry-item{
	margin:0 0 22px;
}
#entry-form-page .entry-item-grid{
	display:grid;
	column-gap:22px;
	row-gap:0;
}
#entry-form-page .entry-item-grid--name{
	grid-template-columns:1fr 1fr;
}
#entry-form-page .entry-item__head{
	display:flex;
	align-items:center;
	gap:10px;
	margin:0 0 10px;
	min-height:22px;
}
#entry-form-page .entry-item__head label{
	color:#333;
	font-size:14px;
	font-weight:500;
	line-height:1.4;
}
#entry-form-page .entry-badge{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-width:42px;
	height:20px;
	padding:0 8px;
	font-size:11px;
	font-weight:700;
	line-height:1;
	border-radius:0;
}
#entry-form-page .entry-badge--required{
	background:#d9a441;
	color:#fff;
}
#entry-form-page .entry-badge--optional{
	background:#b8b8b8;
	color:#fff;
}
#entry-form-page .entry-input,
#entry-form-page .entry-select,
#entry-form-page .entry-textarea{
	display:block;
	width:100%;
	border:1px solid #8f8f8f;
	background:#fff;
	color:#333;
	font-size:14px;
	line-height:1.5;
	border-radius:0;
	box-shadow:none;
}
#entry-form-page .entry-input{
	height:46px;
	padding:0 14px;
}
#entry-form-page .entry-input--full{
	width:100%;
}
#entry-form-page .entry-input::placeholder,
#entry-form-page .entry-textarea::placeholder{
	color:#b6b6b6;
}
#entry-form-page .entry-textarea{
	min-height:46px;
	padding:10px 14px;
	resize:vertical;
}
#entry-form-page .entry-note{
	margin:7px 0 0;
	color:#999;
	font-size:12px;
	line-height:1.6;
}
#entry-form-page .entry-error{
	margin:7px 0 0;
	color:#d33a3a;
	font-size:12px;
	line-height:1.7;
}
#entry-form-page .entry-birth-row{
	display:flex;
	align-items:center;
	gap:10px;
	flex-wrap:wrap;
}
#entry-form-page .entry-select{
	width:86px;
	height:46px;
	padding:0 34px 0 14px;
	appearance:none;
	-webkit-appearance:none;
	-moz-appearance:none;
	background:
		linear-gradient(45deg, transparent 50%, #666 50%),
		linear-gradient(135deg, #666 50%, transparent 50%),
		linear-gradient(to right, transparent, transparent);
	background-position:
		calc(100% - 18px) 19px,
		calc(100% - 12px) 19px,
		100% 0;
	background-size:6px 6px, 6px 6px, 2.5em 2.5em;
	background-repeat:no-repeat;
}
#entry-form-page .entry-birth-unit{
	color:#444;
	font-size:13px;
	line-height:1;
}
#entry-form-page .entry-radio-line{
	display:flex;
	flex-wrap:wrap;
	column-gap:22px;
	row-gap:10px;
	padding-top:4px;
}
#entry-form-page .entry-radio-line label{
	display:inline-flex;
	align-items:center;
	gap:6px;
	color:#333;
	font-size:13px;
	line-height:1.5;
	cursor:pointer;
}
#entry-form-page .entry-radio-line input[type="radio"]{
	margin:0;
}
#entry-form-page .entry-privacy{
	margin:14px 0 32px;
}
#entry-form-page .entry-privacy__label{
	display:inline-flex;
	align-items:center;
	gap:10px;
	color:#333;
	font-size:13px;
	line-height:1.7;
	cursor:pointer;
}
#entry-form-page .entry-privacy__label input{
	margin:0;
	width:18px;
	height:18px;
}
#entry-form-page .entry-privacy__label a{
	color:#d85a5a;
	text-decoration:underline;
}
#entry-form-page .entry-submit-wrap{
	text-align:center;
	margin:0 0 48px;
}
#entry-form-page .entry-submit-btn{
	position:relative;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-width:220px;
	height:38px;
	padding:0 42px;
	border:1px solid #e19797;
	border-radius:999px;
	background:#fff6f6;
	color:#d85858;
	font-size:12px;
	font-weight:700;
	line-height:1;
	cursor:pointer;
}
#entry-form-page .entry-submit-btn::after{
	content:"›";
	display:flex;
	align-items:center;
	justify-content:center;
	position:absolute;
	right:10px;
	top:50%;
	transform:translateY(-50%);
	width:17px;
	height:17px;
	border-radius:50%;
	background:#e05c5c;
	color:#fff;
	font-size:12px;
	line-height:1;
}
#entry-form-page .entry-submit-btn--back::after{
	content:"‹";
}
#entry-form-page .entry-caution{
	border-top:1px solid #cfcfcf;
	padding-top:30px;
}
#entry-form-page .entry-caution__title{
	margin:0 0 12px;
	color:#222;
	font-size:13px;
	font-weight:700;
	line-height:1.6;
}
#entry-form-page .entry-caution p{
	margin:0;
	color:#555;
	font-size:11px;
	line-height:1.95;
}
#entry-form-page .entry-confirm-box,
#entry-form-page .entry-state-box{
	padding:0;
}
#entry-form-page .entry-confirm-list{
	margin:0 0 32px;
	border-top:1px solid #bdbdbd;
}
#entry-form-page .entry-confirm-row{
	display:flex;
	border-bottom:1px solid #bdbdbd;
}
#entry-form-page .entry-confirm-row dt{
	width:220px;
	padding:15px 18px;
	background:#f6f6f6;
	color:#222;
	font-size:13px;
	font-weight:700;
	line-height:1.8;
}
#entry-form-page .entry-confirm-row dd{
	width:calc(100% - 220px);
	margin:0;
	padding:15px 18px;
	background:#fff;
	color:#333;
	font-size:13px;
	line-height:1.95;
}
#entry-form-page .entry-confirm-buttons{
	display:flex;
	justify-content:center;
	gap:16px;
	flex-wrap:wrap;
}
#entry-form-page .entry-state-box{
	text-align:center;
}
#entry-form-page .entry-state-box__inner{
	padding:60px 24px;
	background:#fff;
	border:1px solid #d9d9d9;
}
#entry-form-page .entry-state-box__title{
	margin:0 0 18px;
	color:#222;
	font-size:28px;
	font-weight:700;
	line-height:1.5;
}
#entry-form-page .entry-state-box__text{
	margin:0;
	color:#444;
	font-size:15px;
	line-height:2;
}

@media screen and (max-width: 767px){
	#entry-form-page{
		
	}
	#entry-form-page .entry-form-page__inner{
		padding:0 20px;
	}
	#entry-form-page .entry-lead-bar{
		font-size:12px;
		padding:8px 12px;
		margin-bottom:24px;
	}
	#entry-form-page .entry-block__title,
	#entry-form-page .entry-section-heading{
		font-size:18px;
		margin-bottom:14px;
	}
	#entry-form-page .entry-block__caption{
		font-size:11px;
	}
	#entry-form-page .entry-item-grid--name{
		grid-template-columns:1fr;
		row-gap:6px;
	}
	#entry-form-page .entry-item__head label{
		font-size:13px;
	}
	#entry-form-page .entry-badge{
		min-width:38px;
		height:18px;
		font-size:10px;
	}
	#entry-form-page .entry-input,
	#entry-form-page .entry-select,
	#entry-form-page .entry-textarea{
		font-size:14px;
	}
	#entry-form-page .entry-input{
		height:44px;
	}
	#entry-form-page .entry-select{
		width:calc(33.333% - 30px);
		min-width:82px;
		height:44px;
	}
	#entry-form-page .entry-note,
	#entry-form-page .entry-error{
		font-size:11px;
	}
	#entry-form-page .entry-radio-line{
		display:block;
	}
	#entry-form-page .entry-radio-line label{
		display:flex;
		margin-bottom:8px;
		font-size:13px;
	}
	#entry-form-page .entry-privacy__label{
		font-size:12px;
		align-items:flex-start;
	}
	#entry-form-page .entry-submit-btn{
		min-width:210px;
		height:38px;
		font-size:12px;
	}
	#entry-form-page .entry-caution{
		padding-top:24px;
	}
	#entry-form-page .entry-caution__title{
		font-size:12px;
	}
	#entry-form-page .entry-caution p{
		font-size:10px;
	}
	#entry-form-page .entry-confirm-row{
		display:block;
	}
	#entry-form-page .entry-confirm-row dt,
	#entry-form-page .entry-confirm-row dd{
		width:100%;
		font-size:12px;
		padding:12px 14px;
	}
	#entry-form-page .entry-state-box__inner{
		padding:42px 20px;
	}
	#entry-form-page .entry-state-box__title{
		font-size:24px;
	}
	#entry-form-page .entry-state-box__text{
		font-size:14px;
	}
}






#page-404 {
	padding: 120px 20px;
	background: #fff;
}

#page-404 .page-404-inner {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

#page-404 .page-404-code {
	font-size: 90px;
	font-weight: 700;
	line-height: 1;
	color: #222;
	margin: 0 0 20px;
}

#page-404 .page-404-title {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.5;
	color: #222;
	margin: 0 0 20px;
}

#page-404 .page-404-text {
	font-size: 16px;
	line-height: 2;
	color: #666;
	margin: 0 0 40px;
}

#page-404 .page-404-btn a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 260px;
	height: 60px;
	padding: 0 30px;
	background: #222;
	color: #fff;
	text-decoration: none;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 700;
	transition: opacity 0.3s ease;
}

#page-404 .page-404-btn a:hover {
	opacity: 0.8;
}

@media screen and (max-width: 767px) {
	#page-404 {
		padding: 80px 20px;
	}

	#page-404 .page-404-code {
		font-size: 60px;
		margin: 0 0 15px;
	}

	#page-404 .page-404-title {
		font-size: 24px;
		margin: 0 0 15px;
	}

	#page-404 .page-404-text {
		font-size: 14px;
		line-height: 1.9;
		margin: 0 0 30px;
	}

	#page-404 .page-404-btn a {
		width: 100%;
		max-width: 320px;
		height: 56px;
		font-size: 15px;
	}
}







