/*
sass内の各フォルダを管理するscss
*/

/*
foundation内の各ファイルを管理するscss
*/

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

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

html {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

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

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

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

a {
	color: #000;
	cursor: pointer;
	text-decoration: none;
}

/*
global内の各ファイルを管理するscss
*/

/*
変数を定義するファイル
*/

/*
関数を定義するファイル
*/

/*
global内の各ファイルを管理するscss
*/

/*
mixinを定義するファイル
*/

body {
	background-color: #FFF;
	color: #000;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
}

/*
layout内の各ファイルを管理するscss
*/

.l-inner {
	max-width: 100%;
	padding-inline: 20px;
	width: 1160px;
}

.l-inner.p-inner__footer {
	margin-inline: auto;
}

.l-header {
	background-color: #FFF;
	height: 66px;
	position: fixed;
	right: 0;
	top: 0;
	top: 0;
	width: 100%;
	z-index: 50;
}

.l-footer {
	margin-top: 22px;
}

/*
component内の各ファイルを管理するscss
*/

.c-nav__link {
	display: inline-block;
	font-weight: 700;
	line-height: 1;
	padding-left: 17px;
	transition: opacity 0.3s;
	width: 100%;
}

.c-nav__link:hover {
	opacity: 0.4;
}

.c-nav__link--contact {
	padding-left: 8px;
	position: relative;
}

.c-nav__link--contact::after {
	background: url(../img/icon-contact-black.svg) no-repeat center/contain;
	content: "";
	height: 20px;
	left: 0;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	width: 20px;
}

.c-heading {
	display: flex;
	flex-direction: column;
	font-weight: 700;
	gap: 16px;
	line-height: 1;
}

.c-heading__ja {
	font-size: 20px;
}

.c-heading__en {
	-webkit-text-stroke: 1px #004aad;
	color: transparent;
	font-family: "Kanit", sans-serif;
	font-size: 72px;
}

.c-fv__message {
	bottom: 61px;
	display: flex;
	flex-direction: column;
	font-weight: 700;
	gap: 22px;
	left: 9px;
	position: absolute;
}

.c-fv__message.c-fv__message--recruit {
	bottom: 10px;
	gap: 5px;
}

.c-fv__message.c-fv__message--recruit .c-fv__message-catch {
	font-size: 20px;
	padding: 10px;
}

.c-fv__message.c-fv__message--recruit .c-fv__message-lead {
	color: #FFF;
	font-size: 10px;
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.c-fv__message-catch {
	background: #FFF;
	border-radius: 10px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	padding: 14px 13px;
	width: -moz-fit-content;
	width: fit-content;
}

.c-fv__message-lead {
	font-size: 12px;
	line-height: 2;
}

.c-link-button {
	background-color: transparent;
	border: 1px solid #000;
	border-radius: 10px;
	color: #000;
	display: inline-block;
	font-family: inherit;
	font-weight: 700;
	line-height: 1;
	padding: 21px 81px 21px 82px;
	position: relative;
	text-decoration: none;
	transition: background-color 0.3s ease, color 0.3s;
}

.c-link-button::after {
	background: url(../img/icon-circle-black.svg) no-repeat center/contain;
	content: "";
	height: 10px;
	position: absolute;
	right: 20px;
	top: 50%;
	transition: background 0.3s;
	translate: 0 -50%;
	width: 10px;
}

.c-link-button:hover {
	background-color: #000;
	color: #FFF;
}

.c-link-button:hover::after {
	background: url(../img/icon-circle-white.svg) no-repeat center/contain;
}

.c-close-button {
	background-color: transparent;
	border: 1px solid #000;
	border-radius: 10px;
	color: #000;
	display: inline-block;
	font-family: inherit;
	font-weight: 700;
	line-height: 1;
	padding: 21px 91px 21px 92px;
	position: relative;
	text-decoration: none;
	transition: background-color 0.3s ease, color 0.3s;
}

.c-close-button::after {
	background: url("/assets/img/icon-circle-black.svg") no-repeat center/contain;
	background: url(../img/icon-circle-black.svg) no-repeat center/contain;
	content: "";
	height: 10px;
	position: absolute;
	right: 20px;
	top: 50%;
	transition: background 0.3s;
	translate: 0 -50%;
	width: 10px;
}

.c-close-button:hover {
	background-color: #000;
	color: #FFF;
}

.c-close-button:hover::after {
	background: url(../img/icon-circle-white.svg) no-repeat center/contain;
}

.c-mail-button {
	background-color: #FFF;
	border-radius: 10px;
	color: #000;
	display: inline-block;
	font-family: inherit;
	font-weight: 700;
	line-height: 1;
	padding: 22px 40px 22px 68px;
	position: relative;
	text-decoration: none;
	transition: background-color 0.3s ease, color 0.3s;
}

.c-mail-button::before,
.c-mail-button::after {
	content: "";
	position: absolute;
	top: 50%;
	translate: 0 -50%;
}

.c-mail-button::before {
	background: url("../img/icon-contact-black.svg") no-repeat center/contain;
	height: 20px;
	left: 40px;
	width: 20px;
}

.c-mail-button::after {
	background: url(../img/icon-circle-black.svg) no-repeat center/contain;
	height: 10px;
	right: 20px;
	transition: background 0.3s;
	width: 10px;
}

.c-mail-button:hover {
	background-color: #000;
	color: #FFF;
}

.c-mail-button:hover::before {
	background: url(../img/icon-contact-white.svg) no-repeat center/contain;
}

.c-mail-button:hover::after {
	background: url(../img/icon-circle-white.svg) no-repeat center/contain;
}

.c-nav-button {
	border: 1px solid #004aad;
	border-radius: 10px;
	display: inline-block;
	line-height: 1;
	padding-block: 11px 33px;
	position: relative;
	text-align: center;
	transition: background-color 0.3s, color 0.3s;
	width: min(600px, 100%);
}

.c-nav-button::after {
	background: url("../img/icon-arrow-down-blue.svg") no-repeat center/contain;
	bottom: 11px;
	content: "";
	height: 10px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	transition: bottom 0.3s, background 0.3s;
	width: 10px;
}

.c-nav-button:hover {
	background-color: #004aad;
	color: #FFF;
}

.c-nav-button:hover::after {
	background: url("../img/icon-arrow-down-white.svg") no-repeat center/contain;
	bottom: 0;
}

.c-section-heading {
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}

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

.c-content-heading.c-content-heading--about {
	line-height: 1.8;
}

.c-content-heading.c-content-heading--service {
	line-height: 1;
}

.c-copyright {
	margin-top: 15px;
}

.c-copyright small {
	display: inline-block;
	font-size: 12px;
	line-height: 1;
}

.c-copyright.c-copyright--footer {
	margin-block: 30px;
	text-align: center;
}

.c-contact-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
	line-height: 1;
	margin-top: 23px;
}

.c-contact-info__tel {
	color: #000;
	font-family: "Kanit", sans-serif;
	font-size: 32px;
}

.c-contact-info__time {
	font-size: 12px;
	font-weight: 700;
}

.c-summary__head {
	position: relative;
}

.c-summary__head::after {
	content: "";
	position: absolute;
}

.c-summary__text {
	font-size: 14px;
	margin-top: 24px;
}

.c-summary__nav {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-top: 32px;
}

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

.c-summary-heading {
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
}

.c-summary__inner--recruit {
	position: relative;
}

.c-summary__inner--recruit::after {
	background: url(../img/bg-img__planning.svg) no-repeat center/contain;
	content: "";
	height: 86px;
	left: calc(50% + 109px);
	position: absolute;
	top: -56px;
	width: 59px;
}

.c-summary-heading {
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
}

/*
project内の各ファイルを管理するscss
*/

.p-header__inner {
	display: flex;
	justify-content: space-between;
	padding-inline: 0;
	width: 100%;
}

.p-header__logo {
	height: auto;
	padding-left: 10px;
	transform: translateY(-8px);
	width: 70px;
}

.p-header__logo a {
	height: inherit;
	width: 100%;
}

.p-header__logo a img {
	height: inherit;
	width: 100%;
}

.p-header-nav {
	margin-top: 29px;
}

.p-header-nav__list li:nth-of-type(4) .p-header-nav__heading--contact {
	padding-block: 33px 30px;
}

.p-header-nav__heading {
	border-bottom: 1px solid #B1C6DC;
	display: block;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	padding-block: 31px;
	position: relative;
	transition: opacity 0.3s;
}

.p-header-nav__heading--dropdown::before,
.p-header-nav__heading--dropdown::after {
	background-color: #004aad;
	content: "";
	height: 1px;
	position: absolute;
	right: 0;
	top: 50%;
	translate: 0 -50%;
	width: 24px;
}

.p-header-nav__heading--dropdown::after {
	transform: rotate(90deg);
	transition: transform 0.3s;
}

.p-header-nav__heading--contact {
	padding-left: 40px;
}

.p-header-nav__heading--contact::after {
	background: url(../img/icon-contact-black.svg) no-repeat center/contain;
	content: "";
	height: 24px;
	left: 0;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	width: 24px;
}

.p-header-nav__item:hover .p-header-nav__heading--dropdown::after {
	transform: rotate(0deg);
}

.p-header-nav__sub-list {
	border-bottom: 1px solid #B1C6DC;
	display: flex;
	display: none;
	flex-direction: column;
	padding-block: 20px;
}

.p-header-nav__sub-item .c-nav__link {
	padding-block: 12px;
}

.p-drawer-icon {
	background-color: #004aad;
	height: 48px;
	position: relative;
	width: 56px;
	z-index: 50;
}

.p-drawer-icon.is-open .p-drawer-icon__bar:nth-last-of-type(1) {
	top: 23px;
	transform: translateX(-50%) rotate(45deg);
}

.p-drawer-icon.is-open .p-drawer-icon__bar:nth-last-of-type(2) {
	display: none;
}

.p-drawer-icon.is-open .p-drawer-icon__bar:nth-last-of-type(3) {
	top: 23px;
	transform: translateX(-50%) rotate(-45deg);
}

.p-drawer-icon__bar {
	background-color: #FFF;
	height: 1px;
	left: 50%;
	position: absolute;
	top: 11px;
	transform: translateX(-50%);
	transition: top 0.3s, transform 0.3s;
	width: 32px;
}

.p-drawer-icon__bar:nth-of-type(2) {
	top: 23px;
}

.p-drawer-icon__bar:nth-of-type(3) {
	top: 35px;
}

.p-drawer-nav {
	align-items: center;
	background-color: #FFF;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	left: 0;
	padding-top: 66px;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateY(calc(-100% - 101px));
	transition: transform 0.3s;
	z-index: 40;
}

.p-drawer-nav .c-nav__link {
	padding: 16px 8px;
}

.p-drawer-nav .c-nav__link.c-nav__link--contact::after {
	left: -3px;
}

.p-drawer-nav.is-open {
	transform: translateY(0);
}

.p-drawer-nav .p-nav__list {
	margin-top: 27px;
}

.p-drawer-nav .p-nav__item {
	text-align: center;
}

.p-fv {
	margin-top: 103px;
}

.p-fv__inner {
	padding-inline: 10px;
}

.p-fv__inner.p-fv__inner-top {
	padding-right: 0;
}

.p-fv__content {
	position: relative;
}

.p-fv__content {
	position: relative;
}

.p-fv__hero {
	width: 100%;
}

.p-fv__hero img {
	height: auto;
	width: 100%;
}

.p-fv__blog {
	width: 100%;
}

.p-fv__blog img {
	aspect-ratio: 3/2;
	height: auto;
	width: 100%;
}

.p-fv__scrolldown {
	bottom: 36px;
	color: #004aad;
	font-size: 10px;
	font-weight: 700;
	left: 9px;
	line-height: 1;
	position: absolute;
}

.p-fv__scrolldown::before {
	animation: scroll 2s infinite;
	background-color: #004aad;
	bottom: -60px;
	content: "";
	height: 52px;
	left: calc(50% - 2px);
	position: absolute;
	transform: translateX(-50%);
	width: 1px;
}

.p-fv-recruit {
	position: relative;
}

.p-about {
	margin-top: 73px;
}

.p-about__content {
	background-color: #F8F8F8;
	position: relative;
}

.p-about__messages {
	background: #F8F8F8;
	bottom: -124px;
	display: block;
	font-size: 24px;
	font-weight: 700;
	height: auto;
	letter-spacing: 0.5em;
	line-height: 1.7;
	padding-inline: 23px 8px;
	padding-right: 16px;
	position: absolute;
	right: 27px;
	text-align: start;
	text-orientation: upright;
	width: 112px;
	writing-mode: vertical-rl;
	z-index: 1;
}

.p-about__messages::after {
	background: url(../img/bg-img__interview.svg) no-repeat center/contain;
	bottom: 61px;
	content: "";
	height: 80px;
	left: -69px;
	position: absolute;
	width: 60px;
}

.p-about__message {
	display: block;
}

.p-about__message span {
	color: #004aad;
	display: inline-block;
	vertical-align: top;
}

.p-about__body {
	margin-top: 126px;
}

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

.p-about__text span {
	font-size: 18px;
}

.p-about__button {
	margin-top: 30px;
}

.p-footer-nav {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.p-footer-nav .c-nav__link {
	font-size: 16px;
	padding: 16px 8px;
}

.p-footer-nav__list {
	align-items: center;
	display: flex;
	flex-direction: column;
}

.p-footer-nav__sub-list {
	align-items: center;
	display: flex;
	flex-direction: column;
}

.p-footer-nav__sub-item .c-nav__link--contact::after {
	left: -20px;
}

#p-service-summary,
#p-service-housing,
#p-service-corporate,
#p-service-public {
	scroll-margin-top: 66px;
}

.p-service {
	margin-top: 52px;
	padding-block: 26px 91px;
	position: relative;
}

.p-service::after {
	background-color: #F8F8F8;
	border-radius: 50px 0 0 50px;
	content: "";
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: calc(100% - 100px);
	z-index: -1;
}

.p-service__content {
	position: relative;
}

.p-service__content::after {
	background: url(..img/bg-img__contract.svg) no-repeat center/contain;
	content: "";
	height: 96px;
	position: absolute;
	right: 0;
	top: -74px;
	width: 69px;
}

.p-service__cards {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin-top: 24px;
}

.p-service__card {
	display: flex;
	flex-direction: column;
	gap: 23px;
}

.p-service__card:nth-of-type(1) .p-service__img::after {
	bottom: -70px;
	content: "01";
	right: 0;
}

.p-service__card:nth-of-type(2) .p-service__img::after {
	bottom: -70px;
	content: "02";
	right: 0;
}

.p-service__card:nth-of-type(3) .p-service__img::after {
	bottom: -70px;
	content: "03";
	right: 0;
}

.p-service__img {
	aspect-ratio: 129/116;
	position: relative;
	z-index: 1;
}

.p-service__img img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	display: block;
	object-fit: cover;
}

.p-service__img::after {
	color: #B1C6DC;
	font-family: "Kanit", sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	position: absolute;
	z-index: -1;
}

.p-service__title {
	background-color: #FFF;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	padding: 10px 16px;
	width: -moz-fit-content;
	width: fit-content;
}

.p-service__text {
	margin-top: 18px;
}

.p-service-button {
	margin-top: 28px;
}

#p-news {
	scroll-margin-top: 66px;
}

.p-news {
	margin-top: 85px;
}

.p-news__list {
	border-top: 1px solid #B1C6DC;
	margin-top: 47px;
}

.p-news__item {
	border-bottom: 1px solid #B1C6DC;
	cursor: pointer;
	line-height: 1;
	position: relative;
	transition: opacity 0.3s;
}

.p-news__item:nth-of-type(1) {
	line-height: 1.8;
}

.p-news__item:hover {
	opacity: 0.4;
}

.p-news__item::after {
	background: url(../img/icon-arrow-right-blue.svg) no-repeat center/contain;
	content: "";
	height: 16px;
	position: absolute;
	right: 0;
	top: 50%;
	translate: 0 -50%;
	width: 16px;
}

.p-news__link-meta {
	align-items: center;
	color: #004aad;
	display: flex;
	flex-direction: row;
	font-size: 14px;
	font-weight: 700;
	gap: 16px;
	line-height: 1;
}

.p-news__link-tag {
	border: 1px solid #004aad;
	padding-block: 4px;
	text-align: center;
	width: 116px;
}

.p-news__link-title {
	font-size: 14px;
	font-weight: 700;
	padding-right: 30px;
	padding-top: 16px;
	text-align: left;
}

.p-contact {
	background-color: #F8F8F8;
	margin-top: 64px;
	padding-block: 27px 41px;
}

.p-contact.p-contact--about {
	margin-top: 100px;
}

.p-contact.p-contact--service {
	margin-top: 50px;
}

.p-contact.p-contact--contact-form {
	margin-top: 50px;
}

.p-contact.p-contact--contact-thanks {
	margin-top: 50px;
}

.p-contact__inner {
	position: relative;
}

.p-contact__inner::after {
	background: url(../img/bg-img__financing.svg) no-repeat center/contain;
	content: "";
	height: 86px;
	left: calc(50% + 109px);
	position: absolute;
	top: -56px;
	width: 59px;
}

.p-contact__info {
	display: flex;
	flex-direction: column;
	margin-top: 46px;
}

.p-contact__label {
	align-items: baseline;
	border-bottom: 1px solid #000;
	display: flex;
	gap: 17px;
	line-height: 1;
	padding-bottom: 25px;
}

.p-contact__label-en {
	font-family: "Kanit", sans-serif;
	font-size: 32px;
}

.p-contact__label-ja {
	font-size: 12px;
	font-weight: 700;
}

.p-contact__mail {
	margin-top: 36px;
}

.p-contact__error-message {
	color: #FE0000;
	font-weight: 700;
	margin-top: 6px;
}

.p-footer__content {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.p-footer__info {
	display: flex;
	flex-direction: column;
}

.p-footer__logo {
	margin-inline: auto;
	width: 223px;
}

.p-footer__logo img {
	height: auto;
	width: 100%;
}

.p-footer-info {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.p-footer-info__block {
	display: flex;
	font-size: 12px;
	gap: 16px;
	line-height: 1;
}

.p-footer-info__block.p-footer-info__block--address {
	align-items: center;
	flex-direction: column;
	gap: 20px;
}

.p-footer-info__term {
	display: inline-block;
}

.p-footer-info__desc {
	display: inline-block;
}

.p-about-summary {
	margin-top: 64px;
}

.p-about-summary__head::after {
	background: url(../img/bg-img__offline-hearing.svg) no-repeat center/contain;
	height: 99px;
	right: 0;
	top: -40px;
	width: 83px;
}

.p-about-philosophy {
	margin-top: 79px;
}

.p-about-philosophy__visual {
	width: 100%;
}

.p-about-philosophy__visual img {
	width: 100%;
}

#p-about-summary,
#p-about-philosophy,
#p-about-company,
#p-about-safety {
	scroll-margin-top: 66px;
}

.p-about-company {
	margin-top: 51px;
}

.p-about-company__content {
	display: flex;
	flex-direction: column;
	gap: 54px;
	margin-top: 65px;
}

.p-about-company__overview {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.p-about-company__text {
	flex-shrink: 0;
	font-size: 12px;
	width: 100%;
}

.p-about-company__text span {
	vertical-align: top;
}

.p-about-company__ceo {
	flex: 1;
	margin-inline: auto;
}

.p-about-company__ceo-img {
	width: 100%;
}

.p-about-company__ceo-img img {
	height: auto;
	width: 100%;
}

.p-about-company__ceo-caption {
	align-items: flex-end;
	display: flex;
	flex-direction: row;
	gap: 16px;
	line-height: 1;
	margin-top: 16px;
}

.p-about-company__ceo-name {
	color: #004aad;
	font-size: 32px;
	font-weight: 700;
}

.p-about-company__table {
	line-height: 1;
	width: 100%;
}

.p-about-company__row {
	border-bottom: 1px solid #B1C6DC;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-block: 30px 16px;
	transform: translateX(-2px);
}

.p-about-company__term {
	font-weight: 700;
	text-align: left;
	width: 80px;
}

.p-about-safety {
	margin-top: 54px;
}

.p-about-safety__cards {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-top: 32px;
}

.p-about-safety__card {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.p-about-safety__title {
	font-size: 16px;
	font-weight: 700;
}

.p-about-safety__text {
	font-size: 12px;
	margin-top: 16px;
}

.p-about-safety__text span {
	vertical-align: top;
}

.p-about-safety__img {
	margin-inline: auto;
	max-width: 400px;
	width: 100%;
}

.p-about-safety__img img {
	height: auto;
	width: 100%;
}

.p-service-summary {
	margin-top: 54px;
}

.p-service-summary__head::after {
	background: url(../img/bg-img__paperless.svg) no-repeat center/contain;
	height: 101px;
	right: 0;
	top: -40px;
	width: 83px;
}

.p-service-detail {
	margin-top: 75px;
}

.p-service-details_boxes {
	display: flex;
	flex-direction: column;
	gap: 72px;
}

.p-service-detail__img {
	border-radius: 20px;
	overflow: hidden;
	width: 100%;
}

.p-service-detail__img img {
	height: auto;
	width: 100%;
}

.p-service-detail__main {
	margin-top: 55px;
}

.p-service-detail__heading {
	border-bottom: 1px solid #B1C6DC;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	padding-bottom: 39px;
}

.p-service-detail__lead {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-top: 20px;
}

.p-service-detail__intro {
	font-size: 14px;
	font-weight: 700;
}

.p-service-detail__desc {
	font-size: 12px;
}

.p-service-detail__desc span {
	vertical-align: top;
}

.p-service-detail__examples {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-top: 50px;
}

.p-service-detail__example {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.p-service-detail__example-title {
	line-height: 1;
}

.p-service-detail__example-img {
	width: 100%;
}

.p-service-detail__example-img img {
	height: auto;
	width: 100%;
}

.p-service-detail__example-date {
	font-size: 14px;
	line-height: 1;
}

.p-contact-summary {
	margin-top: 69px;
}

.p-contact-summary__content {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.p-contact-summary__head::after {
	background: url(../img/bg-img__contact.svg) no-repeat center/contain;
	height: 87px;
	right: 0;
	top: -40px;
	width: 83px;
}

.p-contact-summary__text {
	width: min(422px, 100%);
}

.p-contact-summary__body {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.p-contact-summary__steps {
	display: flex;
	flex-direction: row;
	gap: 52px;
}

.p-contact-summary__step {
	align-items: center;
	border: 3px solid #004aad;
	color: #004aad;
	display: flex;
	flex-direction: column;
	font-weight: 700;
	gap: 10px;
	height: 58px;
	line-height: 1;
	padding: 4px 20px 10px;
	position: relative;
	width: 150px;
}

.p-contact-summary__step:not(:last-child)::after {
	background-color: #004aad;
	content: "";
	height: 1px;
	position: absolute;
	right: -55px;
	top: 50%;
	transform: translateY(-50%);
	width: 52px;
}

.p-contact-summary__step-number {
	font-size: 12px;
}

.p-contact-summary__info {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 0;
	justify-content: flex-start;
}

.p-contact-summary__info .c-contact-info {
	gap: 12px;
	padding-inline: 0;
}

.p-contact-summary__info .c-contact-info::after {
	display: none;
}

.p-contact-summary__info .c-contact-info__time {
	transform: translateX(1px);
}

.p-contact-summary__note {
	font-weight: 700;
	line-height: 1;
}

input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder {
	color: #c2c2c2;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder {
	color: #c2c2c2;
}

input {
	box-sizing: border-box;
}

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

.p-contact-form__form {
	width: min(470px, 100%);
}

.p-contact-form__fields {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.p-contact-form__field.p-contact-form__field--address {
	transform: translateY(4px);
}

.p-contact-form__head {
	align-items: flex-end;
	display: flex;
	font-weight: 700;
	gap: 8px;
	line-height: 1;
}

.p-contact-form__tag {
	font-size: 12px;
	padding-left: 12px;
	position: relative;
}

.p-contact-form__tag::after {
	color: #FE0000;
	content: "★";
	font-size: 12px;
	left: 0;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
}

.p-contact-form__item {
	margin-top: 19px;
}

.p-contact-form__item.p-contact-form__item--text {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-top: 27px;
}

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

.p-contact-form__radios {
	display: flex;
	flex-direction: column;
}

.p-contact-form__radio:nth-of-type(3),
.p-contact-form__radio:nth-of-type(4) {
	transform: translateY(2px);
}

.p-contact-form__radio:nth-of-type(5) {
	transform: translateY(4px);
}

.p-contact-form__radio-input {
	height: 1px;
	position: absolute;
	width: 1px;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
}

.p-contact-form__radio-input:checked + .p-contact-form__radio-text::after {
	opacity: 1;
}

.p-contact-form__radio-input:focus + .p-contact-form__radio-text::before {
	border-color: #FE0000;
}

.p-contact-form__radio-text {
	font-weight: 700;
	line-height: 1;
	padding-left: 24px;
	position: relative;
}

.p-contact-form__radio-text::before,
.p-contact-form__radio-text::after {
	border-radius: 50%;
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.p-contact-form__radio-text::before {
	border: 1px solid #004aad;
	height: 16px;
	left: 0;
	transition: border-color 0.3s;
	width: 16px;
}

.p-contact-form__radio-text::after {
	background: #004aad;
	height: 8px;
	left: 4px;
	opacity: 0;
	width: 8px;
}

.p-contact-form__text {
	background-color: #F8F8F8;
	border: 1px solid #B1C6DC;
	font-size: 16px;
	font-weight: 700;
	height: 60px;
	line-height: 1;
	padding: 22px 15px 18px;
	text-align: left;
	width: 215px;
}

.p-contact-form__text.p-contact-form__text--email {
	font-family: "Zen Kaku Gothic New", sans-serif;
	width: 100%;
}

.p-contact-form__text.p-contact-form__text--tel {
	font-family: "Zen Kaku Gothic New", sans-serif;
	width: 100%;
}

.p-contact-form__checkbox {
	margin-top: 39px;
	text-align: center;
}

.p-contact-form__checkbox-input {
	height: 1px;
	position: absolute;
	width: 1px;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
}

.p-contact-form__checkbox-input:checked + .p-contact-form__checkbox-text::after {
	opacity: 1;
}

.p-contact-form__checkbox-input:focus + .p-contact-form__checkbox-text::before {
	border-color: #FE0000;
}

.p-contact-form__checkbox-text {
	display: inline-block;
	font-weight: 700;
	line-height: 1;
	padding-left: 24px;
	position: relative;
}

.p-contact-form__checkbox-text::before,
.p-contact-form__checkbox-text::after {
	content: "";
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.p-contact-form__checkbox-text::before {
	border: 1px solid #004aad;
	height: 16px;
	transition: border-color 0.3s;
	width: 16px;
}

.p-contact-form__checkbox-text::after {
	background: url("../img/icon-check-blue.svg") no-repeat center center/contain;
	height: 24px;
	left: -1px;
	margin-top: -1.2px;
	opacity: 0;
	width: 24px;
}

.p-contact-form__checkbox-button {
	margin-top: 67px;
	text-align: center;
	transform: translateX(-1px);
}

.p-contact-form__checkbox-button .c-link-button::after {
	background: url(../img/icon-circle-white.svg) no-repeat center/contain;
}

.p-contact-form__checkbox-button .c-link-button.c-link-button--submit {
	border: transparent;
	padding: 21px 81px;
	width: 284px;
}

.p-contact-thanks__button {
	margin-top: 46px;
}

.p-contact-thanks__button .c-link-button {
	padding: 21px 46px 21px 69px;
	width: 284px;
}

.p-contact-thanks__button .c-link-button::after {
	background: url(../img/icon-circle-white.svg) no-repeat center/contain;
}

.p-loading {
	align-items: center;
	background: #fff;
	display: flex;
	inset: 0;
	justify-content: center;
	opacity: 0;
	position: fixed;
	transition: opacity 0.5s ease, visibility 0.5s ease;
	visibility: hidden;
	z-index: 9999;
}

.p-loading.active {
	opacity: 1;
	visibility: visible;
}

.p-loading__inner img {
	animation: blink 3s infinite;
}

.p-loading__img {
	animation: blink 1s infinite;
	height: auto;
	width: 350px;
}

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

.p-recruit-summary {
	margin-top: 60px;
}

.p-recruit-summary__text {
	width: min(422px, 100%);
}

.p-recruit__texts {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 20px;
	width: min(660px, 100%);
}

.p-recruit__main-text {
	font-weight: 700;
}

.p-recruit__sub-text span {
	vertical-align: top;
}

.p-recruit__button {
	margin-top: 50px;
}

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

.p-recruit-about__text {
	font-size: 14px;
	margin-top: 30px;
	width: min(422px, 100%);
}

.p-recruit-about__button {
	margin-top: 30px;
}

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

.p-recruit-info__items {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin-top: 20px;
}

.p-recruit-info__job {
	font-weight: 700;
}

.p-recruit-info__table {
	line-height: 1;
	width: 100%;
}

.p-recruit-info__row {
	border-bottom: 1px solid #B1C6DC;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-block: 30px 16px;
	transform: translateX(-2px);
}

.p-recruit-info__term {
	font-weight: 700;
	text-align: left;
	width: 80px;
}

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

.p-recruit-info__entry .c-mail-button {
	border: 1px solid #000;
}

.p-blog-summary {
	margin-top: 60px;
}

.p-blog-summary__inner {
	position: relative;
}

.p-blog-summary__inner::after {
	background: url(../img/bg-img__announcement.svg) no-repeat center/contain;
	content: "";
	height: 86px;
	left: calc(50% + 109px);
	position: absolute;
	top: -56px;
	width: 59px;
}

.p-blog-summary__text {
	width: min(422px, 100%);
}

.p-blog {
	margin-top: 80px;
}

.p-blog__intro {
	margin-top: 30px;
}

.p-blog__link {
	display: block;
}

.p-blog__items {
	border-top: 1px solid #004aad;
	display: flex;
	flex-direction: column;
	margin-top: 50px;
}

.p-blog__item {
	align-items: center;
	border-bottom: 1px solid #004aad;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-block: 30px;
}

.p-blog__image {
	display: block;
	height: auto;
	width: 100%;
	-o-object-fit: cover;
	aspect-ratio: 3/2;
	object-fit: cover;
	transform-origin: center center;
	transition: transform 0.4s ease;
}

.p-blog__image:hover {
	transform: scale(1.1);
}

.p-blog__wrapper {
	overflow: hidden;
	width: 100%;
}

.p-blog__body {
	flex-shrink: 0;
	padding: 10px;
}

.p-blog__tag {
	background-color: #004aad;
	border-radius: 12px;
	color: #FFF;
	font-size: 12px;
	padding: 6px 12px;
}

.p-blog__title {
	font-size: 18px;
	font-weight: 700;
	margin-top: 10px;
}

.p-blog__text {
	font-size: 14px;
	margin-top: 10px;
}

.p-blog__date {
	font-size: 12px;
}

.p-blog__button {
	margin-top: 50px;
}

.p-blog-main {
	margin-top: 50px;
}

.p-blog-main__title {
	font-size: 24px;
	font-weight: 700;
}

.p-blog-main__text {
	margin-top: 20px;
}

.p-blog-main__button {
	margin-top: 30px;
	text-align: center;
}

.p-blog-main__button .c-link-button {
	padding: 21px 60px 21px 50px;
}

.p-to-top {
	align-items: center;
	aspect-ratio: 1;
	background-color: #004aad;
	border-radius: 50%;
	bottom: 20px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	overflow: 0;
	position: fixed;
	right: 20px;
	transition: opacity 0.3s ease;
	visibility: hidden;
	width: 40px;
	z-index: 50;
}

.p-to-top.js-show {
	opacity: 1;
	visibility: visible;
}

.p-to-top__text {
	color: #FFF;
	font-family: "Kanit", sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: normal;
}

.p-about__swiper-container,
.p-about__swiper,
.p-about__swiper-wrapper,
.p-about__swiper-slide {
	position: relative;
}

.p-about__swiper-container {
	padding: 16px 0 58px 19px;
}

/* 常に一定速度でスライドさせる */

.p-about__swiper .swiper-wrapper {
	transition-timing-function: linear !important;
}

.p-about__swiper-slide {
	height: 200px;
	width: 200px;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-about__swiper-slide img {
	height: 100%;
	width: 100%;
}

button {
	background: none;
}

:where(dialog) {
	background-color: unset;
	border: unset;
	color: unset;
	height: unset;
	max-height: unset;
	max-width: unset;
	overflow: unset;
	padding: unset;
	width: unset;
}

body:has(dialog[open]) {
	overflow: hidden;
}

.wrapper:has(dialog[open]) {
	overflow-y: auto;
	scrollbar-gutter: stable;
}

.modal__open-btn {
	display: block;
	padding-block: 16px 15px;
}

dialog::backdrop {
	opacity: 0;
	transition: background 0.3s ease-in-out;
}

dialog.js-show.modal__content {
	opacity: 1;
}

dialog.js-show::backdrop {
	background: rgba(0, 0, 0, 0.5);
	opacity: 1;
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}

.modal__content {
	background: #fff;
	margin-block: 55px;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	width: min(860px, 95%);
}

.modal__inner {
	height: 100%;
	overflow-y: scroll;
	position: relative;
}

.modal__body {
	height: -moz-fit-content;
	height: fit-content;
	padding: 21px 20px 24px;
}

.modal__title {
	font-size: 18px;
	font-weight: 700;
	margin-top: 12px;
}

.modal__img {
	margin-inline: auto;
	margin-top: 12px;
	width: min(650px, 100%);
}

.modal__img img {
	height: auto;
	width: 100%;
}

.modal__text {
	font-size: 12px;
	margin-top: 20px;
}

.modal__button {
	margin-top: 61px;
	text-align: center;
}

.modal__close-btn {
	outline: none;
	position: fixed;
	right: 30px;
	top: 12px;
	z-index: 2;
}

.modal__close-btn:focus {
	outline: none;
}

/*
utility内の各ファイルを管理するscss
*/

.u-hidden {
	display: none;
}

.u-display--sm {
	display: none;
}

.u-display--md {
	display: none;
}

.u-display--lg {
	display: none;
}

.u-display--xl {
	display: none;
}

.u-display--xd {
	display: none;
}

.u-separate {
	margin-bottom: 24px;
	margin-top: 24px;
}

.u-position {
	display: block;
}

.u-position.u-position--relative {
	position: relative;
}

.u-position.u-position--absolute {
	position: absolute;
}

.u-color--main {
	background-color: #004aad;
	border-color: #004aad;
	color: #FFF;
}

.u-fade-in-up {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 1s, transform 1s;
}

.u-fade-in-up.is-in-view {
	opacity: 1;
	transform: translateY(0);
}

.u-radius {
	border-radius: 25px;
	overflow: hidden;
}

.u-bold {
	font-weight: 700;
}

@media screen and (min-width: 600px) {

.c-fv__message {
	bottom: 50px;
	left: auto;
	right: 30px;
}

.c-fv__message.c-fv__message--recruit {
	bottom: 20px;
	gap: 10px;
}

.c-fv__message.c-fv__message--recruit .c-fv__message-catch {
	font-size: 36px;
	padding: 14px;
}

.c-fv__message.c-fv__message--recruit .c-fv__message-lead {
	font-size: 12px;
}

.c-summary__nav {
	justify-content: center;
}

.c-summary__inner--recruit::after {
	height: 110px;
	left: auto;
	right: 60px;
	width: 79px;
}

.p-fv__inner {
	padding-inline: 20px;
}

.p-fv__scrolldown {
	bottom: 30px;
}

.p-about {
	margin-top: 76px;
}

.p-about__messages {
	bottom: -160px;
}

.p-about__messages {
	right: 80px;
}

.p-service__content::after {
	right: 20px;
}

.p-contact__inner::after {
	left: auto;
	right: 60px;
}

.p-about-summary__head::after {
	right: 50px;
}

.p-about-company__text {
	font-size: 14px;
}

.p-about-company__row {
	flex-direction: row;
	gap: 60px;
	padding-block: 30px 29px;
}

.p-service-summary__head::after {
	right: 50px;
}

.p-service-detail__main {
	margin-inline: 30px;
}

.p-service-detail__examples {
	margin-inline: 30px;
}

.p-contact-summary__head::after {
	right: 50px;
}

.p-contact-summary__step {
	width: 209px;
}

.p-contact-form__item.p-contact-form__item--text {
	flex-direction: row;
	gap: 40px;
}

.p-contact-form__text.p-contact-form__text--email {
	padding: 16px 15px 18px;
	width: min(470px, 100%);
}

.p-contact-form__text.p-contact-form__text--tel {
	padding: 16px 15px 18px;
	width: min(470px, 100%);
}

.p-recruit-summary__text {
	font-size: 16px;
}

.p-recruit-about__text {
	font-size: 16px;
}

.p-recruit-info__items {
	margin-top: 30px;
}

.p-recruit-info__row {
	flex-direction: row;
	gap: 80px;
	padding-block: 30px 29px;
}

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

.p-blog-summary__inner::after {
	height: 110px;
	left: auto;
	right: 60px;
	width: 79px;
}

.p-blog-summary__text {
	font-size: 16px;
}

.p-blog__title {
	font-size: 20px;
}

.p-blog__text {
	font-size: 16px;
}

.p-blog__date {
	font-size: 14px;
}

.p-to-top {
	bottom: 30px;
	right: 50px;
	width: 50px;
}

.p-to-top__text {
	font-size: 16px;
}

.p-to-top__text {
	font-size: 18px;
}

.p-about__swiper-slide {
	height: 250px;
	width: 250px;
}

.modal__body {
	padding-inline: 40px;
}

.modal__text {
	font-size: 14px;
	margin-top: 24px;
}

.u-hidden--sm {
	display: none;
}

.u-display--sm {
	display: block;
}

}

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

.c-fv__message {
	bottom: 62px;
	right: 50px;
}

.c-fv__message-catch {
	font-size: 48px;
	padding-inline: 14px;
}

.c-fv__message-lead {
	font-size: 14px;
}

.c-nav-button {
	width: 208px;
}

.c-section-heading {
	font-size: 32px;
}

.c-content-heading {
	font-size: 32px;
}

.c-summary__nav {
	flex-direction: row;
	justify-content: flex-start;
	margin-top: 64px;
}

.c-summary-heading {
	font-size: 40px;
}

.c-summary__inner--recruit::after {
	height: 120px;
	right: 80px;
	top: -30px;
	width: 100px;
}

.c-summary-heading {
	font-size: 40px;
}

.p-fv__scrolldown {
	left: 20px;
}

.p-service__content::after {
	right: 40px;
}

.p-service__card {
	align-items: flex-end;
	flex-direction: row;
	gap: 56px;
}

.p-service__card:nth-of-type(1) .p-service__img::after {
	bottom: auto;
	top: 0;
}

.p-service__card:nth-of-type(1) .p-service__img::after {
	height: auto;
	right: -40px;
}

.p-service__card:nth-of-type(2) .p-service__img::after {
	bottom: auto;
	top: 0;
}

.p-service__card:nth-of-type(2) .p-service__img::after {
	height: auto;
	left: -55px;
	right: auto;
	right: auto;
}

.p-service__card:nth-of-type(2) {
	flex-direction: row-reverse;
}

.p-service__card:nth-of-type(3) .p-service__img::after {
	bottom: auto;
	top: 0;
}

.p-service__card:nth-of-type(3) .p-service__img::after {
	height: auto;
	right: -50px;
}

.p-service__img {
	flex-basis: 1;
}

.p-service__body {
	flex-shrink: 0;
	width: 350px;
}

.p-contact__inner::after {
	right: 80px;
}

.p-about-company__overview {
	align-items: center;
	flex-direction: row;
	gap: 30px;
}

.p-about-company__text {
	width: min(450px, 100%);
}

.p-about-company__ceo-img {
	width: min(380px, 100%);
}

.p-about-company__row {
	gap: 162px;
}

.p-about-safety__cards {
	gap: 30px;
}

.p-about-safety__card {
	align-items: center;
	flex-direction: row;
	gap: 44px;
}

.p-about-safety__text {
	font-size: 14px;
	margin-top: 24px;
	max-width: 642px;
}

.p-about-safety__img {
	margin-inline: 0;
	max-width: 350px;
}

.p-service-detail__box:nth-of-type(2) .p-service-detail__examples,
.p-service-detail__box:nth-of-type(3) .p-service-detail__examples {
	margin-top: 80px;
}

.p-service-detail__main {
	margin-inline: 50px;
}

.p-service-detail__examples {
	align-items: flex-start;
	flex-direction: row;
	gap: 62px;
	margin-inline: 50px;
	margin-top: 89px;
}

.p-service-detail__example {
	width: min(352px, 100%);
}

.p-service-detail__example-img {
	width: inherit;
}

.p-contact-summary__content {
	gap: 62px;
}

.p-recruit-about {
	margin-top: 60px;
}

.p-recruit-info {
	margin-top: 60px;
}

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

.p-recruit-info__job {
	font-size: 20px;
}

.p-recruit-info__row {
	gap: 162px;
}

.p-recruit-info__entry {
	margin-top: 60px;
}

.p-blog-summary__inner::after {
	height: 120px;
	right: 80px;
	top: -30px;
	width: 100px;
}

.p-blog__link:nth-of-type(even) .p-blog__item {
	flex-direction: row-reverse;
}

.p-blog__item {
	flex-direction: row;
	gap: 30px;
}

.p-blog__body {
	width: 430px;
}

.p-blog-main__title {
	font-size: 32px;
}

.p-blog-main__text {
	font-size: 18px;
}

.p-blog-main__button {
	margin-top: 60px;
}

.p-about__swiper-container {
	padding: 63px 0 63px 48px;
}

.p-about__swiper-slide {
	height: 300px;
	width: 300px;
}

.modal__body {
	padding-inline: 60px;
}

.modal__title {
	font-size: 20px;
}

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

.u-display--md {
	display: block;
}

}

@media screen and (min-width: 900px) {

.l-footer {
	margin-block: 50px;
}

.c-heading {
	gap: 20px;
}

.c-heading__ja {
	font-size: 24px;
}

.c-heading__en {
	font-size: 128px;
}

.c-fv__message.c-fv__message--recruit .c-fv__message-catch {
	font-size: 40px;
}

.c-fv__message.c-fv__message--recruit .c-fv__message-lead {
	font-size: 16px;
}

.c-fv__message-catch {
	font-size: 64px;
}

.c-fv__message-lead {
	font-size: 16px;
}

.c-contact-info {
	margin-top: 0;
	padding-inline: 32px;
	position: relative;
}

.c-contact-info::after {
	background-color: #000;
	content: "";
	height: 68px;
	position: absolute;
	right: 0;
	top: 50%;
	translate: 0 -50%;
	width: 1px;
}

.c-contact-info__time {
	transform: translate(-1px, -1px);
}

.c-summary__inner {
	margin-inline: auto;
	padding-inline: 20px;
	width: min(940px, 100%);
}

.c-summary__text {
	font-size: 16px;
	margin-top: 64px;
}

.c-summary__inner--recruit {
	margin-inline: auto;
	padding-inline: 20px;
	width: min(940px, 100%);
}

.c-summary__inner--recruit::after {
	height: 200px;
	right: 100px;
	top: -50px;
	width: 135px;
}

.p-fv__inner {
	padding-inline: 30px;
}

.p-fv__scrolldown {
	bottom: 64px;
}

.p-fv__scrolldown::before {
	bottom: -120px;
	height: 112px;
}

.p-about__messages {
	line-height: 1.6;
	padding-right: 27px;
}

.p-about__messages::after {
	bottom: 41px;
	height: 213px;
	left: -181px;
	width: 161px;
}

.p-about__messages {
	bottom: -219px;
	font-size: 40px;
	left: calc(50% + 226px);
	letter-spacing: 20px;
	line-height: 1.4;
	padding-inline: 26px 4px;
	padding-left: 4px;
	padding-right: 28px;
	width: 172px;
}

.p-about__inner {
	margin-inline: auto;
	padding-inline: 20px;
	width: min(940px, 100%);
}

.p-about__body {
	margin-top: 71px;
	width: min(429px, 100%);
}

.p-about__text span {
	font-size: 20px;
}

.p-about__text {
	font-size: 16px;
}

.p-about__button {
	margin-top: 41px;
}

.p-footer-nav .c-nav__link {
	padding: 20px 12px;
}

.p-footer-nav .c-nav__link.c-nav__link--contact {
	padding-left: 40px;
}

.p-footer-nav__sub-item .c-nav__link--contact::after {
	left: 11px;
}

.p-service__inner {
	margin-inline: auto;
	padding-inline: 20px;
	width: min(940px, 100%);
}

.p-service__content::after {
	height: 172px;
	right: 23px;
	top: 44px;
	width: 124px;
}

.p-service__card:nth-of-type(1) .p-service__img::after {
	right: -75px;
}

.p-service__card:nth-of-type(2) .p-service__img::after {
	left: -90px;
	right: auto;
}

.p-service__card:nth-of-type(3) .p-service__img::after {
	right: -85px;
}

.p-service__img::after {
	bottom: auto;
	font-size: 80px;
	top: 0;
}

.p-service__body {
	width: 430px;
}

.p-news__inner {
	margin-inline: auto;
	padding-inline: 20px;
	width: min(940px, 100%);
}

.p-news__item::after {
	right: 27px;
}

.p-news__link-title {
	font-size: 16px;
	padding-top: 24px;
}

.p-contact {
	border-radius: 50px 0px 0px 50px;
	margin-top: 132px;
	padding: 32px 24px 48px;
}

.p-contact.p-contact--about {
	margin-top: 199px;
}

.p-contact.p-contact--service {
	margin-top: 72px;
}

.p-contact.p-contact--contact-form {
	margin-top: 73px;
}

.p-contact.p-contact--contact-thanks {
	margin-top: 171px;
}

.p-contact__inner {
	margin-inline: auto;
	padding-inline: 20px;
	width: min(940px, 100%);
}

.p-contact__inner::after {
	height: 256px;
	right: 50px;
	top: -50px;
	width: 175px;
}

.p-contact__info {
	align-items: center;
	flex-direction: row;
	margin-top: 44px;
	padding-bottom: 8px;
}

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

.p-contact__label {
	align-items: center;
	border-bottom: 0;
	flex-direction: column;
	gap: 8px;
	padding-bottom: 0;
	padding-right: 34px;
	position: relative;
}

.p-contact__label::after {
	background-color: #000;
	content: "";
	height: 68px;
	position: absolute;
	right: 0;
	top: 50%;
	translate: 0 -50%;
	width: 1px;
}

.p-contact__label-ja {
	transform: translateX(-3px);
}

.p-contact__mail {
	margin-top: 0;
	padding-left: 64px;
}

.p-about-summary__head::after {
	height: 198px;
	width: 165px;
}

.p-about-philosophy__inner {
	margin-inline: auto;
	padding-inline: 20px;
	width: min(940px, 100%);
}

.p-about-company__inner {
	margin-inline: auto;
	padding-inline: 20px;
	width: min(940px, 100%);
}

.p-about-company__overview {
	gap: 50px;
}

.p-about-company__text {
	font-size: 16px;
	width: min(500px, 100%);
}

.p-about-company__ceo-img {
	width: min(450px, 100%);
}

.p-about-company__ceo-caption {
	align-items: flex-start;
}

.p-about-company__ceo-caption {
	flex-direction: column;
	gap: 24px;
}

.p-about-safety__inner {
	margin-inline: auto;
	padding-inline: 20px;
	width: min(940px, 100%);
}

.p-about-safety__card {
	align-items: flex-start;
}

.p-about-safety__title {
	font-size: 20px;
}

.p-about-safety__title {
	font-size: 24px;
}

.p-service-summary__head::after {
	height: 203px;
	width: 165px;
}

.p-service-summary__text {
	margin-top: 65px;
	max-width: 422px;
}

.p-service-summary__nav {
	margin-top: 63px;
}

.p-service-detail__inner {
	margin-inline: auto;
	padding-inline: 20px;
	width: min(940px, 100%);
}

.p-service-detail__box:nth-of-type(2) .p-service-detail__examples,
.p-service-detail__box:nth-of-type(3) .p-service-detail__examples {
	margin-top: 147px;
}

.p-service-detail__img {
	border-radius: 40px;
	width: min(960px, 100%);
}

.p-service-detail__heading {
	font-size: 24px;
}

.p-service-detail__lead {
	flex-direction: row;
	gap: 40px;
}

.p-service-detail__intro {
	font-size: 20px;
	width: min(375px, 100%);
}

.p-service-detail__desc {
	font-size: 16px;
	width: min(446px, 100%);
}

.p-contact-summary__inner {
	margin-inline: auto;
	padding-inline: 20px;
	width: min(940px, 100%);
}

.p-contact-summary__head::after {
	height: 174px;
	margin-inline: 0 auto;
	padding-left: 0;
	width: 165px;
}

.p-contact-summary__body {
	flex-direction: row;
	gap: 100px;
}

.p-contact-summary__info {
	gap: 31px;
}

.p-contact-form {
	margin-top: 17px;
}

.p-contact-form__inner {
	margin-inline: auto;
	padding-inline: 20px;
	width: min(940px, 100%);
}

.p-recruit-summary__text {
	font-size: 18px;
	margin-top: 40px;
	width: min(650px, 100%);
}

.p-recruit__inner {
	margin-inline: auto;
	padding-inline: 20px;
	width: min(940px, 100%);
}

.p-recruit-about__text {
	font-size: 18px;
	margin-top: 40px;
	width: min(650px, 100%);
}

.p-recruit-info__inner {
	margin-inline: auto;
	padding-inline: 20px;
	width: min(940px, 100%);
}

.p-recruit-info__items {
	margin-top: 50px;
}

.p-recruit-info__items {
	flex-direction: row;
}

.p-recruit-info__job {
	font-size: 24px;
}

.p-recruit-info__row {
	gap: 30px;
}

.p-blog-summary__inner {
	margin-inline: auto;
	padding-inline: 20px;
	width: min(940px, 100%);
}

.p-blog-summary__inner::after {
	height: 200px;
	right: 100px;
	top: -50px;
	width: 135px;
}

.p-blog-summary__text {
	font-size: 18px;
	margin-top: 40px;
	width: min(650px, 100%);
}

.p-blog__inner {
	margin-inline: auto;
	padding-inline: 20px;
	width: min(940px, 100%);
}

.p-blog__items {
	margin-top: 100px;
}

.p-blog__item {
	padding-block: 40px;
}

.p-blog__body {
	width: 500px;
}

.p-blog__title {
	font-size: 22px;
}

.p-blog__text {
	font-size: 18px;
}

.p-blog__date {
	font-size: 16px;
}

.p-blog-main__inner {
	margin-inline: auto;
	padding-inline: 20px;
	width: min(940px, 100%);
}

.p-blog-main__title {
	font-size: 40px;
}

.p-to-top {
	bottom: 20px;
	right: 30px;
	width: 60px;
}

.p-about__swiper-slide {
	height: 360px;
	width: 360px;
}

.modal__body {
	padding-inline: 80px;
}

.modal__title {
	font-size: 24px;
	margin-top: 16px;
}

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

.u-display--lg {
	display: block;
}

}

@media screen and (min-width: 1160px) {

.l-footer {
	margin-bottom: 100px;
}

.c-copyright small {
	font-size: 14px;
}

.c-copyright.c-copyright--footer {
	margin-top: -2px;
	padding-right: 80px;
	text-align: right;
}

.p-fv__inner {
	margin-inline: auto;
}

.p-fv__content {
	width: 100%;
}

.p-fv__scrolldown {
	left: 18px;
}

.p-footer-nav {
	margin-top: 7px;
}

.p-footer-nav .p-footer-nav__list {
	align-items: flex-start;
}

.p-footer-nav__list {
	align-items: flex-start;
	flex-direction: column;
}

.p-footer-nav__sub-list {
	flex-direction: row;
}

.p-footer__content {
	flex-direction: row;
	gap: 60px;
	justify-content: center;
}

.p-footer__info {
	flex-shrink: 0;
}

.p-footer__logo {
	margin-inline: 0;
}

.p-footer-info {
	align-items: flex-start;
	gap: 16px;
}

.p-footer-info__block {
	font-size: 16px;
}

.p-footer-info__block.p-footer-info__block--address {
	flex-direction: row;
	gap: 16px;
}

.p-contact-summary__body {
	gap: 150px;
}

.p-recruit-summary__text {
	font-size: 20px;
}

.p-recruit-about__text {
	font-size: 20px;
}

.p-blog-summary__text {
	font-size: 20px;
}

.p-blog-main__text {
	font-size: 20px;
}

.p-blog-main__button {
	text-align: left;
}

.modal__body {
	padding-inline: 102px;
}

.modal__img {
	margin-top: 16px;
}

.modal__text {
	font-size: 16px;
	margin-top: 35px;
}

.modal__close-btn {
	color: #FFF;
	font-size: 30px;
	left: calc(50% + 460px);
	right: auto;
	top: 70px;
}

.u-hidden--xl {
	display: none;
}

.u-display--xl {
	display: block;
}

}

@media screen and (min-width: 1370px) {

.l-inner {
	margin-right: auto;
	padding-left: 0;
	padding-right: 40px;
	width: min(1180px, 100%);
}

.l-inner.l-inner--sidebar {
	margin-inline: auto;
	padding-inline: 40px;
	width: min(360px, 100%);
}

.l-inner.l-inner--content {
	margin-right: auto;
	padding-left: 0;
	padding-right: 40px;
	width: 100%;
}

.l-inner.p-inner__footer {
	margin-inline: 0;
}

.l-header {
	bottom: 0;
	height: 100vh;
	left: 0;
	margin-top: 30px;
	right: 0;
	top: 0;
	width: 280px;
}

.l-wrapper {
	margin-left: 280px;
}

.l-footer {
	margin-bottom: 120px;
}

.c-fv__message {
	right: 113px;
}

.c-fv__message.c-fv__message--recruit .c-fv__message-catch {
	font-size: 48px;
}

.c-fv__message.c-fv__message--recruit .c-fv__message-lead {
	font-size: 20px;
}

.c-fv__message.c-fv__message--recruit {
	bottom: 50px;
	right: 30px;
}

.c-copyright.c-copyright--footer {
	padding-right: 150px;
}

.c-summary__inner {
	margin-inline: 0 auto;
	padding-left: 0;
	width: 743px;
}

.c-summary__inner--recruit {
	margin-left: 0;
	margin-right: auto;
	padding-left: 0;
	width: 1096px;
}

.c-summary__inner--recruit::after {
	top: -40px;
}

.p-header__inner {
	flex-direction: column;
	padding-inline: 40px;
}

.p-header__logo {
	margin-top: 0;
	padding-left: auto;
	width: 200px;
}

.p-drawer-icon {
	display: none;
}

.p-fv {
	background: linear-gradient(to right, #FFF 433px, #004aad 433px);
	background-repeat: no-repeat;
	background-size: 100% 563px;
	margin-top: 0;
	padding-top: 40px;
}

.p-fv.p-fv--top {
	background-size: 100% 727px;
}

.p-fv__inner {
	margin-left: 0;
}

.p-about__inner {
	padding-left: 0;
	width: 100%;
}

#p-service-summary,
#p-service-housing,
#p-service-corporate,
#p-service-public {
	scroll-margin-top: 0;
}

.p-service {
	margin-top: 85px;
	padding-block: 49px 100px;
}

.p-service::after {
	width: calc(100% - 192px);
}

.p-service__inner {
	margin-left: 0;
	margin-right: auto;
	padding-left: 0;
	width: 1045px;
}

.p-service__cards {
	gap: 92px;
	margin-top: 64px;
}

.p-service__card:nth-of-type(1) .p-service__img::after {
	right: -150px;
}

.p-service__card:nth-of-type(2) .p-service__img::after {
	left: -190px;
	right: auto;
}

.p-service__card:nth-of-type(3) .p-service__img::after {
	right: -170px;
}

.p-service__img {
	width: 51.3432835821%;
}

.p-service__img::after {
	font-size: 168px;
}

.p-service__text {
	margin-top: 50px;
}

#p-news {
	scroll-margin-top: 0;
}

.p-news {
	margin-top: 107px;
}

.p-news__inner {
	margin-left: 0;
	margin-right: auto;
	padding-left: 0;
	width: min(1160px, 100%);
}

.p-news__item:nth-of-type(1) {
	line-height: 1;
}

.p-contact__inner {
	margin-left: 0;
	margin-right: auto;
	padding-left: 0;
	width: 1096px;
}

.p-contact__inner::after {
	right: 0;
	top: 0;
}

.p-footer__content {
	justify-content: flex-start;
}

.p-about-summary__head::after {
	right: 0;
	top: 0;
}

.p-about-philosophy__inner {
	padding-left: 0;
	width: 100%;
}

.p-about-philosophy__visual {
	height: auto;
	margin-top: 64px;
	width: 82.4107142857%;
}

#p-about-summary,
#p-about-philosophy,
#p-about-company,
#p-about-safety {
	scroll-margin-top: 0;
}

.p-about-company__inner {
	margin-left: 0;
	margin-right: auto;
	padding-left: 0;
	width: min(993px, 100%);
}

.p-about-company__overview {
	align-items: flex-start;
	gap: 80px;
}

.p-about-company__text {
	transform: translateY(1px);
}

.p-about-safety__inner {
	margin-left: 0;
	margin-right: auto;
	padding-left: 0;
	width: min(993px, 100%);
}

.p-about-safety__cards {
	margin-top: 86px;
}

.p-about-safety__card {
	align-items: flex-end;
}

.p-about-safety__text {
	font-size: 16px;
	margin-top: 32px;
}

.p-about-safety__img {
	max-width: 267px;
	transform: translateY(6px);
}

.p-service-summary__head::after {
	right: 0;
	top: 0;
}

.p-service-detail__inner {
	margin-left: 0;
	margin-right: auto;
	padding-left: 0;
	width: 1000px;
}

.p-contact-summary__inner {
	margin-left: 0;
}

.p-contact-summary__head {
	width: 704px;
}

.p-contact-summary__head::after {
	right: 0;
	top: 0;
}

.p-contact-form__inner {
	margin-left: 0;
	margin-right: auto;
}

.p-recruit-summary__head {
	margin-top: 80px;
}

.p-recruit__inner {
	margin-left: 0;
	margin-right: auto;
	padding-left: 0;
	width: 1096px;
}

.p-recruit-about {
	margin-top: 100px;
}

.p-recruit-info {
	margin-top: 100px;
}

.p-recruit-info__inner {
	margin-left: 0;
	margin-right: auto;
	padding-left: 0;
	width: min(993px, 100%);
}

.p-recruit-info__row {
	gap: 70px;
}

.p-blog-summary__inner {
	margin-left: 0;
	margin-right: auto;
	padding-left: 0;
	width: 1096px;
}

.p-blog-summary__inner::after {
	top: -40px;
}

.p-blog-summary__head {
	margin-top: 80px;
}

.p-blog__inner {
	margin-left: 0;
	margin-right: auto;
	padding-left: 0;
	width: 1096px;
}

.p-blog-main__inner {
	margin-left: 0;
	margin-right: auto;
	padding-left: 0;
	width: 1096px;
}

.p-blog-main__title {
	font-size: 48px;
}

.p-blog-main__text {
	font-size: 22px;
	margin-top: 30px;
}

.p-blog-main__button {
	margin-top: 100px;
}

.p-to-top {
	bottom: 20px;
	right: 50px;
	width: 80px;
}

.p-to-top__text {
	font-size: 24px;
}

.modal__open-btn {
	padding-block: 32px 31px;
}

.u-hidden--xd {
	display: none;
}

.u-display--xd {
	display: block;
}

}

@keyframes scroll {

0% {
	transform: scale(1, 0);
	transform-origin: 0 0;
}

50% {
	transform: scale(1, 1);
	transform-origin: 0 0;
}

51% {
	transform: scale(1, 1);
	transform-origin: 0 100%;
}

100% {
	transform: scale(1, 0);
	transform-origin: 0 100%;
}

}

@keyframes blink {

0%,100% {
	opacity: 1;
}

50% {
	opacity: 0.3;
}

}

@keyframes blink {

0%,100% {
	opacity: 1;
}

50% {
	opacity: 0.6;
}

}

