body *,
body *::before,
body *::after {
	box-sizing: border-box;
}

body body,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body ul,
body ol,
body dl,
body li,
body dt,
body dd,
body p,
body div,
body span,
body img,
body a,
body table,
body tr,
body th,
body td,
body small,
body button,
body time,
body figure {
	border: 0;
	font: inherit;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

body ol,
body ul {
	list-style: none;
}

body li,
body dd {
	list-style-type: none;
}

body header,
body footer,
body nav,
body section,
body article,
body main,
body aside,
body figure,
body figcaption {
	display: block;
}

body img {
	border: none;
	vertical-align: bottom;
}

body a {
	cursor: pointer;
	text-decoration: none;
}

/* mixins */

body {
	color: #000;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1.8;
	margin: 0;
	margin-top: 100px;
	position: relative;
}

body.is-active,
body.is-open {
	height: 100%;
	overflow: hidden;
}

body .inner {
	margin: 0 auto;
	max-width: 1366px;
	min-width: 1024px;
	padding: 0 20px;
	width: 100%;
}

body img {
	height: auto;
	width: 100%;
}

body a {
	color: inherit;
}

body .br-top {
	margin-top: 10px;
}

body #loader-bg {
	background: #fff;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 15;
}

.l-container {
	margin: 0 auto;
	max-width: 1080px;
	padding-left: 5vw;
	padding-right: 5vw;
	width: 100%;
}

.l-container.--narrow {
	max-width: 900px;
}

.l-section {
	margin: 120px 0;
	padding: 0 5vw;
}

.l-section.--primary-color {
	background-color: #2F3A52;
}

.l-section__header {
	margin-bottom: 40px;
	text-align: center;
}

.l-section__content {
	margin-top: 40px;
}

.l-inner.--wide {
	margin: 0 auto;
	max-width: 1200px;
}

.l-inner {
	margin: 0 auto;
	max-width: 1040px;
}

/**
 * ヘッダーレイアウト
 *
 * サイト共通で使用するヘッダーの構造を定義
 * - 基本の高さ: SP 80px / PC 100px
 * - position: fixed に対応（.--fixed）
 */

/* ベーススタイル */

.l-header {
	height: 100px;
	position: relative;
	width: 100%;
	z-index: 300;
}

/* 固定ヘッダー */

.l-header.--fixed {
	left: 0;
	position: fixed;
	top: 0;
	z-index: 300;
}

/* 固定ヘッダー用スペーサー
  - ヘッダーと同じ高さの空白を挿入
  - スクロール時のコンテンツのずれを防止
  - .--fixedが付いていないときはスタイルが当たらず無効化される */

.l-header__spacer:has(~ .l-header.--fixed) {
	display: block;
	height: 64px;
	width: 100%;
}

/* ヘッダーの内部レイアウト */

.l-header__inner {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1440px;
	padding: 0 3vw;
}

.header--start {
	color: #FFF;
	left: 0;
	position: absolute;
	top: 0;
	transform: translateY(-100%);
	z-index: 300;
}

.header--start .header__inner {
	padding-block: 22px;
}

.header--start .header__list-head {
	align-items: center;
	display: flex;
	-moz-column-gap: 32px;
	column-gap: 32px;
	margin-bottom: 5.9px;
}

.header--start .header__list-head-item {
	color: #FFF;
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
}

.header--start .header__list {
	justify-content: end;
}

.header--start .c-gnav__link::after {
	background: #FFF;
}

.header--start.is-active {
	transform: translateY(0); /* 画面内にスライド */
}

.header--fixed {
	transition: translate 0.5s ease;
	translate: 0 -100%;
}

.header--fixed.js-scroll {
	translate: 0;
}

.header--fixed .c-gnav__button .c-button {
	background: #000;
}

.header--fixed .c-button:hover {
	background: #FFF;
	border: 1px solid #000;
}

.l-center {
	margin-left: auto;
	margin-right: auto;
}

.l-spacer {
	margin-bottom: 8px;
	margin-top: 8px;
}

.l-spacer.--2 {
	margin-bottom: 16px;
	margin-top: 16px;
}

.l-spacer.--3 {
	margin-bottom: 24px;
	margin-top: 24px;
}

.l-spacer.--4 {
	margin-bottom: 32px;
	margin-top: 32px;
}

.l-spacer.--5 {
	margin-bottom: 40px;
	margin-top: 40px;
}

.l-spacer.--6 {
	margin-bottom: 48px;
	margin-top: 48px;
}

.l-spacer__top {
	margin-top: 8px;
}

.l-spacer__top.--2 {
	margin-top: 16px;
}

.l-spacer__top.--3 {
	margin-top: 24px;
}

.l-spacer__top.--4 {
	margin-top: 32px;
}

.l-spacer__top.--5 {
	margin-top: 40px;
}

.l-spacer__top.--6 {
	margin-top: 48px;
}

.l-spacer__bottom {
	margin-bottom: 8px;
}

.l-spacer__bottom.--2 {
	margin-bottom: 16px;
}

.l-spacer__bottom.--3 {
	margin-bottom: 24px;
}

.l-spacer__bottom.--4 {
	margin-bottom: 32px;
}

.l-spacer__bottom.--5 {
	margin-bottom: 40px;
}

.l-spacer__bottom.--6 {
	margin-bottom: 48px;
}

.l-footer {
	background: #1d1d1d;
	color: #FFF;
	padding: 80px 5vw 40px;
}

.l-footer-inner {
	align-items: center;
	display: flex;
}

.footer-logo a {
	display: block;
	width: 320px;
}

.p-footer-logo-bottom {
	color: #FFF;
	font-weight: 500;
	margin: -10px auto;
	padding: 0 40px;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.p-footer-logo-bottom::before,
.p-footer-logo-bottom::after {
	background: #FFF;
	content: "";
	height: 1px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
}

.p-footer-logo-bottom::before {
	left: 0;
}

.p-footer-logo-bottom::after {
	right: 0;
}

.l-footer-address {
	margin-top: 20px;
}

.l-footer-tel {
	margin-top: 20px;
}

.l-footer-nav {
	margin-left: auto;
}

.l-footer-nav ul {
	display: flex;
	gap: 2vw;
}

.l-footer-nav2 {
	display: flex;
	gap: 3vw;
	margin-top: 40px;
}

.l-footer-nav2 .main-site a {
	align-items: center;
	display: flex;
	gap: 4px;
}

.l-footer-nav2 .main-site span {
	align-items: center;
	display: flex;
}

.l-footer-nav2 .main-site img {
	width: 20px;
}

.copyright {
	font-size: 14px;
	margin-top: 80px;
	text-align: center;
}

/*---------------------
ボタン
---------------------*/

.c-button {
	background: #1d1d1d;
	border: 1px solid #1d1d1d;
	border-radius: 50px;
	color: #fff;
	display: inline-block;
	padding: 12px 60px 12px 20PX;
	position: relative;
	transition: all 0.2s ease;
}

.c-button-arrow {
	color: #fff;
	font-size: 18px;
	position: absolute;
	right: 16px;
	top: 50%;
	transition: color 0.2s ease;
	transition: right 0.5s ease;
	translate: 0 -50%;
}

.c-gnav {
	align-items: center;
	display: flex;
	gap: 40px;
}

.c-gnav__lists {
	display: flex;
	gap: 2vw;
}

.c-gnav__link {
	display: block;
	position: relative;
}

.c-gnav__link::after {
	background: #000;
	bottom: -4px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	scale: 0;
	transition: scale 0.5s ease;
	width: 100%;
}

.c-gnav__link.--main-site {
	justify-content: center;
	display: flex;
	gap: 4px;
}

.c-gnav__link.--main-site span {
	align-items: center;
	display: flex;
}

.c-gnav__link.--main-site img {
	width: 20px;
}

.c-gnav__button .c-button {
	padding: 12px 60px;
	text-align: center;
}

.header__nav {
	align-items: center;
	display: flex;
	gap: 40px;
}

.header--fixed .l-header__inner {
	background: #FFF;
	color: #000;
}

.c-heading-1__en {
	font-size: 48px;
	font-weight: 700;
}

.c-heading-1__ja {
	font-size: 20px;
	font-weight: 700;
}

/*---------------------
下層ページセクションタイトル
---------------------*/

.c-section-title {
	font-weight: 700;
	line-height: 1.4;
}

.c-section-title__en {
	font-size: 48px;
}

.c-section-title__ja {
	display: block;
	font-size: 20px;
}

.c-lower-title {
	align-items: center;
	color: #2F3A52;
	display: flex;
	flex-direction: column;
	height: 200px;
	justify-content: center;
	width: 100%;
}

.c-lower-title h1 {
	font-size: 18px;
	font-weight: 700;
}

.c-lower-en {
	font-size: 48px;
	font-weight: 700;
}

.c-lower-img {
	aspect-ratio: 1200/600;
	margin-left: auto;
	width: 80vw;
}

.c-breadcrumb {
	padding: 12px 5vw;
}

.c-breadcrumb--items {
	display: flex;
	flex-wrap: nowrap;
	list-style: none;
	overflow: hidden;
	white-space: nowrap;
}

.c-breadcrumb--item a:hover {
	opacity: 0.5;
}

.c-breadcrumb--item::before {
	content: "／";
	margin-left: 0.75em;
	margin-right: 0.75em;
}

.c-breadcrumb--item:first-child::before {
	display: none;
}

.c-breadcrumb--item:last-child {
	font-weight: 500;
	overflow: hidden;
	text-overflow: ellipsis;
}

.c-navigation ul {
	display: flex;
	gap: 30px;
	justify-content: center;
}

.c-navigation-numbers {
	font-size: 32px;
	font-weight: 600;
}

.current {
	color: #06B9FC;
}

.c-lower-heading {
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.c-lower-heading__en {
	display: block;
	font-size: 20px;
}

.c-lower-heading__ja {
	font-size: 48px;
}

.c-lower-section-title {
	font-size: 40px;
	font-weight: 700;
	text-align: center;
}

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

.p-header {
	background: #FFF;
}

.p-header.header--start {
	background: none;
}

.p-header__logo {
	width: 200px;
}

.p-header__logo a {
	display: block;
}

.p-header__logo-bottom {
	color: #2F3A52;
	font-weight: 500;
	margin: -10px auto;
	padding: 0 40px;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.p-header__logo-bottom::before,
.p-header__logo-bottom::after {
	background: #2F3A52;
	content: "";
	height: 1px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
}

.p-header__logo-bottom::before {
	left: 0;
}

.p-header__logo-bottom::after {
	right: 0;
}

.drawer__icon {
	background: none;
	display: none;
	flex-direction: column;
	height: 16px;
	justify-content: space-between;
	width: 24px;
	z-index: 102;
}

.drawer__icon--bar {
	background: #000;
	height: 1px;
	width: 100%;
}

.header--start .drawer__icon--bar {
	background: #FFF;
}

.js-show .drawer__icon .drawer__icon--bar:nth-of-type(1) {
	rotate: 45deg;
	translate: 0 7.5px;
}

.js-show .drawer__icon .drawer__icon--bar:nth-of-type(2) {
	display: none;
}

.js-show .drawer__icon .drawer__icon--bar:nth-of-type(3) {
	rotate: -45deg;
	translate: 0 -7.5px;
}

.drawer {
	background: #FFF;
	height: 100vh;
	height: 100svh;
	overflow-y: scroll;
	position: fixed;
	right: 0;
	top: 0;
	transition: opacity 0.5s ease;
	width: 100%;
	z-index: 101;
}

.js-show .drawer {
	visibility: visible;
}

.drawer__body {
	height: -moz-fit-content;
	height: fit-content;
	padding: 180px 5vw 0;
	width: 100%;
}

.drawer__list {
	display: flex;
	flex-direction: column;
	margin-bottom: 40px;
	row-gap: 32px;
	text-align: center;
}

.drawer__list li a {
	font-size: 20px;
	text-align: center;
}

.drawer__btn {
	background: #fff;
	border-radius: 100vmax;
	color: #001A75;
	display: inline-block;
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
	padding: 6px 30px;
}

.drawer__icon--bar {
	transition: all 0.5s ease;
}

.drawer {
	transition: translate 0.5s ease;
	translate: 101%;
}

.js-show .drawer {
	translate: 0;
}

.p-introduction-inner {
	background: #F3F4F5;
	padding: 80px 20px;
	text-align: center;
}

.p-introduction__title {
	font-size: 40px;
	font-weight: 700;
}

.p-introduction__text {
	margin-top: 52px;
}

.p-introduction__btn {
	margin-top: 52px;
}

.p-mv {
	height: calc(100svh - 100px);
	position: relative;
}

.p-mv-text {
	font-size: 64px;
	font-weight: 700;
	left: 3vw;
	line-height: 1.2;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.p-mv-text span {
	background: #FFF;
	display: block;
	margin: 20px 0;
	padding: 8px;
}

.p-mv-text-en {
	-webkit-text-stroke-color: #000;
	-webkit-text-stroke-width: 2px;
	bottom: 0;
	color: #FFF;
	font-size: 100px;
	font-weight: 700;
	left: 3vw;
	opacity: 0.4;
	position: absolute;
}

.p-mv-text-en > div {
	animation: scroll-left 120s linear infinite;
	display: flex;
	gap: 40px;
	width: -moz-fit-content;
	width: fit-content;
}

.p-mv-text-en > div span {
	white-space: nowrap;
}

.p-mv-img {
	height: 100%;
	margin-left: auto;
	width: 90vw;
}

.p-mv-img img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-top-item-inner {
	display: flex;
	gap: 3vw;
	margin: 0 auto;
	max-width: 1320px;
	width: 100%;
	-moz-column-gap: rm(40);
	align-items: center;
	column-gap: rm(40);
	justify-content: space-between;
}

.p-top-item-img {
	aspect-ratio: 620/350;
	height: auto;
	margin-left: calc((50vw - 50%) * -1);
	width: 50vw;
}

.p-top-item-img img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-top-item-text {
	height: auto;
	text-align: center;
	width: 50%;
}

.p-top-item-text p {
	margin: 40px auto 0;
	max-width: 450px;
}

.p-top-item.--works .p-top-item-inner {
	flex-direction: row-reverse;
}

.p-top-item.--works .p-top-item-inner .p-top-item-img {
	margin-left: 0;
	margin-right: calc((50vw - 50%) * -1);
}

.p-top-item-btn {
	margin-top: 40px;
}

.p-top-team {
	background: #1d1d1d;
	color: #fff;
	padding: 80px 20px;
}

.p-top-team-inner {
	align-items: center;
	display: flex;
}

.p-top-team-img {
	width: 48%;
}

.p-top-team-text {
	text-align: center;
	width: 52%;
}

.p-top-team-text p {
	margin-top: 40px;
}

.p-top-team-btn {
	margin-top: 40px;
}

.p-top-team-btn .c-button {
	background: #FFF;
	color: #000;
}

.p-top-team-btn .c-button .c-button-arrow {
	color: #000;
}

.p-qa-item {
	border: 1px solid #D7D7D7;
	border-radius: 20px;
	margin-top: 40px;
	padding: 20px;
}

.p-qa-question {
	font-size: 20px;
	font-weight: 700;
	padding-left: 50px;
	position: relative;
}

.p-qa-question::before {
	content: "Q.";
	font-size: 28px;
	font-weight: 700;
	left: 0;
	position: absolute;
	top: -8px;
}

.p-qa-answer {
	margin-top: 20px;
}

.p-entry {
	background: url(../img/entry-bg.webp) center center/cover no-repeat;
	padding: 120px 5vw;
}

.p-entry-inner {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 20px;
	padding: 40px;
	text-align: center;
}

.p-entry-text {
	margin-top: 40px;
}

.p-entry-btn {
	margin-top: 40px;
}

.p-works-occupation-top-text {
	margin-top: 40px;
	text-align: center;
}

.p-works-occupation-illustration {
	margin: 80px auto 0;
	max-width: 500px;
}

.p-works-occupation-items {
	margin-top: 80px;
}

.p-works-occupation-item {
	margin-top: 80px;
}

.p-works-occupation-item:first-child {
	margin-top: 0;
}

.p-works-occupation-item h3 {
	border-bottom: 1px solid #9e9e9e;
	font-size: 32px;
	font-weight: 700;
	padding-bottom: 20px;
}

.p-works-occupation-item .flex {
	display: flex;
	gap: 40px;
	margin-top: 20px;
}

.p-works-occupation-item .flex .img {
	max-width: 360px;
	width: 100%;
}

.p-works-occupation-item .flex .right {
	width: calc(100% - 400px);
}

.p-works-occupation-item .flex h4 {
	font-size: 20px;
	font-weight: 700;
}

.p-works-occupation-item .flex p {
	margin-top: 20px;
}

.p-works-dayflow {
	background: #F3F4F5;
	margin: 120px auto 0;
	padding: 120px 5vw;
}

.p-works-dayflow-body {
	display: flex;
	gap: 80px;
	margin-top: 80px;
}

.p-works-dayflow-left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 300px;
}

.p-works-dayflow-right {
	max-width: 540px;
	width: calc(100% - 380px);
}

.p-works-dayflow-item {
	margin-top: 60px;
}

.p-works-dayflow-item:first-child {
	margin-top: 0;
}

.p-works-dayflow-item {
	align-items: center;
	display: flex;
	gap: 20px;
}

.p-works-dayflow-time {
	font-size: 20px;
	font-weight: 500;
	width: 80px;
}

.p-works-dayflow-text {
	width: calc(100% - 100px);
}

.p-works-dayflow-text p {
	margin-top: 8px;
}

.p-works-dayflow-title {
	border-bottom: 1px solid #000;
	font-size: 20px;
	font-weight: 700;
	padding-bottom: 8px;
}

.p-philosophy .c-lower-heading {
	background: #FFF;
	display: inline-block;
	position: relative;
	z-index: 1;
}

.p-philosophy-text {
	border: 1px solid #000;
	display: inline-block;
	font-size: 28px;
	font-weight: 700;
	margin-top: -26px;
	padding: 60px 73px 40px;
}

.p-recruit dl {
	border-top: 1px solid #D0D0D0;
	display: flex;
	flex-wrap: wrap;
	margin: 80px auto 0;
	max-width: 800px;
}

.p-recruit dl dt {
	border-bottom: 1px solid #D0D0D0;
	font-weight: 500;
	margin-top: 12px;
	padding-bottom: 12px;
	padding-left: 20px;
	width: 30%;
}

.p-recruit dl dd {
	border-bottom: 1px solid #D0D0D0;
	margin-top: 12px;
	padding-bottom: 12px;
	width: 70%;
}

.p-flow {
	background: #F3F4F5;
	margin: 120px 0 0;
	padding: 120px 5vw;
}

.p-flow-lists {
	display: flex;
	justify-content: space-between;
	margin-top: 80px;
	text-align: center;
}

.p-flow-lists li {
	border: 1px solid #000;
	border-radius: 20px;
	padding: 80px 40px 40px;
	position: relative;
	position: relative;
	width: calc(33.3% - 26.6666666667px);
}

.p-flow-lists li::after {
	border-bottom: 10px solid transparent;
	border-left: 15px solid black;
	border-radius: 4px;
	border-top: 10px solid transparent;
	content: "";
	height: 0;
	position: absolute;
	right: -9%;
	top: 50%;
	width: 0;
}

.p-flow-lists li:last-child:after {
	display: none;
}

.p-flow-lists li span {
	background: #FFF;
	display: inline-block;
	margin-top: -24px;
	padding: 2px 4px;
}

.p-flow-step {
	align-items: center;
	background: #1D1D1D;
	border-radius: 50%;
	color: #FFF;
	display: flex;
	font-size: 40px;
	font-weight: 700;
	height: 80px;
	justify-content: center;
	left: 50%;
	position: absolute;
	top: -10%;
	transform: translateX(-50%);
	width: 80px;
}

.p-flow-icon {
	height: 80px;
}

.p-flow-icon img {
	height: 100%;
}

.p-flow-list-title {
	font-size: 24px;
	font-weight: 700;
	margin-top: 18px;
}

.p-flow-list-text {
	margin-top: 18px;
}

.p-flow-button {
	margin-top: 80px;
}

.p-contact-page-top-text {
	text-align: center;
}

.contact__form {
	margin: 80px auto 0;
	max-width: 900px;
}

.wrap-form-contact {
	display: flex;
	flex-direction: column;
	row-gap: 30px;
}

.item-form-contact {
	align-items: center;
}

.contact__row.--aifs {
	align-items: flex-start;
}

.heading-form-contact p {
	font-size: 20px;
	line-height: normal;
}

.contact-label {
	display: inline-block;
}

.detail-form-contact {
	margin-top: 10px;
}

input:not([type="image" i],
[type="range" i],
[type="checkbox" i],
[type="radio" i])
{
	font-size: 16px;
	padding: 14px 30px;
	width: 100%;
	border-radius: 4px;
	border:1px solid #ccc;
}

select {
	font-size:16px;
	color:#000;
	padding: 14px 40px 14px 14px;
	-webkit-appearance: none; /* Safari / iOS */
 	-moz-appearance: none;    /* Firefox */
 	appearance: none;
	border: 1px solid #ccc;
	border-radius: 4px;
 	background-color: #fff;
 	background-image: url('data:image/svg+xml;charset=US-ASCII,<svg%20xmlns="http://www.w3.org/2000/svg"%20width="12"%20height="8"%20viewBox="0%200%2012%208"><path%20fill="black"%20d="M6%208L0%200h12z"/></svg>');
 	background-repeat: no-repeat;
 	background-position: right 1em center;
 	background-size: 12px 8px;
}

textarea {
	font-size: 16px;
	padding: 14px 30px;
	width: 100%;
	border-radius: 4px;
	border:1px solid #ccc;
}

.contact__data textarea {
	font-size: 16px;
	min-height: 200px;
	padding: 14px 30px;
	width: 100%;
}

.item-form-privacy-policy p {
	text-align: center;
	margin-top: 28px;
}

.item-form-privacy-policy a {
	color: #06B9FC;
	text-decoration: underline;
}

.item-form-privacy-policy .wpcf7-list-item {
	margin-left: 0;
}

input[type=submit],
input[type=button] {
	border-radius: 0px;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	background: transparent;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
	display: none;
}

.row.jc-center {
	justify-content: center;
}

.contact__submit {
	text-align: center;
	margin-top: 40px;
}

.contact__submit input[type=submit] {
	background: #000;
	color: #fff;
	display: inline-block;
	font-size: 16px;
	line-height: normal;
	padding: 11px 63px;
	width: fit-content;
}

.wpcf7-spinner {
	display: block;
}

.wpcf7-response-output {
	display: none;
}

.p-thanks {
	text-align: center;
}

.p-thanks-top-text {
	font-size: 32px;
	font-weight: 700;
}

.p-thanks-text {
	margin-top: 40px;
}

.p-thanks-attention {
	color: #E60012;
	margin-top: 40px;
}

.p-thanks-button {
	margin-top: 80px;
}

.p-privacy h1 {
	color: #000;
}

.p-privacy .l-section {
	padding: 120px 5vw;
}

.p-privacy p {
	margin-top: 20px;
}

.p-404 .l-section {
	padding: 120px 0;
}

.p-404 .c-lower-mv h1 {
	color: #000;
}

.p-404-top-text {
	font-size: 32px;
	font-weight: 700;
	text-align: center;
}

.p-404-text {
	font-size: 20px;
	margin-top: 40px;
	text-align: center;
}

.p-404-button {
	margin-top: 80px;
	text-align: center;
}

.p-about-place p {
	margin-top: 40px;
	text-align: center;
}

.p-about-business-trip p {
	margin: 80px auto 0;
	max-width: 700px;
}

.p-about-welfare-benefits-items {
	margin: 80px auto 0;
	max-width: 700px;
}

.p-about-welfare-benefits-item {
	align-items: center;
	display: flex;
	gap: 80px;
	margin-top: 80px;
}

.p-about-welfare-benefits-item:first-child {
	margin-top: 0;
}

.p-about-welfare-benefits-item ul {
	width: calc(100% - 230px);
}

.p-about-welfare-benefits-item li {
	list-style: disc;
}

.p-about-welfare-benefits-item-title {
	align-items: center;
	border: 1px solid #000;
	border-radius: 50%;
	display: flex;
	font-size: 24px;
	font-weight: 700;
	height: 150px;
	justify-content: center;
	text-align: center;
	width: 150px;
}

.p-about-career p {
	margin: 80px auto 0;
	max-width: 700px;
}

.p-about-after-inner {
	background: #F3F4F5;
	padding: 80px 40px;
	text-align: center;
}

.p-about-after-inner p {
	margin: 80px auto 0;
	max-width: 700px;
}

.p-about-after-title {
	font-size: 40px;
	font-weight: 700;
}

.p-staff-box {
	border-bottom: 1px solid #9e9e9e;
	padding: 80px 0;
}

.p-staff-box1 {
	padding-top: 0;
}

.p-staff-box3 {
	border-bottom: 0;
	padding-bottom: 0;
}

.p-staff-title {
	font-size: 28px;
	font-weight: 700;
	text-align: center;
}

.p-staff-name {
	margin-top: 40px;
	text-align: center;
}

.p-staff-img {
	margin: 40px auto 0;
	max-width: 640px;
}

.p-staff-interview {
	margin: 40px auto 0;
	max-width: 700px;
}

.p-staff-question {
	font-size: 18px;
	font-weight: 700;
}

.p-staff-answer {
	margin-top: 16px;
}

.u-hidden {
	display: none !important;
}

.u-sr-only {
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	clip: rect(0, 0, 0, 0);
	border: 0;
	white-space: nowrap;
}

.u-line-break {
	display: inline-block !important;
}

.text-center {
	text-align: center;
}

.pc-only {
	display: block;
}

.tab-sp-only {
	display: none;
}

.sp-only {
	display: none;
}

@media (any-hover: hover) {

.c-button:hover {
	background: #fff;
	color: #1d1d1d;
}

.c-button:hover .c-button-arrow {
	color: #1d1d1d;
	right: 8px;
}

.c-gnav__link:hover::after {
	scale: 1;
}

}

@media screen and (max-width: 1023px) {

.header__nav {
	display: none;
}

.l-footer {
	padding: 120px 20px 40px;
}

.l-footer-inner {
	gap: 5vw;
}

.footer-logo a {
	width: 200px;
}

.l-footer-nav {
	margin: 40px auto;
}

.l-footer-nav ul {
	flex-wrap: wrap;
	gap: 10vw;
	justify-content: center;
	max-width: 400px;
	row-gap: 20px;
}

.l-footer-nav2 {
	justify-content: center;
}

.c-gnav__button {
	text-align: center;
}

.p-header__logo {
	width: 180px;
}

.drawer__icon {
	display: flex;
}

.p-introduction-inner {
	padding: 60px 20px;
}

.p-introduction__title {
	font-size: 24px;
}

.p-mv-text {
	font-size: 40px;
}

.p-mv-text {
	top: 64%;
}

.p-mv-text-en {
	font-size: 64px;
	left: 0;
	overflow: hidden;
	width: 100vw;
}

.p-mv-text-en.pc-only {
	display: none;
}

.p-mv-img img {
	-o-object-position: 80% 50%;
	object-position: 80% 50%;
}

.p-mv-img {
	width: 100vw;
}

.p-privacy .l-section {
	padding: 40px 5vw;
}

.tab-sp-only {
	display: block;
}

}

@media screen and (max-width: 768px) {

.l-header {
	height: 80px;
}

}

@media screen and (max-width: 767px) {

body {
	margin-top: 80px;
}

.l-section {
	margin: 80px 0;
}

.l-section__header {
	margin-bottom: 40px;
}

.l-section__content {
	margin-top: 60px;
}

.l-header__spacer:has(~ .l-header.--fixed) {
	height: 90px;
}

.l-footer-inner {
	align-items: baseline;
	flex-direction: column;
}

.l-footer-left {
	text-align: center;
	width: 100%;
}

.footer-logo a {
	margin: 0 auto;
}

.l-footer-nav2 {
	flex-direction: column;
	gap: 20px;
	text-align: center;
}

.l-footer-nav2 .main-site a {
	justify-content: center;
}

.c-button {
	max-width: 280px;
	width: 100%;
}

.c-gnav__link.--main-site {
	justify-content: center;
}

.c-lower-en {
	font-size: 32px;
}

.c-lower-img {
	margin-left: 0;
	width: 100%;
}

.c-lower-heading__en {
	font-size: 18px;
}

.c-lower-heading__ja {
	font-size: 32px;
}

.c-lower-section-title {
	font-size: 28px;
}

.p-introduction__text {
	margin-top: 40px;
}

.p-introduction__btn {
	margin-top: 40px;
}

.p-mv {
	height: calc(100svh - 80px);
}

.p-top-item-inner {
	display: grid;
	grid-template-areas: "title" "img" "text";
	grid-template-columns: 1fr;
}

.p-top-item-img {
	grid-area: img;
	margin-bottom: rm(22.31);
	margin-left: rm(-20);
	margin-right: rm(-20);
	margin-top: 20px;
	width: 100vw;
}

.p-top-item-text {
	display: contents;
}

.p-top-item.--works .p-top-item-inner .p-top-item-img {
	margin-left: calc(50% - 50vw);
}

.p-top-team-img {
	margin-top: 40px;
	width: 100%;
}

.p-top-team-text {
	width: 100%;
}

.p-qa-question {
	font-size: 18px;
	padding-left: 40px;
}

.p-qa-question::before {
	font-size: 24px;
}

.p-entry-inner {
	padding: 40px 20px;
}

.p-works-occupation-illustration {
	margin: 40px auto 0;
}

.p-works-occupation-items {
	margin-top: 40px;
}

.p-works-occupation-item h3 {
	font-size: 24px;
	padding-bottom: 12px;
}

.p-works-occupation-item .flex {
	flex-direction: column;
	gap: 16px;
}

.p-works-occupation-item .flex .right {
	width: 100%;
}

.p-works-dayflow {
	margin: 120px auto 0;
}

.p-works-dayflow-left {
	display: none;
}

.p-works-dayflow-right {
	width: 100%;
}

.p-works-dayflow-item {
	align-items: flex-start;
}

.p-works-dayflow-time {
	width: 70px;
}

.p-works-dayflow-text {
	width: calc(100% - 70px);
}

.p-philosophy-text {
	font-size: 20px;
	padding: 40px 20px 20px;
}

.p-recruit dl {
	margin: 40px auto 0;
}

.p-recruit dl dt {
	padding-left: 0;
	width: 35%;
}

.p-recruit dl dd {
	width: 63%;
}

.p-flow {
	margin: 120px 0 0;
}

.p-flow-lists {
	flex-direction: column;
	gap: 60px;
	margin-top: 60px;
}

.p-flow-lists li {
	margin: 0 auto;
	padding: 60px 20px 40px;
	width: 80%;
}

.p-flow-lists li::after {
	display: none;
}

.p-flow-step {
	font-size: 28px;
	height: 60px;
	width: 60px;
}

.p-flow-list-title {
	font-size: 20px;
}

.p-flow-list-text {
	margin-top: 10px;
}

.p-flow-button {
	margin-top: 40px;
}

.p-about-place p {
	margin-top: 40px;
}

.p-about-business-trip p {
	margin: 40px auto 0;
}

.p-about-welfare-benefits-items {
	margin: 20px auto 0;
}

.p-about-welfare-benefits-item {
	align-items: flex-start;
	gap: 40px;
	margin-top: 40px;
}

.p-about-welfare-benefits-item ul {
	width: calc(100% - 130px);
}

.p-about-welfare-benefits-item-title {
	font-size: 16px;
	height: 90px;
	width: 90px;
}

.p-about-career p {
	margin: 40px auto 0;
}

.p-about-after-inner {
	padding: 40px 20px;
}

.p-about-after-inner p {
	margin: 40px auto 0;
}

.p-about-after-title {
	font-size: 28px;
}

.p-staff-title {
	font-size: 18px;
}

.p-staff-name {
	margin-top: 20px;
}

.p-staff-img {
	margin: 20px auto 0;
}

.p-staff-interview {
	margin: 28px auto 0;
}

.p-staff-question {
	font-size: 16px;
}

.p-staff-answer {
	margin-top: 8px;
}

.u-hidden-md {
	display: none !important;
}

.u-hidden-lg {
	display: none !important;
}

.u-hidden-until-md {
	display: none !important;
}

.u-hidden-until-lg {
	display: none !important;
}

.pc-only {
	display: none;
}

.sp-only {
	display: block;
}

}

@keyframes scroll-left {

0% {
	transform: translateX(0%);
}

100% {
	transform: translateX(-100%);
}

}

