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;
	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 {
	padding: 120px 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 {
	margin: 0 auto;
	max-width: 1040px;
}

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

/* ベーススタイル */

.l-header {
	height: 100px;
	width: 100%;
}

/* 固定ヘッダー */

.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 5vw;
}

.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); /* 画面内にスライド */
}

.home .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;
}

.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: 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: 40px;
}

.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__button .c-button {
	background: none;
	border: 1px solid #FFF;
	padding: 12px 22px;
}

.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-article {
	border-bottom: 1px solid #000;
}

.c-article a {
	align-items: center;
	display: flex;
	font-size: 18px;
	padding: 16px 40px 16px 8px;
	position: relative;
	transition: all 0.5s ease 0s;
}

.c-article a time {
	font-size: 14px;
	margin-right: 20px;
	padding-top: 4px;
}

.c-article a::after {
	border-bottom: 1px solid #000;
	border-right: 1px solid #000;
	content: "";
	height: 8px;
	position: absolute;
	right: 16px;
	top: 50%;
	transform: rotate(-45deg) translateY(-50%);
	transition: all 0.5s ease;
	width: 8px;
}

.c-article a:hover::after {
	right: 8px;
}

.c-article-title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
}

.c-lower-mv {
	align-items: center;
	display: flex;
	height: 300px;
	margin-top: 100px;
	padding-left: 5vw;
	position: relative;
	width: 100%;
}

.c-lower-mv h1 {
	color: #FFF;
	font-size: 48px;
	font-weight: 700;
}

.c-lower-mv .c-lower-mv-bg {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.c-lower-mv .c-lower-mv-bg img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.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-loading {
	align-items: center;
	background: #f3f4f5;
	display: flex;
	height: 100%;
	justify-content: center;
	left: 0;
	position: fixed;
	top: 0;
	transition: translate 1.5s ease;
	width: 100%;
	z-index: 100;
	z-index: 300;
}

.c-loading.js-loading-end {
	translate: 100% 0;
}

.c-loading__logo--wrapper {
	height: -moz-fit-content;
	height: fit-content;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.c-loading__logo--wrapper::after {
	background: #f3f4f5;
	content: "";
	height: 150%;
	left: 50%;
	position: absolute;
	top: 100%;
	transform: translateX(-50%);
	width: 150%;
	z-index: 999;
}

.c-loading__logo {
	animation: 3s 0.5s ease-in-out forwards slideUp;
	display: inline-block;
	transform: translateY(70px);
	width: 200px;
}

.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;
}

.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: 180px;
}

.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: #1d1d1d;
	color: #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 {
	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-top-swiper-container {
	margin-left: calc(50% - 50vw);
	width: 100vw;
}

.p-mv {
	height: 100vh;
	position: relative;
}

.p-mv-text {
	color: #fff;
	font-size: 64px;
	font-weight: 700;
	left: 5vw;
	line-height: 1.2;
	position: absolute;
	top: 55%;
}

.p-mv-text span {
	display: block;
	font-size: 18px;
	margin-top: 20px;
}

.p-mv-mv {
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.p-mv-mv video {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
}

.p-mv-mv::after {
	background: #000;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.3;
	position: absolute;
	top: 0;
	width: 100%;
}

.fv__title-text {
	color: #FFF;
	font-size: 64px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.fv__title-text .char {
	opacity: 0;
}

.p-top-swiper {
	overflow: hidden;
	padding-top: 100px;
}

.p-top-swiper-wrapper {
	transition-timing-function: linear;
}

.p-top-swiper-slide {
	width: 360px;
}

.p-top-swiper-slide p {
	font-size: 18px;
}

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

.p-contact {
	align-items: center;
	background: #1d1d1d;
	display: flex;
	justify-content: center;
}

.p-contact-inner {
	align-items: center;
	background: #FFF;
	border-radius: 18px;
	display: flex;
	justify-content: space-between;
	max-width: 980px;
	padding: 40px 80px;
	width: 100%;
}

.p-contact-left {
	width: 55%;
}

.p-contact-text {
	margin-top: 28px;
}

.p-recruit {
	position: relative;
	margin-top: 250px;
}

.p-recruit-inner {
	color: #FFF;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
}

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

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

.p-recruit-button .c-button {
	background: #FFF;
	color: #000;
}

.p-recruit-button .c-button .c-button-arrow {
	color: #000;
}

.p-works-items {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	row-gap: 60px;
}

.p-works-item {
	width: calc(33.3% - 26.6666666667px);
}

.p-works-item a {
	overflow: hidden;
	transition: all 0.5s ease;
}

.p-works-item a:hover {
	opacity: 0.7;
}

.p-works-item a:hover img {
	scale: 1.1;
}

.p-works-img {
	overflow: hidden;
}

.p-works-img img {
	transition: all 0.5s ease;
}

.p-works-date {
	font-size: 14px;
	font-weight: 500;
	margin-top: 10px;
}

.p-works-title {
	font-weight: 700;
}

.p-works-pagination {
	margin-top: 120px;
}

.p-topService {
	padding: 80px 5vw;
}

.p-topService-inner {
	align-items: end;
	display: flex;
}

.p-topService--left {
	width: 45%;
}

.p-topService-lead {
	font-size: 28px;
	font-weight: 700;
	margin-top: 52px;
}

.p-topService-text {
	margin-top: 52px;
}

.p-topService-list {
	font-size: 20px;
	font-weight: 700;
	margin-top: 52px;
}

.p-topService-list li {
	list-style: disc inside;
}

.p-topService-button {
	margin-top: 52px;
}

.p-topService-img {
	margin-bottom: -200px;
	margin-left: auto;
	width: 48%;
}

.p-topWorks {
	background: #F3F4F5;
	padding: 250px 5vw 120px;
}

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

.p-topWorks-left {
	width: 20%;
}

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

.p-top-article {
	margin-left: auto;
	width: 60%;
}

.p-recruit-swiper-container {
	position: relative;
	z-index: -1;
}

.p-recruit-swiper-container::after {
	background: rgba(0, 0, 0, 0.7);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

.p-top-swiper {
	overflow: hidden;
	padding-top: 100px;
}

.p-recruit-swiper-wrapper {
	transition-timing-function: linear;
}

.p-recruit-swiper-slide {
	width: 400px;
}

.p-greeting-inner {
	max-width: 700px;
}

.p-greeting-text {
	margin-top: 60px;
}

.p-greeting-name {
	font-family: "Noto Serif JP", serif;
	font-size: 20px;
	margin-top: 60px;
	text-align: right;
}

.p-greeting-name span {
	font-size: 32px;
}

.p-about-img {
	padding: 0 5vw;
}

.p-about-img .l-inner {
	position: relative;
}

.p-about-img p {
	color: red;
	font-size: 24px;
	font-weight: 700;
	left: 5%;
	position: absolute;
	top: 5%;
}

.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-company dl {
	border-top: 1px solid #D0D0D0;
	display: flex;
	flex-wrap: wrap;
	margin: 80px auto 0;
	max-width: 800px;
}

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

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

.p-locations-lists {
	margin-top: 80px;
}

.p-locations-list {
	display: flex;
	padding: 0 5%;
}

.p-locations-list:nth-child(2) {
	border-top: 1px solid #D0D0D0;
	margin-top: 40px;
	padding-top: 40px;
}

.p-locations-left {
	width: 50%;
}

.p-locations-left h3 {
	font-size: 40px;
	font-weight: 700;
}

.p-locations-left p {
	margin-top: 20px;
}

.p-locations-right {
	width: 50%;
}

.p-locations-map {
	aspect-ratio: 3/2;
}

.p-locations-link {
	margin-top: 8px;
	text-align: right;
}

.p-locations-link a {
	color: #06B9FC;
}

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

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

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

.p-service-text {
	font-size: 20px;
	margin-top: 20px;
}

.p-service-img {
	display: flex;
	gap: 50px;
	margin-top: 20px;
}

.p-service-img li {
	width: 200px;
}

.p-machine-lists li {
	margin-top: 40px;
}

.p-machine-lists li h3 {
	font-size: 20px;
	margin-top: 20px;
}

.p-machine-lists li table {
	border: 1px solid #ddd;
	border-collapse: collapse;
	margin-top: 20px;
	width: 100%;
}

.p-machine-lists li th,
.p-machine-lists li td {
	border: 1px solid #ddd;
	padding: 8px;
	text-align: left;
}

.p-machine-lists li th {
	background-color: #e3f2fd;
}

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

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

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

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

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

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

.p-flow-step {
	align-items: baseline;
	background: #FFF;
	display: inline-flex;
	font-size: 24px;
	font-weight: 500;
	left: 50%;
	padding: 2px 16px;
	position: absolute;
	top: -12%;
	transform: translateX(-50%);
}

.p-flow-step span {
	font-size: 32px;
}

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

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

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

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

.p-recruitment-button a {
	display: flex;
	gap: 4px;
	justify-content: center;
	margin: 0 auto;
	max-width: 280px;
	padding: 12px;
}

.p-recruitment-button a span {
	align-items: center;
	display: flex;
}

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

.contact__form {
	display: flex;
	flex-direction: column;
	margin: 80px auto 0;
	max-width: 900px;
	row-gap: 30px;
}

.contact__row {
	align-items: center;
}

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

.contact__head {
	font-size: 20px;
	line-height: normal;
}

.contact__head span.--must {
	display: inline-block;
	position: relative;
}

.contact__head span.--must::after {
	background: #1d1d1d;
	border-radius: 4px;
	color: #f3f4f5;
	content: "必須";
	display: inline-block;
	font-size: 12px;
	left: calc(100% + 14px);
	line-height: normal;
	padding: 1px 7px;
	position: absolute;
	top: calc(50% + 1px);
	translate: 0 -50%;
	white-space: nowrap;
}

.contact__data {
	margin-top: 10px;
}

.contact__data input[type=text],
.contact__data input[type=email],
.contact__data input[type=tel] {
	font-size: 16px;
	padding: 14px 30px;
	width: 100%;
}

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

.contact__acceptance {
	text-align: center;
}

.contact__acceptance .wpcf7-list-item {
	margin-left: 0;
}

.contact__acceptance a {
	color: #06B9FC;
	text-decoration: underline;
}

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;
}

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

.wpcf7-spinner {
	display: block;
}

.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;
}

.page-id-28 .c-lower-mv h1 {
	color: #000;
}

.page-id-28 .l-section {
	padding: 120px 5vw;
}

.page-id-28 p {
	margin-top: 20px;
}

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

.error404 .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;
}

.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 ul {
	flex-wrap: wrap;
	gap: 10vw;
	justify-content: center;
	row-gap: 20px;
}

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

.c-button {
	width: 200px;
}

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

.drawer__icon {
	display: flex;
}

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

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

.p-contact-inner {
	padding: 40px 32px;
}

.p-recruit-inner {
	max-width: 600px;
	padding: 0 5vw;
	width: 100%;
}

.p-topService-inner {
	position: relative;
}

.p-topService--left {
	width: 100%;
}

.p-topService-text {
	max-width: 50%;
}

.p-topService-img {
	position: absolute;
	right: 0;
}

.p-topWorks-left {
	width: -moz-fit-content;
	width: fit-content;
}

.page-id-28 .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) {

.l-section {
	padding-bottom: 80px;
	padding-top: 80px;
}

.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-nav {
	margin-left: 0;
	margin-top: 40px;
}

.c-article a {
	align-items: baseline;
	flex-direction: column;
}

.c-lower-mv {
	height: 200px;
	margin-top: 80px;
}

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

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

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

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

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

.p-mv-mv video {
	-o-object-position: 28% center;
	object-position: 28% center;
}

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

.fv__title-text {
	font-size: 40px;
}

.p-top-swiper-slide p {
	font-size: 16px;
}

.p-top-swiper-slide {
	width: 180px;
}

.p-contact-inner {
	flex-direction: column;
	gap: 40px;
	padding: 40px 20px;
	width: 100%;
}

.p-contact-left {
	text-align: center;
	width: 100%;
}

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

.p-works-items {
	gap: 12px;
}

.p-works-item {
	width: calc(50% - 6px);
}

.p-works-date {
	margin-top: 10px;
}

.p-topService-inner {
	flex-direction: column;
}

.p-topService--left {
	width: 100%;
}

.p-topService-lead {
	font-size: 20px;
	margin-top: 40px;
}

.p-topService-text {
	margin-top: 40px;
	max-width: 100%;
}

.p-topService-list {
	font-size: 18px;
	margin-top: 40px;
}

.p-topService-button {
	margin-top: 40px;
	text-align: center;
}

.p-topService-img {
	margin-bottom: 0;
	margin-top: 40px;
	position: static;
	width: 100%;
}

.p-topWorks {
	padding: 80px 5vw;
}

.p-topWorks-inner {
	flex-direction: column;
}

.p-topWorks-left {
	width: 100%;
}

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

.p-greeting-name {
	text-align: center;
}

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

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

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

.p-company dl dd {
	padding-left: 20px;
	width: 63%;
}

.p-locations-lists {
	margin-top: 40px;
}

.p-locations-list {
	flex-direction: column;
}

.p-locations-left {
	width: 100%;
}

.p-locations-left h3 {
	font-size: 28px;
}

.p-locations-right {
	margin-top: 40px;
	width: 100%;
}

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

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

.p-service-text {
	font-size: 18px;
}

.p-service-img {
	flex-wrap: wrap;
	gap: 32px;
}

.p-service-img li {
	width: 150px;
}

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

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

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

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

.p-flow-lists li {
	margin: 0 auto;
	width: 80%;
}

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

.p-flow-step span {
	font-size: 28px;
}

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

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

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

.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 slideUp {

0% {
	transform: translateY(70px);
}

20% {
	transform: translateY(0);
}

75% {
	transform: translateY(0);
}

100% {
	transform: translateY(70px);
}

}

