/* #region theme =================================== */
:root {
	--color-text: #3e3a39;
	--color-primary: #002978;
	--color-secondary: #efefef;
	--color-red: #c61528;
}
/* #endregion theme -------------------------------- */

/* #region Reset and Setup =================================== */
html, body, div,
p, a, img, figure,
dl, dt, dd,
ul, ol, li,
button,
h1, h2, h3, h4, h5, h6,
hr, header, footer, section, article {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
}

/* Document setup */
html {
	box-sizing: border-box;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

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

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	background: #fff;
	color: var(--color-text);
}

a, button {
	color: inherit;
	text-decoration: none;
}

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

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}

ol, ul {
	list-style: none;
}

img {
	border: none;
	max-width: 100%;
	vertical-align: middle
}

svg {
	display: block;
	max-width: 100%;
	height: auto;
	fill: currentcolor;
}

.inner {
	display: block;
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
}

@media only screen and (min-width: 1025px) {
	br.mb {
		display: none;
	}
}
@media only screen and (max-width: 1024px) {
	br.pc {
		display: none;
	}
}

/* img-box */
.img-box {
	position: relative;
	overflow: hidden;
}
.img-box img, .img-box video {
	position: absolute;
	height: 100%;
	width: 100%;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	object-fit: cover;
}

/* 読み上げ用 */
.u-visually-hidden {
    position: absolute!important;
    width: 1px!important;
    height: 1px!important;
    margin: -1px!important;
    padding: 0!important;
    border: 0!important;
    white-space: nowrap!important;
    clip: rect(0,0,0,0)!important;
    overflow: hidden!important;
}
/* #endregion Reset and Setup -------------------------------- */

/* #region layout =================================== */
.l-header {
	position: relative;
	left: 0;
	width: 100%;
	height: 130px;
	padding: 24px 0;
	background: #fff;
	z-index: 50;
}
.l-header-cont {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	height: 100%;
	margin: 0 auto;
	padding: 0 min(55px, 3vw);
	gap: 20px;
}
.l-header-menu {
}
.l-menu {
	height: 100%;
}
.l-menu ul {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	column-gap: min(55px, 3.5vw);
	padding-bottom: 15px;
	height: 100%;
}
.l-menu ul > li > a {
	display: inline-block;
	position: relative;
	padding-bottom: 10px;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1;
}
.l-menu ul > li > a:not(.contact-btn) {
	margin-bottom: 3px;
}
.l-menu ul > li > a:not(.contact-btn)::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 0;
	height: 1px;
	background: var(--color-primary);
	transition: width 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.l-menu ul > li > a:not(.contact-btn):hover::after {
	width: 100%;
}
.l-menu ul > li > a.contact-btn {
	background: var(--color-primary);
	color: #fff;
	padding: 12px 34px;
	border-radius: 50px;
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.l-menu ul > li > a.contact-btn img {
	display: none;
	vertical-align: middle;
}
.l-menu ul > li > a.contact-btn span {
	vertical-align: middle;
}
.l-menu ul > li > a.contact-btn:hover {
	opacity: 0.6;
}
.l-header-menu-btn {
	display: none;
}
.l-menu-btn {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background: transparent;
	cursor: pointer;
	width: 72px;
	height: 72px;
	padding: 14px;
	padding-top: 20px;
	border-radius: 50%;
	background: var(--color-primary);
	color: #fff;
	text-align: center;
	z-index: 99;
}
.l-menu-btn-text {
	display: block;
	position: relative;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 10px;
	transform: scale(0.8);
	line-height: 20px;
	letter-spacing: 0.075em;
}
.l-menu-btn-text::before {
	display: block;
	content: 'MENU';
}
.l-menu-btn-text::after {
	display: none;
	content: 'CLOSE';
}
.l-menu-btn .border1, .l-menu-btn .border2 {
	display: block;
	width: 23px;
	height: 0;
	border-top: 2px solid #fff;
	transform-origin: left;
	transition: transform 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.l-header.is-open .l-menu-btn .border1 {
	transform: rotate(17deg);
}
.l-header.is-open .l-menu-btn .border2 {
	transform: rotate(-17deg);
}
.l-header.is-open .l-menu-btn-text::before {
	display: none;
}
.l-header.is-open .l-menu-btn-text::after {
	display: block;
}
@media only screen and (min-width: 961px) {
	.l-header.is-slim {
		position: sticky;
		top: -130px;
		padding: 24px 0 8px;
		transform: translateY(0);
		transition: transform 0.2s ease-in-out, padding-bottom 0.2s ease-in-out;
	}
	.l-header.is-slim.is-fixed {
		transform: translateY(86px);
		transition: transform 0.6s ease-in-out;
	}
	.l-header.is-slim .l-header-title {
		width: 230px;
	}
}
@media only screen and (max-width: 960px) {
	.l-header {
		position: static;
		height: 110px;
	}
	.l-header-cont {
		display: block;
		padding: 0;
	}
	.l-header-title {
		margin-left: 20px;
		width: 205px;
	}
	.l-header.is-open .l-header-title {
		position: fixed;
		left: 0;
		top: 24px;
		z-index: 51;
	}
	.l-menu {
		display: none;
		width: 100%;
		height: 100vh;
		padding: 110px 20px;
		background: #fff;
		top: 0;
		left: 0;
	}
	.l-header.is-open .l-menu {
		display: flex;
		justify-content: center;
		align-items: center;
		align-content: center;
		position: fixed;
		z-index: 50;
	}
	.l-menu ul {
		display: block;
		text-align: center;
		height: auto;
	}
	.l-menu ul > li > a {
		margin-bottom: 35px;
		color: var(--color-primary);
		font-size: 21px;
	}
	.l-menu ul > li > a:not(.contact-btn) {
		margin-bottom: 35px;
	}
	.l-menu ul > li > a.contact-btn  {
		padding: 24px 50px;
	}
	.l-menu ul > li > a.contact-btn img {
		display: inline-block;
	}
	.l-header-menu-btn {
		display: block;
		position: absolute;
		top: 20px;
		right: 20px;
		position: fixed;
		z-index: 99;
	}
}

.l-main {
	overflow: hidden;
}


.l-footer {
	padding-top: 100px;
	padding-bottom: 45px;
	background: var(--color-primary);
	color: #fff;
}
.l-footer-cont {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 0 auto 140px;
	padding: 0 25px;
	column-gap: min(260px, 14vw);
	text-align: center;
}
.l-footer-l {
	flex-shrink: 0;
}
.l-footer-l a {
	display: block;
}
.l-footer-r {
	position: relative;
	padding-top: 44px;
}
.l-footer-r::after {
	content: '';
	position: absolute;
	left: max(-120px, -7vw);
	top: 0;
	width: 1px;
	height: 100%;
	background: #fff;
}
.l-footer-contact {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 35px;
	margin-bottom: 70px;
}
.l-footer-contact .title .en {
	margin-bottom: 10px;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 36px;
	letter-spacing: 0.1em;
	line-height: 1;
}
.l-footer-contact .title .ja {
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.2em;
	line-height: 1;
}
.l-footer-contact .contact-btn {
	display: inline-block;
	flex: 0 0 387px;
	padding: 24px 43px;
	border-radius: 50px;
	background: #00a7e1;
	color: #fff;
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.l-footer-contact .contact-btn:hover {
	opacity: 0.6;
}
.l-footer-contact .contact-btn img {
	display: inline-block;
	margin-right: 8px;
}
.l-footer-contact .contact-btn span {
	display: inline-block;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1;
	vertical-align: middle;
}
.l-footer-nav ul {
	display: flex;
	justify-content: center;
	gap: 40px;
}
.l-footer-nav ul li a {
	display: block;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1;
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.l-footer-nav ul li a:hover {
	display: block;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.05em;
	opacity: 0.6;
}
.l-footer .copyright {
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	letter-spacing: 0.075em;
	text-align: center;
}
@media only screen and (max-width: 960px) {
	.l-footer-cont {
		display: block;
		margin-bottom: 40px;
	}
	.l-footer-r {
		margin-bottom: 60px;
	}
	.l-footer-r::after {
		display: none;
	}
	.l-footer-contact {
		display: block;
		max-width: 330px;
		margin: 0 auto;
		padding-top: 50px;
		border-top: 1px solid #fff;
	}
	.l-footer-contact .title {
		margin-bottom: 25px;
	}
	.l-footer-nav {
		display: none;
	}
}


.l-access-block {
	background: var(--color-secondary);
}
.l-access-body {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 95px;
	max-width: 1015px;
	margin: 0 auto;
	padding: 60px 0 45px;
	padding-left: 80px;
}
.l-access-body .access-info {
	display: flex;
	justify-content: center;
	gap: 50px;
}
.l-access-body .access-info .address {
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 0.2em;
	line-height: 1.8;
	text-align: left;
}
.l-access-block .map-box {
	width: 100%;
	height: 440px;
}
.l-access-block .map-box iframe {
	width: 100%;
	height: 100%;
}
@media only screen and (max-width: 1024px) {
	.l-access-body {
		display: block;
		padding: 70px 0 0 0;
		text-align: center;
		margin-bottom: 40px;
	}
	.l-access-body .c-title01 {
		margin-bottom: 20px;
	}
	.l-access-body .access-info {
		display: block;
	}
	.l-access-body .access-info .address {
		display: inline-block;
		margin-bottom: 25px;
	}
	.l-access-body .access-info .address span {
		display: block;
	}
	.l-access-block .map-box {
		height: 100%;
		aspect-ratio: 1.37 / 1;
	}
}

.l-sub-header {
	padding-top: 125px;
	padding-bottom: 55px;
	background: var(--color-primary);
	color: #fff;
}
.l-sub-header-title {
	text-align: center;
}
.l-sub-header-title .en {
	margin-bottom: 10px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-style: italic;
	font-size: 50px;
	line-height: 1;
}
.l-sub-header-title .ja {
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.1em;
	line-height: 1;
}
@media only screen and (max-width: 960px) {
	.l-sub-header {
		padding-top: 85px;
		padding-bottom: 60px;
	}
}
.l-sub-intro {
	padding-top: 55px;
	margin-bottom: 150px;
	text-align: center;
}
.l-sub-intro .text {
	padding: 0 30px;
	font-weight: 500;
	font-size: 14px;
	line-height: 2.1429;
	letter-spacing: 0.2em;
}
@media only screen and (max-width: 1024px) {
	.l-sub-intro {
		padding-top: 35px;
		margin-bottom: 120px;
	}
	.l-sub-intro .text {
		letter-spacing: 0.1em;
		text-align: justify;
	}
}


/* #endregion layout -------------------------------- */

/* #region components =================================== */
.c-title01 {
	color: var(--color-primary);
	text-align: center;
}
.c-title01 .en {
	margin-bottom: 10px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-style: italic;
	font-size: 60px;
	line-height: 1;
}
.c-title01 .ja {
	font-weight: 700;
	font-size: 23px;
	letter-spacing: 0.1em;
	line-height: 1;
}
@media only screen and (max-width: 1024px) {
	.c-title01 .en {
		font-size: 45px;
	}
	.c-title01 .ja {
		font-size: 16px;
	}
}

.c-title02 {
	color: var(--color-primary);
	text-align: center;
}
.c-title02 .ja {
	margin-bottom: 15px;
	font-weight: 500;
	font-size: 38px;
	letter-spacing: 0.05em;
	line-height: 1.3;
}
.c-title02 .en {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1;
}

.c-btn01 {
	display: inline-block;
	position: relative;
	width: 230px;
	height: 50px;
	padding-left: 34px;
	padding-right: 40px;
	border-radius: 50px;
	background: var(--color-primary);
	border: 1px solid var(--color-primary);
	color: #fff;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.05em;
	line-height: 50px;
	text-align: left;
	overflow: hidden;
	transition: color 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.c-btn01 span {
	position: relative;
	z-index: 1;
}
.c-btn01::before {
	content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0px;
    height: 100%;
    z-index: 0;
	background: #fff;
	transition: width 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.c-btn01::after {
	content: '〉';
	display: inline-block;
	position: absolute;
	top: 0px;
	right: 20px;
}
.c-btn01:hover {
	color: var(--color-primary);
}
.c-btn01:hover::before {
	width: 100%;
}
.c-btn01--lg {
	width: 400px;
	height: 88px;
	padding-left: 60px;
	padding-right: 70px;
	font-size: 17px;
	font-weight: 700;
	line-height: 88px;
	letter-spacing: 0.1em;
}
.c-btn01--lg::after {
	right: 60px;
}
@media only screen and (max-width: 1024px) {
	.c-btn01--lg {
		width: 307px;
		height: 67px;
		padding: 0 50px;
		font-size: 13px;
		line-height: 67px;
	}
	.c-btn01--lg::after {
		right: 40px;
	}
}
/* #endregion components -------------------------------- */

/* #region top =================================== */
.top-hero-block	{
	position: relative;
	width: 100%;
	height: calc(100vh - 110px);
	height: calc(100svh - 110px);
}
.top-hero-block .img-box {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.top-hero-block .img-box::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #231815;
	opacity: 0.25;
	z-index: 1;
}
.top-hero-cont {
	position: relative;
	max-width: 870px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	color: #fff;
	z-index: 5;
}
.top-hero-cont .headline {
	width: 100%;
	padding-top: 11vh;
	padding-top: 11svh;
	font-weight: 500;
	font-size: min(36px, 4vh);
	font-size: min(36px, 4svh);
	line-height: 2.0833;
	letter-spacing: 0.3em;
	writing-mode: vertical-rl;
}
.scrolldown {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 13%;
	margin: 0 auto;
	pointer-events: none;
	text-align: center;
}
.scrolldown::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 1px;
	height: 100%;
	background: rgba(255,255,255,0.5);
}
.scrolldown::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #fff;
	animation:
		circlemove 2.5s ease-in-out infinite,
		cirlemovehide 2.5s ease-out infinite;
}
@keyframes circlemove {
	0%{bottom: calc(100% - 4px);}
	100%{bottom:-4px;}
}
@keyframes cirlemovehide {
	0%{opacity:0}
	50%{opacity:1;}
	80%{opacity:0.9;}
	100%{opacity:0;}
}
.scrolldown span {
	position: absolute;
	top: -20px;
	left: 0;
	right: 0;
	margin: 0 auto;
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.1em;
}
.scrolldown.is-effect {
	opacity: 0;
	transition: opacity 1s;
	transition-delay: 2s;
}
.scrolldown.is-anime {
	opacity: 1;
}
@media only screen and (max-width: 1024px) {
	.top-hero-cont .headline {
		padding-right: 2vw;
		padding-right: 2svw;
		padding-top: 9vh;
		padding-top: 9svh;
		font-size: min(30px, 4vh);
		font-size: min(30px, 4svh);
	}
}

.top-intro-block {
	padding: 140px 0 110px;
}
.top-intro-body .title {
	margin-bottom: 25px;
	color: var(--color-primary);
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-style: italic;
	font-size: 81px;
	letter-spacing: 0.05em;
	line-height: 1;
	text-align: center;
}
.top-intro-body .headline {
	margin-bottom: 25px;
	color: var(--color-primary);
	font-weight: 700;
	font-size: 23px;
	letter-spacing: 0.1em;
	line-height: 1.7826;
	text-align: center;
}
.top-intro-body .text {
	margin-bottom: 35px;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.2em;
	line-height: 2.0714;
	text-align: center;
}
@media only screen and (max-width: 1024px) {
	.top-intro-block {
		padding: 95px 0 60px;
	}
	.top-intro-body {
		max-width: 750px;
		margin: 0 auto;
		padding: 0 25px;
	}
	.top-intro-body .title {
		margin-bottom: 15px;
		font-size: 64px;
	}
	.top-intro-body .headline {
		margin-bottom: 25px;
		font-size: 17px;
		letter-spacing: 0.05em;
		text-align: justify;
	}
	.top-intro-body .text {
		letter-spacing: 0.05em;
		line-height: 1.9286;
		text-align: justify;
	}
}

.top-service-block {
	background: var(--color-secondary);
	margin-bottom: 236px;
}
.top-service-body {
	display: flex;
	gap: 120px;
	max-width: 850px;
	width: 100%;
	margin: 0 auto;
	padding-top: 100px;
	margin-bottom: 35px;
}
.top-service-body .service-intro .text {
	margin-top: 10px;
	margin-bottom: 35px;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.2em;
	line-height: 2.142857142857143;
}
.top-service-slider {
	position: relative;
	top: 80px;
}
.top-service-slider .text {
	position: absolute;
	top: -87px;
	right: -20px;
	padding-left: 15px;
	width: 100%;
	overflow: hidden;
	color: transparent;
	-webkit-text-stroke: 1px #fff; /* 輪郭の色と太さ */
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-style: italic;
	font-size: 117px;
	line-height: 1;
	text-align: right;
	white-space: nowrap;
	z-index: 5;
}
.top-service-slider .swiper {
	overflow: visible;
}
.top-service-slider .swiper-wrapper {
	-webkit-transition-timing-function: linear !important;
	transition-timing-function: linear !important;
}
.top-service-slider .swiper-slide {
	position: relative;
	width: 309px;
	height: 202px;
}
.top-service-slider .swiper-slide .img-box {
	width: 100%;
	height: 100%;
}
@media only screen and (max-width: 1024px) {
	.top-service-block {
		margin-bottom: 180px;
	}
	.top-service-body {
		display: block;
		padding-top: 110px;
		margin-bottom: 0;
	}
	.top-service-body .c-title01 {
		margin-bottom: 40px;
	}
	.top-service-body .service-intro  {
		text-align: center;
	}
	.top-service-body .service-intro .text {
		display: inline-block;
		margin: 0 auto 45px;
		padding: 0 25px;
		letter-spacing: 0.05em;
		text-align: justify;
	}
	.top-service-slider .text {
		top: -54px;
		font-size: 71px;
	}
	.top-service-slider .swiper-slide {
		width: 223px;
		height: 145px;
	}
}

.top-company-block {
	margin-bottom: 128px;
}
.top-company-body {
	position: relative;
	max-width: 1266px;
	height: 356px;
	margin: 0 auto;
}
.top-company-body .img-box {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.top-company-body .company-cont {
	position: relative;
	max-width: 870px;
	width: 100%;
	margin: 0 auto;
	padding-top: 80px;
}
.top-company-body .company-cont .cont-wrap {
	display: inline-block;
	text-align: center;
}
.top-company-body .company-cont .c-title01 {
	margin-bottom: 60px;
}
@media only screen and (max-width: 1024px) {
	.top-company-block {
		margin-bottom: 100px;
	}
	.top-company-body {
		height: auto;
	}
	.top-company-body .company-cont {
		margin-bottom: -20px;
		padding-top: 0;
		text-align: center;
	}
	.top-company-body .company-cont .c-title01 {
		margin-bottom: 35px;
	}
	.top-company-body .img-box {
		position: relative;
		height: 183px;
	}
	.top-company-body .img-box img {
		object-position: 92% 50%;
	}
}

/* #endregion top -------------------------------- */

/* #region serice =================================== */
.service-main-block {
	margin-bottom: 260px;
}
.service-item {
	max-width: 900px;
	margin: 0 auto;
	margin-bottom: 95px;
}
.service-item .img-box {
	width: 100%;
	aspect-ratio: 1 / 0.57;
}
.service-item .cont-box {
	position: relative;
	max-width: 718px;
	padding: 85px 90px;
	margin: 0 auto;
	margin-top: -75px;
	background: #fff;
	z-index: 2;
}
.service-item .cont-box .c-title02 {
	margin-bottom: 30px;
}
.service-item .cont-box .text {
	font-size: 15px;
	line-height: 2;
	letter-spacing: 0.05em;
	text-align: justify;
}
@media only screen and (max-width: 1024px) {
	.service-main-block {
		margin-bottom: 155px;
	}
	.service-item {
		margin-bottom: 30px;
	}
	.service-item .cont-box {
		padding: 45px 30px;
		margin-top: 0;
		background: transparent;
	}
}
.works-block {
	margin-bottom: 295px;
}
.works-block .c-title02 {
	margin-bottom: 100px;
}
.works-table {
	max-width: 900px;
	width: 100%;
	border-collapse: collapse;
	margin: 0 auto;
}
.works-table th, .works-table td {
	font-weight: 500;
	font-size: 20px;
	letter-spacing: 0.05em;
	line-height: 1.5;
}
.works-table td {
	padding: 10px 0;
}
.works-table th:first-of-type {
	width: 240px;
}
.works-table thead {
	border-bottom: 1px solid rgba(35, 24, 21, 0.5);
	color: var(--color-primary);
	text-align: left;
}
.works-table thead th {
	padding-bottom: 5px;
}
.works-table tbody {
	border-bottom: 1px solid rgba(35, 24, 21, 0.5);
}
@media only screen and (min-width: 1025px) {
	.works-table tbody tr:first-child td {
		padding-top: 40px;
	}
	.works-table tbody tr:last-child td {
		padding-bottom: 40px;
	}
}
@media only screen and (max-width: 1024px) {
	.works-block {
		margin-bottom: 145px;
	}
	.works-block .c-title02 {
		margin-bottom: 30px;
	}
	.works-table {
		max-width: 500px;
		margin: 0 auto;
	}
	.works-table th, .works-table td {
		display: block;
		padding: 0;
		font-size: 14px;
	}
	.works-table thead {
		display: none;
	}
	.works-table tbody {
		display: block;
		padding: 30px;
		border-top: 1px solid rgba(35, 24, 21, 0.5);
	}
	.works-table tr {
		display: block;
		padding: 2px 0;
	}

}
/* #endregion serice -------------------------------- */

/* #region company =================================== */
.company-main-block {
	padding-top: 160px;
	padding-bottom: 270px;
}
.company-main-block .img-box {
	max-width: 800px;
	aspect-ratio: 1.579 / 1;
	margin: 0 auto 95px;
}
.company-main-block .c-title02 {
	margin-bottom: 65px;
}
.company-about-box {
	max-width: 800px;
	width: 100%;
	margin: 0 auto 160px;
	border-top: 1px solid rgba(35, 24, 21, 0.25);
}
.company-about-box dl {
	padding: 25px 45px;
	border-bottom: 1px solid rgba(35, 24, 21, 0.25);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 2.25;
}
.company-about-box dt, .company-about-box dd  {
	display: inline-block;
	min-width: 200px;
	vertical-align: top;
}
.company-btn-box {
	text-align: center;
}
@media only screen and (max-width: 1024px) {
	.company-main-block {
		padding-top: 65px;
		padding-bottom: 225px;
	}
	.company-main-block .img-box {
		margin-bottom: 55px;
	}
	.company-main-block .c-title02 {
		margin-bottom: 55px;
	}
	.company-about-box {
		margin-bottom: 120px;
	}
	.company-about-box dl {
		padding: 15px 20px;
		line-height: 1.6875;
	}
	.company-about-box dt, .company-about-box dd  {
		display: block;
		margin-bottom: 3px;
	}
}
/* #endregion company -------------------------------- */

/* #region recruit =================================== */
.recruit-main-block {
	padding-bottom: 250px;
}
.recruit-main-block .c-title02 {
	margin-bottom: 100px;
}
.recruit-item {
	max-width: 850px;
	margin: 0 auto;
	margin-bottom: 125px;
}
.recruit-item .recruit-title {
	margin-bottom: 15px;
	color: var(--color-primary);
	font-weight: 500;
	font-size: 20px;
	line-height: 1.3;
}
.recruit-item .recruit-box {
	border-top: 1px solid rgba(35, 24, 21, 0.25);
}
.recruit-item .recruit-box dl {
	padding: 20px 25px;
	border-bottom: 1px solid rgba(35, 24, 21, 0.25);
	font-size: 14px;
	line-height: 1.4286;
	letter-spacing: 0.05em;
}
.recruit-item .recruit-box dt, .recruit-item .recruit-box dd {
	display: inline-block;
	min-width: 130px;
	vertical-align: top;
}
@media only screen and (max-width: 1024px) {
	.recruit-main-block {
		padding-bottom: 135px;
	}
	.recruit-main-block .c-title02 {
		margin-bottom: 85px;
	}
	.recruit-item {
		margin-bottom: 70px;
	}
	.recruit-item .recruit-box dl {
		padding: 18px 10px;
	}
	.recruit-item .recruit-box dt, .recruit-item .recruit-box dd {
		display: block;
		margin-bottom: 3px;
	}
}
/* #endregion recruit -------------------------------- */

/* #region contact =================================== */
.contact-tel-block {
	margin-bottom: 115px;
	text-align: center;
}
.contact-tel-block .title {
	margin-bottom: 10px;
	color: var(--color-primary);
	font-size: 21px;
	font-weight: 500;
	letter-spacing: 0.1em;
}
.contact-tel-block .tel-link {
	margin-bottom: 8px;
	color: var(--color-primary);
}
.contact-tel-block .tel-link img {
	display: inline-block;
	vertical-align: middle;
}
.contact-tel-block .tel-link .num {
	display: inline-block;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 52px;
	vertical-align: middle;
}
.contact-tel-block .hour {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.1em;
}
.contact-main-block {
	max-width: 745px;
	margin: 0 auto 250px;
}
.contact-main-block .c-title02 {
	margin-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
	.contact-tel-block {
		margin-bottom: 110px;
	}
	.contact-tel-block .tel-link img {
		width: 24px;
	}
	.contact-tel-block .tel-link .num {
		font-size: 37px;
	}
	.contact-main-block {
		margin-bottom: 175px;
	}
	.contact-main-block .c-title02 {
		margin-bottom: 45px;
	}
}
/* #endregion contact -------------------------------- */