@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,500;1,500&display=swap');

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

:root {
	--color-main: #010101;
	--color-main-blue: #3951aa;
	--color-light-blue: #e1e4f2;
	--color-lightlight-blue: #f4f6fe;
	--color-red: #c8161d;
	--color-deepgray: #2d2d2d;
	--color-d-gray: #404040;
	--color-gray: #777;
	--color-lightgray: #f2f3f5;
	--bg-lightgray: #f5f5f5;
	--line-lightgray: #d5d5d5;
	--font-poppins: "Poppins", sans-serif;
	--font-notoserif: 'Noto Serif JP', serif;
}

html {
	overflow: auto;
	font-size: 100%;
}

/* Global */

body {
	height: 100%;
	color: var(--color-main);
	font-size: 1em;
	font-family: 'Noto Sans JP', "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
	letter-spacing: 1px;
	overflow-wrap: anywhere;
	line-break: strict;
	position: relative;
	display: flex;
	flex-flow: column;
	min-height: 100vh;
	background-color: #fff;
}

html, body {
	overflow-x: clip;  /* 横スクロールを禁止（stickyを阻害しないようclipに変更） */
}

#wrap {
	flex: 1;
}

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

a:hover img {
	opacity: 0.85;
	filter: alpha(opacity=85);
	-ms-filter: "alpha(opacity=85)";
}

.ie8 img {
	width: auto;
}

a:link {
	color: var(--color-main);
	text-decoration: none;
	transition-property: all;
	transition: 0.2s linear;
	border-style: none;
}

a:visited {
	color: var(--color-main);
}

a:hover {
	color: var(--color-main);
	text-decoration: underline;
}

.container {
	width: 92%;
	max-width: 1200px;
	margin: auto;
}

.container1000 {
	width: 92%;
	max-width: 1000px;
	margin: auto;
}

.container1350 {
	width: 92%;
	max-width: 1350px;
	margin: auto;
}

.container1500 {
	width: 92%;
	max-width: 1500px;
	margin: auto;
}

.container1750 {
	width: 92%;
	max-width: 1750px;
	margin: auto;
}


/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	backdrop-filter: blur(10px);
	padding-top: 10px;
	padding-right: 2%;
	padding-left: 2%;
	height: 100px;
	opacity: 1;
	background-color: #fff;
	z-index: 1000;
}


.h1_mov {
	width: 30%;
	text-align: left;
	opacity: 1;
	position: absolute;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0;
	padding: 0;
}

 
.h1_logo {
	width: 118px;
	margin: 20px 0 0;
}


h1 {
	font-family: var(--font-poppins);
	font-size: 1em;
	line-height: 1.4em;
	margin: 20px 0 0 18px;
	letter-spacing: 1px;
	font-weight: 700;
}


h1 a:link,
h1 a:visited {
	color: #000 !important;
}

h1 a:hover {
	text-decoration: none;
}

/* ヘッダーメニュー */
.header_menu {
	text-align: center;
    transition: .6s;
    opacity: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	margin: 15px 0 0 auto;
	width: 70%;
}

ul.main_menu {
	display: flex;
	margin: 20px 50px 0 0;
	padding: 0;
	justify-content: flex-end;
}

ul.main_menu li {
	font-size: 1em;
	line-height: 1.2em;
	font-family: var(--font-poppins);
	font-weight: 500;
	list-style: none;
	margin: 0 50px 0 0;
	padding: 0;
}

ul.main_menu li a {
	color: var(--color-main);
	position: relative;
	display: inline-block;
	overflow: hidden;
}

ul.main_menu li a .txt_default,
ul.main_menu li a .txt_hover {
	display: block;
	transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

ul.main_menu li a .txt_hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	color: var(--color-red);
	transform: translateY(110%) rotateX(-45deg);
	transform-origin: top center;
}

ul.main_menu li a:hover .txt_default {
	transform: translateY(-110%) rotateX(45deg);
	transform-origin: bottom center;
}

ul.main_menu li a:hover .txt_hover {
	transform: translateY(0) rotateX(0deg);
}

ul.main_menu li:last-child {
	margin: 0;
}

/* サブメニュー（ドロップダウン） */
ul.main_menu li.has-sub {
	position: relative;
}

ul.main_menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	text-align: left;
	background-color: #fff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	list-style: none;
	margin: 10px 0 0;
	padding: 12px 0;
	min-width: 220px;
	z-index: 100;
	border-radius: 6px;
	visibility: hidden;
	opacity: 0;
}

ul.main_menu .sub-menu li {
	font-size: 0.85rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	line-height: 1.4;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #e5e5e5;
}

ul.main_menu .sub-menu li:last-child {
	border-bottom: none;
}

ul.main_menu .sub-menu li a {
	display: block;
	padding: 10px 24px;
	color: var(--color-main);
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s;
	overflow: visible;
}

ul.main_menu .sub-menu li a:hover {
	background-color: transparent;
	color: var(--color-red);
	text-decoration: none;
}

/* 子サブメニュー（右に展開） */
ul.main_menu .has-sub-child {
	position: relative;
	cursor: pointer;
}

ul.main_menu .has-sub-child > span {
	display: block;
	padding: 10px 36px 10px 24px;
	color: var(--color-main);
	transition: color 0.2s;
	white-space: nowrap;
}

ul.main_menu .has-sub-child:hover > span {
	color: var(--color-red);
}

/* 矢印アイコン（右向き） */
ul.main_menu .has-sub-child > span::after {
	content: '';
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-top: 1.5px solid var(--color-gray);
	border-right: 1.5px solid var(--color-gray);
	transform: translateY(-50%) rotate(45deg);
	transition: border-color 0.2s;
}

ul.main_menu .has-sub-child:hover > span::after {
	border-color: var(--color-red);
}

ul.main_menu .sub-menu-child {
	position: absolute;
	top: -12px;
	left: 100%;
	background-color: #fff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	list-style: none;
	margin: 0;
	padding: 12px 0;
	min-width: 200px;
	z-index: 101;
	border-radius: 6px;
	text-align: left;
	visibility: hidden;
	opacity: 0;
}

ul.main_menu .sub-menu-child li {
	font-size: 0.85rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	line-height: 1.4;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #e5e5e5;
}

ul.main_menu .sub-menu-child li:last-child {
	border-bottom: none;
}

ul.main_menu .sub-menu-child li a {
	display: block;
	padding: 10px 24px;
	color: var(--color-main);
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s;
}

ul.main_menu .sub-menu-child li a:hover {
	background-color: transparent;
	color: var(--color-red);
	text-decoration: none;
}

/* ホバー領域を繋げるための擬似要素（子サブメニュー用） */
ul.main_menu .has-sub-child::after {
	content: '';
	position: absolute;
	top: 0;
	right: -10px;
	width: 10px;
	height: 100%;
}

/* サブメニュー：ホバー領域を繋げるための擬似要素 */
ul.main_menu li.has-sub::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 15px;
}

.header_menu a {
	text-decoration: none;
}

.header_menu a:hover {
	text-decoration: none;
}

.co_link {
	margin-top: 10px;
}

.co_link a {
	font-size: 0.75rem;
	line-height: 1.7;
	font-weight: 500;
	text-decoration: none;
	padding: 2px 8px 3px;
	border: 1px solid var(--color-main-blue);
	color: var(--color-main-blue);
	transition: all 0.3s;
	width: 100px;
}

.co_link a:hover {
	color: #fff;
	background-color: var(--color-main-blue);
}


/* slide1 */
.slide {
	background-attachment: fixed;
	width: 100%;
	height: auto;
	position: relative;
	padding: 0;
}

#slide1 {
	position: relative;
	margin: 100px 0 0;
	padding: 0;
}

.slide1_kv {
	position: relative;
	width: 100%;
	margin: 0;
}

.slide1_kv img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.slide1_title {
	text-align: right;
	background-color: #fff;
	margin: 0;
	padding: 10px 40px 20px;
	position: absolute;
	opacity: 1;
	right: 0;
	top: 70px;
}

.slide1_title .eg_txt {
	color: var(--color-main);
	font-size: 4rem;
	line-height: 1.3;
	font-family: var(--font-poppins);
	font-weight: 700;
	margin: 0;
}

.slide1_title .eg_txt span {
	color: var(--color-main-blue);
}

.slide1_title .jp_txt {
	color: var(--color-main);
	font-size: 2.4em;
	line-height: 1.3;
	font-weight: 600;
	margin: 0;
}

.slide1_message {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	background-color: var(--color-main-blue);
	margin: 50px auto 0;
	padding: 2em 3em 3em;
	position: relative;
	z-index: 5;
}

.slide1_message .description {
	flex: 1;
	color: #fff;
	text-align: left;
	margin-top: 20px;
}

.slide1_message .title {
	font-size: 1.5rem;
	line-height: 1.7;
	font-weight: 600;
	margin: 0 0 40px;
}

.slide1_message p {
	font-size: 1.1rem;
	line-height: 2;
}

.slide1_message figure {
	width: 450px;
	max-width: 450px;
	flex-shrink: 0;
	margin-right: calc(-2em - 3vw);
	margin-top: 0;
	margin-bottom: -80px;
	align-self: flex-end;
}

.slide1_message figure img {
	width: 100%;
	height: auto;
	display: block;
}



/* タイトル共通 */
.common_title {
	text-align: left;
	position: relative;
	width: 100%;
	margin: 0 0 60px 30px;
	padding: 0;
}

.common_title .en,
.common_title .en2 {
	color: var(--color-light-blue);
	font-size: 9.5rem;
	line-height: 1;
	font-family: var(--font-poppins);
	font-weight: 600;
	display: block;
	margin: 0;
}

.common_title .main_title {
	color: var(--color-main-blue);
	display: flex;
	align-items: center;
	margin: 0 0 0 60px;
	padding: 0;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.common_title .main_title .en-s {
	font-size: 3.5rem;
	font-weight: 600;
	font-family: var(--font-poppins);
	letter-spacing: 0;
}

.common_title .main_title .jp-s {
	font-size: 1.6rem;
	font-weight: 600;
	margin-left: 0.8rem;
	padding-top: 12px;
}


/* テキスト共通 */
.p_center_11 {
	font-size: 1.1rem;
	line-height: 2;
	text-align: center;
	margin: 50px 0 0;
}

.p_left_11 {
	font-size: 1.1rem;
	line-height: 2;
	text-align: left;
	margin: 0;
}

.p_center_1 {
	font-size: 1rem;
	line-height: 2;
	text-align: center;
	margin: 50px 0 0;
}

.p_left_1 {
	font-size: 1rem;
	line-height: 2;
	text-align: left;
	margin: 0;
}



.p_center_095 {
	font-size: 0.95rem;
	line-height: 1.8;
	text-align: center;
	margin: 50px 0 0;
}

.p_left_095 {
	font-size: 0.95rem;
	line-height: 1.8;
	text-align: left;
	margin: 0;
}





/* Slide2 About */
#slide2 {
	text-align: center;
	margin: 130px 0;
	padding: 0;
	position: relative;
}

.top_flex_01 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	width: 100%;
	margin: 0;
	padding: 0;
}

.top_flex_01 .photo {
	width: 76%;
	margin: 0;
	text-align: left;
}

.top_flex_01 .top-links_01 {
	width: 18%;
	flex-shrink: 0;
	padding-left: 0;
	min-width: 270px;
}


.top_flex_01.flexCenter {
	align-items: center;
}

.top_flex_01 .photo_1 {
	width: 60%;
	margin: 0;
	text-align: left;
}

.top_flex_01 .description {
	width: 35%;
	margin: 0;
	padding: 0;
}

.top_flex_01 .description p {
	font-size: 1rem;
	line-height: 2;
	text-align: left;
	margin: 0;
	padding: 0 0 30px;
}



/* Slide3*/
#slide3 {
	margin: 130px 0;
	padding: 0;
	position: relative;
}

.h3_works_en {
	color: var(--color-main-blue);
	font-size: 3.5rem;
	line-height: 1.2;
    font-weight: 600;
    font-family: var(--font-poppins);
    letter-spacing: 0;
	margin: -10px 0 0;
}

.h3_works_jp {
	font-size: 1.3rem;
	line-height: 1;
    font-weight: 400;
    letter-spacing: 1px;
	margin: 7px 0 0;
}

.works_ti_wrap {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0;
	padding: 0;
}

.works_ti_wrap .works_title {
	margin: 0;
	width: 350px;
}

.works_ti_wrap .works_txt {
	margin: 0 !important;
}


/* 職種紹介*/
.jobs_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin: 80px 0 150px;
	padding: 0;
}

.job_photos {
	width: calc(735 / 1350 * 100%);
	margin-top: 40px;
	position: relative;
	opacity: 0;
}

.job_photos > div {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}

.job_photos > div.active {
	display: inline-block;
	position: relative;
	z-index: 2;
	animation: jobDivFadeIn 0.8s ease;
}

.job_photos > div.leaving {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.job_photos > div.active img {
	animation: jobImgSlide 0.8s ease;
}

/* div全体（青背景含む）をフェードイン */
@keyframes jobDivFadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}

/* imgだけtranslateXでスライド */
@keyframes jobImgSlide {
	from { transform: translateX(-50px); }
	to   { transform: translateX(0); }
}

.job_photos > div::after {
	content: '';
	position: absolute;
	bottom: -8%;
	left: -5%;
	width: 100%;
	height: 100%;
	background-color: var(--color-main-blue);
	clip-path: url(#jobPhotoClip);
	z-index: 0;
}

.job_photos .photo-clip {
	display: block;
	position: relative;
	z-index: 1;
	aspect-ratio: 710 / 492;
	clip-path: url(#jobPhotoClip);
}

.job_photos > div img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jobs_category {
	width: calc(515 / 1350 * 100%);
	margin: 0;
}

.jobs_category .job {
	display: block;
	position: relative;
	font-size: 1.1rem;
	line-height: 1;
    font-weight: 500;
	color: var(--color-main-blue);
	text-decoration: none;
	background-color: #f4f4f4;
	box-shadow: 0 1px 0 var(--color-light-blue);
	margin: 0 0 15px;
	padding: 1.5em 3em 1.5em 1.2em;
	overflow: hidden;
	transition: padding-left 0.3s ease;
	opacity: 0;
}

.jobs_category .job:hover {
	padding-left: calc(1.2em + 20px);
}

/* 右の矢印：ホバーで右に消える */
.jobs_category .job::after {
	content: '';
	position: absolute;
	right: 1em;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
	height: 12px;
	clip-path: polygon(0 0%, 25% 0, 75% 50%, 25% 100%, 0 100%, 50% 50%, 0 0%);
	background-color: var(--color-main-blue);
	transition: transform 0.3s ease-in-out;
}

.jobs_category .job:hover::after {
	transform: translateY(-50%) translateX(400%);
}

/* 左の矢印：ホバーで左から出てくる */
.jobs_category .job::before {
	content: '';
	position: absolute;
	left: 1.2em;
	top: 50%;
	transform: translateY(-50%) translateX(-400%);
	width: 12px;
	height: 12px;
	clip-path: polygon(0 0%, 25% 0, 75% 50%, 25% 100%, 0 100%, 50% 50%, 0 0%);
	background-color: var(--color-main-blue);
	transition: transform 0.3s ease-in-out 0.1s;
}

.jobs_category .job:hover::before {
	transform: translateY(-50%) translateX(0);
}


.jobs_category .job.active {
	background-color: var(--color-main-blue);
	color: #fff;
}

.jobs_category .job.active::after {
	background-color: #fff;
}

.jobs_category .job.active::before {
	background-color: #fff;
}



/* Slide4 */
#slide4 {
	text-align: center;
	margin: 130px 0;
	padding: 0;
	position: relative;
}

/* ticker（画像） */

.ticker_photo {
	margin: 0;
}

@keyframes infinity-scroll-left {
from {
	transform: translateX(0);
}

to {
	transform: translateX(-100%);
}
}
.scroll-infinity__wrap {
	display: flex;
	overflow: hidden;
}

.scroll-infinity__list {
	display: flex;
	list-style: none;
	padding: 0
}

.scroll-infinity__list--left {
	animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__item {
	width: calc(100vw / 3);
}

.scroll-infinity__item>img {
	width: 100%;
}

.top_flex_03 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	margin: 60px auto 0;
	padding: 0;
	max-width: 735px;
}






/* Slide5 */
#slide5 {
	text-align: center;
	margin: 130px 0;
	padding: 0;
	position: relative;
}


/* FOOTER */
footer {
	margin: 0;
	padding: 0 0 20px;
}

.footer_content_01 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	padding: 0;
}

.entry-banner {
	width: 50%;
	position: relative;
	overflow: hidden;
}

.entry-banner picture,
.entry-banner img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.entry-banner .entry_btn {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	padding: 0 50px 0 80px;
	z-index: 1;
}

.entry-banner .btn002-02 {
	width: 100%;
	justify-content: space-between;
}

.footer_content_02 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 97%;
	margin: 40px 0 15px auto;
	padding: 0;
}

.footer_co {
	width: 50%;
	text-align: left;
	margin: 0;
	padding: 0;
}

.footer_about {
	text-align: left;
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
}

 
.footer_logo {
	width: 110px;
	margin: 0;
}


.co_name {
	font-size: 0.75em;
	line-height: 1.6em;
	margin: 0 0 0 20px;
	letter-spacing: 1px;
	font-weight: 400;
}


.co_name a:link,
.co_name a:visited {
	color: #000 !important;
}

.co_name a:hover {
	text-decoration: none;
}

.footer_address {
	font-size: 0.75em;
	line-height: 1.6em;
	margin: 10px 0 0;
	letter-spacing: 1px;
	font-weight: 400;
}


.telLink {
	color: #010101 !important;
	font-feature-settings: "palt";
}

ul.sns_link {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.sns_link li img {
	width: auto;
	height: 25px;
	margin: 0 25px 0 0;
}

.li_w {
	width: 45px !important;
	height: auto !important;
}

.footer_menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	width: 50%;
	margin: 0 180px 0 auto;
	padding: 0;
}

.footer_menu a {
	color: var(--color-gray);
	font-size: 0.7rem;
	line-height: 1.8;
	text-align: left;
	margin-right: 50px;
}

.copyright {
	color: var(--color-gray);
	font-size: 0.75rem;
	line-height: 1.8em;
	letter-spacing: 1px;
	margin-top: -22px;
	margin-left: 3%;
}


/* 下層ページ */
/* #slide_sub */
#slide_sub {
	position: relative;
	margin: 110px 0 0 !important;
	padding: 0;
}

.slideSub_title {
	margin: 40px 0 80px;
	position: relative;
}

.slideSub_title.top_mg100 {
	margin-top: 100px !important;
}

.slideSub_title::after {
	content: "";
	display: block;
	width: 50px;
	height: 0;
	border-bottom: 1px solid var(--color-main-blue);
	position: absolute;
	bottom: -30px;
	left: 0;
}

#slide_sub .p_095 {
	font-size: 0.95rem;
	line-height: 1.8rem;
	text-align: left;
	margin: 0 0 1em;
}

.sub_common_title {
    margin: 0 0 0 30px;
}


/* トップメッセージ */
.bg_full_gray {
	background-color: var(--bg-lightgray);
	margin: 0;
	padding: 4em 3em 8em;
}

.slide_sub_message {
	width: 92%;
    max-width: 850px;
    margin: auto;
}

.slide_sub_message .title {
	font-size: 2.3rem;
	line-height: 1.7;
	font-weight: 600;
	margin: 50px 0 30px;
}

.slide_sub_message p {
	font-size: 1rem;
	line-height: 2.2;
	font-weight: 500;
	margin: 0 0 30px;
}

.slide_sub_message p.president {
	text-align: right;
}

.slide_sub_message p.president span {
	font-size: 1.5rem;
	font-family: var(--font-notoserif);
}

.photo_large {
	margin: -50px 0 0;
	width: 85%;
	border-radius: 0 50px 50px 0;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}




/* インタビューflex */
.interview_topTi {
	font-size: 1.7rem;
	line-height: 1.6em;
	font-weight: 600;
	display: flex;
	justify-content: center;
	margin: 0 auto 80px;
	padding: 0;
}

.interview_topTi span {
	color: var(--color-main-blue);
	font-size: 2.1rem;
	font-family: var(--font-poppins);
	text-align: left;
	width: 45px;
	flex-shrink: 0;
}

.interview_flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin: 0 0 100px;
	padding: 0;
}

.flex_reverse {
	flex-direction: row-reverse;
}

.interview_flex figure {
	width: 46%;
	margin: 0;
	padding: 0;
	position: sticky;
	top: 20px;
	align-self: flex-start;
}

.interview_txtWrap {
	width: 46%;
	margin: 0;
	padding: 0;
}

.interview_flex figure img {
	width: 100%;
	border-radius: 20px;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.interview_txtWrap .q_title {
	font-size: 1.6rem;
	line-height: 1.6em;
	font-weight: 600;
	display: flex;
	width: 100%;
	margin: 0 0 30px;
	padding: 0;
}

.interview_txtWrap .q_title span {
	color: var(--color-main-blue);
	font-size: 2.1rem;
	font-family: var(--font-poppins);
	text-align: left;
	width: 45px;
	flex-shrink: 0;
}

.interview_txtWrap .p_ti {
	color: #000;
	font-size: 1.1rem !important;
	line-height: 1.8em;
	text-align: left;
	font-weight: bold;
	margin: 0 0 10px;
}

.interview_txtWrap p {
	font-size: 0.9rem;
	line-height: 2.1em;
	text-align: left;
	margin: 0 0 20px;
}

.interview_txtWrap .p_mgB {
	margin: 0 0 40px;
}


/* 社員インタビュー */
.bg_interview {
	overflow: visible;
}

.interview_top {
	position: relative;
	width: 100%;
	margin: 70px 0 150px;
	padding: 0;
	z-index: 0;
}

.interview_top::after {
	content: "";
	position: absolute;
	top: 50px;
	left: calc(-50vw + 50%);
	right: 50px;
	bottom: -80px;
	background-color: var(--color-lightlight-blue);
	border-radius: 0 20px 20px 0;
	z-index: -1;
}

.interview_top figure {
	width: 74%;
	max-width: 1000px;
	margin: 0 0 0 auto;
	padding: 0;
}

.interview_top figure img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 20px;
}

.interview_mainTi {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	padding: 120px 0 40px;
}

.interview_mainTi .employee_ti {
	color: #fff;
	font-size: 2.2rem;
	line-height: 2.5;
	font-weight: 600;
	letter-spacing: 0.1em;
}

.interview_mainTi .employee_ti span {
	background-color: rgba(56, 80, 170, 0.95);
	padding: 12px 40px;
}

.interview_mainTi .name_wrap {
	display: flex;
	align-items: baseline;
	margin-top: auto;
	margin-bottom: 12px;
}

.interview_mainTi .name {
	color: #000;
	font-size: 2.8rem;
	font-weight: 600;
	line-height: 1;
}

.interview_mainTi .department {
	color: #000;
	font-size: 1.8rem;
	line-height: 1.3;
	font-weight: 500;
	margin-right: 20px;
}

.interview_mainTi .name_interview {
	color: #000;
	font-size: 2.8rem;
	font-weight: 600;
	line-height: 1;
}

.interview_mainTi .Join {
	color: var(--color-gray);
	font-size: 0.95rem;
	line-height: 1;
	margin: 20px 0 0;
}

.my_scheduleArea {
	background-color: var(--color-main-blue);
	margin: 0;
	padding: 70px 20px;
}

.my_schedule {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	padding: 0;
}

.my_schedule .sch_title {
	position: relative;
	margin: 0;
	padding: 0;
	width: 30%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.my_schedule .sch_title img {
	margin: 0 0 15px;
	width: 145px;
}

.my_schedule .sch_title .jp {
	color: #fff;
	font-size: 1.6rem;
	line-height: 1.5;
	font-weight: 600;
	margin: 0;
	padding: 0;
}

.my_schedule .day_sche {
	color: #fff;
	width: 60%;
	margin: 0;
	padding: 0;
}

.my_schedule .timeline_item {
	display: flex;
	align-items: flex-start;
	position: relative;
	padding: 0 0 30px 0;
}

.my_schedule .timeline_item:last-child {
	padding-bottom: 0;
}

/* 縦線 */
.my_schedule .timeline_item::before {
	content: '';
	position: absolute;
	left: 85px;
	top: 12px;
	bottom: -18px;
	width: 1px;
	background-color: rgba(255, 255, 255, 0.3);
}

.my_schedule .timeline_item:last-child::before {
	display: none;
}

/* ドット */
.my_schedule .timeline_item::after {
	content: '';
	position: absolute;
	left: 80px;
	top: 7px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background-color: var(--color-light-blue);
	flex-shrink: 0;
}

.my_schedule .timeline_item dt {
	width: 80px;
	font-size: 1.1rem;
	font-family: var(--font-poppins);
	font-weight: 500;
	line-height: 1.6;
	flex-shrink: 0;
	letter-spacing: 0.1em;
}

.my_schedule .timeline_item dd {
	margin: 0;
	padding: 0 0 0 40px;
	font-size: 0.95rem;
	line-height: 1.6;
}

.interview_mg {
	margin: 50px auto 100px !important;
}



/* サポート */
.environment_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin: 0 0 50px;
	padding: 0;
}

.environment_wrap .environment {
	width: 19%;
	margin: 0 0 30px;
	padding: 10px;
	border: 2px solid var(--color-main-blue);
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	opacity: 0; /* GSAP発火まで非表示 */
}

.environment_wrap .environment img {
	width: 90px;
	margin: 0 auto 10px;
	opacity: 0; /* GSAP発火まで非表示 */
}

.environment_wrap .environment .txt {
	color: var(--color-main-blue);
	font-size: 1.2rem;
	line-height: 1.3;
	text-align: center;
	font-weight: 600;
	margin: 0;
	opacity: 0; /* GSAP発火まで非表示 */
}

/* work.html 部署紹介ブロックの初期状態 */
.depart_div {
	opacity: 0;
	scroll-margin-top: 150px;
}

.depart_div h3 {
	opacity: 0;
	display: block;
	width: fit-content;
	margin: 0 auto 20px; /* 中央揃えに修正 */
	clip-path: inset(0 100% 0 0);
	text-align: center;
}

.depart_div .curtain {
	display: block;
	width: 100%;
	max-width: 710px; /* 元の画像サイズに合わせる */
	margin: 30px auto; /* 元の画像マージンを再現 */
	line-height: 0;
	position: relative;
	overflow: hidden;
	border-radius: 20px; /* 元の角丸を再現 */
}

.depart_div .curtain img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}

.depart_div p,
.depart_div .txt_center {
	opacity: 0;
}

.benefits_dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin: 30px auto;
	padding: 1.5em 3em;
	background-color: var(--bg-lightgray);
	border-radius: 6px;
}

.benefits_dl dt {
	color: #000;
	width: 25%;
	margin: 0;
	font-size: 1.25rem;
	line-height: 1.5;
	font-weight: 600;
	flex-shrink: 0
}

.benefits_dl dt span {
	color: var(--color-red);
	font-size: 0.4em;
	margin-right: 5px;
	position: relative;
	top: -4px;
}

.benefits_dl .mg {
	margin-left: 13px;
}

.benefits_dl dd {
	width: 70%;
	color: var(--color-d-gray);
	font-size: 0.95rem;
	line-height: 1.8;
	margin: 0;
}

table.benefits_table {
	border-collapse: collapse;
	font-size: 0.95em;
	line-height: 2em;
	text-align: left;
	width: 100%;
	margin: 60px 0;
	letter-spacing: 1px;
	border: thin solid var(--line-lightgray);
}

.benefits_table th {
	color: #000;
	font-weight: 500;
	text-align: left;
	vertical-align: top;
	width: 20%;
	max-width: 300px;
	padding: 1.2em 1em 1.2em 2em;
	border: thin solid var(--line-lightgray);
	background-color: var(--bg-lightgray);
	border-right-style: none;
}

.benefits_table td {
	color: var(--color-d-gray);
	vertical-align: top;
	padding: 1.2em 1em 1.2em 3em;
	border-bottom: thin solid var(--line-lightgray);
}


/* データページ */
.data_tiWrap {
	width: 100%;
	position: relative;
	margin: 0 auto 30px;
}
.data_tiWrap img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
}

.data_tiWrap .data_title {
    text-align: left;
    background-color: #fff;
    margin: 0;
    padding: 10px 13rem 20px 40px;
    position: absolute;
    opacity: 1;
    left: 0;
    bottom: 90px;
}

.data_tiWrap .data_title .eg_txt {
    color: var(--color-main-blue);
    font-size: 3.7rem;
    line-height: 1.2;
    font-family: var(--font-poppins);
    font-weight: 700;
    margin: 0;
}

.data_tiWrap .data_title .jp_txt {
    color: var(--color-main);
    font-size: 2.2Rem;
    line-height: 1.2;
    font-weight: 600;
    margin: 0;
}

.data_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin: 60px 0 150px;
	padding: 0;
}

.individual_data {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 33.333333%;
	margin: 0 auto;
	padding: 3em 0;
	border-right: thin solid #bbb;
}

.individual_data.w_width {
	width: 66.666%;
	border-right: none;
}

.individual_data:nth-child(3n) {
	border-right: none;
}

.bottom_line {
	border-bottom: thin solid #bbb;
}

.bottom_line_02 {
	border-bottom: none;
}

.individual_data .data_title {
	font-size: 1.8em;
	line-height: 1;
	font-weight: 600;
	margin: 20px 0 0;
}

.data_data {
	color: var(--color-main-blue);
	font-size: 5em;
	line-height: 1;
	font-weight: 900;
	margin: 25px 0 0;
}

.data_data span {
	font-size: 0.3em;
	font-weight: 500;
}

.data_data span.countUp {
	font-size: 1em;
	font-weight: 900;
}

.data_data .img300 {
	width: 100%;
	max-width: 300px;
	padding-right: 10px;
	padding-left: 10px;
}

.data_data .img350 {
	width: 100%;
	max-width: 350px;
	padding-right: 10px;
	padding-left: 10px;
}

.data_data .img400 {
	width: 100%;
	max-width: 400px;
	padding-right: 10px;
	padding-left: 10px;
}

.mg_dataTop {
	margin-top: 1em;
}

.mg_dataTop_02 {
    margin-top: 1em;
}

.data_notes {
	font-size: 0.85rem;
	line-height: 1.5;
	margin: 10px 0 0;
}

.individual_data .flex_001 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	margin: 0;
	padding: 0;
}

.arrow_box {
	position: relative;
	background: #eee;
	margin: 0 0 0 50px;
	padding: 1.5em;
	border-radius: 10px;
}
.arrow_box:after {
	right: 100%;
	top: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(238, 238, 238, 0);
	border-right-color: #eee;
	border-width: 25px;
	margin-top: -30px;
}

.arrow_box .title {
	font-size: 1.3em;
	line-height: 1;
	font-weight: 600;
	text-align: center;
	margin: 0 0 10px;
	border-bottom: thin solid #ccc;
	padding-bottom: 12px;
}

.arrow_box p {
	font-size: 0.95rem;
	line-height: 1.6;
	text-align: left;
	margin: 0 0 10px;
}

.arrow_box p span {
	color: var(--color-main-blue);
	font-size: 1.2rem;
	font-weight: bold;
}


/* faq */
.faq_h3 {
    color: var(--color-main-blue);
	font-size: 1.8rem;
    line-height: 1.6;
    font-weight: 600;
	display: inline-block;
	border-bottom: medium solid var(--color-main-blue);
	padding: 0 1em 10px;
	margin: 0 0 0 -2rem;
}

.flow_img {
	margin-top: 10px;
	width: 100%;
	max-width: 940px;
}

.flow_img2 {
	margin-top: 10px;
	width: 100%;
	max-width: 573px;
}


/* 募集要項 */
table.job_table {
	border-collapse: collapse;
	font-size: 1em;
	line-height: 2em;
	text-align: left;
	width: 100%;
	margin: 50px 0 100px;
	border-top: thin solid #bbb;
}

.job_table th {
	color: #000;
	font-weight: 600;
	text-align: left;
	letter-spacing: 3px;
	vertical-align: top;
	width: 20%;
	max-width: 300px;
	padding: 1.5em 1em 1.5em 2em;
	background-color: #fff;
	border-bottom: thin solid #bbb;
}

.job_table td {
	vertical-align: top;
	padding: 1.5em 1em 1.5em 3em;
	background-color: #fff;
	border-bottom: thin solid #bbb;
}

.recruit_bg {
	background-color: rgb(242, 245, 253);
	margin: 0;
	padding: 80px 0 120px;
}

.go_faq {
	margin: 100px auto;
}


/* 部署紹介 */
.depart_wrap {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 40px 0 70px;
	padding: 0;
}

.depart_wrap .depart_div {
	width: 48%;
	margin: 0 4% 50px 0;
	padding: 2em;
	background-color: var(--bg-lightgray);
	border-radius: 20px;
}

.depart_wrap .depart_div:nth-child(even) {
	margin-right: 0;
}

.depart_div h3 {
	color: var(--color-main-blue);
    font-size: 1.6rem;
    line-height: 1.2;
	text-align: center;
    font-weight: 600;
	margin: 0 auto 20px;
	width: fit-content;
}

.depart_div img {
	margin: 30px 0;
	border-radius: 20px;
}

.depart_div p {
    font-size: 0.95rem;
    line-height: 1.8;
	text-align: left;
	margin: 0;
}


/*フローティングバナー*/
.floating-banner {
    position: fixed;
    bottom: 5px;
    right: 5px;
    z-index: 999;
    opacity: 0;
	width: 175px;
}

.floating-banner img {
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-banner a {
  display: inline-block;
}

.floating-banner a:hover img {
  transform: translateY(-4px);
}




/* hidden */
.hidden_pc {
	display: none;
}

.hidden_sp {
	display: block;
}



/*view point 切り替え*/
@media screen and (min-width: 1450px) {
/*footer-1450*/
.entry-banner .entry_btn {
	padding: 0 15% 0 20%;
}
}

@media screen and (max-width: 1600px) {
/*slide1-1600*/
.slide1_title .eg_txt {
	font-size: 3.5rem;
}

.slide1_title .jp_txt {
	font-size: 2.1rem;
}
}


@media screen and (max-width: 1450px) {
/*slide2-1450*/
.top_flex_01 .photo {
	width: 72%;
}

/*データ-1450*/
}


@media screen and (max-width: 1280px) {
/*slide1-1280*/
.slide1_title {
    top: 50px;
	padding: 5px 40px 15px;
}

/*共通-1280*/
.common_title .en,
.common_title .en2 {
    font-size: 8rem;
}

.common_title .main_title .en-s {
    font-size: 2.5rem;
}

.common_title .main_title .jp-s {
    font-size: 1.3rem;
    padding-top: 8px;
}


/*トップメッセージ-1280*/
.bg_full_gray {
    padding: 4em 3em;
}

.slide_sub_message {
    padding: 3em;
}

.photo_large {
    margin: -50px 0 0;
    width: 88%;
    border-radius: 0 50px 50px 0;
}

/*データ-1280*/
.individual_data .flex_001 {
    padding-left: 20px;
}

.arrow_box {
    max-width: 400px;
}

/* インタビューtop-1280 */
.interview_mainTi .employee_ti {
	font-size: 1.8rem;
	line-height: 2.7;
}

.interview_mainTi .department {
    font-size: 1.6rem;
}

.interview_mainTi .name {
    font-size: 2.4rem;
}

.interview_mainTi .name_interview {
    font-size: 2.4rem;
}
}



@media screen and (max-width: 1175px) {
.slide1_message figure {
    width: auto;
    max-width: 450px;
    margin-bottom: 0;
    align-self: center;
}

.top_flex_01 .photo {
    width: 68%;
}

/*データ-11750*/
.arrow_box {
    max-width: 320px;
}
}


@media screen and (max-width: 1100px) {
/*共通-1100*/
.common_title .en,
.common_title .en2 {
    font-size: 7.5rem;
}

.common_title .main_title .en-s {
    font-size: 2.5rem;
}

.common_title .main_title .jp-s {
    font-size: 1.2rem;
    padding-top: 8px;
}

/*slide3-1100*/
.works_ti_wrap .works_title {
    margin: 0;
    width: 300px;
}

.h3_works_en {
    font-size: 3.2rem;
}

.h3_works_jp {
	font-size: 1.3rem;
}
}


@media screen and (max-width: 1050px) {
/*slide1-1050*/
.slide1_message .title {
    font-size: 1.3rem;
    line-height: 1.8;
}

.slide1_message p {
    font-size: 1rem;
    line-height: 2;
}


.p_left_11 {
    font-size: 1rem;
    line-height: 2;
}

.p_center_11 {
    font-size: 1rem;
    line-height: 2;
}


/*slide_sub*/
/*トップメッセージ-1050*/
.slide_sub_message .title {
    font-size: 2rem;
    line-height: 1.8;
}
}


@media screen and (max-width: 1024px) {
.header_menu {
	display: none;
}

/*slide1-1024*/
.header {
    z-index: 1000;
    padding-top: 10px;
    padding-right: 2%;
    padding-left: 2%;
    height: 70px;
}

.h1_mov {
    width: auto;
    flex-wrap: nowrap;
}

.h1_logo {
    width: 100px;
	margin: 7px 0 0;
    flex-shrink: 0;
}

h1 {
    font-size: 0.9em;
    margin: 7px 0 0 16px;
    white-space: nowrap;
}

.slide1_title {
	top: 30px;
	padding: 5px 30px 15px;
}

.slide1_title .eg_txt {
	font-size: 3.5rem;
}

.slide1_title .jp_txt {
	font-size: 1.8rem;
}

#slide1 {
    margin: 70px 0 0;
}

.slide1_message {
    padding: 2em;
	width: 95%;
}

.slide1_message figure {
    width: auto;
    max-width: 400px;
    margin-bottom: 0;
    align-self: center;
}


/*共通-1024*/
.common_title .en,
.common_title .en2 {
    font-size: 6rem;
}

.common_title .main_title {
    margin: 0 0 0 40px;
}

.common_title .main_title .en-s {
    font-size: 2.3rem;
}

.common_title .main_title .jp-s {
    font-size: 1.1rem;
    padding-top: 8px;
}

/*トップメッセージ-1024*/
.slide_sub_message {
    padding: 2em;
	width: 95%;
}

/* インタビューtop-1024 */
.interview_mainTi .employee_ti span {
    padding: 10px 30px;
}

.interview_mainTi {
	padding: 50px 0 50px;
}

.interview_mainTi .employee_ti {
font-size: 1.6rem;
line-height: 2.7;
}

.interview_mainTi .name_wrap {
	margin-bottom: 8px;
}

.interview_mainTi .Join {
	margin: 15px 0 0;
}

/* スケジュール-1024 */
.my_schedule .sch_title {
	width: 25%;
}

.my_schedule .sch_title .jp {
	font-size: 1.3rem;
}

.my_schedule .day_sche {
	width: 65%;
}


/* サポート-1024 */
.benefits_table th {
    width: 25%;
}

/*データ-1024*/
.data_tiWrap img {
    height: 350px;
}

.data_tiWrap .data_title {
    padding: 10px 5rem 20px 40px;
}

/*faq-1024*/
.flow_img {
    max-width: 820px;
}

.flow_img2 {
	max-width: 500px;
}
}


@media screen and (max-width: 912px) {
/*slide1_title-912*/
.slide1_title {
	padding: 6px 20px 12px;
}

.slide1_title .eg_txt {
	font-size: 3rem;
}

.slide1_title .jp_txt {
	font-size: 1.6rem;
}

.common_title {
    margin: 0 0 40px 30px;
}

.top_flex_01 .photo {
        width: 62%;
}


/*slide3-912*/
.works_ti_wrap .works_title {
width: 240px;
}

.h3_works_en {
font-size: 2.8rem;
}

.h3_works_jp {
font-size: 1.1rem;
}

/*jobs-912*/
.jobs_wrap {
	flex-direction: column;
	align-items: center;
	margin: 0 0 100px;
}

.job_photos {
	width: 90%;
	max-width: 600px;
}

.job_photos > div::after {
	bottom: -4%;
	left: -4%;
}

.jobs_category {
	width: 90%;
	max-width: 600px;
	margin-top: 50px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.jobs_category .job {
	margin: 0;
}


/*slide_sub-912*/
.sub_common_title {
    margin: 0 0 40px 30px;
}


/* インタビューtop-912 */
.interview_mainTi {
	padding: 90px 0 20px;
}

.interview_mainTi .department {
font-size: 1.4rem;
}

.interview_mainTi .name {
font-size: 2.2rem;
}

.interview_mainTi .name_interview {
font-size: 2.2rem;
}


/* サポート-912 */
.benefits_dl {
    padding: 1.5em;
}

.benefits_dl dt {
    width: 25%;
    font-size: 1.15rem;
}

/* データ-912 */
.data_data {
    color: var(--color-main-blue);
    font-size: 4em;
}

.mg_dataTop_02 {
    margin-top: 25px;
}

.individual_data .flex_001 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90%;
    margin: 0;
    padding: 0;
}

.arrow_box {
    margin: 50px 0 0 0;
    max-width: 100%;
    box-sizing: border-box;
}

.arrow_box:after {
    right: auto;
    top: auto;
    left: 50%;
    bottom: 100%;
    border-right-color: transparent;
    border-bottom-color: #eee;
    margin-top: 0;
    margin-left: -25px;
}
}


@media screen and (max-width: 820px) {
/*slide1-820*/
.slide1_title {
	padding: 5px 15px 10px;
	top: 20px;
}

.slide1_title .eg_txt {
	font-size: 2.2rem;
}

.slide1_title .jp_txt {
	font-size: 1.3rem;
}

.slide1_message figure {
    width: auto;
    max-width: 300px;
    margin-top: -200px;
    margin-bottom: 0;
    align-items: flex-start;
}

/*footer-820*/
.footer_menu a {
margin-right: 30px;
}

/*トップメッセージ-820*/
.bg_full_gray {
padding: 3em;
}
	
.slide_sub_message {
    width: 100%;
}

.photo_large {
    border-radius: 0 30px 30px 0;
}

/* インタビューflex */
.interview_flex figure {
	width: 100%;
	margin: 20px 0 0;
	padding: 0;
	position: static;
	align-self: auto;
}

.interview_txtWrap {
	width: 100%;
	margin: 0;
	padding: 0;
}

.interview_flex figure img {
	width: 100%;
}

/* インタビューtop-820 */
.interview_mainTi .employee_ti {
	font-size: 1.4rem;
}

.interview_mainTi .employee_ti span {
padding: 8px 20px;
}

.interview_mainTi .name {
	font-size: 1.8rem;
}

.interview_mainTi .name_interview {
	font-size: 1.8rem;
}

.interview_mainTi .department {
	font-size: 1.2rem;
	margin-right: 15px;
}

.interview_mainTi .Join {
	font-size: 0.8rem;
	margin: 10px 0 0;
}

.interview_top {
	margin: 50px 0 150px;
}

.my_scheduleArea {
    padding: 50px 0;
}

.my_schedule .sch_title .jp {
	font-size: 1.15rem;
}


/* サポート-820 */
.benefits_dl dt {
width: 35%;
}

.benefits_dl dd {
    width: 65%;
    color: var(--color-d-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

.top_flex_01.flexCenter {
    align-items: flex-start;
}

.top_flex_01 .description {
    width: 42%;
}

.top_flex_01 .photo_1 {
    width: 55%;
    margin: 0;
    text-align: left;
}

.top_flex_01 .description p {
    padding: 0;
}

/*データ-820*/
.individual_data .data_title {
    font-size: 1.5em;
}

/*faq-820*/
.flow_img2 {
	max-width: 410px;
}
}


@media screen and (max-width: 768px) {
/*slide1-768*/
.slide1_message {
    display: flex;
	flex-direction: column-reverse;
    width: 100%;
    margin: 40px auto 0;
	padding: 3em 2em 2em;
}

.slide1_message figure {
    width: 60%;
    flex-shrink: 0;
	margin: 0 auto 30px;
	align-self: center;
	max-width: 100%;
}

/*トップインタビュー-768*/
.interview_topTi {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 40px;
}

/*社員インタビュー-768*/
.interview_top::after {
	top: 30px;
    bottom: -60px;
}

.interview_mainTi {
padding: 70px 0 10px;
}

}


@media (min-width: 767px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}


@media screen and (max-width: 640px) {
/* header-640 */
.header {
  height: 60px;
}

.h1_mov {
    width: 70%;
}

.h1_logo {
width: 80px;
}

h1 {
    font-size: 0.8em;
    line-height: 1.4em;
    margin: 10px 0 0 14px;
}


/*slide1-640*/
#slide1 {
margin: 160px 0 0;
}

.slide1_kv img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.slide1_title {
padding: 5px 15px 0;
top: -80px;
background-color: transparent;
}

.slide1_title .eg_txt {
font-size: 2rem;
}

.slide1_title .jp_txt {
font-size: 1.2rem;
}

.slide1_message {
    margin: 30px auto 0;
	padding: 2em 1em 2.5em;
}

.slide1_message figure {
    width: 80%;
    flex-shrink: 0;
    margin-right: auto;
	margin-left: auto;
	margin-bottom: 30px;
	align-self: center;
	max-width: 100%;
}

.slide1_message .title {
font-size: 1.2rem;
line-height: 1.8;
}

.slide1_message p {
font-size: 0.95rem;
line-height: 2;
}


/*共通-640*/
.common_title {
    text-align: left;
    position: relative;
    width: 100%;
    margin: 0 0 30px 10px;
    padding: 0;
}

.common_title .en {
    font-size: 4.1rem;
}

.common_title .en2 {
    font-size: 3.3rem;
}

.common_title .main_title {
    margin: 0 0 0 25px;
}

.common_title .main_title .en-s {
    font-size: 1.7rem;
}

.common_title .main_title .jp-s {
    font-size: 1rem;
    padding-top: 3px;
}


/*slide2-640*/
.top_flex_01 .photo {
width: 100%;
}

.top_flex_01 .top-links_01 {
width: 100% !important;
min-width: 100% !important;
margin-top: 30px;
}
	

/*slide3-640*/
.scroll-infinity__item {
	width: calc(100vw / 2);
}

.works_ti_wrap .works_title {
width: 100%;
}

.works_ti_wrap .works_txt {
	margin-top: 20px !important;
}

.p_left_11 {
font-size: 0.95rem;
line-height: 1.8;
}

.jobs_wrap {
	margin: 0 0 60px;
}

.job_photos {
	width: 95%;
}

.jobs_category {
	width: 100%;
	margin-top: 30px;
}

.jobs_category .job {
	font-size: 0.95rem;
	padding: 1.2em 1em 1.2em 1em;
}

.jobs_category .job::after {
right: 0.5em;
}

.jobs_category .job::before {
left: 0.5em;
}


/*slide4-640*/
.p_center_11 {
font-size: 0.95rem;
line-height: 1.8;
text-align: left;
width: 92%;
margin: 20px auto auto;
}

.top_flex_03 {
margin: 40px auto 0;
width: 92% !important;
flex-direction: column;
}

.ticker_photo {
    margin: -10px 0 0;
}


/*slide5-640*/	
#slide5 {
    margin: 130px 0 100px;
}


/*footer-640*/
.entry-banner {
    width: 100%;
}

.entry-banner:first-child {
    border-right: none;
	border-bottom: 1px solid var(--color-main-blue);
}

.footer_content_02 {
    width: 92%;
    margin: 40px auto auto;
}

.footer_co {
    width: 100%;
    text-align: left;
    margin: 0;
}

.footer_logo {
    width: 80px;
    margin: 0;
}

.co_name {
    font-size: 0.7em;
    line-height: 1.4em;
}

ul.sns_link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto 20px;
    padding: 10px 0 8px;
    list-style-type: none;
	background-color: #f5f5f5;
	width: 100%;
}

.sns_link li img {
    width: auto;
    height: 25px;
    margin: 0 15px;
}

.footer_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.footer_menu a {
    color: var(--color-gray);
    font-size: 0.7rem;
    line-height: 1.8;
    text-align: left;
    margin-right: 10px;
	margin-top: 15px;
	margin-left: 10px;
}

.copyright {
    color: var(--color-gray);
    font-size: 0.7rem;
    line-height: 1.8em;
    letter-spacing: 1px;
    margin-top: 10px;
	text-align: center;
	margin-bottom: 40px;
}


/*slide_sub-640*/
#slide_sub {
    position: relative;
    margin: 80px 0 0 !important;
    padding: 0;
}

/*トップメッセージ-640*/
.bg_full_gray {
padding: 2em 1em;
}

.sub_common_title {
    text-align: left;
    position: relative;
    width: 100%;
    margin: 0 0 30px 10px;
    padding: 0;
}

.slide_sub_message {
    margin: 0 auto;
	padding: 1em .5em 1.5em;
}

.slide_sub_message .title {
font-size: 1.15rem;
line-height: 1.8;
font-weight: bold;
}

.slide_sub_message p {
font-size: 0.95rem;
line-height: 2;
}

.slideSub_title {
    margin: 60px 0;
}

.photo_large {
margin: -25px 0 0;
width: 90%;
border-radius: 0 20px 20px 0;
}

.interview_topTi {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 40px;
}



/*floating-banner-640*/
.floating-banner {
    width: 145px;
}

/* インタビューtop-640 */
.interview_txtWrap .q_title {
    font-size: 1.2rem;
}

.interview_top {
	margin: 30px 0 40px;
}

.interview_top::after {
	display: none;
}

.interview_top figure {
	width: 100%;
}

.interview_mainTi {
	position: static;
	display: block;
	padding: 20px 0;
}

.interview_mainTi .employee_ti {
	font-size: 1.3rem;
	text-shadow: none;
}

.interview_mainTi .name_wrap {
	margin-top: 20px;
	margin-bottom: 8px;
}

.interview_mainTi .name {
	font-size: 1.5rem;
}

.interview_mainTi .name_interview {
	font-size: 1.5rem;
}

.interview_mainTi .department {
	font-size: 1.2rem;
	margin-right: 15px;
}

.interview_mainTi .Join {
	font-size: 0.8rem;
	margin: 8px 0 0;
}

/* スケジュール-640 */
.my_scheduleArea {
padding: 50px 10px 50px 15px;
}
	
.my_schedule .sch_title {
	width: 100%;
	text-align: center;
	margin-bottom: 50px;
	margin-right: auto;
	margin-left: auto;
}

.my_schedule .sch_title img {
	width: 30%;
}

.my_schedule .day_sche {
	width: 100%;
}

.my_schedule .timeline_item {
	padding-bottom: 20px;
}

/*サポート-640*/
.common_title .main_title.sp {
	flex-direction: column;
	align-items: flex-start;
	margin-top: 12px;
}
.common_title .main_title.sp .jp-s {
	margin-left: 0;
}

.h3_works_en {
font-size: 2.5rem;
line-height: 1;
}

.h3_works_jp {
font-size: 1.1rem;
margin-top: 10px;
}

.environment_wrap .environment {
    width: 48%;
}

.benefits_dl dt {
width: 100%;
margin-bottom: 15px;
}

.benefits_dl dd {
width: 100%;
}

.benefits_table th {
    width: 100%;
    max-width: none;
    padding: .5em 1em;
    border: none;
    background-color: var(--bg-lightgray);
	display: block;
}

.benefits_table td {
	line-height: 1.8;
    padding: 1em;
	display: block;
}

.top_flex_01.flexCenter {
flex-direction: column-reverse;
}

.top_flex_01 .photo_1 {
width: 100%;
margin: 0 0 30px;
}

.top_flex_01 .description {
width: 100%;
}

/*データ-640*/
.data_tiWrap img {
  height: 200px;
}

.data_tiWrap .data_title {
	padding: 5px 2rem 10px 1rem;
	bottom: 40px;
}

.data_tiWrap .data_title .eg_txt {
    font-size: 2.8rem;
}

.data_tiWrap .data_title .jp_txt {
    color: var(--color-main);
    font-size: 1.2rem;
}
	
.data_wrap {
    padding: 0;
	margin-top: -30px;
}

.individual_data {
	width: 95%;
	margin: 0 auto;
	padding: 2em 0;
	border-right: none;
}

.individual_data.w_width {
	width: 95%;
}

.bottom_line_02 {
	border-bottom: thin solid #bbb;
}

.mg_dataTop {
    margin-top: 25px;
}

.individual_data .flex_001 {
    width: 100%;
}


/*募集要項-640*/
table.job_table {
    border-top: 4px solid #bbb;
}

.job_table th, .job_table td {
	display: block;
	width: 100%;
	max-width: none;
}

.job_table th {
	padding: 0.5em 1em;
}

.job_table td {
	padding: 0.5em 1em 1em;
	border-bottom: 5px solid #ddd;
}

.recruit_bg {
    background-color: rgb(242, 245, 253);
    margin: 0;
    padding: 40px 0 80px;
}

.go_faq {
	margin: 60px auto;
}


/*部署紹介-640*/
.depart_wrap .depart_div {
	width: 100%;
	margin: 0 0 50px 0;
	padding: 2em 1em;
}

.depart_div {
	scroll-margin-top: 100px;
}

/*hidden-640*/
.hidden_pc {
	display: block;
}

.hidden_sp {
        display: none;
}
}

/* タイトルの初期状態（GSAPリビール用・サイト全体） */
.h3_works_en,
.h3_works_jp {
	opacity: 0;
	clip-path: inset(0 100% 0 0);
}
