@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Zen+Kaku+Gothic+Antique&family=Zen+Old+Mincho&display=swap');

:root {
	--font-family-inter: 'Inter', sans-serif;
	--color-text: #373737;
	--color-primary: #3FB5EA;
	--color-secondary: #13CEAD;
	--color-white: #FFFFFF;
	--color-black: #000000;
	--color-light-gray: rgba(63, 181, 234, 0.1);

	--gradient-main: linear-gradient(90deg, #13CEAD 0%, #40C8CF 100%);
	--gradient-sub: linear-gradient(269deg, #3FB5EA 0%, #13CEAD 100%);
	--gradient-border: linear-gradient(90deg, #13CEAD 0%, #3FB5EA 100%);
}

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

html {
	overflow-x: hidden;
}

body {
	font-family: var(--font-family-inter);
	color: var(--color-text);
	background-color: var(--color-white);
	font-size: 16px;
	overflow-x: hidden;
}

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

a:hover {
	opacity: 0.7;
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	image-rendering: -webkit-optimize-contrast;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
	padding: 18px 30px;
	border-radius: 37px;
	font-weight: 600;
	position: relative;
	overflow: hidden;
	transition: all 0.3s;
	background-clip: padding-box;
	border: 3px solid #13CEAD;
	background: #FFF;
	letter-spacing: 4px;
}

/* .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    background: var(--gradient-border) border-box;
    border-radius: 37px;
    z-index: -1;
} */


.button--header {
	gap: 10px;
	padding: 20px 40px;
	background: var(--gradient-main);
	color: var(--color-white);
	border-radius: 36px;
	box-shadow: 0px 0px 16px 4px rgba(0, 0, 0, 0.17);
	font-size: 16px;
	font-weight: 600;
}

.button--header img {
	width: 24px;
}

.button--white {
	background-color: var(--color-white);
	color: var(--color-text);
	box-shadow: 0px 0px 19.8px 0px rgba(0, 0, 0, 0.11);
}

.button--contact {
	gap: 20px;
	padding: 25px 50px;
	background-color: var(--color-white);
	color: var(--color-text);
	border-radius: 10px;
	font-size: 20px;
	font-weight: 600;
	width: 465px;
	border-radius: 0;
	border: none;
}

.section-tag {
	font-size: 16px;
	font-weight: 600;
	color: var(--color-primary);
	position: relative;
	display: inline-block;
}

.section-title {
	position: relative;
	font-size: 32px;
	font-weight: 600;
	letter-spacing: 0.25em;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 51px;
	height: 4px;
	background-color: var(--color-primary);
}

.section-subtitle {
	font-size: 32px;
	font-weight: 600;
	letter-spacing: 0.25em;
	margin-bottom: 30px;
}

.section-text {
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--color-white);
	box-shadow: 0px 4px 43.9px 2px rgba(0, 0, 0, 0.08);
	z-index: 1000;
}

.header__inner {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	align-items: center;
	padding: 12px 30px;
	max-width: 1920px;
	margin: 0 auto;
}

.header__logo {
	flex: 1;
}

.header__logo img {
	width: 86px;
}

.header__nav ul {
	display: flex;
	align-items: baseline;
}

.header__nav ul li {
	margin: 0 25px;
}

.header__nav ul li a {
	font-size: 16px;
	font-weight: 400;
	color: #000;
}

.header__nav a.is-current {
	position: relative;
}

.header__nav a.is-current::after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 100%;
	height: 4px;
	background: #3FB5EA;
}


.header__contact {
	display: flex;
	align-items: center;
}

.header__tel {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin-right: 40px;
}

.header__tel-label {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-primary);
}

.header__tel-number {
	font-size: 32px;
	font-weight: 700;
	color: var(--color-primary);
	line-height: 1;
}

.header__tel-reception {
	font-size: 16px;
	font-weight: 400;
}

/* Main */
main {
	padding-top: 110px;
}

/* Hero */
.hero {
	position: relative;
	height: 926px;
	display: flex;
	align-items: center;
	padding-left: 171px;
}

.hero__bg {
	position: absolute;
	top: 0;
	left: 20%;
	width: 80%;
	height: 100%;
	background-image: url('img/hero-bg.png');
	background-size: cover;
	background-position: center;
	z-index: -1;
}

.hero__title {
	background-color: var(--color-white);
	font-size: 48px;
	font-weight: 600;
	letter-spacing: 0.25em;
	padding: 15px 40px;
	margin-bottom: 15px;
	display: inline-block;
}

.hero__scroll {
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}

.hero__scroll span {
	font-size: 16px;
	font-weight: 600;
	color: var(--color-white);
}

.hero__scroll::after {
	content: '';
	display: block;
	width: 1px;
	height: 103px;
	background-color: var(--color-primary);
	margin: 10px auto 0;
}

/* Concept */
.concept {
	padding: 120px 0;
	position: relative;
	overflow: hidden;
}

.concept::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 80%;
	height: 100%;
	background: linear-gradient(to bottom, #ffffff 29%, #ebf7fd 100%);
	z-index: -1;
}

.concept__inner {
	display: flex;
	align-items: center;
	max-width: 1920px;
	margin: 0 auto;
	padding: 50px 0;
}

.concept__images {
	width: 50%;
	position: relative;
	height: 609px;
}

.concept__image {
	position: absolute;
	object-fit: cover;
	box-shadow: 0px 0px 32.3px 7px rgba(0, 0, 0, 0.07);
}

.concept__image--1 {
	width: 683px;
	height: 609px;
	top: 100px;
	left: -385px;
	z-index: 1;
}

.concept__image--2 {
	width: 723px;
	height: 459px;
	top: -30px;
	left: 128px;
	z-index: 2;
}

.concept__image--3 {
	width: 374px;
	height: 307px;
	top: 498px;
	left: 1486px;
	z-index: 4;
}

.concept__text-content {
	/* width: 50%; */
	padding: 40px 200px 40px 40px;
	background-image: url('img/concept-image3.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
	box-shadow: 0 0 32.3px 7px rgba(0, 0, 0, 0.07);
	z-index: 2;
}

/* Works */
.works {
	position: relative;
	padding: 120px 0;
	overflow: hidden;
}

.works::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 80%;
	height: 100%;
	background-color: var(--color-light-gray);
	z-index: -1;
}

.works__inner {
	max-width: 1820px;
	margin: 0 auto;
	overflow: hidden;
	padding: 0 50px;
}

.works__text-content {
	max-width: 1304px;
	margin: 0 auto 60px;
	position: relative;
}

.works__gallery {
	position: relative;
	overflow: visible;
}

.works__gallery .swiper-container {
	width: 100%;
	padding: 50px 0 90px;
}

.works__gallery .swiper-slide {
	width: 500px !important;
	height: auto;
	transition: transform 0.4s;
}

.works__gallery .swiper-slide-active {
	transform: scale(1.2);
	z-index: 10;
}

.works__gallery .swiper-slide img {
	object-fit: cover;
}

.swiper-buttons {
	display: flex;
	justify-content: center;
	gap: 50px;
	margin-top: 40px;
	position: absolute;
	top: 36%;
	right: 0;
}

.swiper-button-prev,
.swiper-button-next {
	position: static;
	width: 64px;
	height: 64px;
	border: 1px solid var(--color-primary);
	border-radius: 50%;
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: center;
}

.swiper-button-prev {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233FB5EA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E");
}

.swiper-button-next {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233FB5EA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
}

.swiper-button-prev::after,
.swiper-button-next::after {
	display: none;
}

svg.swiper-navigation-icon {
	display: none;
}

.cwrap {
    text-align: center;
}

/* Recruit */
.recruit {
	position: relative;
	overflow: hidden;
}

.recruit__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 95%;
	height: 100%;
	background-image: url('img/recruit-bg.png');
	background-size: cover;
	background-position: center;
	z-index: -2;
}

.recruit::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 95%;
	height: 100%;
	background: var(--gradient-sub);
	opacity: 0.8;
	z-index: -1;
}

.recruit__bg::after {
	content: "";
	position: absolute;
	top: 0;
	right: -5%;
	width: 5%;
	height: 100%;
	background-color: var(--color-light-gray);
	z-index: -1;
}

.recruit__inner {
	padding: 50px 0px 50px 80px;
}

.recruit__content {
	display: flex;
	align-items: center;
	max-width: 1820px;
	margin: 0 auto;
	background: #ffffff;
	padding: 30px;
}

.recruit__image {
	width: 50%;
}

.recruit__text-content {
	width: 50%;
	padding-left: 80px;
}

.recruit .section-tag::after {
	background-color: var(--color-white);
}

/* Company */
.company {
	position: relative;
	color: var(--color-white);
	text-align: center;
}

.company::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 80%;
	height: 100%;
	background: linear-gradient(to bottom, #ebf7fd 29%, #ffffff 100%);
	z-index: -3;
}

.company__inner {
	max-width: 1820px;
	margin: 0 auto;
	padding: 80px 0px 50px 80px;
}

.company__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(img/about-hero-bg.png);
	background-size: cover;
	background-position: center;
	z-index: -2;
}

.company__text-content {
	position: relative;
	padding: 50px 0 100px;
}

.company__text-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-sub);
	opacity: 0.8;
	z-index: -1;
}

.company .section-tag,
.company .section-title,
.company .section-subtitle {
	color: var(--color-white);
}

.company .section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 51px;
	height: 4px;
	background-color: #fff;
}

.company__images {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-bottom: 30px;
	margin-top: -50px;
}

.company__images .up {
	margin-top: -30px;
}

.company__images img {
	width: 362px;
	height: 442px;
	object-fit: cover;
	box-shadow: 0px 0px 14.2px 5px rgba(0, 0, 0, 0.25);
}

/* Contact */
.contact {
	position: relative;
}

.contact__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('img/contact-bg.png');
	background-size: cover;
	background-position: center;
	z-index: -1;
}

.contact__inner {
	position: absolute;
	top: -200px;
	left: 50%;
	transform: translateX(-50%);
	max-width: 1664px;
	margin: 0 auto;
	background-color: var(--color-primary);
	border-radius: 26px;
	padding: 40px 80px;
	color: var(--color-white);
	text-align: center;
	box-shadow: 0px 0px 38.9px 11px rgba(0, 0, 0, 0.1);
}

.contact__header .section-tag {
	color: var(--color-white);
}

.contact__header .section-tag::after {
	background-color: var(--color-white);
	left: 50%;
	transform: translateX(-50%);
}

.contact__header .section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 51px;
	height: 4px;
	background-color: #fff;
}

.contact__body {
	display: flex;
	justify-content: center;
	gap: 100px;
	align-items: center;
	margin-top: 20px;
}

.contact__tel {
	display: flex;
	flex-direction: column;
	width: 465px;
}

.contact__tel-label {
	font-size: 29px;
	font-weight: 700;
	padding-right: 10px;
}

.contact__tel-number {
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 2px;
}

.contact__tel-reception {
	font-size: 20px;
}

/* Footer */
.footer {}

.footer__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1920px;
	margin: 0 auto;
	padding: 50px 70px;
}

.footer__logo {
	margin-bottom: 15px;
}

.footer__company-name {
	font-size: 32px;
	font-weight: 600;
	margin: 20px 0;
}

.footer__address,
.footer__tel {
	font-size: 20px;
	letter-spacing: 0.13em;
}

.footer__nav ul {
	display: flex;
	gap: 40px;
	align-items: baseline;
}

.footer__nav ul li a {
	font-size: 16px;
}

.footer__copyright {
	background-color: var(--color-primary);
	color: #fff;
	text-align: center;
	padding: 20px 0;
	font-size: 14px;
	letter-spacing: 0.13em;
}

/*下層ページ共通*/
.page-hero {
	width: 95%;
	height: 475px;
	background-size: cover;
	background-position: center;
	color: var(--color-white);
	text-align: center;
	position: relative;
}

.page-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-sub);
	opacity: 0.7;
	z-index: 0;
}

.page-hero .hero-content {
	position: absolute;
	z-index: 1;
	bottom: -18px;
}

.page-hero h1 {
	font-size: 32px;
	font-weight: 600;
	text-align: right;
	letter-spacing: 0.25em;
}

.page-hero p {
	font-size: 128px;
	font-weight: 600;
	line-height: 1;
	font-style: italic;
	margin: 0;
}


/* about.html */
.about-hero {
	background-image: url('img/about-hero-bg.png');
}

.strengths {
	position: relative;
	padding: 120px 0;
}

.strengths::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 80%;
	height: 100%;
	background: linear-gradient(to bottom, #ffffff 15%, #ebf7fd 0%);
	z-index: -1;
}

.strength-item {
	position: relative;
	display: flex;
	gap: 30px;
	justify-content: space-between;
	align-items: center;
	padding: 0 5%;
	background-image: url('img/about-item-bg.png');
	background-repeat: no-repeat;
	background-position: center;
}

.strength-item:last-child {
	margin-bottom: 0;
}

.strength-item.reverse {
	flex-direction: row-reverse;
}

.strength-image {}

.strength-text-container {
	width: 60%;
	padding: 30px 5% 120px;
}

.right {
	margin-left: auto;
	margin-right: 0;
}

.strength-item.reverse .strength-text-container {
	margin-left: auto;
}

.strength-text h3 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 20px;
}

.strength-text p {
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.25em;
	margin-bottom: 0;
}

.strength-number {
	font-size: 200px;
	font-weight: 800;
	color: var(--color-white);
	line-height: 1;
	z-index: 1;
}

.strength-item:not(.reverse) .strength-number {
	right: 10%;
}

.strength-item.reverse .strength-number {
	left: 10%;
}

/* company.html */
.company-hero {
	background-image: url('img/company-hero-bg.png');
}

.company-details {
	padding: 60px 0 40px;
}

.company-intro {
	max-width: 90%;
	margin: 0 auto 80px;
}

.company-details .container {
	max-width: 1249px;
	margin: 0 auto;
	padding: 0 20px;
}

.company-details table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 20px;
}

.company-details tr {}

.company-details th,
.company-details td {
	padding: 20px 60px;
	text-align: left;
}

.company-details th {
	background: var(--gradient-main);
	color: var(--color-white);
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 0.25em;
	width: 30%;
	text-align: center;
}

.company-details td {
	font-size: 24px;
	letter-spacing: 0.25em;
	border-bottom: 1px solid #3FC8CE;
}

.map {
	padding-bottom: 120px;
}

.map .container {
	max-width: 1249px;
	margin: 0 auto;
}

.contact {
	position: relative;
	background-image: url('img/contact-bg.png');
	background-size: cover;
	background-position: center;
	margin-top: 300px;
	height: 450px;
}

.contact .container {
	max-width: 1664px;
	margin: 0 auto;
	background-color: var(--color-primary);
	border-radius: 26px;
	padding: 80px;
	color: var(--color-white);
	text-align: center;
	box-shadow: 0px 0px 38.9px 11px rgba(0, 0, 0, 0.1);
}

.contact h2 {
	font-size: 32px;
	font-weight: 600;
	letter-spacing: 0.25em;
}

.contact .sub-title {
	font-size: 16px;
	font-weight: 600;
}

.contact .line {
	width: 51px;
	height: 4px;
	background-color: var(--color-white);
	margin: 20px auto 40px;
}

.contact p {
	font-size: 20px;
	font-weight: 600;
}

.contact-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 60px;
	padding-top: 60px;
	border-top: 1px solid var(--color-white);
}

.tel-info .tel-label {
	font-size: 29px;
	font-weight: 700;
}

.tel-info .tel-number {
	font-size: 48px;
	font-weight: 700;
}

.tel-info .reception-time {
	font-size: 20px;
}

.contact-button {
	display: flex;
	align-items: center;
	gap: 20px;
	background-color: var(--color-white);
	color: var(--color-text);
	padding: 25px 50px;
	border-radius: 10px;
	font-size: 20px;
	font-weight: 600;
}

.contact-button img {
	width: 62px;
}

/* recruit.html */
.recruit-hero {
	background-image: url('img/recruit-hero-bg.png');
}

.right-margin {
	width: 95%;
	margin: 100px 0 0;
}

/* works.html */
.works-hero {
	background-image: url('img/works-hero-bg.png');
}

.case-intro {
	padding: 120px 0;
	background-image: url('img/case-bg.png');
	background-repeat: no-repeat;
	background-position: right top;
}

.case-intro .container {
	margin: 0 auto;
	display: flex;
	align-items: center;
}

.case-intro-image {
	width: 70%;
	box-shadow: 0px 0px 32.3px 7px rgba(0, 0, 0, 0.07);
}

.case-intro-text {
	width: 50%;
	padding: 60px;
	margin-right: -300px;
	background-image: url(img/concept-image3.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
	box-shadow: 0 0 32.3px 7px rgba(0, 0, 0, 0.07);
	z-index: 2;
}

.case-intro-text h2 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 20px;
}

.case-intro-text p {
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.25em;
}

.case-gallery {
	padding: 0 0 120px;
}

.case-gallery .container {
	max-width: 1664px;
	margin: 0 auto;
	padding: 0 20px;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* contact.html */
.contact-hero {
	background-image: url('img/contact-hero-bg.png');
}

.form-title {
	border: 1px solid #ccc;
	padding: 10px 0;
	margin: 20px 0;
	display: flex;
	align-items: center;
}

.form-title h3 {
	font-size: 20px;
	font-weight: bold;
	margin: 0;
	padding-left: 20px;
	border-left: 5px solid #20c997;
}


.contact-form {
	padding: 120px 0;
}

.contact-form__inner {
	max-width: 1067px;
	margin: 0 auto;
	padding: 0 20px;
}

.contact-form__tel {
	display: flex;
	justify-content: center;
	gap: 50px;
	margin-bottom: 20px;
}

.contact-form__tel-item {
	display: flex;
	align-items: baseline;
	gap: 20px;
}

.contact-form__tel-label {
	font-size: 36px;
	font-weight: 700;
	color: var(--color-primary);
}

.contact-form__tel-number {
	font-size: 58px;
	font-weight: 700;
	color: var(--color-primary);
}

.contact-form__fax-label {
	font-size: 36px;
	font-weight: 700;
	color: #FFF;
	text-shadow: 2px 2px 0 #3fb5ea, -2px 2px 0 #3fb5ea, 2px -2px 0 #3fb5ea, -2px -2px 0 #3fb5ea;
	line-height: normal;
}

.contact-form__fax-number {
	font-size: 58px;
	color: #FFF;
	text-shadow: 2px 2px 0 #3fb5ea, -2px 2px 0 #3fb5ea, 2px -2px 0 #3fb5ea, -2px -2px 0 #3fb5ea;
	font-weight: 700;
	line-height: normal;
}

.contact-form__reception {
	color: #fff;
	text-align: center;
	font-size: 24px;
	padding: 10px 0;
	margin-bottom: 60px;
	background: linear-gradient(90deg, #17CEB0 0%, #3EC9CE 100%);
}

.form {}

fieldset.hidden-fields-container {
	display: none;
}

.form-row {
	margin-bottom: 20px;
}

label {
	display: block;
	font-weight: bold;
	margin-bottom: 5px;
}

.badge--required {
	display: inline-block;
	margin-left: 5px;
	padding: 2px 6px;
	font-size: 12px;
	color: #fff;
	background-color: #eb5e5e;
	border-radius: 12px;
}

/* 入力フィールド */
.form-input,
.form-textarea {
	width: 100%;
	padding: 15px;
	border: none;
	background-color: #f2f2f2;
	font-size: 16px;
	box-sizing: border-box;
}

/* textarea */
.form-textarea {
	min-height: 120px;
	resize: vertical;
}

.form-btn {
	text-align: center;
	margin: 50px 0 0;
}

/* 送信ボタン */
.form-submit {
	color: #fff;
	font-size: 18px;
	padding: 12px 30px;
	border: none;
	cursor: pointer;
	width: 291px;
	height: 72px;
	flex-shrink: 0;
	border-radius: 36px;
	background: linear-gradient(90deg, #13CEAD 0%, #40C8CF 100%);
	box-shadow: 0 0 16px 4px rgba(0, 0, 0, 0.17);
}

.form-submit:hover {
	opacity: 0.8;
}



/*表示切替用*/
.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

/*コンテンツフェードイン*/
.fadein-target {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadein-target.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
	.header__nav ul li {
		margin: 0 20px;
	}

	.header__tel {
		margin-right: 20px;
	}

	.header__tel-number {
		font-size: 24px;
	}

	.header__tel-label {
		font-size: 16px;
	}

	.header__tel-reception {
		font-size: 12px;
	}

	.button--header {
		padding: 15px 20px;
	}

	.hero {
		width: 100%;
		padding-left: 50px;
		height: 700px;
	}

	.hero__title {
		font-size: 36px;
	}

	.concept__inner {
		flex-direction: column;
	}

	.concept__images {
		width: 100%;
		height: 400px;
	}

	.concept__image--1 {
		width: 500px;
		height: 420px;
		left: -100px;
	}

	.concept__image--2 {
		width: 500px;
		height: 320px;
		left: 100px;
	}

	.concept__text-content {
		width: 90%;
		padding: 40px;
	}

	.works__inner {
		padding: 0 20px;
	}

	.swiper-buttons {
		top: auto;
		bottom: -80px;
		right: 50%;
		transform: translateX(50%);
	}

	.recruit__content {
		flex-direction: column;
		padding: 0px;
	}

	.recruit__image,
	.recruit__text-content {
		width: 100%;
		padding: 20px;
	}

	.company__images {
		gap: 10px;
		align-items: center;
	}

	.company__images img {
		width: 31%;
		height: auto;
	}

	.contact__inner {
		padding: 40px;
		top: -100px;
	}

	.contact__body {
		flex-direction: column;
		gap: 20px;
	}

	.footer__inner {
		flex-direction: column;
		gap: 30px;
	}

	.footer__nav ul {
		flex-direction: column;
		gap: 15px;
	}

	.page-hero p {
		font-size: 80px;
	}

	.strength-item,
	.strength-item.reverse {
		flex-direction: column-reverse;
	}

	.strength-text-container {
		width: 100%;
	}

	.company-details th,
	.company-details td {
		padding: 15px;
		font-size: 18px;
	}

	.case-intro .container {
		flex-direction: column-reverse;
	}

	.case-intro-image {
		width: 100%;
	}

	.case-intro-text {
		width: 90%;
		margin: -50px 0 0 0;
		padding: 60px 5%;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-form__tel {
		flex-direction: column;
		gap: 20px;
		align-items: center;
	}
}

@media (max-width: 768px) {
	.recruit__bg::after {
		display: none;
	}

	.pc-only {
		display: none;
	}

	.header {
		height: 60px;
	}

	.header__inner {
		padding: 12px 10px;
	}

	.header__logo img {
		width: 40px;
	}

	.header__nav,
	.header__contact {
		display: none;
	}

	.hamburger-menu.sp-only {
		display: flex;
	}

	.hamburger-menu {
		background: none;
		border: none;
		cursor: pointer;
		padding: 0;
		width: 40px;
		height: 40px;
		display: flex;
		flex-direction: column;
		justify-content: space-around;
	}

	.hamburger-menu span {
		display: block;
		width: 100%;
		height: 4px;
		background-color: #D9D9D9;
		transition: all 0.3s;
	}

	.sp-nav {
		display: none;
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		background-color: var(--color-white);
		padding: 20px;
		box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	}

	.sp-nav.active {
		display: block;
		text-align: center;
		color: #ffffff;
		background: linear-gradient(270deg, rgba(63, 181, 234, 0.90) 0.14%, rgba(19, 206, 173, 0.90) 99.58%);
	}

	.sp-nav ul {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.sp-nav ul li a {
		font-size: 18px;
	}

	.header__tel {
		display: none;
	}

	.button--header {
		display: none;
	}

	main {
		padding-top: 60px;
	}

	.hero {
		height: 500px;
		padding: 0 20px;
		justify-content: center;
	}

	.hero__bg {
		left: 0;
		width: 100%;
	}

	.hero__content {
		width: 90%;
		position: absolute;
		bottom: -90px;
		z-index: 10;
	}

	.hero__title {
		font-size: 22px;
		padding: 10px 20px;
		width: 100%;
		text-align: center;
		display: block;
		margin-bottom: 5px;
		border: 1px solid #13CEAD;
	}

	.section-title {
		font-size: 24px;
	}

	.section-subtitle {
		font-size: 24px;
	}

	.concept {
		padding: 150px 0 100px;
	}

	.concept__images {
		height: 300px;
	}

	.concept__image--1 {
		display: none;
	}

	.concept__image--3 {
		width: 200px;
		height: auto;
		top: -30px;
		left: 20px;

	}

	.concept__image--2 {
		width: 100%;
		left: 0;
	}

	.concept__text-content {
		padding: 20px;
	}

	.works {
		padding: 60px 0;
	}

	.works__inner {
		padding: 0 5%;
	}

	.works__gallery .swiper-slide {
		width: 100% !important; 
		height: auto;
	}

	.works__gallery .swiper-slide-active {
		transform: scale(1.1);
	}

	.works__gallery .swiper-slide img {
		width: 100%;
		box-shadow: none;
	}

	.recruit__inner {
		padding: 30px 15px;
	}

	.recruit__bg {
		width: 100%;
	}

	.recruit::before {
		width: 100%;
	}

	.company__inner {
		padding: 60px 0;
	}

	.company__text-content {
		padding: 50px 5% 100px;
	}

	.contact {
		margin-top: 200px;
		height: 380px;
	}

	.contact__inner {
		top: -150px;
		width: 90%;
	}

	.contact p {
		font-size: 17px;
	}

	.contact__tel-label {
		font-size: 18px;
	}

	.contact__tel-number {
		font-size: 24px;
	}

	.contact__tel-reception {
		font-size: 16px;
	}

	.button--contact {
		gap: 15px;
		padding: 25px 15px;
		font-size: 15px;
		font-weight: 600;
		width: 100%;
		border: none;
	}

	.button--contact img {
		width: 36px;
	}

	.footer__inner {
		padding: 30px 20px;
	}

	.footer__address,
	.footer__tel {
		font-size: 14px;
	}

	.footer__copyright {
		font-size: 10px;
	}

	/*下層ページ共通*/

	.page-hero {
		height: 300px;
	}

	.page-hero .hero-content {
		bottom: -7px;
	}

	.page-hero h1 {
		font-size: 24px;
	}

	.page-hero p {
		font-size: 48px;
	}

	/*以下個別ページ*/

	.strengths {
		padding: 60px 0;
	}

	.strength-number {
		font-size: 100px;
		text-shadow: 1px 1px 3px #40c8cf;
	}

	.right-margin {
		width: 100%;
	}

	.company-details table,
	.company-details tbody,
	.company-details tr,
	.company-details th,
	.company-details td {
		display: block;
		width: 100%;
	}

	.company-details tr {
		margin-bottom: 20px;
		border-bottom: 1px solid #ccc;
	}

	.company-details th {
		text-align: center;
	}

	.company-details td {
		text-align: center;
		border-bottom: none;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.contact-hero__title {
		font-size: 24px;
	}

	.contact-hero__subtitle {
		font-size: 60px;
	}

	.contact-form__tel-label,
	.contact-form__fax-label {
		font-size: 24px;
	}

	.contact-form__tel-number,
	.contact-form__fax-number {
		font-size: 36px;
	}

	.contact-form__reception {
		font-size: 18px;
	}

	.form {
		padding: 20px 0;
	}
}