@charset "UTF-8";
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:root {
    --main-color: #1A327F;
    --sub-color: #000069;
    --footer: #323B4D;
	--bg-gray: #455A64;
    --white: #FFFFFF;
    --black: #111111;
}

html {
	/* font-size: 1.4995vw; */
	/* scroll-behavior: smooth; */
	transition: font-size 0.2s ease-in-out;
}

/* PC: 769px以上 */
@media (min-width: 769px) {
    html {
        /* 1440pxで1rem = 10pxになるように計算 */
        font-size: calc(100vw / 144);
    }
}

/* SP: 768px以下 */
@media (max-width: 768px) {
    html {
        /* 390pxで1rem = 10pxになるように計算 */
        font-size: calc(100vw / 39);
    }
}

body {
	font-size: 1.2rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	color: var(--black);
	overflow-x: hidden;
}

.en {
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
}

body.no-scroll {
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none;
}

.fadein {
	opacity: 0;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
	-webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
	transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
	transition: opacity 0.8s ease, transform 0.8s ease;
	transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.fadein.is-visible {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

section {
	position: relative;
}

p {
	font-size: 1.6rem;
}

a {
	display: block;
	text-decoration: none;
	color: var(--black);
	transition: all 0.5s;
}

a:hover {
	transition: all 0.5s;
}

img {
	display: block;
	width: 100%;
}

span {
	display: inline-block;
}

li {
	list-style: none;
}

.sp {
	display: none;
}

/* =====================
    header
===================== */

.header {
	position: fixed;
	z-index: 1001;
	top: 2rem;
	left: 0;
	right: 0;
	width: calc(100% - 4rem);
	margin: auto;
	border-radius: 7rem;
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.header__container {
	padding: 0 2rem;
	height: 7rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: space-between;
	-webkit-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
}

.header__container.scrolled {
	background-color: rgba(255, 255, 255, 0.8);
}

.header__logo a {
	display: flex;
	align-items: center;
	gap: 2.1rem;
}

.header__logo a:hover {
	opacity: 0.6;
}

.header__logo a img {
	width: 13.6rem;
}

.header__logo a span {
	font-size: 1.2rem;
	letter-spacing: 0.08em;
}

.header__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 1rem;
}

.header__list a {
	font-size: 1.3rem;
	letter-spacing: 0.12em;
	font-weight: bold;
	text-align: center;
}

.header__item {
	margin-right: 2rem;
}

.header__item__bg {
	margin-right: 0;
}

.header__item__bg > a {
	padding: 0.9rem 4rem;
	color: var(--white);
	background-color: var(--main-color);
	border: 1px solid var(--main-color);
	border-radius: 5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.header__item__bg > a:hover {
	color: var(--main-color);
	background-color: var(--white);
}

.header__item__bg > a span {
	font-size: 0.7rem;
}

.header__item.dropdown {
    position: relative;
}

.header__item .dropdown__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -5rem;
	padding-top: 3.5rem;
}

.header__item .dropdown__menu ul {
    background: var(--white);
	border-radius: 0.5rem;
    min-width: 21.7rem;
    z-index: 10;
	padding: 0.5rem 0;
}

.header__item .dropdown__menu li {
	list-style: disc!important;
    padding-left: 0.5rem;
    color: var(--main-color);
	margin-left: 3rem;
}

.header__item .dropdown__menu li a {
    display: inline-block;
	font-size: 1.4rem;
	letter-spacing: 0.1em;
	line-height: 1;
	margin: 1.5rem 0;
    color: var(--black);
    text-decoration: none;
	text-align: left;
}

/* ホバーで表示 */
.header__item.dropdown:hover .dropdown__menu,
.header__item.dropdown .dropdown__menu:hover {
    display: block;
}

.header__item__bg .dropdown__menu {
	left: -2rem;
}

.header__link {
	position: relative;
}

.header__link::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--black);
    transition: width 0.3s ease;
}

.header__item__bg > .header__link::after {
	display: none;
}

.header__link:hover::after {
	width: 100%;
}

.header__menu {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	background-color: #fff;
	padding: 10rem 0 0 0;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	z-index: 1000;
	overflow-y: auto;
}
.header__menu.show {
	visibility: visible;
	opacity: 1;
	-webkit-transition: opacity 0.6s ease-in-out;
	transition: opacity 0.6s ease-in-out;
}
.header__menu .header__list {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 0.65rem;
}
.header__icon {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	width: 0.97rem;
	height: 0.81rem;
	cursor: pointer;
	z-index: 5000;
}
.header__ja {
	display: block;
	font-size: 1.2rem;
}
.header__icon.open .header__bar:nth-child(1) {
	-webkit-transform: rotate(45deg) translate(1.19rem, 0.19rem);
	transform: rotate(45deg) translate(1.19rem, 0.19rem);
}
.header__icon.open .header__bar:nth-child(2) {
	opacity: 0;
}
.header__icon.open .header__bar:nth-child(3) {
	-webkit-transform: rotate(-45deg) translate(1.19rem, -0.19rem);
	transform: rotate(-45deg) translate(1.19rem, -0.19rem);
}
.header__bar {
	height: 0.1rem;
	width: 100%;
	background-color: #333;
	border-radius: 0.06rem;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/* =====================
    top-mv
===================== */

.mv-img {
	position: relative;
	width: 100%;
	z-index: -1;
}

.top-mv {
	position: relative;
	padding-top: 23rem;
	padding-left: 7rem;
	padding-bottom: 13rem;
}

.scrollbar {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 18.1rem;
	background-color: var(--black);
}

.scrollbar_txt {
	position: absolute;
	top: 0;
	text-transform: uppercase;
	writing-mode: vertical-lr;
	right: -3rem;
}

.scrollbar_txt span {
	color: var(--black);
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0.24em;
}

.scrollbar_dot {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 1px;
}

.scrollbar_dot::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0.2em;
	height: 18.1rem;
	background: var(--black);
	border-radius: 1rem;
}

.scrollbar_dot::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: -0.3rem;
	width: 0.8rem;
	height: 0.8rem;
	border-radius: 50%;
	background: var(--black);
	animation: circlemove 3s ease-in-out infinite,
		cirlemovehide 3s ease-out infinite;
}

@keyframes circlemove {
	0% {
		bottom: 18.1rem;
	}
	100% {
		bottom: 0px;
	}
}

@keyframes cirlemovehide {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	80% {
		opacity: 0.9;
	}
	100% {
		opacity: 0;
	}
}

.top-mv::before {
	position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 150rem;
    background-image: url(../img/fv.webp);
    background-repeat: no-repeat;
    background-size: cover;
	z-index: -1;
}

.top-mv__subtitle {
	font-size: 1.6rem;
	letter-spacing: 0.18em;
	font-weight: 500;
	line-height: 1.4375;
	margin-bottom: 2.7rem;
}

.top-mv__title {
	color: var(--main-color);
	font-size: 9rem;
	letter-spacing: 0.04em;
	line-height: 1;
	margin-bottom: 4rem;
}

.top-mv__title span {
	display: inline-block;
	opacity: 0;
	visibility: hidden;       /* 追加 */
	transform: translateY(20px);
	transition: all 0.5s ease-out;
}

.top-mv__title span.visible {
	opacity: 1;
	visibility: visible;      /* 追加 */
	transform: translateY(0);
}

.top-mv__txt {
	font-size: 2.2rem;
	letter-spacing: 0.2em;
	font-weight: 600;
	line-height: 1.5;
}

.top-mv-btn {
	margin-top: 7.3rem;
	display: flex;
	align-items: center;
	gap: 2rem;
}

.top-mv-btn a {
	width: 26rem;
	height: 5.1rem;
	font-size: 1.8rem;
	letter-spacing: 0.12em;
	border: 1px solid var(--black);
	border-radius: 8.4rem;
}

.top-mv-btn a:hover {
	color: var(--white);
	background-color: var(--black);
}

main {
	position: relative;
    background-image: url('../img/main_bg.webp');
    background-size: 100%;
	background-position: center 0;
	padding-bottom: 6rem;
}

main.top {
	background-image: initial;
	padding-bottom: 3rem;
} 

/* =====================
    top-about
===================== */

.btn {
	display: flex;
	align-items: center;
	justify-content: center;
}

.wrapper {
	width: calc(100% - 24rem);
	margin: 0 auto;
}

.h2__subtitle {
	color: var(--sub-color);
	font-size: 2rem;
	letter-spacing: 0.04em;
}

.h2__title {
	font-size: 3.6rem;
	letter-spacing: 0.1em;
	font-weight: bold;
	margin: 2rem 0 4rem 0;
}

.top-about {
	margin: 8rem 0 0 0;
}

.top-about_txt01 {
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 0.2em;
	margin-bottom: 4rem;
}

.btn-bg {
	width: 26rem;
	height: 5.5rem;
	font-size: 1.6rem;
	letter-spacing: 0.2em;
	color: var(--white);
	background-color:  var(--main-color);
	border: 1px solid var(--main-color);
	border-radius: 1rem;
	position: relative;
	padding-right: 2rem;
}

.btn-bg::before {
	position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 1.4rem;
    margin: auto;
    width: 2.6rem;
    height: 2.9rem;
    background-image: url(../img/btn_arrow.webp);
    background-repeat: no-repeat;
    background-size: contain;
	transition: all 0.5s;
}

.btn-bg:hover {
	color: var(--main-color);
	background-color:  var(--white);
}

.btn-bg:hover::before {
    background-image: url(../img/btn_arrow_blue.webp);
	transition: all 0.5s;
}

.top-about__slider {
	width: 100%;
	height: 32rem;
	margin-top: 10rem;
	overflow: hidden;
}

.top-about__slider__track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-animation: top-about__slider 40s linear infinite;
	animation: top-about__slider 40s linear infinite;
	height: 100%;
}

.top-about__slider__slide {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-right: 0.93rem;
	height: 100%;
}

.top-about__slider__slide img {
	height: 100%;
	width: auto;
	display: block;
}

@-webkit-keyframes top-about__slider {
	0% {
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes top-about__slider {
	0% {
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

.top-about__txt {
	width: 100%;
	overflow: hidden;
	margin: 2rem 0;
}

.top-about__txt div {
	display: flex;
	white-space: nowrap;
	animation: scroll-marquee 30s linear infinite;
}

.top-about__txt span {
	color: var(--main-color);
	font-size: 9rem;
	letter-spacing: 0.04em;
	flex-shrink: 0;
	margin-right: 2rem;
}

@keyframes scroll-marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@-webkit-keyframes scroll-marquee {
	0% {
		-webkit-transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(-50%);
	}
}

.top-about__business {
	width: 100%;
	background-color:  var(--main-color);
	border-radius: 10rem 10rem 0 0;
	padding: 14rem 0 9rem 0;
}

.top-about__business {
	margin: 0 auto;
}

.top-about__business__lists {
	display: flex;
	flex-wrap: wrap;
	gap: 5.5rem 3rem;
}

.top-about__business__lists li {
	width: calc((100% - 3rem) / 2);
}

.top-about__business__lists__img {
	width: 100%;
	overflow: hidden;
	margin-bottom: 1.8rem;
	border-radius: 1rem;
}

.top-about__business__lists__img img {
	width: 58.5rem;
	height: 32.1rem;
	object-fit: cover;
	transition: all 0.5s;
}

.top-about__business__lists li a:hover img {
	scale: 1.05;
	transition: all 0.5s;
}

.top-about__business h3 {
	color: var(--white);
	font-size: 3rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	margin-bottom: 1.8rem;
}

.top-about__business h3 span {
	padding-right: 4.5rem;
	position: relative;
}

.top-about__business h3 span::before {
	position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 2.6rem;
    height: 2.9rem;
    background-image: url(../img/btn_arrow.webp);
    background-repeat: no-repeat;
    background-size: contain;
}

.top-about__business p {
	color: var(--white);
	font-size: 1.5rem;
	line-height: 1.8;
	letter-spacing: 0.1em;
}

.top-about__bg img img {
	width: 100%;
	height: 50.5rem;
	object-fit: cover;
	border-radius: 0 0 10rem 10rem;
}

.top-interview {
	margin: 0 auto;
	padding: 12rem 0;
	/* overflow: hidden; */
}

.top-interview::before {
	position: absolute;
    content: "";
    top: -9rem;
    right: 0;
    margin: auto;
    width: 84.9rem;
    height: 73.2rem;
    background-image: url(../img/main_bg01.webp);
    background-repeat: no-repeat;
    background-size: contain;
	z-index: -1;
}

.top-interview::after {
	position: absolute;
    content: "";
    bottom: -33.5rem;
    left: -20rem;
    margin: auto;
    width: 105.3rem;
    height: 73rem;
    background-image: url(../img/main_bg02.webp);
    background-repeat: no-repeat;
    background-size: contain;
	z-index: -1;
}

.top-interview__slider .slick-next,
.top-interview__slider .slick-prev {
	top: -6rem;
	width: 6.1rem;
	height: 6.1rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.top-interview__slider .slick-prev {
	left: initial;
	right: 12rem;
	background-image: url(../img/slider_btn_prev.webp);
}

.top-interview__slider .slick-next {
	right: 3rem;
	background-image: url(../img/slider_btn_next.webp);
}

.top-interview__slider .slick-prev::before,
.top-interview__slider .slick-next::before {
	display: none;
}

.top-interview__slider__slide {
	margin-left: 3rem;
}

.top-interview__slider__slide__img {
	border-radius: 1rem;
	margin-bottom: 2rem;
}

.top-interview__slider__slide__img img {
	width: 100%;
	height: 42rem;
	object-fit: cover;
	border-radius: 1rem;
}

.top-interview__slider__slide__info {
	font-size: 1.4rem;
	line-height: 1.8;
	letter-spacing: 0.1em;
}

.top-interview__slider__slide__name {
	font-size: 1.8rem;
	line-height: 1.8;
	letter-spacing: 0.1em;
}

.top-interview .btn {
	margin: 8rem auto 0 auto;
}

.recruit_banner {
	width: calc((100% - 6rem));
	margin: auto;
	display: flex;
	justify-content: space-between;
	gap: 3rem;
}

.recruit_banner a {
	border-radius: 1rem;
	overflow: hidden;
	flex-direction: column;
	position: relative;
}

.recruit_banner a img {
	width: 100%;
	height: 32.1rem;
	transition: all 0.5s;
	filter: blur(5px);
}

.recruit_banner a:hover img {
	scale: 1.05;
	transition: all 0.5s;
}

.recruit_banner a p {
	color: var(--white);
	font-size: 3rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-align: center;
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	text-shadow:0 0 10px #111;
}

.recruit_banner a span {
	display: block;
	font-size: 1.5rem;
	letter-spacing: 0.04em;
	margin-bottom: 1rem;
}

footer {
	color: var(--white);
	background-color: var(--footer);
	padding: 7rem 0 2rem 0;
}

footer a:hover {
	opacity: 0.6;
}

.footer__logo {
	display: flex;
    align-items: center;
    gap: 3rem;
}

.footer__logo img {
    width: 23.4rem;
}

.footer__logo span {
	color: var(--white);
    font-size: 1.2rem;
    letter-spacing: 0.08em;
}

.footer__container {
	display: flex;
	justify-content: space-between;
	gap: 15rem;
	margin-top: 40px;
}

.footer__company {
	width: 25rem;
}

.footer__name {
	font-size: 1.6rem;
	letter-spacing: 0.12em;
	line-height: 1.8;
	display: flex;
	align-items: center;
	gap: 2.3rem;
	margin-bottom: 1.5rem;
}

.footer__name span {
	font-size: 1.2rem;
	letter-spacing: 0.12em;
}

.footer__info {
	font-size: 1.3rem;
	letter-spacing: 0.12em;
	line-height: 1.8;
	margin-bottom: 3rem;
}

.footer__ex__link {
	color: var(--white);
	font-size: 1.1rem;
	letter-spacing: 0.12em;
	line-height: 1.8;
	text-decoration: underline;
	margin: 1.5rem 0;
}

.footer__nav {
	width: calc(100% - 40rem);
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
}

.footer__item a {
	color: var(--white);
	display: inline-block;
	font-size: 1.2rem;
	letter-spacing: 0.12em;
	line-height: 2;
}

.footer__list li:first-child a {
	font-size: 1.4rem;
	letter-spacing: 0.12em;
	line-height: 3;
	margin-bottom: 1rem;
}

.footer__list__news {
	margin-right: 3rem;
}

.footer__copy {
	margin-top: 10rem;
	text-align: center;
}

.footer__copyright {
	font-size: 1.3rem;
	letter-spacing: 0.12em;
}


/* =====================
    mv
===================== */

.mv {
	position: relative;
	padding-top: 21rem;
}

/* .mv::before {
	position: absolute;
    content: "";
	top: 0;
    left: 0;
	right: 0;
    margin: auto;
    width: 100%;
    height: 80.5rem;
    background-image: url(../img/mv_bg.webp);
    background-repeat: no-repeat;
    background-size: contain;
	z-index: -1;
} */

.mv .wrapper {
	width: calc(100% - 14rem);
}

.mv__subtitle {
	color: var(--sub-color);
    font-size: 2rem;
    letter-spacing: 0.04em;
}

.mv__title {
	font-size: 4.8rem;
    letter-spacing: 0.1em;
    font-weight: bold;
    margin: 2rem 0 6.5rem 0;
}

.mv__bread {
	margin: 2rem 0;
}

.mv__list {
	display: flex;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.mv__item,
.mv__item a {
	color: var(--sub-color);
    font-size: 1.2rem;
    letter-spacing: 0.04em;
}

.mv__item {
	padding-right: 3.2rem;
	position: relative;
}

.mv__item:after {
	position: absolute;
    content: ">";
    top: 0;
    bottom: 0;
    right: 1rem;
	font-size: 1.2rem;
    margin: auto;
}

.mv__item:last-child:after {
	display: none;
}

.internal__link {
	position: fixed;
	top: 10.5rem;
	right: 2rem;
	background-color: var(--bg-gray);
	border-radius: 7rem;
	padding: 1rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
	z-index: 100;
}

.internal__link a {
	color: var(--white);
	font-size: 1.3rem;
    letter-spacing: 0.12em;
	font-weight: bold;
	position: relative;
}

.internal__link a::before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--white);
    transition: width 0.3s ease;
}

.internal__link a.active::before {
	width: 100%;
}

/* =====================
    philosophy
===================== */

.philosophy {
	margin: 10rem auto;
}

.philosophy .wrapper {
	width: calc(100% - 24rem);
}

.philosophy__list > li {
	margin-bottom: 5rem;
}

.philosophy__list > li:first-child {
	margin-bottom: 10rem;
}

.h3_title_box {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-bottom: 3rem;
}

.h3__subtitle {
	width: 11.4rem;
	height: 2.8rem;
	font-size: 1.4rem;
    letter-spacing: 0.04em;
	color: var(--white);
	background-color: var(--bg-gray);
	display: flex;
	align-items: center;
	justify-content: center;
}

.h3__title {
	font-size: 1.3rem;
    letter-spacing: 0.12em;
	line-height: 2.2;
}

.philosophy__misson__txt01 {
	font-size: 5.6rem;
    letter-spacing: 0.04em;
	line-height: 1.5;
	margin-bottom: 2rem;
}

.philosophy__misson__txt01 span {
	display: inline-block;
	opacity: 0;
	visibility: hidden; /* 初期状態は非表示 */
	transform: translateY(20px);
	transition: all 0.5s ease-out;
}

.philosophy__misson__txt01 span.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.philosophy__misson__txt02 {
	font-size: 2.4rem;
    letter-spacing: 0.1em;
	line-height: 1.5;
	font-weight: bold;
	margin-bottom: 1rem;
}

.philosophy__misson__txt03 {
	font-size: 1.6rem;
    letter-spacing: 0.12em;
	line-height: 2.2;
}

.philosophy__value__list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}

.philosophy__value__list li {
	width: calc((100% - 1rem) / 2);
	background-color: var(--white);
	padding: 3rem 4rem;
	min-height: 20.6rem;
}

.h4__subtitle {
	color: var(--main-color);
	font-size: 1.3rem;
    letter-spacing: 0.1em;
	margin-bottom: 1.3rem;
}

.h4__title {
	font-size: 2.6rem;
    letter-spacing: 0.1em;
	line-height: 1.5;
	font-weight: bold;
	margin-bottom: 1.4rem;
}

.philosophy__value__list p {
	font-size: 1.6rem;
    letter-spacing: 0.1em;
	line-height: 1.8;
}

.philosophy__slider {
	width: 100%;
	margin-top: 10rem;
	overflow: hidden;
}

.philosophy__slider__track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-animation: philosophy__slider 40s linear infinite;
	animation: philosophy__slider 40s linear infinite;
	height: 100%;
}

.philosophy__slider__slide {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-right: 2rem;
	height: 100%;
}

.philosophy__slider__slide img {
	width: 40rem;
	height: 32rem;
	border-radius: 1rem;
	object-fit: cover;
	display: block;
}

.philosophy__slider__slide:nth-child(even){
	margin-top: 8rem;
}

@-webkit-keyframes philosophy__slider {
	0% {
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes philosophy__slider {
	0% {
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

.message__box {
	display: flex;
	justify-content: space-between;
	gap: 4rem;
}

/* .message__img {
	width: 50rem;
} */

.message__img img {
	width: 100%;
	height: 81rem;
	object-fit: cover;
	border-radius: 1rem;
}

.message__txt {
/* 	width: calc(100% - 54rem); */
	width: 100%;
}

.message__txt01 {
	font-size: 2.4rem;
    letter-spacing: 0.1em;
	line-height: 1.6;
	font-weight: bold;
	margin-bottom: 2rem;
}

.message__txt02 {
	font-size: 1.5rem;
    letter-spacing: 0.08em;
	line-height: 2;
	margin-bottom: 2.2rem;
}

.message__txt__info {
	font-size: 1.5rem;
    letter-spacing: 0.08em;
	line-height: 1.8;
	text-align: right;
}

.message__txt__name {
	margin-left: auto;
	width: 14.2rem;
}

.strength {
	margin: 10rem 0;
}

.strength__list {
	margin-top: 11.5rem;
	display: flex;
	justify-content: space-between;
	gap: 3rem;
}

.strength__list li {
	width: calc((100% - 6rem) / 3);
}

.strength__list__img {
	margin-bottom: 2rem;
}

.strength__list__img img {
	margin: auto;
	width: 30rem;
	height: 30rem;
	object-fit: contain;
}

.strength__list li h3 {
	font-size: 2.4rem;
    letter-spacing: 0.1em;
	line-height: 1.5;
	font-weight: bold;
	text-align: center;
	margin-bottom: 2rem;
}

.strength__list li p {
	font-size: 1.5rem;
    letter-spacing: 0.1em;
	line-height: 2;
}

.data {
	margin: 10rem 0;
}

.data__list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 3rem;
}

.data__list li {
	width: calc((100% - 6rem) / 3);
	padding: 4rem;
	background-color: var(--white);
	border-radius: 1rem;
}

.data__list li:last-child {
	background-color: initial;
}

.data__list .data__list01,
.data__list .data__list02,
.data__list .data__list03,
.data__list .data__list04,
.data__list .data__list05,
.data__list .data__list06,
.data__list .data__list07,
.data__list .data__list08 {
	width: calc((100% - 3rem) / 2);
}

.data__list li h3 {
	font-size: 2.4rem;
    letter-spacing: 0.1em;
	line-height: 1.5;
	text-align: center;
}

.data__list__box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.data__list__number {
	font-size: 2rem;
    letter-spacing: 0.1em;
	line-height: 1.5;
	font-weight: bold;
	text-align: center;
}

.data__list__number span {
	color: var(--sub-color);
	font-size: 8.4rem;
    letter-spacing: 0.04em;
	line-height: 1.5;
	font-weight: 500;
}

.data__list01 .data__list__img {
	width: 24.8rem;
}
.data__list02 .data__list__img {
	width: 21.4rem;
}
.data__list03 .data__list__img {
	width: 21.4rem;
}
.data__list04 .data__list__img {
	width: 18.4rem;
}

.data__list__txt {
	text-align: center;
	font-size: 1.6rem;
    letter-spacing: 0.08em;
	line-height: 1.5;
}


/* 事業領域 */

.business__introduce {
	margin: 6rem 0 10rem 0;
}

.business__introduce__maintxt {
	font-size: 1.6rem;
    letter-spacing: 0.08em;
	line-height: 1.8;
} 

.business__introduce__list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 2rem;
	margin-top: 4rem;
}

.business__introduce__list li {
	width: calc((100% - 2rem) / 2);
	background-color: var(--main-color);
	border-radius: 1rem;
	padding: 6.5rem 0 3rem 0;
	text-align: center;
	position: relative;
}

.business__introduce__list__num {
	color: var(--white);
	position: absolute;
	top: 2rem;
	left: 2rem;
	font-size: 1.3rem;
    letter-spacing: 0.1em;
}

.business__introduce__list__title {
	color: var(--white);
	font-size: 4.8rem;
    letter-spacing: 0.04em;
	line-height: 1;
	margin-bottom: 1rem;
}

.business__introduce__list p {
	color: var(--white);
	font-size: 1.5rem;
    letter-spacing: 0.08em;
	line-height: 1.5;
}

.network {
	margin: 10rem 0;
}

.network h2,
.mobility h2,
.cloud h2,
.iot h2 {
	color: var(--main-color);
	font-size: 4.8rem;
	font-weight: 300;
}

.business__img {
	margin-bottom: 3rem;
}

.business__img img {
	width: 100%;
	height: 32rem;
	object-fit: cover;
	border-radius: 1rem;
}

.business__txt01 {
	font-size: 2.4rem;
    letter-spacing: 0.08em;
	line-height: 1.8;
	font-weight: bold;
	margin-bottom: 1.5rem;
}

.business__txt02 {
	font-size: 1.6rem;
    letter-spacing: 0.08em;
	line-height: 1.8;
	margin-bottom: 3rem;
}

.business__detail__list {
	display: flex;
	gap: 1rem;
	margin: 2rem 0;
}

.business__detail__list li {
	color: var(--white);
	background-color: var(--bg-gray);
	font-size: 1.6rem;
    letter-spacing: 0.1em;
	line-height: 1.5;
	padding: 0.4rem 3rem;
	border-radius: 4rem;
}

.business__interview {
	margin: 6rem 0;
}

.business__interview__subtitle {
	color: var(--sub-color);
	font-size: 2rem;
    letter-spacing: 0.04em;
	line-height: 1;
	margin-bottom: 1rem;
}

.business__interview__title {
	font-size: 1.8rem;
    letter-spacing: 0.04em;
	line-height: 1.5;
	font-weight: bold;
	margin-bottom: 2rem;
}

.business__interview__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 3rem;
}

.business__interview__list li {
	width: calc((100% - 3rem) / 2);
	border-radius: 1rem;
	background-color: var(--white);
}

.business__interview__list li a {
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
}

.business__interview__list li a::before {
	position: absolute;
    content: "";
	top: 0;
    bottom: 0;
	right: 2.5rem;
    margin: auto;
    width: 2.6rem;
    height: 2.9rem;
    background-image: url(../img/arrow_blue.webp);
    background-repeat: no-repeat;
    background-size: contain;
}

.business__interview__img {
	border-radius: 1rem 0 0 1rem;
}

.business__interview__img img {
	width: 15.1rem;
	height: 16.7rem;
	object-fit: cover;
	border-radius: 1rem 0 0 1rem;
}

.business__interview__txt {
	padding-left: 3rem;
}

.business__interview__info {
	font-size: 1.4rem;
    letter-spacing: 0.1em;
	line-height: 1.8;
	margin-bottom: 0.5rem;
}

.business__interview__name {
	font-size: 1.8rem;
    letter-spacing: 0.1em;
	line-height: 1.8;
}

.business__img__list {
	display: flex;
	gap: 1rem;
}

.business__img__list img {
	width: 22.8rem;
}

.mobility,
.cloud {
	margin: 10rem 0;
}

.iot {
	margin-bottom: 15rem;
}


/* 働く環境 */

.environment__introduce {
	margin: 6rem 0 10rem 0;
}

.environment__introduce__maintxt {
	font-size: 1.6rem;
    letter-spacing: 0.08em;
	line-height: 1.8;
} 

.environment__introduce__list {
	display: flex;
	justify-content: space-between;
	gap: 8rem;
	background-color: var(--white);
	border-radius: 1rem;
	padding: 4rem;
	margin-top: 4rem;
}

.environment__introduce__list li {
	width: calc((100% - 16rem) / 3);
	border-radius: 1rem;
	text-align: center;
	position: relative;
}

.environment__introduce__list li::before {
	position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: -4rem;
    margin: auto;
    width: 0.2rem;
    height: 17.6rem;
	background-color: #D9D9D9;
}

.environment__introduce__list li:last-child::before {
	display: none;
}

.environment__introduce__list__img img {
	width: 22rem;
	margin: auto;
}

.environment__introduce__list__title {
	font-size: 2.4rem;
    letter-spacing: 0.08em;
	line-height: 1.7;
	margin-bottom: 1rem;
}

.environment__introduce__list__txt {
	font-size: 1.4rem;
    letter-spacing: 0.04em;
	line-height: 1.7;
	text-align: left;
}

.welfare {
	margin: 10rem 0 13rem 0;
}

.welfare__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 3rem;
	margin-bottom: 13rem;
}

.welfare__list li {
	width: calc((100% - 6rem) / 3);
	background-color: var(--white);
	padding: 2rem;
	min-height: 19.3rem;
	display: flex;
	flex-direction: column;
	align-items: baseline;
}

.welfare__list li h3 {
	font-size: 1.8rem;
    letter-spacing: 0.08em;
	line-height: 1.7;
	font-weight: bold;
	padding-left: 3rem;
	position: relative;
	margin-bottom: 1rem;
}

.welfare__list li h3::before {
	position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 1.2rem;
    height: 1.2rem;
	border-radius: 1.2rem;
	background-color: var(--main-color);
}

.welfare__list li p {
	font-size: 1.5rem;
    letter-spacing: 0.04em;
	line-height: 1.7;
	font-weight: bold;
	margin-bottom: 1rem;
}

.welfare__list li span {
	color: var(--white);
	font-size: 1.2rem;
    letter-spacing: 0;
	line-height: 1.7;
	padding: 0.2rem 1rem;
	border-radius: 4rem;
	margin-top: auto;
}

.welfare__list .pink {
	background-color: #F92179;
}
.welfare__list .green {
	background-color: #207034;
}
.welfare__list .blue {
	background-color: #1A327F;
}
.welfare__list .orange {
	background-color: #FF8C24;
}
.welfare__list .purple {
	background-color: #3D2D99;
}

.environment__slider {
	width: 100%;
	margin-top: 3rem;
	overflow: hidden;
}

.environment__slider__track01 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-animation: environment__slider01 40s linear infinite;
	animation: environment__slider01 40s linear infinite;
	height: 100%;
}

.environment__slider__track02 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-animation: environment__slider02 40s linear infinite;
	animation: environment__slider02 40s linear infinite;
	height: 100%;
}

.environment__slider__slide {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-right: 3rem;
	height: 100%;
}

.environment__slider__slide img {
	width: 59.2rem;
	height: 37.7rem;
	object-fit: cover;
	display: block;
}

@-webkit-keyframes environment__slider01 {
	0% {
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes environment__slider01 {
	0% {
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
@-webkit-keyframes environment__slider02 {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}

@keyframes environment__slider02 {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}

/* 社員インタビュー */

.cetegory {
	margin: 6rem 0;
}

.cetegory .wrapper {
	border-bottom: 0.1rem solid var(--main-color);
}

.cetegory__title {
	display: block;
	color: var(--sub-color);
	font-size: 2.2rem;
    letter-spacing: 0.04em;
	line-height: 1;
	position: relative;
}

.cetegory__title::before {
	position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 106.9rem;
    height: 0.1rem;
	background-color: var(--main-color);
}

.category-section__btns {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2rem;
	padding: 3.5rem 0;
}

.category-btn {
	font-size: 1.6rem;
    letter-spacing: 0.1em;
	line-height: 2;
	padding: 0.2rem 4rem;
	border: 0.1rem solid #222222;
	border-radius: 8.4rem;
	transition: all 0.5s;
}

.category-btn--active {
	background-color: var(--main-color);
	color: var(--white);
	transition: all 0.5s;
}

.category-btn li:hover {
	background-color: var(--main-color);
	color: var(--white);
	transition: all 0.5s;
}

.interview {
	margin-bottom: 12rem;
}

.interview__list {
	display: flex;
	flex-wrap: wrap;
	gap: 6rem 3rem;
}

.interview__list li {
	width: calc((100% - 6rem) / 3);
}

.interview__list__img {
	margin-bottom: 2rem;
	border-radius: 1rem;
	overflow: hidden;
}

.interview__list__img img {
	width: 100%;
	height: 42rem;
	object-fit: cover;
	border-radius: 1rem;
	transition: all 0.5s;
}

.interview__list li a:hover img {
	scale: 1.05;
	transition: all 0.5s;
}

.interview__list__info {
	font-size: 1.4rem;
    letter-spacing: 0.1em;
	line-height: 1.8;
}

.interview__list__name {
	font-size: 1.8rem;
    letter-spacing: 0.1em;
	line-height: 1.8;
}


/* 仕事内容 */

.system__engineer {
	margin: 8rem 0;
}

.system__engineer__box {
	display: flex;
	justify-content: space-between;
	gap: 5rem;
}

.system__engineer__txt {
	width: 70rem;
}

.system__engineer__img {
	width: calc(100% - 75rem);
}

.system__engineer__img img {
	width: 50rem;
	height: 50rem;
	object-fit: cover;
	border-radius: 1rem;
}

.system__engineer .h2__subtitle {
	font-size: 4.8rem;
    letter-spacing: 0.1em;
	line-height: 1;
}

.system__engineer .h2__title {
	font-size: 2.4rem;
    letter-spacing: 0.1em;
	line-height: 1.8;
	padding-bottom: 3.5rem;
	position: relative;
}

.system__engineer .h2__title::before {
	position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 0.2rem;
	background-color: #D9D9D9;
	border-radius: 0.2rem;
}

.system__engineer .h2__title::after {
	position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 6.8rem;
    height: 0.2rem;
	background-color: var(--main-color);
	border-radius: 0.2rem;
}

.system__engineer__list li {
	margin: 4rem 0;
}

.system__engineer__list h3 {
	font-size: 2rem;
    letter-spacing: 0.08em;
	line-height: 1.8;
	font-weight: bold;
	margin-bottom: 2rem;
}

.system__engineer__list p {
	font-size: 1.6rem;
    letter-spacing: 0.08em;
	line-height: 1.8;
}

.works {
	margin: 14rem 0;
}

.works h3 {
	display: inline-block;
	font-size: 2.4rem;
    letter-spacing: 0.04em;
	line-height: 1;
	margin: 4rem  0 3rem 0;
	padding: 0.8rem 1.6rem;
	color: var(--white);
	background-color: #455A64;
}

.works__list {
	background-color: var(--white);
	padding: 3rem 4rem;
	margin-bottom: 4rem;
}

.works__list li {
	padding-bottom: 4rem;
	margin-bottom: 4rem;
	border-bottom: 0.1rem solid #455A64;
}

.works__list li:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0;
}

.works h4 {
	font-size: 2.4rem;
    letter-spacing: 0.08em;
	line-height: 1.8;
	font-weight: bold;
	padding-left: 1.7rem;
	margin-bottom: 3rem;
	position: relative;
}

.works h4::before {
	position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 0.5rem;
    height: 3rem;
	border-radius: 1rem;
	background-color: var(--main-color);
}

.works__list__box {
	display: flex;
	justify-content: space-between;
	gap: 3rem;
}

.works__list__img {
	background-color: #D9D9D9;
	width: 30rem;
	height: 20rem;
}

.works__list__txt {
	width: calc(100% - 33rem);
}

.works h5 {
	display: inline-block;
	font-size: 1.6rem;
    letter-spacing: 0.04em;
	line-height: 1;
	padding: 0.6rem 1.6rem;
	border-radius: 4.2rem;
	margin-bottom: 1rem;
	color: var(--white);
	background-color: var(--main-color);
	margin-top: 3rem;
}

.works h5:first-child {
	margin-top: 0;
}

.works__list__txt p {
	font-size: 1.6rem;
    letter-spacing: 0.08em;
	line-height: 1.6;
}

.works__none {
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    line-height: 1.6;
	text-align: center;
}



/* 研修制度 */

.education {
	margin: 8rem 0;
}

.education__wrap {
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 5rem;
}

.education__table { 
	overflow-x:auto;
	-webkit-overflow-scrolling:touch;
	scrollbar-gutter:stable both-edges;
	white-space:nowrap;

}
.education__table img { 
	display:block; 
	max-width:none; 
	height:auto; 
	min-width:120rem; 
}

/* バー容器：余白/枠の影響を排除 */
.scroll__bar{
	position:absolute; left:0; right:0; bottom:0;
	height:1rem; background:#EEEEEE; border-radius:999px; overflow:hidden;
	padding:0; border:0; box-sizing:border-box; pointer-events:none; z-index:1;
}
/* 進捗本体は absolute＋left/right で幅を決める */
.scroll__bar span{
	position:absolute; top:0; bottom:0; left:0; right:100%;
	background:#999; border-radius:inherit;
	transition: left 80ms linear, right 80ms linear;
}
@media (min-width: 769px) {
	.scroll__bar {
		display: none;
	}
}

/* Chrome / Safari / Edge */
.education__table::-webkit-scrollbar {
  	display: none; /* スクロールバーを非表示 */
}

/* Firefox */
.education__table {
	scrollbar-width: none; /* バーを非表示 */
	-ms-overflow-style: none; /* IE/旧Edge */
}

.education__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 3rem;
}

.education__list li {
	width: calc((100% - 3rem) / 2);
	padding: 3rem;
	border-radius: 1rem;
	background-color: var(--white);
}

.education__list__title {
	/*display: flex;*/
	align-items: center;
	gap: 3rem;
}

.education__list__title h3 {
	font-size: 2.2rem;
    letter-spacing: 0.04em;
	line-height: 1.5;
	font-weight: bold;
	margin-bottom: 1rem;
	position: relative;
}

.education__list__title span {
	font-size: 1.4rem;
    letter-spacing: 0.04em;
	line-height: 1.5;
	font-weight: bold;
	margin-bottom: 1rem
}

.education__list__title h3::before {
	position: absolute;
    content: "";
    top: 0;
    left: -3rem;
    bottom: 0;
    margin: auto;
    width: 0.6rem;
    height: 3.3rem;
	background-color: var(--main-color);
	border-radius: 1rem;
}

.education__list p {
	font-size: 1.5rem;
    letter-spacing: 0.08em;
	line-height: 1.8;
}

.education__list .education__list__small {
	width: calc((100% - 6rem) / 3);
	padding: 0;
	background-color: initial;
	margin-top: 16rem;
}

.education__list__img {
	margin-bottom: 2rem;
}

.education__list__small h3 {
	font-size: 2.2rem;
    letter-spacing: 0.04em;
	line-height: 1.5;
	font-weight: bold;
	margin-bottom: 1rem;
}

.education__list__small p {
	font-size: 1.5rem;
    letter-spacing: 0.08em;
	line-height: 1.8;
}

.career {
	margin: 11rem 0;
}

.career p {
    letter-spacing: 0.08em;
	line-height: 1.6;
}

.carerr__flow {
	background-color: var(--white);
	border-radius: 1rem;
	padding: 3rem 5rem 5rem 5rem;
	margin: 5rem 0;
	display: flex;
	align-items: flex-end;
}

.carerr__flow__item {
	width: calc(100% / 3);
	margin-top: auto;
}

.carerr__flow__item span {
	font-size: 1.6rem;
    letter-spacing: 0.08em;
	line-height: 1.8;
	font-weight: bold;
}

.carerr__flow__item h3 {
	font-size: 2rem;
    letter-spacing: 0.1em;
	line-height: 1.5;
	font-weight: bold;
	margin-bottom: 1.5rem;
}

.carerr__flow__item p {
	color: var(--white);
	padding: 3rem;
	border: 0.1rem solid #455A64;
}

.carerr__flow__item:nth-of-type(1) p {
	background-color: #485B99;
	height: 17rem;
}
.carerr__flow__item:nth-of-type(2) p {
	background-color: #31478C;
	height: 22rem;
}
.carerr__flow__item:nth-of-type(3) p {
	background-color: #1A327F;
	height: 27rem;
}

.carerr__list {
	display: flex;
	justify-content: space-between;
	gap: 3rem;
}

.carerr__list li {
	width: calc((100% - 3rem) / 2);
}

.carerr__list h3 {
	font-size: 2.2rem;
    letter-spacing: 0.04em;
	line-height: 1.5;
	font-weight: bold;
	padding-bottom: 2rem;
	margin-bottom: 2rem;
	position: relative;
}

.carerr__list h3::before {
	position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    margin: auto;
    width: 3.7rem;
    height: 0.2rem;
	background-color: var(--main-color);
}

.carerr__list h3::after {
	position: absolute;
    content: "";
    bottom: 0;
    left: 4rem;
    margin: auto;
    width: calc(100% - 4rem);
    height: 0.2rem;
	background-color: #AAAAAA;
}

.carerr__list p {
	font-size: 1.5rem;
    letter-spacing: 0.08em;
	line-height: 1.6;
}


/* 社員インタビュー記事 */

.interview__single__mv {
	padding-top: 13rem;
}

.interview__single__wrapper {
	width: calc(100% - 12rem);
	margin: auto;
}

.interview__single__mv__box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 6rem;
	margin-left: -7rem;
}

.interview__single__mv__img img {
	width: 51.2rem;
	height: 56.6rem;
	object-fit: cover;
	border-radius: 0 1rem 1rem 0;
}

.interview__single__mv__txt {
	width: calc(100% - 57.2rem);
}

.interview__single__mv__info {
	font-size: 1.4rem;
    letter-spacing: 0.1em;
	line-height: 1.8;
	margin-bottom: 0.5rem;
}

.interview__single__mv__name {
	font-size: 1.8rem;
    letter-spacing: 0.1em;
	line-height: 1.8;
	font-weight: 600;
	margin-bottom: 6.5rem;
}

.interview__single__mv__catchcopy {
	position: relative;
	display: inline-block;
}

.interview__single__mv__catchcopy::before {
	position: absolute;
    content: "";
    top: 0;
    left: -4rem;
    margin: auto;
	width: 3rem;
	height: 2.4rem;
	background-image: url(../img/single__mv__catchcopy.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.interview__single__mv__catchcopy::after {
	position: absolute;
    content: "";
    bottom: 0;
    right: -3rem;
    margin: auto;
	width: 3rem;
	height: 2.4rem;
	background-image: url(../img/single__mv__catchcopy.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transform: rotate(180deg);
}

.interview__single__mv__catchcopy span {
	font-size: 3.6rem;
    letter-spacing: 0.1em;
	line-height: 1.8;
	font-weight: 600;
	position: relative;
	text-decoration-line: underline;       /* 下線を指定 */
	text-decoration-color: var(--main-color);       /* 下線の色 */
	text-decoration-thickness: 0.4rem;       /* 下線の太さ */
	text-decoration-style: solid;
	text-underline-offset: 1rem;
}

/* .interview__single__mv__catchcopy span::before {
	position: absolute;
    content: "";
    bottom: 0.5rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 0.4rem;
	background-color: var(--main-color);
} */

.interview__single__contents {
	margin-top: 9rem;
	overflow: hidden;
}

.interview__single__box {
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 8rem;
	position: relative;
	margin-bottom: 15rem;
}

.question__num {
	color: var(--main-color);
	font-size: 3rem;
    letter-spacing: 0.1em;
	line-height: 1.7;
}

.interview__single__contents h2 {
	font-size: 2.4rem;
    letter-spacing: 0.1em;
	line-height: 1.7;
	margin-bottom: 3rem;
	font-weight: 600;
	width: 120%;
}

.interview__single__contents .interview__single__box:nth-child(even) {
	left: -6rem;
}

.interview__single__contents .interview__single__box:nth-child(even) h2 {
	width: 120%;
}

.interview__single__contents .interview__single__box:nth-child(odd) {
	right: -6rem;
}

.interview__single__txt p {
	margin-bottom: 3.3rem;
}

.interview__single__txt p:last-child {
	margin-bottom: 0;
}

.interview__single__img {
	margin-top: 12rem;
}

.interview__single__img img {
	width: 66rem;
	height: 48.5rem;
	object-fit: cover;
}

.interview__single__contents .interview__single__box:nth-child(even) .interview__single__img img {
	border-radius: 0 1rem 1rem 0;
}

.interview__single__contents .interview__single__box:nth-child(odd) .interview__single__img img {
	border-radius: 1rem 0 0 1rem;
}

.interview__single__contents p {
	font-size: 1.5rem;
    letter-spacing: 0.1em;
	line-height: 2.2;
}

.interview__single__contents p strong {
	font-weight: 500!important;
	background-color: var(--main-color);
	color: #FFF;
	padding: 0.2rem 0.7rem;
}

.interview__single__message {
	width: calc(100% - 12rem);
	margin: 9rem auto;
	background-color: var(--white);
	border-top: 1rem solid var(--main-color);
	border-bottom: 1rem solid var(--main-color);
	border-radius: 1rem;
	padding: 6rem 0 9rem 0;
}

.interview__single__message h2 {
	color: var(--main-color);
	font-size: 3rem;
    letter-spacing: 0.1em;
	margin-bottom: 3rem;
	text-align: center;
	width: 100%;
}

.interview__single__message p {
	width: 90%;
	max-width: 100rem;
	margin: auto;
}

.other__interview h2 {
	font-size: 2.4rem;
    letter-spacing: 0.1em;
	line-height: 1.5;
}

.other__interview__list {
	display: flex;
	justify-content: space-between;
	gap: 3rem;
}

.other__interview {
	margin-bottom: 15rem;
}

.other__interview__img {
	margin-bottom: 2rem;
	border-radius: 1rem;
	overflow: hidden;
}

.other__interview__img img {
	width: 38rem;
	height: 42rem;
	object-fit: cover;
	border-radius: 1rem;
	transition: all 0.5s;
}

.other__interview__list a:hover img {
	scale: 1.05;
	transition: all 0.5s;
}

.other__interview__info {
	font-size: 1.4rem;
    letter-spacing: 0.1em;
	line-height: 1.8;
	margin-bottom: 0.5rem;
}

.other__interview__name {
	font-size: 1.8rem;
    letter-spacing: 0.1em;
	line-height: 1.8;
}

/* 採用について-新卒 */

.job__description {
	margin-top: 10rem;
}

.job__description__table {
	background-color: var(--white);
	border-radius: 1rem;
	padding: 4rem;
}

.job__description__table table {
	width: 100%;
    border-collapse: separate;
    border-spacing: 2rem 0;
}

.job__description__table th,
.job__description__table td {
	font-size: 1.6rem;
    letter-spacing: 0.1em;
	line-height: 1.5;
	padding: 2rem 0;
	text-align: left;
	vertical-align: top;
}

.job__description__table th {
	width: 23.5rem;
	color: var(--main-color);
	border-top: 0.1rem solid var(--main-color);
}

.job__description__table tr:last-child th {
	border-bottom: 0.1rem solid var(--main-color);
}

.job__description__table td {
	width: calc(100% - 25.5rem);
	margin-left: 2rem;
	border-top: 0.1rem solid #DDDDDD;
}

.job__description__table tr:last-child td {
	border-bottom: 0.1rem solid #DDDDDD;
}

.entry__btn {
	margin-top: 4rem;
}

.entry__btn a {
	margin: auto;
	font-size: 2.6rem;
    letter-spacing: 0.04em;
	line-height: 1;
	color: var(--white);
	background-color: var(--main-color);
	border: 0.1rem solid var(--main-color);
	width: 46rem;
	height: 6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12rem;
	transition: all 0.5s;
}

.entry__btn a:hover {
	background-color: var(--white);
	color: var(--main-color);
	transition: all 0.5s;
}

.selection__flow {
	margin-top: 8rem;
}

.selection__flow__list li {
	width: 100%;
	display: flex;
	align-items: center;
	margin: 2rem 0;
}

.selection__flow__list__box {
	width: 44rem;
	display: flex;
	align-items: center;
	gap: 2rem;
	color: var(--white);
	background-color: var(--main-color);
	padding: 2rem 3rem;
}

.selection__flow__list__num {
	color: var(--main-color);
	background-color: var(--white);
	border-radius: 50%;
	font-size: 2rem;
    letter-spacing: 0.04em;
	line-height: 1;
	font-weight: 500;
	width: 4rem;
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.selection__flow__list__title {
	width: calc(100% - 6rem);
	font-size: 2rem;
    letter-spacing: 0.08em;
	line-height: 1.6;
}

.selection__flow__list__txt {
	width: calc(100% - 44rem);
	height: 8rem;
	padding: 0 5rem;
	background-color: var(--white);
	letter-spacing: 0.04em;
	line-height: 1.4;
	display: flex;
	align-items: center;
}

.looking__person {
	margin-top: 10rem;
}

.looking__person__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 3rem;
}

.looking__person__list li {
	width: calc((100% - 3rem) / 2);
	display: flex;
	justify-content: space-between;
	gap: 1.5rem;
	background-color: var(--white);
	border-radius: 1rem;
	padding: 5rem 3rem;
}

.looking__person__list__img {
	width: 16rem;
}

.looking__person__list__txt {
	width: calc(100% - 17.5rem);
}

.looking__person__list__txt h3 {
	width: 110%;
	font-size: 1.8rem;
    letter-spacing: 0.04em;
	line-height: 1.4;
	font-weight: bold;
	margin-bottom: 1.2rem;
}

.looking__person__list__txt p {
	font-size: 1.5rem;
    letter-spacing: 0.04em;
	line-height: 1.5;
}

/* 新規追加インターンシップ実績 */

.internship {
	margin: 12rem 0 0 0;
}

.internship__box {
	padding: 4rem;
	border-radius: 1rem;
	background-color: #FFF;
}

.internship__list h3 {
	font-size: 2.4rem;
    letter-spacing: 0.08em;
	line-height: 1.8;
	font-weight: bold;
	margin-bottom: 3rem;
}

.internship__list {
	padding-bottom: 4rem;
	margin-bottom: 4rem;
	border-bottom: 0.1rem solid #D9D9D9;
}

.internship__list__box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.internship__list__img {
	width: 40rem;
}

.internship__list__img img {
	height: 24rem;
	object-fit: cover;
	border-radius: 0.6rem;
}

.internship__list__txt {
	width: calc(100% - 44rem);
}

.internship__list__tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2rem;
}

.internship__list__tag {
	color: #FFF;
	background-color: #455A64;
	font-size: 1.4rem;
    letter-spacing: 0.1em;
	line-height: 1.5;
	font-weight: 500;
	padding: 0.4rem 2rem;
	border-radius: 4rem;
}

.internship__list__txt p {
	font-size: 1.5rem;
    letter-spacing: 0.04em;
	line-height: 2;
	font-weight: 500;
}

.internship__voice {
	padding: 4rem 6rem;
	border-radius: 1rem;
	background-color: #E7F0FF;
	display: flex;
	justify-content: space-between;
}

.internship__voice h3 {
	font-size: 1.8rem;
    letter-spacing: 0.1em;
	line-height: 1.5;
	font-weight: 600;
	padding-top: 2rem;
}

.internship__voice__lists {
	width: 80rem;
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.internship__voice__list {
	padding-left: 2rem;
	position: relative;
}

.internship__voice__list::before {
	position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 0.3rem;
    height: 100%;
	border-radius: 1rem;
	background-color: #1A327F;
}

.internship__voice__list p {
	font-size: 1.5rem;
    letter-spacing: 0.08em;
	line-height: 1.8;
	font-weight: 500;
}

.faq {
	margin: 10rem 0 15rem 0;
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.faq__item {
	padding: 4rem;
	background-color: var(--white);
}
.faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	font-size: 1.6rem;
    letter-spacing: 0.12em;
	line-height: 1.7;
	position: relative;
	cursor: pointer;
}
.faq__answer {
	display: flex;
	font-size: 1.6rem;
    letter-spacing: 0.12em;
	line-height: 1.7;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	margin-top: 0;
	transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease;
}
.faq__q,
.faq__a {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 2rem;
	color: var(--white);
	background-color: #222222;
	font-size: 2rem;
    letter-spacing: 0.04em;
	line-height: 2;
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
}
.faq__a {
	background-color: var(--main-color);
}
.faq__item p {
	width: calc(100% - 6rem);
	font-size: 1.5rem;
    letter-spacing: 0.12em;
	line-height: 1.7;
	text-align: left;
}

.faq__item .faq__answer p {
	margin-top: 0.7rem;
}

.faq__answer a {
	display: inline-block;
	text-decoration: underline;
	color: #374C8F;
}

.faq__answer a:hover {
	opacity: 0.6;
}

.faq__icon {
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 50%;
	background-color: var(--main-color);
	position: relative;
}

.faq__icon::after {
	content: "＋";
	color: var(--white);
	display: inline-block;
	text-align: center;
	font-weight: bold;
	font-size: 1.6rem;
	position: absolute;
	top: 48%;
    left: 54%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.faq__question[aria-expanded="true"] .faq__icon::after {
	content: "ー";
	font-size: 1.6rem;
}

.faq__answer.active {
	opacity: 1;
}


.job__description__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 3rem;
}

.job__description__list li {
	width: calc((100% - 3rem) / 2);
	background-color: var(--white);
	border-radius: 1rem;
	position: relative;
}

.job__description__list li a {
	padding: 3rem 4rem;
}

.job__description__list li a::before {
	position: absolute;
    content: "";
    top: 3rem;
    right: 4rem;
    margin: auto;
    width: 2.6rem;
    height: 2.9rem;
    background-image: url(../img/description_arrow.webp);
    background-repeat: no-repeat;
    background-size: contain;
	transition: all 0.5s;
}

.job__description__list li a:hover::before {
	transform: translateX(1rem);
	transition: all 0.5s;
}

.job__description__list h3 {
	width: 95%;
	font-size: 2rem;
    letter-spacing: 0.04em;
	line-height: 1.4;
	font-weight: bold;
	margin-bottom: 2rem;
}

.job__description__list p {
	font-size: 1.6rem;
    letter-spacing: 0.04em;
	line-height: 1.4;
	margin-bottom: 0.8rem;
}

/* お知らせ */

.topics {
	margin-bottom: 15.5rem;
}

.topics__list {
	display: flex;
	flex-wrap: wrap;
	gap: 6rem 3rem;
}

.topics__list li {
	width: calc((100% - 6rem) / 3);
}

.topics__list__img {
	overflow: hidden;
	border-radius: 1rem;
	margin-bottom: 2rem;
}

.topics__list__img img {
	width: 38rem;
	height: 25.4rem;
	object-fit: cover;
	transition: all 0.5s;
}

.topics__list li a:hover img {
	scale: 1.05;
	transition: all 0.5s;
}

.topics__list__info {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	margin-bottom: 0.5rem;
}

.topics__list__date {
	font-size: 1.4rem;
    letter-spacing: 0.1em;
	line-height: 1.7;
}

.topics__list__category {
	font-size: 1.4rem;
    letter-spacing: 0.1em;
	line-height: 1.7;
}

.topics__list li h2 {
	font-size: 1.6rem;
    letter-spacing: 0.1em;
	line-height: 1.7;
	font-weight: 600;
}

.pagenavigation {
	margin-top: 9rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
}

.pagenavigation a,
.pagenavigation span {
	color: var(--black);
	background-color: var(--white);
	border-radius: 50%;
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	font-size: 1.6rem;
    letter-spacing: 0.04em;
	line-height: 1.7;
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagenavigation a:hover {
	color: var(--white);
	background-color: var(--main-color);
}

.pagenavigation span.active {
	color: var(--white);
	background-color: var(--main-color);
}

.pagenavigation a:first-child,
.pagenavigation a:last-child {
	background-color: initial;
}

/* お知らせ記事 */

.single {
	margin: 6rem 0 11rem 0;
}

.single__contents {
	background-color: var(--white);
	padding: 8rem 12rem 12rem 12rem;
}

.single__info {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	margin-bottom: 0.5rem;
}

.single__info__date {
	font-size: 1.4rem;
    letter-spacing: 0.1em;
	line-height: 1.7;
}

.single__info__category {
	font-size: 1.4rem;
    letter-spacing: 0.1em;
	line-height: 1.7;
}

.topics__list li h2 {
	font-size: 1.6rem;
    letter-spacing: 0.1em;
	line-height: 1.7;
	font-weight: 600;
}

.single h1 {
	font-size: 3rem;
    letter-spacing: 0.04em;
	line-height: 1.5;
	font-weight: bold;
	margin: 1.5rem 0 6.5rem 0;
}

.single_thumb {
	margin-bottom: 5rem;
}

.single_thumb img {
	width: 100%;
	height: 54rem;
	object-fit: cover;
}

.single h2,
.single h3,
.single h4,
.single h5,
.single h6,
.single p {
    letter-spacing: 0.12em;
	line-height: 1.8;
	margin-bottom: 1.8rem;
}

.single h2 {
	font-size: 2.6rem;
}

.single h3 {
	font-size: 2.2rem;
}

.single h4 {
	font-size: 2rem;
}

.single h5 {
	font-size: 1.8rem;
}

.single h6 {
	font-size: 1.7rem;
}

.single p {
	font-size: 1.6rem;
}

.single_btn {
	margin-top: 8rem;
}

.single_btn a {
	margin: auto;
}

.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
    opacity: 0;
}

.delay02 {
    animation-delay: 0.2s;
}
.delay04 {
    animation-delay: 0.4s;
}
.delay06 {
    animation-delay: 0.6s;
}
.delay08 {
    animation-delay: 0.8s;
}
.delay10 {
    animation-delay: 1s;
}
.delay12 {
    animation-delay: 1.2s;
}
.delay14 {
    animation-delay: 1.4s;
}
    
/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/
    
.fade {
    opacity: 0;
}
    
/*==================================================
動き自体の指定：今回は「ふわっ」
===================================*/
    
.fadeUp {
    animation-name:fadeUpAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity: 0;
    }
    @keyframes fadeUpAnime{
        from {
        opacity: 0;
        transform: translateY(100px);
        }
    
        to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
	.sp {
		display: block;
	}

	.pc {
		display: none;
	}

	p {
		font-size: 1.4rem;
	}
	
	.header {
		width: 90%;
	}

	.header__container {
		height: 5rem;
	}

	.header__logo {
		position: relative;
		z-index: 10000;
	}

	.header__logo a img {
		width: 11rem;
	}

	.header__nav {
		display: none;
	}

	.header__icon {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 3rem;
		height: 3rem;
	}

	.header__item {
		margin-bottom: 2rem;
		margin-right: 0;
	}

	.header__list a {
		font-family: "Jost", sans-serif;
		font-optical-sizing: auto;
		font-weight: 300;
		font-style: normal;
		font-size: 1.3rem;
	}

	.header__ja {
		font-family: "Noto Sans JP", sans-serif;
		font-optical-sizing: auto;
		font-weight: 500;
		font-style: normal;
	}

	main {
		background-size: cover;
	}


	.top-mv {
		padding-top: 43rem;
		padding-left: 5%;
		padding-right: 5%;
		padding-bottom: 0;
		/* height: 100vh; */
		height: 85rem;
		/* max-height: 800px; */
	}

	.top-mv::before {
		/* height: 100vh; */
        height: 85rem;
		object-fit: cover;
		background-position: top right;
		background-size: 85rem;
	}

	.top-mv__subtitle {
		margin-bottom: 1.8rem;
		text-shadow:
			1px 1px 0 #fff,
			-1px 1px 0 #fff,
			1px -1px 0 #fff,
			-1px -1px 0 #fff;
	}

	.top-mv__title {
		width: 105%;
		font-size: 4.3rem;
		margin-bottom: 1.8rem;
		text-shadow:
			1px 1px 0 #fff,
			-1px 1px 0 #fff,
			1px -1px 0 #fff,
			-1px -1px 0 #fff;
	}

	.top-mv__txt {
		font-size: 1.6rem;
	}

	.top-mv-btn {
		margin-top: 3rem;
	}

	.top-mv-btn a {
		font-size: 1.4rem;
	}

	.scrollbar {
		height: 12rem;
	}
	
	.scrollbar_dot::after {
		height: 12rem;
	}

	@keyframes circlemove {
		0% {
			bottom: 12rem;
		}
		100% {
			bottom: 0px;
		}
	}

	.top-about {
		margin: 0;
	}

	.wrapper {
		width: 90%!important;
	}

	.h2__subtitle {
		font-size: 1.6rem;
	}

	.h2__title {
		font-size: 2.4rem;
		margin: 2rem 0;
	}

	.btn,
	.btn-bg {
		width: 100%;
	}

	.top-about__slider {
		margin-top: 5rem;
		height: 20rem;
	}

	.top-about__txt span {
		font-size: 4rem;
	}

	.top-about__business {
		border-radius: 3rem 3rem 0 0;
		padding: 5rem 0;
	}

	.top-about__business__lists {
		flex-direction: column;
		gap: 4rem;
	}

	.top-about__business__lists li {
		width: 100%;
	}

	.top-about__business__lists__img img {
		width: 100%;
		height: 19rem;
	}

	.top-about__business h3 {
		font-size: 2.2rem;
	}

	.top-interview {
		padding: 5rem 0;
	}

	.top-interview::after,
	.top-interview::before {
		display: none;
	}

	.top-interview__slider__slide__img img {
		height: 30rem;
	}

	.top-interview__slider .slick-next, .top-interview__slider .slick-prev {
		top: -4rem;
		width: 4rem;
		height: 4rem;
	}
	
	.top-interview__slider .slick-prev {
		right: 7rem;
	}

	.top-interview__slider .slick-next {
		right: 1rem;
	}

	.top-interview .btn-bg {
		width: 90%;
	}

	.recruit_banner {
		width: 90%;
		flex-direction: column;
	}

	.recruit_banner a img {
		height: 17rem;
		object-fit: cover;
	}

	.recruit_banner a p {
		font-size: 2rem;
	}

	footer {
		padding: 5rem 0;
	}

	.footer__container {
		flex-direction: column;
		gap: 2rem;
	}

	.footer__logo img {
		width: 18rem;
	}

	.footer__company,
	.footer__nav {
		width: 100%;
	}

	.footer__copy {
		margin-top: 5rem;
	}

	.footer__list__news {
		margin-right: 0;
	}

	.mv {
		padding-top: 10rem;
	}

	.mv .wrapper {
		width: 90%;
	}

	.mv__subtitle {
		font-size: 1.6rem;
	}

	.mv__title {
		font-size: 2.6rem;
		margin: 2rem 0 2.5rem 0
	}

	.internal__link {
		display: none;
	}

	.philosophy {
		margin: 5rem auto;
	}

	.philosophy__list > li:first-child {
		margin-bottom: 5rem;
	}

	.philosophy__misson__txt01 {
		font-size: 2.6rem;
	}

	.philosophy__misson__txt02 {
		font-size: 1.8rem;
		margin-bottom: 3rem;
	}

	.philosophy__misson__txt03 {
		font-size: 1.4rem;
	}

	.philosophy__value__list {
		flex-direction: column;
	}

	.philosophy__value__list li {
		width: 100%;
		padding: 5%;
	}

	.philosophy__value__list p {
		font-size: 1.4rem;
	}

	.philosophy__slider {
		margin-top: 5rem;
	}

	.philosophy__slider__track {
	-webkit-animation: philosophy__slider 20s linear infinite;
    animation: philosophy__slider 20s linear infinite;
	}

	.philosophy__slider__slide img {
		width: 30rem;
		height: 20rem;
	}

	.philosophy__slider__slide:nth-child(even) {
		margin-top: 0;
	}

	.message__box {
		flex-direction: column;
	}

	.message__img,
	.message__txt {
		width: 100%;
	}

	.message__img img {
		height: 30rem;
		object-position: top;
	}

	.message__txt01 {
		font-size: 2rem;
	}

	.strength {
		margin: 5rem 0;
	}

	.strength__list {
		flex-direction: column;
		margin-top: 5rem;
	}

	.strength__list li {
		width: 100%;
	}

	.strength__list__img img {
		width: 20rem;
		height: 20rem;
	}
	
	.strength__list li h3 {
		font-size: 2rem;
	}

	.data {
		margin: 5rem 0;
	}

	.data__list {
		flex-direction: column;
	}

	.data__list li {
		width: 100%!important;
		padding: 5%;
	}

	.data__list .data__list__img {
		width: 14rem;
	}

	.data__list__number span {
		font-size: 5.5rem;
	}

	.data__list li:last-child {
		display: none;
	}

	.business__introduce__maintxt {
		font-size: 1.4rem;
	}

	.business__introduce__list {
		flex-direction: column;
	}

	.business__introduce__list li {
		width: 100%;
		padding: 3.5rem 0;
	}

	.business__introduce__list__title {
		font-size: 3.5rem;
	}

	.network, .mobility, .cloud {
		margin: 5rem 0;
	}

	.iot {
		margin-bottom: 5rem;
	}

	.network h2, .mobility h2, .cloud h2, .iot h2 {
		font-size: 3.5rem;
	}

	.business__img img {
		height: 15rem;
	}

	.business__txt01 {
		font-size: 2rem;
	}

	.business__detail__list {
		flex-direction: column;
		align-items: baseline;
	}

	.business__detail__list li {
		font-size: 1.4rem;
	}

	.business__txt02 {
		font-size: 1.4rem;
	}

	.business__img__list {
		flex-wrap: wrap;
	}

	.business__img__list li {
		width: 48%;
	}

	.business__img__list img {
		width: 100%;
	}

	.system__engineer {
		margin: 5rem 0;
	}

	.system__engineer .h2__subtitle {
		font-size: 2.8rem;
	}

	.system__engineer .h2__title {
		font-size: 2rem;
		padding-bottom: 1.5rem;
	}

	.system__engineer__box {
		flex-direction: column;
		gap: 0;
	}

	.system__engineer__txt, .system__engineer__img {
		width: 100%;
	}

	.system__engineer__img img {
		width: 100%;
		height: 35rem;
	}

	.system__engineer__list h3 {
		font-size: 1.8rem;
	}

	.system__engineer__list p {
		font-size: 1.4rem;
	}

	.works {
		margin: 5rem 0;
	}

	.works h3 {
		font-size: 2rem;
	}

	.works__list {
		padding: 5%;
	}

	.works__list__box {
		flex-direction: column;
	}

	.works__list__img, .works__list__txt {
		width: 100%;
	}

	.works h4 {
		font-size: 2rem;
		line-height: 1.2;
	}

	.works h4::before {
		height: 100%;
	}

	.environment__introduce {
		margin: 5rem 0;
	}

	.environment__introduce__maintxt {
		font-size: 1.4rem;
	}

	.environment__introduce__list {
		padding: 5%;
		flex-direction: column;
		gap: 5rem
	}

	.environment__introduce__list li {
		width: 100%;
	}

	.environment__introduce__list__title {
		font-size: 2rem;
	}

	.welfare {
		margin: 5rem 0;
	}

	.welfare__list {
		flex-direction: column;
		margin-bottom: 5rem;
	}

	.welfare__list li {
		width: 100%;
		min-height: initial;
	}

	.environment__slider {
		margin-top: 2rem;
	}

	.environment__slider__slide {
		margin-right: 2rem;
	}

	.environment__slider__slide img {
		width: 25rem;
		height: 14rem;
	}

	.environment__slider__track01 {
		-webkit-animation: environment__slider01 20s linear infinite;
		animation: environment__slider01 20s linear infinite;
	}

	.education {
		margin: 5rem 0;
	}

	.education__list {
		flex-direction: column;
	}

	.education__list li {
		width: 100%;
		padding: 5%;
	}

	.education__list__title {
		flex-direction: column;
		align-items: baseline;
		gap: 0;
		margin-bottom: 1rem;
	}

	.education__list__title h3::before {
		left: -1.75rem;
	}

	.education__list p {
		font-size: 1.4rem;
	}

	.education__list .education__list__small {
		width: 100%;
		margin-top: 0;
	}

	.career {
		margin: 5rem 0;
	}

	.carerr__flow {
		padding: 5%;
		flex-direction: column;
		gap: 3rem;
	}

	.carerr__flow__item {
		width: 100%;
	}

	.carerr__flow__item p {
		height: initial!important;
		padding: 5%;
	}

	.carerr__list {
		flex-direction: column;
	}

	.carerr__list li {
		width: 100%;
	}

	.cetegory {
		margin: 5rem 0;
	}

	.cetegory__title::before {
		width: 60%;
	}

	.category-section__btns {
		padding: 2rem 0;
		gap: 1rem;
	}

	.category-btn {
		font-size: 1.2rem;
		padding: 0.2rem 2rem;
	}

	.interview {
		margin-bottom: 5rem;
	}

	.interview__list {
		gap: 3rem 2rem;
	}

	.interview__list li {
		width: calc((100% - 2rem) / 2);
	}

	.interview__list__img img {
		height: 18rem;
	}

	.interview__list__info {
		font-size: 1.2rem;
	}

	.interview__single__wrapper {
		width: 90%;
	}

	.interview__single__mv {
		padding-top: 10rem;
	}

	.interview__single__mv__box {
		margin-left: 0;
		flex-direction: column-reverse;
		gap: 4rem;
		margin-top: 5.5rem;
	}

	.interview__single__mv__txt {
		width: 100%;
	}

	.interview__single__mv__name {
		margin-bottom: 4rem;
	}

	.interview__single__mv__catchcopy {
		padding-left: 2rem;
	}

	.interview__single__mv__catchcopy::before {
		width: 2rem;
		height: 1.5rem;
		top: 0;
		left: 0rem;
	}

	.interview__single__mv__catchcopy::after {
		width: 2rem;
		height: 1.5rem;
		bottom: 0rem;
        right: -3rem;
        right: 0;
	}

	.interview__single__mv__catchcopy span {
		font-size: 1.8rem;
		text-decoration-thickness: 0.2rem;
    	text-underline-offset: 0.5rem;
	}

	.interview__single__mv__catchcopy span::before {
		bottom: 0;
	}

	.interview__single__mv__img img {
		width: 105%;
		height: 39rem;
		border-radius: 0 1rem 1rem 0;
		margin-left: -5%;
	}

	.interview__single__contents {
		margin-top: 5rem;
	}

	.interview__single__contents .interview__single__box {
		left: 0!important;
		right: 0!important;
		flex-direction: column;
		gap: 3rem;
		margin-top: 3rem;
		margin-bottom: 8rem;
	}

	.interview__single__contents .interview__single__box:nth-child(even) {
		flex-direction: column-reverse;
	}

	.interview__single__contents h2 {
		width: 100%!important;
		font-size: 2rem;
	}

	.interview__single__contents p {
		font-size: 1.4rem;
	}

	.interview__single__img {
		margin-top: 0;
	}

	.interview__single__img img {
		width: 100%;
		height: 26.5rem;
		object-fit: cover;
		border-radius: 1rem!important;
	}

	.interview__single__message {
		width: 100%;
		margin: 5rem 0;
		padding: 3rem 0;
	}

	.other__interview {
		margin-bottom: 5rem;
	}

	.other__interview h2 {
		font-size: 2rem;
	}

	.other__interview__list {
		flex-wrap: wrap;
	}

	.other__interview__list li {
		width: calc((100% - 3rem) / 2);
	}

	.other__interview__img img {
		width: 100%;
		height: 18rem;
	}

	.other__interview__info {
		font-size: 1.2rem;
	}

	.job__description {
		margin-top: 5rem;
	}

	.job__description__table {
		padding: 5%;
	}

	.job__description__table table {
		border-collapse: collapse;
	}
	
	.job__description__table th,
	.job__description__table td {
		width: 100%;
		display: block;
		margin-left: 0;
	}

	.entry__btn a {
		width: 100%;
	}

	.selection__flow__list li {
		flex-direction: column;
	}

	.selection__flow__list__box {
		width: 100%;
		padding: 5%;
	}

	.selection__flow__list__num {
		width: 3rem;
		height: 3rem;
	}

	.selection__flow__list__txt {
		width: 100%;
		height: initial;
		padding: 5%;
	}

	.looking__person {
		margin-top: 5rem;
	}

	.looking__person__list {
		flex-direction: column;
	}

	.looking__person__list li {
		width: 100%;
		padding: 5%;
		flex-direction: column;
	}

	.looking__person__list__txt {
		width: 100%;
	}

	.looking__person__list__txt h3 {
		width: 100%;
		font-size: 1.8rem;
	}

	.looking__person__list__img {
		margin: auto;
	}

	.looking__person__list__txt p {
		font-size: 1.4rem;
	}

	/* 新規追加インターンシップ実績 */

	.internship {
		margin: 5rem 0 0 0;
	}

	.internship__box {
		padding: 5%;
	}

	.internship__list {
		padding-bottom: 3rem;
    	margin-bottom: 3rem;
	}

	.internship__list h3 {
		font-size: 1.8rem;
		line-height: 1.5;
		margin-bottom: 2rem;
	}

	.internship__list__box {
		flex-direction: column;
		gap: 2rem;
	}

	.internship__list__img,
	.internship__list__txt {
		width: 100%;
	}

	.internship__list__tag {
		font-size: 1.2rem;
		padding: 0.4rem 1rem;
	}

	.internship__voice {
		padding: 5%;
		flex-direction: column;
		gap: 2rem;
	}

	.internship__voice__lists {
		width: 100%;
		gap: 2rem;
	}

	.internship__voice h3 {
		padding-top: 0;
	}

	.faq {
		margin: 5rem 0;
	}

	.faq__item {
		padding: 5%;
	}

	.faq__item p {
		font-size: 1.4rem;
		margin-right: 1rem;
	}

	.faq__item .faq__answer p {
		margin-top: 0;
	}

	.faq__q, .faq__a {
		width: 3rem;
		height: 3rem;
		margin-right: 1rem;
	}

	.job__description__list {
		flex-direction: column;
	}

	.job__description__list li {
		width: 100%;
	}

	.job__description__list li a {
		padding: 5% 5% 10% 5%;
	}

	.job__description__list li a::before {
		top: initial;
		bottom: 2%;
		right: 5%;
	}

	.job__description__list h3 {
		font-size: 1.8rem;
	}

	.job__description__list p {
		font-size: 1.4rem;
	}

	.selection__flow {
		margin-top: 5rem;
	}

	.topics__list {
		gap: 3rem 2rem;
	}

	.topics__list li {
		width: calc((100% - 2rem) / 2);
	}

	.topics__list__img img {
		width: 100%;
		height: 12rem;
	}

	.topics__list li h2 {
		font-size: 1.4rem;
	}

	.pagenavigation {
		gap: 1rem;
	}

	.topics {
		margin-bottom: 5rem;
	}

	.single {
		margin: 5rem 0;
	}

	.single__contents {
		padding: 5%;
	}

	.single h1 {
		font-size: 2.4rem;
		margin: 2rem 0;
	}
	
	.single_thumb {
		margin-bottom: 3rem;
	}

	.single_thumb img {
		height: 18rem;
	}

	.single h2 {
		font-size: 2.2rem;
	}

	.single h3 {
		font-size: 2rem;
	}

	.single h4 {
		font-size: 1.8rem;
	}

	.single h5 {
		font-size: 1.6rem;
	}

	.single h6 {
		font-size: 1.5rem;
	}

	.single p {
		font-size: 1.4rem;
	}

	.single_btn {
		margin-top: 3rem;
	}

	.delay02, 
	.delay04, 
	.delay06, 
	.delay08, 
	.delay10 {
		animation-delay: 0.4s;
	}
}
