/* #region theme =================================== */
:root {
	--color-text: #595757;
	--color-primary: #1ea0e6;
	--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-title {
	margin-bottom: 7px;
}
.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: 11px 34px 13px;
	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;
		margin-bottom: 12px;
	}
}
@media only screen and (max-width: 960px) {
	.l-header {
		position: static;
		height: 110px;
	}
	.l-header-cont {
		display: block;
		padding: 0;
	}
	.l-header-title {
		width: 230px;
		margin-top: 10px;
		margin-left: 20px;
	}
	.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 {
		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: 23px 50px 26px;
	}
	.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(200px, 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: #002978;
	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: 50px;
}
.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-company-block {
	position: relative;
}
.l-company-block .img-box {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.l-company-block .img-box::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #231815;
	opacity: .75;
}
.l-company-body {
	position: relative;
	padding-top: 155px;
	padding-bottom: 130px;
}
.l-company-body .company-cont {
	text-align: center;
}
.l-company-body .company-cont .c-title01 {
	margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
	.l-company-body {
		padding-top: 140px;
		padding-bottom: 150px;
	}
}

.l-access-block {
	background: #efefef;
	padding-top: 80px;
}
.l-access-block--wh {
	background: #fff;
	padding-top: 100px;
}
.l-access-body {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 95px;
	max-width: 1015px;
	margin: 0 auto;
	padding-bottom: 75px;
	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.05em;
	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-block {
		padding-top: 60px;
	}
	.l-access-block--wh {
		padding-top: 80px;
	}
	.l-access-body {
		display: block;
		padding: 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;
		text-align: center;
	}
	.l-access-body .access-info .address span {
		display: block;
	}
	.l-access-block .map-box {
		height: 100%;
		aspect-ratio: 1.37 / 1;
	}
}

.l-sub-header {
	position: relative;
	padding-top: 120px;
	padding-bottom: 60px;
	background: var(--color-primary);
	color: #fff;
}
.l-sub-header-title {
	position: relative;
	text-align: center;
	z-index: 5;
}
.l-sub-header-title .en {
	margin-bottom: 10px;
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	font-size: 50px;
	letter-spacing: 0.05em;
	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: 75px;
	margin-bottom: 100px;
	text-align: center;
}
.l-sub-intro .text {
	display: inline-block;
	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: 55px;
		margin-bottom: 80px;
	}
	.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: 15px;
	font-family: "DM Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	font-size: 60px;
	letter-spacing: 0.05em;
	line-height: 1;
}
.c-title01 .ja {
	font-weight: 700;
	font-size: 21px;
	letter-spacing: 0.1em;
	line-height: 1;
}
@media only screen and (max-width: 1024px) {
	.c-title01 .en {
		font-size: 48px;
	}
	.c-title01 .ja {
		font-size: 20px;
	}
}
.c-title01.wh {
	color: #fff;
}

.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: rgb(35, 24, 21);
	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--wh {
	background: #fff;
	border: 1px solid #fff;
	color: var(--color-primary);
}
.c-btn0--wh::before {
	background: var(--color-primary);
}
.c-btn01--wh:hover {
	color: #fff;
}
.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;
	}
}


.c-slider01 .swiper {
	overflow: visible;
}
.c-slider01 .swiper-wrapper {
	-webkit-transition-timing-function: linear !important;
	transition-timing-function: linear !important;
}
.c-slider01 .swiper-slide {
	position: relative;
	width: 309px;
	height: 202px;
}
.c-slider01 .swiper-slide .img-box {
	width: 100%;
	height: 100%;
}
@media only screen and (max-width: 1024px) {
	.c-slider01 .swiper-slide {
		width: 223px;
		height: 145px;
	}
}
/* #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 img {
	object-position: top;
}
.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: 14vh;
	padding-top: 14svh;
	font-weight: 500;
	font-size: min(30px, 3.3vh);
	font-size: min(30px, 3.3svh);
	line-height: 2.0833;
	letter-spacing: 0.2em;
	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: 12vw;
		padding-top: 9vh;
		padding-top: 9svh;
		font-size: min(25px, 3vh);
		font-size: min(25px, 3svh);
	}
}

.top-intro-block {
	padding-top: 150px;
}
.top-intro-body .c-title01 {
	margin-bottom: 35px;
}
.top-intro-body .text {
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.2em;
	line-height: 2.0714;
	text-align: center;
}
.top-intro-block>.img-box {
	margin-top: -20px;
	width: 100%;
	height: 285px;
	pointer-events: none;
}
.top-intro-block>.img-box img {
	object-position: 89%;
}
@media only screen and (max-width: 1024px) {
	.top-intro-block {
		padding-top: 95px;
	}
	.top-intro-body {
		max-width: 750px;
		margin: 0 auto;
		padding: 0 25px;
	}
	.top-intro-body .c-title01 {
		margin-bottom: 30px;
	}
	.top-intro-body .text {
		letter-spacing: 0.05em;
		line-height: 1.9286;
		text-align: justify;
	}
	.top-intro-body .text br.pc {
		display: none;
	}
	.top-intro-block>.img-box {
		margin-top: 40px;
		height: 190px;
	}
}

.top-service-block {
	padding-top: 150px;
	padding-bottom: 55px;
	background: var(--color-primary);
	color: #fff;
}
.top-service-body {
	margin-bottom: 85px;
	text-align: center;
}
.top-service-body .c-title01 {
	margin-bottom: 35px;
}
.top-service-body .service-intro .text {
	display: inline-block;
	margin-bottom: 45px;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.2em;
	line-height: 2.1429;
}
.top-service-slider {
	position: relative;
}
.top-service-slider .text {
	position: relative;
	padding: 0 24px;
	margin-bottom: -30px;
	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: center;
	white-space: nowrap;
	z-index: 5;
}
@media only screen and (max-width: 1024px) {
	.top-service-block {
		padding-top: 115px;
		padding-bottom: 40px;
	}
	.top-service-body .c-title01 {
		margin-bottom: 40px;
	}
	.top-service-body {
		margin-bottom: 50px;
	}
	.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 {
		margin-bottom: -20px;
		font-size: 66px;
	}
}

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

/* #region company =================================== */
.greeting-block {
	padding-top: 180px;
	margin-bottom: 300px;
}
.greeting-block .c-title02 {
	margin-bottom: 65px;
}
.greeting-block .greeting-text {
	max-width: 800px;
	margin: 0 auto;
    padding: 0 30px;
    font-weight: 500;
    font-size: 14px;
    line-height: 2.1429;
    letter-spacing: 0.2em;
}
.greeting-block .greeting-text .name {
	display: block;
	text-align: right;
}

@media only screen and (max-width: 1024px) {
	.greeting-block {
		padding-top: 105px;
		margin-bottom: 200px;
	}
	.greeting-block .c-title02 {
		margin-bottom: 55px;
	}
}
.company-main-block {
	padding-bottom: 225px;
}
.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-about-box dd a  {
	color: var(--color-primary);
	text-decoration: underline;
}
.company-about-box dd a:hover  {
	text-decoration: none;
}
.company-btn-box {
	text-align: center;
}
@media only screen and (max-width: 1024px) {
	.company-main-block {
		padding-bottom: 160px;
	}
	.company-main-block .c-title02 {
		margin-bottom: 55px;
	}
	.company-about-box {
		margin-bottom: 85px;
	}
	.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 serice =================================== */
.l-sub-header--service {
	padding-top: 130px;
	padding-bottom: 125px;
}
.l-sub-header--service .img-box {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.l-sub-header--service .img-box img {
	object-position: 75% 34%;
}
.l-sub-header--service .front-img {
	position: absolute;
	display: block;
	width: 100%;
	bottom: 0;
	left: -1000px;
	right: -1000px;
	margin: 0 auto;
	z-index: 2;
}
@media only screen and (max-width: 1920px) {
	.l-sub-header--service .front-img {
		min-width: 1920px;
		max-width: none;
	}
}
@media only screen and (max-width: 1024px) {
	.l-sub-header--service {
		padding-top: 85px;
		padding-bottom:90px;
	}
	.l-sub-header--service .front-img  {
		min-width: 930px;
		left: -1100px;
	}
}
.l-sub-intro--service {
	padding-top: 100px;
	margin-bottom: 210px;
}
@media only screen and (max-width: 1024px) {
	.l-sub-intro--service {
		padding-top: 50px;
		margin-bottom: 120px;
	}
}

.service-main-block {
	margin-bottom: 260px;
}
.service-item {
	max-width: 820px;
	margin: 0 auto;
	margin-bottom: 185px;
}
.service-item .img-box {
	width: 100%;
	aspect-ratio: 1.655 / 1;
	border-radius: 27px;
}
.service-item .cont-box {
	position: relative;
	max-width: 718px;
	margin: 0 auto 45px;
	z-index: 2;
}
.service-item .cont-box .title {
	position: relative;
	margin-bottom: 60px;
	font-size: min(44px, 8.5vw);
	text-align: center;
}
.service-item .cont-box .title::after {
	content: '';
	position: absolute;
	width: min(382px, 60vw);
	aspect-ratio: 1 / 1;
	top: max(-121px, -14vw);
	right: 0;
	left: 0;
	margin: 0 auto;
	border-radius: 50%;
	background: #fff;
	z-index: -1	;
}
.service-item .cont-box .title .ja {
	margin-bottom: 0.45em;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.3;
}
.service-item .cont-box .title .en {
	color: var(--color-primary);
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 0.318em;
	letter-spacing: 0.1em;
	line-height: 1;
}
.service-item .cont-box .text {
	max-width: 700px;
	margin: 0 auto;
	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: 150px;
	}
	.service-item .cont-box {
		padding: 10px 30px 0;
		margin-top: 0;
		margin-bottom: 55px;
		background: transparent;
	}
	.service-item .cont-box .title {
		margin-bottom: 30px;
	}
	.service-item .cont-box .text {
		font-size: 14px;
	}
}
.service-slider-block {
	margin-bottom: 320px;
}
@media only screen and (max-width: 1024px) {
	.service-slider-block {
		margin-bottom: 190px;
		padding: 10px 0;
	}
}
.works-block {
	margin-bottom: 265px;
}
.works-block .c-title02 {
	margin-bottom: 100px;
}
.works-list {
	display: flex;
	gap: 80px 60px;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 820px;
	margin: 0 auto;
}
.works-list li {
	flex: 0 1 380px;
}
.works-list li .img-box {
	margin-bottom: 15px;
	width: 100%;
	aspect-ratio: 2 / 1.2;
	border-radius: 10px;
	background: #eee;
}
.works-list li .cont-box {
}
.works-list li .cont-box .title {
	margin-bottom: 5px;
	font-weight: 500;
}
.works-list li .cont-box .data {
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #999;
	color: #999;
	font-size: 13px;
}
.works-list li .cont-box .description {
	margin-bottom: 5px;
	font-size: 13px;
	letter-spacing: 0.05em;
	line-height: 1.7;
	text-align: justify;
}
@media only screen and (max-width: 1024px) {
	.works-block {
		margin-bottom: 135px;
	}
	.works-block .c-title02 {
		margin-bottom: 60px;
	}
}
/* #endregion serice -------------------------------- */

/* #region recruit =================================== */
.recruit-main-block {
	padding-bottom: 220px;
}
.recruit-main-block .c-title02 {
	margin-bottom: 100px;
}
.recruit-item {
	max-width: 850px;
	margin: 0 auto;
	margin-bottom: 105px;
}
.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: 170px;
	}
	.recruit-main-block .c-title02 {
		margin-bottom: 85px;
	}
	.recruit-item {
		margin-bottom: 70px;
	}
	.recruit-item .recruit-box dl {
		padding: 18px 10px 18px 25px;
	}
	.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 -------------------------------- */