@charset "UTF-8";

/* =====================================================
* 変数
* =================================================== */
:root {
	--font-base: "Zen Kaku Gothic New", YuGothic, "游ゴシック体", "Yu Gothic", "游ゴシック", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	--font-en: "Inria Sans", sans-serif;

	--color-bk: #0B0B0B;
	--color-bk25: rgba(0, 0, 0, 0.25);
	--color-wh: #fff;
	--color-wh85: rgba(255, 255, 255, 0.85);
	--color-gry: #AFAFAF;
	--color-gry-2: #B4B4B4;
	--color-lgry: #DCDCDC;
	--color-rd: #F31A1A;
	--color-pi: #FA7296;
	--color-lpi: #F299B4;
	--color-lpi-2: #FDC0D0;
	--color-pi70: rgba(250, 114, 150, 0.70);
	--color-dpi: #FC4D86;
	--color-dpi-2: #FC3D93;
	--color-dpi70: rgba(252, 61, 147, 0.70);
	--color-pr: #D681F6;
	--color-lbl: #F5F9FC;

	--width-cont: 1240px;
	--width-cont-sm: 721px;

	--height-header: 100px;
	--height-header-sp: 70px;

	--height-fv: 100vh;
}

/* =====================================================
* base
* =================================================== */
body {
	font-family: var(--font-base);
	font-size: clamp(1rem, 0.945rem + 0.22vw, 1.125rem);
	font-weight: 500;
	font-style: normal;
	letter-spacing: 1px;
	line-height: 1.7;
	color: var(--color-bk);
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	padding: 0;
	margin: 0;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
a {
	text-decoration: none;
	color: var(--color-bk);
	transition: all 0.3s ease-in-out;
}
a:hover {
	text-decoration: unset;
}
li {
	list-style: none;
}
p {
	word-break: break-all;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}

/* =====================================================
* content
* =================================================== */
.body__inner {
	overflow: hidden;
}

.wrap {
	width: 100%;
	max-width: var(--width-cont);
	padding: 0 20px;
	margin: 0 auto;
}
.wrap--sm {
	max-width: var(--width-cont-sm);
}

.over-l {
	margin-left: calc(50% - 50vw);
}
.over-r {
	margin-right: calc(50% - 50vw);
}

.img {
	position: relative;
	overflow: hidden;
}
.img::before {
	content: "";
	display: block;
}
.img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.bg-lbl {
	background: var(--color-lbl);
}

/* flex --------------------------------------------- */
.flex {
	display: flex;
}
.flex-ct {
	display: flex;
	justify-content: center;
	align-items: center;
}
.flex-end {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.flex-btwn {
	display: flex;
	justify-content: space-between;
}

/* text --------------------------------------------- */
.text-c {
	text-align: center;
}
.text-l {
	text-align: left;
}
.text-r {
	text-align: right;
}

/* margin ------------------------------------------- */
.mt-0 {
	margin-top: 0 !important;
}
.mt-10 {
	margin-top: 10px;
}
.mt-15 {
	margin-top: 15px;
}
.mt-20 {
	margin-top: 20px;
}
.mt-30 {
	margin-top: 30px;
}
.mt-40 {
	margin-top: 40px;
}
.mt-50 {
	margin-top: 50px;
}
.mt-60 {
	margin-top: 60px;
}
.mt-70 {
	margin-top: 70px;
}
.mt-80 {
	margin-top: 80px;
}
.mt-90 {
	margin-top: 90px;
}
.mt-100 {
	margin-top: 100px;
}

.mb-0 {
	margin-bottom: 0 !important;
}
.mb-10 {
	margin-bottom: 10px;
}
.mb-15 {
	margin-bottom: 15px;
}
.mb-20 {
	margin-bottom: 20px;
}
.mb-30 {
	margin-bottom: 30px;
}
.mb-40 {
	margin-bottom: 40px;
}
.mb-50 {
	margin-bottom: 50px;
}
.mb-60 {
	margin-bottom: 60px;
}
.mb-70 {
	margin-bottom: 70px;
}
.mb-80 {
	margin-bottom: 80px;
}
.mb-90 {
	margin-bottom: 90px;
}
.mb-100 {
	margin-bottom: 100px;
}

/* padding ------------------------------------------ */
.pt-0 {
	padding-top: 0 !important;
}
.pt-10 {
	padding-top: 10px;
}
.pt-15 {
	padding-top: 15px;
}
.pt-20 {
	padding-top: 20px;
}
.pt-30 {
	padding-top: 30px;
}
.pt-40 {
	padding-top: 40px;
}
.pt-50 {
	padding-top: 50px;
}
.pt-60 {
	padding-top: 60px;
}
.pt-70 {
	padding-top: 70px;
}
.pt-80 {
	padding-top: 80px;
}
.pt-90 {
	padding-top: 90px;
}
.pt-100 {
	padding-top: 100px;
}

.pb-0 {
	padding-bottom: 0 !important;
}
.pb-10 {
	padding-bottom: 10px;
}
.pb-15 {
	padding-bottom: 15px;
}
.pb-20 {
	padding-bottom: 20px;
}
.pb-30 {
	padding-bottom: 30px;
}
.pb-40 {
	padding-bottom: 40px;
}
.pb-50 {
	padding-bottom: 50px;
}
.pb-60 {
	padding-bottom: 60px;
}
.pb-70 {
	padding-bottom: 70px;
}
.pb-80 {
	padding-bottom: 80px;
}
.pb-90 {
	padding-bottom: 90px;
}
.pb-100 {
	padding-bottom: 100px;
}

/* =====================================================
* display
* =================================================== */
.none-pc,
.none-tab {
	display: none !important;
}

/* =====================================================
* header
* =================================================== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	z-index: 1000;
	transition: all 0.3s ease-in-out;
	padding: 10px 20px 10px 30px;
}
/* logo --------------------------------------------- */
.header__logo {
	width: 26.42%;
	max-width: 317px;
	margin-right: 10px;
	z-index: 999;
}
.header__logo img {
	height: 38px;
	max-width: unset;
}
.header__logo a {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.header__logo .img {
	object-fit: contain;
}
.header__logo img:last-of-type {
	display: none;
}
.header.scroll .header__logo img:first-of-type {
	display: none;
}
.header.scroll .header__logo img:last-of-type {
	display: block;
}
.header__logo span {
	font-size: 28px;
}
.header__logo span:last-of-type {
	display: none;
}
.header.scroll .header__logo span:first-of-type {
	display: none;
}
.header.scroll .header__logo span:last-of-type {
	display: block;
}
/* header nav --------------------------------------- */



/* =====================================================
* footer
* =================================================== */
.footer {
	padding-top: 145px;
	background: linear-gradient(265deg, var(--color-pi) 6.33%, var(--color-pr) 97.56%);
	font-size: 0.875rem;
	color: var(--color-wh);
}
.footer a {
	color: var(--color-wh);
}
/* footer top --------------------------------------- */
.footer__top {
	margin-bottom: 65px;
}
.footer__top p {
	padding-left: 5px;
	line-height: 1.86;
}
/* footer info -------------------------------------- */
.footer__info {
	min-width: 317px;
}
.footer__logo {
	width: 100%;
	margin-bottom: 35px;
	display: block;
}
.footer__info img {
	height: 38px;
	max-width: unset;
}
.footer__logo span {
	font-size: 21px;
}
.footer__address {
	margin-bottom: 20px;
}
/* footer right ------------------------------------- */
.footer__right {
	min-width: 40%;
	width: 40%;
}
.footer__right .sns {
	display: flex;
	align-items: center;
}
.footer__nav {
	display: flex;
	width: 100%;
	margin-bottom: 50px;
}
.footer__nav ul {
	width: 100%;
}
.footer__nav ul li {
	position: relative;
	padding-left: 17px;
	margin-bottom: 20px;
}
.footer__nav ul li::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 8px;
	height: 1px;
	background: var(--color-wh);
}
/* footer bottom ------------------------------------ */
.footer__btm {
	position: relative;
	padding: 47px 0 48px;
	max-width: 1200px;
	margin: 0 auto;
}
.footer__btm::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--color-wh);
	opacity: 0.2;
}
.footer__btm-nav {
	font-size: 0.75rem;
}
.footer__btm-nav li:first-of-type {
	position: relative;
	margin-right: 2em;
}
.footer__btm-nav li:first-of-type::after {
	content: "/";
	position: absolute;
	top: 0;
	right: -1.25em;
}
.footer__btm small {
	font-size: 0.75rem;
}

/* =====================================================
* button
* =================================================== */
.btn a {
	color: #fff;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 226px;
	padding: 12px 20px 12px 5px;
	margin-left: auto;
	font-size: clamp(0.875rem, 0.82rem + 0.22vw, 1rem);
	letter-spacing: 0;
	color: var(--color-wh);
	background: var(--color-dpi-2);
	border-radius: 5px;
	box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
	font-weight: 600;
}
.btn a::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 7.6%;
	transform: translateY(-50%);
	width: 15px;
	height: 15px;
	background-image: url(../images/btn_arrow_1.png);
	background-size: contain;
}
.btn.center a {
	margin: 2em auto 1em;
}

/* =====================================================
* sns
* =================================================== */
.sns a {
	display: flex;
	margin-right: 26px;
}
.sns a.sns_x {
	width: 16px;
}
.sns a.sns_instagram {
	width: 20px;
}
.sns a.sns_youtube {
	width: 18px;
}
.sns a.sns_facebook {
	width: 18px;
}

/* CUSTOM */
#page-top {
	position: fixed;
	bottom: 90px;
	right: 46px;
	font-size: 80%;
	z-index: 1000;
	width: fit-content;
	height: fit-content;
}
#page-top a {
	display: block;
	padding: 0.3em;
}
#page-top img {
	width: 10.8px;
}
.pagetop-footer {
	display: none;
}
#page-top.show-footer .pagetop-normal {
	display: none;
}
#page-top.show-footer .pagetop-footer {
	display: inline;
}
/*
#page-top a {
position: absolute;
background: linear-gradient(265deg, var(--color-pi) 6.33%, var(--color-pr) 97.56%);
display: flex!important;
width: 50px;
height: 50px;
justify-content: center;
align-items: center;
border-radius: 0;
cursor: pointer;
transform: rotate(270deg);
border-radius: 100%;
}
p#page-top a:before {
content: "";
opacity: 1;
width: 15px;
height: 15px;
content: "";
display: inline-block;
vertical-align: middle;
background: no-repeat center/contain;
background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210px%22%20height%3D%2213px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M9.488%2C6.130%20C9.925%2C6.440%2010.31%2C7.51%209.725%2C7.494%20C9.660%2C7.587%209.580%2C7.668%209.488%2C7.734%20L2.481%2C12.709%20C2.44%2C13.19%201.442%2C12.911%201.137%2C12.468%20C1.23%2C12.303%200.962%2C12.106%200.963%2C11.905%20L0.963%2C1.958%20C0.962%2C1.418%201.394%2C0.979%201.927%2C0.978%20C2.125%2C0.978%202.319%2C1.39%202.481%2C1.154%20L9.488%2C6.130%20Z%22%2F%3E%3C%2Fsvg%3E);
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
*/
/* SNS */
.sns_floating {
	position: fixed;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 100;
}
.sns_floating a {
	display: block;
	margin: 0.5em 0;
}
.sns_floating img {
	height: 27px;
}

.blog_category {
	background: linear-gradient(265deg, var(--color-pi) 6.33%, var(--color-pr) 97.56%);
}
.news_category {
	background: linear-gradient(265deg, var(--color-pi) 6.33%, var(--color-pr) 97.56%);
	padding: 0.1em 0.5em;
}
.news__date {
	margin-right: 15px;
	font-size: 15px;
}
.button {
	font-family: "Outfit", sans-serif;
	font-weight: 500;
	background: #333333;
	color: #fff;
	display: block;
	width: fit-content;
	font-size: 15px;
	padding: 0.8em 4em;
}
.mv {
	padding: 100px 0 0;
}
.mv__text {
	margin: 0 auto 50px;
	position: relative;
}
.mv__inner {
	max-width: 1340px;
}
.mv__headline {
	font-size: 165px;
	font-weight: 100;
	line-height: 1;
	font-family: "Outfit", sans-serif;
	margin: 50px 0 0;
	text-align: left;
}
.mv__headline span {
	white-space: nowrap;
}
.focus-in-contract--center {
	-webkit-animation: focus-in-contract--center 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: focus-in-contract--center 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes focus-in-contract--center {
	0% {
		letter-spacing: 1em;
		-webkit-filter: blur(12px);
		filter: blur(12px);
		opacity: 0;
	}
	100% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
	}
}
@keyframes focus-in-contract--center {
	0% {
		letter-spacing: 1em;
		-webkit-filter: blur(12px);
		filter: blur(12px);
		opacity: 0;
	}
	100% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
	}
}
.focus-in-contract--1 {
	-webkit-animation: focus-in-contract 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: focus-in-contract 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.focus-in-contract--2 {
	-webkit-animation: focus-in-contract 1.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: focus-in-contract 1.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.focus-in-contract--3 {
	-webkit-animation: focus-in-contract 2.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: focus-in-contract 2.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes focus-in-contract {
	0% {
		letter-spacing: 1em;
		-webkit-filter: blur(12px);
		filter: blur(12px);
		opacity: 0;
	}
	100% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
	}
}
@keyframes focus-in-contract {
	0% {
		letter-spacing: 1em;
		-webkit-filter: blur(12px);
		filter: blur(12px);
		opacity: 0;
	}
	100% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
	}
}
.text-focus-in--1 {
	-webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) 2s both;
	animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) 2s both;
}
.text-focus-in--2{
	-webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) 2.5s both;
	animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) 2.5s both;
}
@-webkit-keyframes text-focus-in {
	0% {
		-webkit-filter: blur(12px);
		filter: blur(12px);
		opacity: 0;
	}
	100% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
	}
}
@keyframes text-focus-in {
	0% {
		-webkit-filter: blur(12px);
		filter: blur(12px);
		opacity: 0;
	}
	100% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
	}
}



.mv__desc {
	font-size: 15px;
	line-height: 2;
	margin-top: 1em;
	color: #333;
}
.mv__slider {
	width: 100%;
	overflow: hidden;
}
.mv__slider .swiper-slide {
	width: auto;
}

.mv__slider--img {
	width: 100%;
	position: relative;
	overflow: hidden;
	height: fit-content;
}
.mv__slider--img:before {
	content: "";
	display: block;
	padding-top: 75%;
}
.mv__slider--img img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	max-width: none;
	min-height: 100%;
	object-fit: cover;
}
.mv__slider {
	pointer-events: none;
}
.mv__slider .swiper-wrapper {
	transition-timing-function: linear !important;
}
.header__nav {
	font-family: "Outfit", sans-serif;
	font-weight: 300;
}
.header__nav ul {
	display: flex;
}
.header__nav ul {
	display: flex;
	gap: 25px;
	font-size: 15px;
	align-items: center;
	margin: 0;
}
li.header__nav--contact {
	margin-left: 5px;
}
.header__nav ul li:last-child a {
	display: flex;
	align-items: center;
	justify-content: center;
	border: solid 1px #e1e1e1;
	width: 7em;
	height: 7em;
	border-radius: 50%;
}
.mv__desc {
	font-size: 13px;
	line-height: 2;
	margin-top: 1em;
	color: #333;
	width: calc(100% - 600px);
	margin-left: 600px;
	margin-top: -7em;
}
.mv__desc img {
	margin-bottom: 15px;
}

.tp_about {
	position: relative;
	padding: 120px 0;
	background: #fff;
	overflow: hidden;
}
.tp_about__bgtext__wrap {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	width: 100%;
	pointer-events: none;
	height: 200px;
}
.tp_about__bgtext {
	display: flex;
	white-space: nowrap;
	font-size: 200px;
	font-weight: 200;
	color: rgba(0, 0, 0, 0.05);
	line-height: 1;
}
.tp_about__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 60px;
	position: relative;
	z-index: 2;
}
.tp_about__images {
	flex: 1;
	position: relative;
}
.tp_about__img--top {
	margin-bottom: 20px;
}
.tp_about__img img {
	width: 100%;
	border-radius: 8px;
}
.tp_about__content {
	flex: 1;
}
.tp_about__title {
	font-size: 13px;
	letter-spacing: 0.1em;
	margin-bottom: 1em;
	font-weight: bold;
}
.tp_about__subtitle {
	font-size: 28px;
	font-weight: bold;
	line-height: 1.6;
	margin-bottom: 20px;
}
.tp_about__text {
	font-size: 15px;
	line-height: 2;
	margin-bottom: 50px;
}
.tp_about__img {
	width: 100%;
	position: relative;
	overflow: hidden;
	height: fit-content;
}
.tp_about__img:before {
	content: "";
	display: block;
	padding-top: 120%;
}
.tp_about__img img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	max-width: none;
	min-height: 100%;
	object-fit: cover;
	border-radius: 0;
}
.tp_about__img.tp_about__img--top {
	width: 75%;
}
.tp_about__img--bottom {
	width: 50%;
	margin-top: -150px;
	margin-left: 50%;
}
.tp_about__subtitle {
	font-size: 32px;
	font-weight: 500;
	letter-spacing: 3px;
}
.object-fit-cover {
	object-fit: cover;
}
.overlay {
	background-color: rgba(0, 0, 0, 0.3); /* 黒の透かし */
	z-index: 1;
}
.item-title {
	z-index: 2;
}
.about_service {
    opacity: 0.6;
}

/* 遅延アニメーション */
.delay01 { transition-delay: 0.2s; }
.delay02 { transition-delay: 0.4s; }
.delay03 { transition-delay: 0.6s; }
.delay04 { transition-delay: 0.8s; }

.scroll_animation__bottom {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
}
.scroll_animation__bottom.is-show {
	opacity: 1;
	transform: translateY(0);
}

.scroll_animation__fade {
	opacity: 0;
	transition: opacity 1s ease;
}
.scroll_animation__fade.is-show {
	opacity: 1;
}

/* 左から */
.scroll_animation__left {
	opacity: 0;
	transform: translateX(-50px);
	transition: all 0.8s ease;
}
.scroll_animation__left.is-show {
	opacity: 1;
	transform: translateX(0);
}

/* 右から */
.scroll_animation__right {
	opacity: 0;
	transform: translateX(50px);
	transition: all 0.8s ease;
}
.scroll_animation__right.is-show {
	opacity: 1;
	transform: translateX(0);
}

/* ズーム */
.scroll_animation__zoom {
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.8s ease;
}
.scroll_animation__zoom.is-show {
	opacity: 1;
	transform: scale(1);
}
.tp_works {
	position: relative;
	padding: 120px 0 0;
	background: #f8f8f8;
	overflow: hidden;
}
.tp_works__bgtext {
	position: absolute;
	bottom: 0;
	right: 20px;
	font-size: 140px;
	font-weight: 700;
	color: #333333;
	white-space: nowrap;
	pointer-events: none;
	line-height: 1;
}
.tp_works__head {
	text-align: left;
	margin-bottom: 80px;
	position: relative;
}
.tp_works__title {
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 0.1em;
	margin-bottom: 1em;
}
.tp_works__subtitle {
	font-size: 28px;
	font-weight: bold;
	line-height: 1.6;
	margin-bottom: 20px;
}
.tp_works__text {
	font-size: 15px;
	line-height: 2;
	margin-bottom: 50px;
}
.works__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	justify-content: space-between;
}
.works__item {
    width: 50%;
    position: relative;
    display: block;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.works__thumb {
	width: 100%;
	position: relative;
	overflow: hidden;
	height: fit-content;
}
.works__thumb:before {
	content: "";
	display: block;
	padding-top: 65%;
}
.works__thumb img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	max-width: none;
	min-height: 100%;
	object-fit: cover;
	transition:all 0.5s ease;
}
a:hover .works__thumb img {
	transform: translate(-50%, -50%) scale(1.1);
}
.works__label {
	position: absolute;
	bottom: 12px;
	left: 16px;
	padding: 4px 12px;
	font-size: 13px;
	font-weight: bold;
	color: #fff;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 4px;
	z-index: 2;
}
.tp_client {
	background: #f8f8f8;
	padding: 120px 0;
}
.tp_client__head {
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.tp_client__text {
	flex: 1;
	min-width: 300px;
}
.tp_client__title {
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 0.1em;
	margin-bottom: 1em;
}
.tp_client__subtitle {
	font-size: 28px;
	font-weight: bold;
	line-height: 1.6;
}
.tp_client__btn {
	min-width: 180px;
	text-align: right;
}
.tp_client__logos {
	background: #fff;
	padding: 20px;
	border-radius: 10px;
}
.client__list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 30px;
	align-items: center;
	padding: 0;
	margin: 0;
}
.client__item {
	width: calc(100% / 5 - 25px);
	text-align: center;
	display: block;
	height: fit-content;
}
.client__item img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
	vertical-align: middle;
	transition: transform 0.3s ease;
}
.client__item img:hover {
	transform: scale(1.05);
}
.tp_service {
	background: #fff;
	padding: 120px 0;
}
.tp_service__head {
	margin-bottom: 80px;
}
.tp_service__title {
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 0.1em;
	margin-bottom: 1em;
}
.tp_service__subtitle {
	font-size: 28px;
	font-weight: bold;
	line-height: 1.6;
	margin-bottom: 20px;
}
.tp_service__lead {
	font-size: 15px;
	line-height: 2;
}
.tp_service__blocks {
	display: flex;
	flex-direction: column;
	gap: 80px;
}
.tp_service__block {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.tp_service__img {
	width: 30%;
	position: relative;
	height: fit-content;
}
.tp_service__block:nth-child(2n) .tp_service__img {
	order: 1;
}
.tp_service__img:before {
	content: "";
	display: block;
	padding-top: 100%;
}
.tp_service__img:after {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	background: #f0f0f0;
	top: 30px;
	left: 30px;
	z-index: -1;
}
.tp_service__img img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	max-width: none;
	min-height: 100%;
	object-fit: cover;
}
.tp_service__content {
	width: 65%;
}
.tp_service__number {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}
.tp_service__block-title {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 15px;
}
.tp_service__text {
	font-size: 15px;
	line-height: 2.3;
	margin-bottom: 40px;
}
.tp_service__more {
	font-size: 14px;
	color: #000;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: bold;
}
.tp_service__more .arrow {
	transform: translateY(1px);
	font-size: 18px;
}
.tp_service__content--ttl h4 {
	font-size: 24px;
	margin: 0;
}
.tp_service__content--ttl h4 span {
	font-family: "Outfit", sans-serif;
	font-size: 40px;
	font-weight: 400;
	color: #878787;
}
.tp_service__content--button {
	text-align: right;
}
.tp_service__content--button {
	text-align: right;
	font-family: "Outfit", sans-serif;
}
.tp_service__content--button a {
	font-weight: 400;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.tp_service__content--button a img {
	margin-top: 0.5em;
	margin-right: 0.5em;
	height: 1em;
}
.tp_service__btn a {
	margin: 80px auto 0;
}
.order1 {
	order: 1;
}
.order2 {
	order: 2;
}
.tp_company {
	padding: 80px 0 120px;
	position: relative;
}
.tp_company__inner {
	position: relative;
	z-index: 2;
}
.tp_company__head {
	margin-bottom: 40px;
}
.tp_company__title {
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 0.1em;
	margin-bottom: 1em;
}
.tp_company__subtitle {
	font-size: 28px;
	font-weight: bold;
	line-height: 1.6;
	margin-bottom: 20px;
}
.tp_company__text {
	font-size: 15px;
	line-height: 2;
	margin-bottom: 50px;
}
.tp_company__button {
	margin-top: 20px;
}
.tp_company__image {
	width: 100%;
	overflow: hidden;
	position: relative;
	margin-top: 50px;
}
.tp_company__image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.tp_company:after {
	content: "";
	width: 100%;
	height: 450px;
	background: #333333;
	position: absolute;
	bottom: 0;
}
.tp_company__image:before {
	padding-top: 45%;
}
.blog__archive--content {
	margin-bottom: 35px;
	box-shadow: 0 0 10px #d9d9d9;
}
.blog__archive--ttl {
	font-size: 15px;
	margin: 0em 0 2em;
	font-weight: 500;
}
.blog_category {
	background: #333;
}
.blog__archive--description {
	padding: 10px 20px;
}
.blog__archive--date {
	font-weight: 300;
	font-family: "Outfit", sans-serif;
}
.tp_message {
	padding: 200px 0;
}
.tp_message__inner .tp_company__head {
	margin-bottom: 0px;
	width: 40%;
	margin-left: 5%;
}
.tp_message__image {
	width: 40%;
	position: relative;
	height: fit-content;
}
.tp_message__image:before {
	content: "";
	display: block;
	padding-top: 120%;
}
.tp_message__image img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	max-width: none;
	min-height: 100%;
	object-fit: cover;
}
.tp_message__image:after {
	content: "";
	width: 100%;
	height: 130%;
	display: block;
	position: absolute;
	background: #f0f0f0;
	top: -15%;
	left: -25%;
	z-index: -1;
}
.tp_message__inner {
	justify-content: center;
}
.footer {
	background: #333;
	padding-top: 120px;
}
/* LOW PAGES */
.website-009--low_header {
	padding: 140px 0 0;
}
.website-009--low_header__post {
	padding: 100px 0 0;
}
.website-009--mv__inner .mv__desc {
	margin-top: 30px;
	width: 100%;
	margin: 0 0 0 auto;
	max-width: 600px;
}
.website-009--mv__inner {
	padding: 0 20px;
	max-width: 1240px;
}
.website-009--low_header--img {
	width: 100vw;
	/*margin-left: 100px;*/
	position: relative;
	overflow: hidden;
	height: fit-content;
}
.website-009--low_header--img:before {
	content: "";
	display: block;
	padding-top: 40%;
}
.website-009--low_header--img img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	max-width: none;
	min-height: 100%;
	object-fit: cover;
}
.low_page__title {
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 0.1em;
	margin-bottom: 0.5em;
}
.low_page__subtitle {
	font-size: 28px;
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 40px;
	margin-top: 0;
}
.mv__headline.center {
	margin: 50px auto 0;
}
.low_page__contact--description {
	margin: 0 0em 3em;
	font-size: 14px;
	line-height: 2;
}
.low_post__maincontent h4:before {
	background: #333;
}
.low_post__maincontent p a {
	color: #333;
	text-decoration: underline;
	text-underline-offset: 6px;
}
.contact_form__content--submit input[type=submit] {
	background: #333;
}
.page_content {
	margin: 80px auto 120px;
}
.low_post__maincontent h2:before {
	background: #333;
}
.website-009--low_header__post .mv__headline {
	font-size: 100px;
}
.website-009--low_header__post .mv__text {
	margin: 0 auto -20px;
}
.taxonomy__archive a.active {
	background: #333;
}
.taxonomy__archive a:hover {
	background: #333;
}
.taxonomy__archive a {
	border: solid 1px #333;
	color: #333;
	width: 19.2%;
}
.taxonomy__archive a:nth-child(5n) {
	margin-right: 0;
}
.sidebar__content h3:before {
	background: #333;
}
.btn a {
	background: #333;
}
.blog__archive--img:before {
	padding-top: 55%;
}
.sidebar {
	background: #fafafa;
}
.low_post__backbtn.center .back__button {
	margin: 0 auto;
}
.contact_form__content--radio label {
	justify-content: left;
	gap: 8px;
	padding: 0;
	width: fit-content;
}
.contact_form__content--radio {
	display: flex;
	gap: 1.5em;
	flex-wrap: wrap;
}
.company__intro {
	margin: 60px auto;
	font-weight: 400;
	text-align: center;
}
.company__intro--content {
	margin-bottom: 3em;
}
.company__intro--content h2 {
	font-weight: bold;
	margin: 0 0 0.6em;
	font-size: 20px;
}
.company__intro--content p {
	margin: 0;
	font-size: 14px;
}
.company__intro--content p span {
	display: block;
	font-size: 16px;
	padding-left: 0.8em;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 2.5em;
	position: relative;
}
.company__intro--content p span:after {
	content: "";
	position: absolute;
	width: 3em;
	height: 1px;
	display: block;
	background: #000;
	left: 50%;
	transform: translateX(-50%);
	bottom: -1.5em;
}
.company__message--content {
	width: 60%;
	text-align: left;
	padding-right: 3em;
	font-size: 14px;
}
.company__message--img {
	width: 40%;
	position: relative;
	overflow: hidden;
	height: fit-content;
}
.company__message--img:before {
	content: "";
	display: block;
	padding-top: 120%;
}
.company__message--img img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	max-width: none;
	min-height: 100%;
	object-fit: cover;
}
.company__message--content span {
	font-weight: 600;
	font-size: 1.1em;
}