@charset "utf-8";
:root {
	--c-primary: #ff3a3a;
	--c-l-gray: #ededed;
	--c-m-gray: #c6c6c6;
	--c-gray: #6e6e6e;
	--c-l-gray-grad: linear-gradient(180deg, rgba(237, 237, 237, 1) 0%, rgba(237, 237, 237, 0) 100%);
	--c-bk: #000;
	--c-white: #fff;
	--c-text: #222;
	--c-bg: #fff;
	--fw-r: 400;
	--fw-md: 500;
	--fw-sb: 600;
	--fw-b: 600;
	--font-base: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	--font-serif: "Noto Serif JP", serif;
	--font-en: "Poppins", sans-serif;
	--transition-c: all ease 0.33s;
	--transition-img: all ease-in-out 0.4s;
}

/* --- reset --- */
*,
::before,
::after {
	box-sizing: border-box;
	border-width: 0;
	border-style: solid;
}
html {
	font-size: 16px;
	line-height: 1;
	tab-size: 4;
	color: var(--c-text);
	font-family: var(--font-base);
	font-feature-settings: normal;
	font-variation-settings: normal;
	letter-spacing: 0em;
	font-weight: var(--fw-r);
	scroll-behavior: smooth;
	background-color: var(--c-bg);
}

body {
	margin: 0;
	line-height: inherit;
}

hr {
	height: 0;
	color: inherit;
	border-top-width: 1px;
}

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

a {
	color: inherit;
	text-decoration: inherit;
	user-select: none;
}
label {
	user-select: none;
}

b,
strong {
	font-weight: bolder;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

table {
	text-indent: 0;
	border-color: inherit;
	border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
	margin: 0;
	padding: 0;
}

button,
select {
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	background-color: transparent;
	background-image: none;
}

:-moz-focusring {
	outline: auto;
}

:-moz-ui-invalid {
	box-shadow: none;
}

th,
td {
	width: 41%;
	text-align: left;
	font-weight: inherit;
}
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
	margin: 0;
}

fieldset {
	margin: 0;
	padding: 0;
}

legend {
	padding: 0;
}

ol,
ul,
menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

textarea {
	resize: vertical;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	opacity: 1;
	color: var(--c-dark);
}

input::placeholder,
textarea::placeholder {
	opacity: 1;
	color: var(--c-dark);
}

button,
[role="button"] {
	cursor: pointer;
}

:disabled {
	cursor: default;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
	display: block;
	vertical-align: middle;
}

img,
video {
	max-width: 100%;
	height: auto;
}
[x-cloak] {
	display: none !important;
}
.not-scroll {
	touch-action: none;
	overflow: hidden;
}
.no-scroll-bar::-webkit-scrollbar {
	display: none;
}
::-webkit-scrollbar {
	width: 0px;
	height: 0px;
}

::-webkit-scrollbar-thumb {
	background-color: rgba(197, 197, 197, 0.55);
	border-radius: 5px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar-track {
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

br.sp {
	display: none;
}
@media screen and (max-width: 999px) {
	br.pc {
		display: none;
	}
	br.sp {
		display: inline;
	}
}

/* ------------------------------------------------------------
common layout
---------------------------------------------------------------*/
.c-sec {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
	z-index: 0;
	padding-inline: 14.2%;
}
.c-sec.--pl {
	padding-inline: 14.2% 0;
}

@media screen and (max-width: 1200px) {
	.c-sec {
		padding-inline: 8.3%;
	}
	.c-sec.--pl {
		padding-inline: 8.3% 0;
	}
}

@media screen and (max-width: 999px) {
	.c-sec {
		width: 100%;
		padding-inline: 3.75%;
	}
	.c-sec.--pl {
		padding-inline: 0;
	}
}

.sec-inner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}

.c-sec.--pl > .sec-inner {
	max-width: none;
	margin: 0;
}

@media screen and (max-width: 999px) {
	.c-sec.--pl > .sec-inner {
		max-width: 500px;
		margin: 0 auto;
	}
}

.cont-col {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	justify-content: flex-start;
}

main {
	width: 100%;
}
/* ------------------------------------------------------------
image box
---------------------------------------------------------------*/
.img-box {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: relative;
}
.img-box > * {
	width: 100%;
	height: 100%;
}
.img-box img {
	width: 100%;
	height: 100%;
}
.img-box.--contain img {
	object-fit: contain;
}
.img-box.--cover img {
	object-fit: cover;
}

/* ------------------------------------------------------------
Font
---------------------------------------------------------------*/
.--en {
	font-family: var(--font-en);
}
.--serif {
	font-family: var(--font-serif);
}

/* ------------------------------------------------------------
title heading
---------------------------------------------------------------*/
.ttb-flex {
	width: 100%;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}
.ttl-box {
	display: flex;
	gap: 20px;
	position: relative;
	align-items: flex-start;
	flex-flow: column;
}
.ttl-box.--primary {
	color: var(--c-primary);
}
.ttl-box.--white {
	color: var(--c-white);
}

.ttl-box h2 {
	font-size: 120px;
	font-weight: var(--fw-sb);
}

.ttl-box h3 {
	font-size: 48px;
	font-weight: var(--fw-b);
	line-height: calc(80 / 48);
}

.icon-sub-ttl {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 23px;
	font-weight: var(--fw-md);
}
.icon-sub-ttl::before {
	content: "";
	position: relative;
	width: 30px;
	height: auto;
	flex-shrink: 0;
	aspect-ratio: 1 / 1;
	background-image: url("../images/totaldesign/logo-mark-red-sm.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

@media screen and (max-width: 1200px) {
	.ttl-box h2 {
		font-size: 90px;
	}
	.ttl-box h3 {
		font-size: 31px;
	}
	.icon-sub-ttl {
		font-size: 18px;
	}
	.icon-sub-ttl::before {
		width: 28px;
	}
}

@media screen and (max-width: 999px) {
	.ttl-box h2 {
		font-size: 63px;
	}
	.icon-sub-ttl {
		font-size: 16px;
	}
}

/* ------------------------------------------------------------
Text
---------------------------------------------------------------*/

.c-txt {
	font-size: 16px;
	line-height: calc(38.4 / 16);
}
.c-txt strong {
	font-weight: var(--fw-b);
}
.c-txt.--wh {
	color: var(--c-white);
}
.c-txt.--primary {
	color: var(--c-primary);
}
.c-txt.--center {
	text-align: center;
}

@media screen and (max-width: 999px) {
	.c-txt {
		text-align: justify;
	}
}

/* ------------------------------------------------------------
Badge
---------------------------------------------------------------*/

.c-badge {
	width: auto;
	flex-shrink: 0;
	font-size: 12px;
	font-weight: var(--fw-sb);
	padding-block: 3px;
	padding-inline: 4px;
}
.c-badge.--primary {
	background: var(--c-primary);
	color: var(--c-white);
}
.c-badge.--gray {
	background: var(--c-gray);
	color: var(--c-white);
}

/* ------------------------------------------------------------
header
---------------------------------------------------------------*/
header {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	margin-inline: auto;
	padding-top: 68px;
	padding-inline: 5.42%;
}
.header-logo {
	width: 203px;
	aspect-ratio: 203 / 50;
	transition: var(--transition-c);
}
@media (hover: hover) {
	.header-logo:hover {
		opacity: 0.6;
	}
}

@media screen and (max-width: 999px) {
	header {
		padding-top: 42px;
		padding-inline: 16px;
	}
	.header-logo {
		width: 149px;
	}
}

/* ------------------------------------------------------------
CTA
---------------------------------------------------------------*/
.sec-contact-bnr {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
	z-index: 0;
}
.contact-bnr {
	width: 100%;
	height: auto;
	padding-block: 80px;
	padding-inline: 14.2%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 50px;
	margin-inline: auto;
	background: var(--c-bk);
	color: var(--c-white);
	transition: var(--transition-c);
}

@media (hover: hover) {
	.contact-bnr:hover {
		background: var(--c-primary);
	}
}

.contact-bnr::after {
	content: "";
	width: 88px;
	height: auto;
	aspect-ratio: 1 / 1;
	background-image: url("../images/totaldesign/icon-contact-arrow.svg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	flex-shrink: 0;
}
.contact-bnr-txt-box {
	width: auto;
	gap: 40px;
}
.contact-bnr-txt-box > p {
	width: 100%;
	font-size: 64px;
	font-weight: var(--fw-b);
}
.contact-bnr-txt-box > span {
	width: 100%;
	font-size: 28px;
	font-weight: var(--fw-md);
}

@media screen and (max-width: 999px) {
	.contact-bnr {
		padding-block: 40px;
		padding-inline: 3.75%;
		gap: 25px;
	}
	.contact-bnr::after {
		width: 48px;
	}
	.contact-bnr-txt-box {
		gap: 20px;
	}
	.contact-bnr-txt-box > p {
		font-size: 50px;
	}
	.contact-bnr-txt-box > span {
		font-size: 22px;
		line-height: 1.8;
	}
}
/* ------------------------------------------------------------
footer
---------------------------------------------------------------*/
.footer {
	padding-inline: 0;
}
.footer .sec-inner {
	max-width: none;
}
.footer-cont-wrapper {
	width: 100%;
	padding-inline: 6%;
	padding-block: 80px;
}
.footer-cont {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 40px;
}

.footer-cont > a {
	font-size: 32px;
	letter-spacing: 0.08em;
	line-height: 1;
	display: flex;
	align-items: center;
	gap: 24px;
	position: relative;
}
.footer-cont > a::after {
	content: "";
	background-image: url(../images/totaldesign/icon-arrow-right-wh.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 21px;
	height: auto;
	aspect-ratio: 1 / 1;
	position: relative;
	top: 4px;
}

.footer-nav-area {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 20px;
}
.footer-nav-cont {
	max-width: 240px;
	width: 100%;
	flex-flow: column;
	display: flex;
	gap: 40px;
}
.fnc-item {
	width: 100%;
	display: flex;
	flex-flow: column;
	min-height: 163px;
	gap: 16px;
}
.fnc-item > a {
	width: 100%;
	font-size: 24px;
	font-weight: var(--fw-sb);
	color: var(--c-primary);
	line-height: 1;
	letter-spacing: 0.08em;
	white-space: nowrap;
	transition: var(--transition-c);
}

@media (hover: hover) {
	.fnc-item > a:hover {
		opacity: 0.6;
	}
}

.fnc-item > a:not(:first-of-type) {
	margin-top: 14px;
}

.fnc-links {
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 15px;
}
ul.fnc-links > li {
	font-size: 15px;
}
ul.fnc-links > li a {
	transition: var(--transition-c);
}

@media (hover: hover) {
	ul.fnc-links > li a:hover {
		color: var(--c-primary);
	}
}

.footer-bottom {
	width: 100%;
	padding-block: 31px;
	padding-inline: 6%;
	background: var(--c-primary);
}
.footer-bottom-inner {
	width: 100%;
	display: flex;
	justify-content: space-between;
	max-width: 1000px;
	margin: 0 auto;
	align-items: center;
}
.footer-logo {
	width: 195px;
	height: auto;
	aspect-ratio: 195 / 38;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: var(--transition-c);
}

@media (hover: hover) {
	.footer-logo:hover {
		opacity: 0.6;
	}
}
.footer-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.footer-sns {
	width: auto;
	display: flex;
	justify-content: flex-end;
	gap: 40px;
	align-items: center;
}
.footer-sns > a {
	width: 36px;
	height: auto;
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	transition: var(--transition-c);
}

@media (hover: hover) {
	.footer-sns > a:hover {
		opacity: 0.6;
	}
}

.footer-sns > a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media screen and (max-width: 999px) {
	.footer-cont-wrapper {
		padding-block: 60px;
	}
	.footer-cont {
		gap: 32px;
	}

	.footer-cont > a {
		font-size: 24px;
		gap: 16px;
	}
	.footer-cont > a::after {
		width: 16px;
		top: 1px;
	}
	.footer-nav-area {
		gap: 32px;
		flex-flow: column;
	}
	.footer-nav-cont {
		max-width: none;
		flex-flow: unset;
		align-items: unset;
		justify-content: unset;
		gap: 20px;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.fnc-item {
		min-height: 0;
		gap: 20px;
	}
	.fnc-item > a {
		font-size: 18px;
	}
	.fnc-item > a:not(:first-of-type) {
		margin-top: 0px;
		width: 100%;
	}
	.footer-nav-cont:last-of-type {
		grid-template-columns: repeat(1, 1fr);
	}
	.footer-nav-cont:last-of-type .fnc-item {
		align-items: unset;
		justify-content: unset;
		gap: 20px;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-nav-cont:last-of-type .fnc-item {
		align-items: unset;
		justify-content: unset;
		gap: 20px;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	ul.fnc-links > li {
		font-size: 13px;
	}

	.footer-bottom {
		padding-block: 32px;
	}
	.footer-logo {
		width: 144px;
		aspect-ratio: 144 / 28;
	}
	.footer-sns {
		gap: 16px;
	}
	.footer-sns > a {
		width: 23px;
	}
}

/* ------------------------------------------------------------
MV
---------------------------------------------------------------*/
.sec-mv {
	width: 100%;
	height: 100svh;
	min-height: 800px;
	position: relative;
	overflow: hidden;
	z-index: 0;
	background-image: url("../images/totaldesign/mv-pc.webp");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.mv-txt {
	position: absolute;
	left: 4.7%;
	bottom: 93.3px;
	z-index: 10;
	width: 54.6428%;
	max-width: 765px;
	aspect-ratio: 765 / 432;
}

@media screen and (max-width: 768px) {
	.sec-mv {
		background-image: url("../images/totaldesign/mv-sp.webp");
		min-height: 667px;
		max-height: 932px;
	}
	.mv-txt {
		left: 16px;
		bottom: 71px;
		width: 85%;
		max-width: 340px;
		aspect-ratio: 340 / 220;
	}
}

/* ------------------------------------------------------------
Professional
---------------------------------------------------------------*/
.professional-cont {
	gap: 64px;
	padding-block: 135px 0;
}
.professional-cont .ttl-box {
	position: relative;
	z-index: 10;
}
.professional-main-txt-box .ttl-box h3 {
	white-space: nowrap;
}
.professional-main-box {
	width: 100%;
	display: flex;
	align-items: flex-start;
	gap: 0;
	justify-content: space-between;
}
.professional-main-txt-box {
	gap: 38px;
	position: relative;
	z-index: 10;
	padding-bottom: 173px;
}
.professional-main-txt-box::before {
	content: "";
	position: absolute;
	z-index: 0;
	left: -160px;
	bottom: 0;
	width: 72%;
	max-width: 413px;
	height: auto;
	aspect-ratio: 413 / 440;
	background-image: url("../images/totaldesign/logo-mark-gray.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
.professional-main-txt-box > .c-txt {
	padding-right: 80px;
	position: relative;
	z-index: 10;
}

.layered-img-box {
	width: 53.5%;
	flex-shrink: 0;
	position: relative;
	height: auto;
	overflow: hidden;
}
.sec-professional .layered-img-box {
	aspect-ratio: 642 / 726;
}
.sec-litu .layered-img-box {
	aspect-ratio: 642 / 737;
}

.img-layered-1 {
	position: absolute;
	width: 60.2%;
	z-index: 20;
	top: 13.6%;
	left: 0;
	aspect-ratio: 387/561;
}

.img-layered-2 {
	position: absolute;
	width: 79.4%;
	z-index: 0;
	top: 0;
	right: 0;
	aspect-ratio: 510 / 606;
	background: var(--c-bk);
}
.img-layered-2 > img {
	opacity: 0.3;
}

.txt-layered {
	position: absolute;
	z-index: 30;
	right: 10px;
	bottom: 0;
}

.sec-professional .txt-layered {
	width: 76.9%;
	aspect-ratio: 494 / 169;
}
.sec-litu .txt-layered {
	width: 98.28%;
	aspect-ratio: 631 / 180;
}

@media screen and (max-width: 999px) {
	.professional-cont {
		gap: 36px;
		padding-block: 65px 0;
	}
	.professional-cont > .ttl-box {
		align-items: center;
		text-align: center;
		width: 100%;
	}
	.professional-cont > .ttl-box.ttl-box h2 {
		font-size: 60px;
	}
	.professional-main-box {
		justify-content: flex-end;
		flex-flow: column-reverse;
	}
	.professional-main-box .ttl-box h3 {
		text-align: left;
		width: 100%;
		font-size: 28px;
	}
	.professional-main-txt-box {
		padding-inline: 3.75%;
		padding-bottom: 68px;
	}
	.professional-main-txt-box::before {
		left: auto;
		right: -30px;
		width: 100%;
	}
	.professional-main-txt-box > .c-txt {
		padding-right: 0px;
	}
	.layered-img-box {
		width: 100%;
	}
}

@media screen and (max-width: 500px) {
	.layered-img-box {
		width: calc(100% - 15px);
		margin-left: auto;
	}
}

/* ------------------------------------------------------------
genre
---------------------------------------------------------------*/
.sec-genre::before {
	content: "";
	background: var(--c-l-gray);
	position: absolute;
	z-index: 0;
	left: 0;
	bottom: calc(44.5% + 154px);
	width: 100%;
	height: 167px;
	clip-path: polygon(0 100%, 100% 0%, 100% 100%, 0% 100%);
}
.sec-genre::after {
	content: "";
	background: var(--c-l-gray-grad);
	position: absolute;
	z-index: 0;
	left: 0;
	bottom: 155px;
	width: 100%;
	height: 44.5%;
}
.genre-cont {
	position: relative;
	padding-block: 200px 155px;
}
.genre-cont > .ttl-box {
	position: absolute;
	top: 100px;
	left: 0;
	z-index: 10;
}
.genre-list-grid {
	width: 100%;
	position: relative;
	z-index: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4.6%;
}
.genre-list-group {
	gap: 80px;
}
.genre-list-group:nth-of-type(1) {
	padding-top: 200px;
}
.genre-list-group:nth-of-type(2) {
	padding-top: 100px;
}

.genre-list-item {
	width: 100%;
	position: relative;
}
.genre-list-item > span {
	position: absolute;
	left: -22px;
	writing-mode: vertical-rl;
	top: 0;
	font-size: 20px;
	color: var(--c-primary);
	font-weight: var(--fw-sb);
}
.img-genre {
	aspect-ratio: 303 / 269;
}
.img-genre img {
	position: relative;
	z-index: 0;
}
.img-genre-ttl {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin-inline: auto;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	background: linear-gradient(0deg, var(--c-text), transparent);
	width: 100%;
	height: 41.264%;
	color: var(--c-white);
	padding: 16px;
	font-size: 23px;
	font-weight: var(--fw-md);
	z-index: 10;
}

@media screen and (max-width: 1200px) {
	.img-genre-ttl {
		font-size: 18px;
	}
	.genre-list-item > span {
		font-size: 16px;
	}
}

@media screen and (max-width: 999px) {
	.genre-cont {
		padding-block: 50px 80px;
		gap: 35px;
	}
	.genre-cont > .ttl-box {
		position: relative;
		top: auto;
		left: auto;
	}
	.genre-list-group {
		gap: 50px;
	}
}

@media screen and (max-width: 600px) {
	.sec-genre::before {
		bottom: calc(80% - 2px);
		height: 115px;
	}
	.sec-genre::after {
		height: 80%;
		bottom: 0;
	}
	.genre-list-grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 24px;
		max-width: 500px;
		margin-inline: auto;
	}
	.genre-list-group {
		gap: 24px;
		padding-top: 0 !important;
	}
	.genre-list-item {
		padding-left: 15px;
	}
	.genre-list-item > span {
		left: -5px;
	}
}

/* ------------------------------------------------------------
Works
---------------------------------------------------------------*/
.sec-works {
	padding-inline: 0;
	background: var(--c-bk);
}
.sec-works::before {
	content: "";
	position: absolute;
	z-index: 10;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-image: url("../images/totaldesign/bg-works-pc.webp");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0.2;
}
.works-cont {
	padding-block: 86px 150px;
	gap: 50px;
	position: relative;
	z-index: 10;
}
.works-head {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
.works-slide-area {
	width: 100%;
	position: relative;
	gap: 24px;
}
.work-slider {
	width: 100%;
}

.slide-btns {
	position: absolute;
	bottom: calc(100% + 56px);
	right: 14.2%;
	width: auto;
	display: flex;
	align-items: center;
	gap: 40px;
}
.btn-slide {
	width: 53px;
	height: auto;
	aspect-ratio: 1 / 1;
	position: relative;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	cursor: pointer;
	transition: var(--transition-c);
}
@media (hover: hover) {
	.btn-slide:hover {
		opacity: 0.6;
	}
}
.btn-slide.--prev {
	background-image: url("../images/totaldesign/icon-slide-prev.svg");
}
.btn-slide.--next {
	background-image: url("../images/totaldesign/icon-slide-next.svg");
}

.work-slide-item {
	width: 100%;
	height: auto;
	aspect-ratio: 320 / 395;
	position: relative;
	overflow: hidden;
}
.work-slide-item-card {
	width: 100%;
	height: 100%;
	background: #fff;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}
.work-slide-item-card > .c-badge {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	max-width: 80%;
	line-height: 1.2;
}
.img-work-thumbnail {
	aspect-ratio: 1 / 1;
	transition: var(--transition-c);
	transform-origin: center;
}
@media (hover: hover) {
	.work-slide-item-card:hover .img-work-thumbnail {
		transform: scale(1.05);
	}
}

.work-slide-ttl-box {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 16px;
	font-size: 18px;
	font-weight: var(--fw-sb);
	line-height: 1.4;
	flex-shrink: 0;
	aspect-ratio: 320 / 75;
	min-height: 75px;
}
.work-slide-ttl-box h3 {
	width: auto;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

@media screen and (max-width: 1200px) {
	.works-head {
		padding-inline: 3.75%;
	}
	.works-cont {
		padding-block: 80px;
	}
	.slide-btns {
		right: 3.75%;
	}
}

@media screen and (max-width: 999px) {
	.sec-works::before {
		background-image: url("../images/totaldesign/bg-works-sp.webp");
	}
	.works-cont {
		gap: 35px;
	}
}
@media screen and (max-width: 600px) {
	.works-cont {
		padding-block: 80px 50px;
	}
	.slide-btns {
		right: 0;
		left: 0;
		padding-inline: 8px;
		justify-content: space-between;
		width: 100%;
		bottom: auto;
		z-index: 10;
		top: 50%;
		transform: translateY(-50%);
	}
	.btn-slide {
		background-color: rgb(0 0 0 / 60%);
		border-radius: 9999px;
	}
}

.modal-area {
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 999999;
	display: flex;
	height: 100%;
	width: 100%;
	align-items: center;
	justify-content: center;
}

.modal-inner {
	position: absolute;
	left: 0px;
	right: 0px;
	top: 50%;
	z-index: 10;
	margin: 0 auto;
	display: flex;
	height: 100%;
	width: 100%;
	transform: translateY(-50%);
	align-items: center;
	justify-content: center;
}

.modal-body {
	position: relative;
	width: 70.78%;
	max-width: 991px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-bg {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 0;
	display: flex;
	height: 100%;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #000000;
	opacity: 0.9;
}

.modal-close {
	position: absolute;
	bottom: 20px;
	right: 30px;
	width: 39px;
	height: auto;
	aspect-ratio: 1 / 1;
	cursor: pointer;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: var(--transition-base);
}
.modal-close:hover {
	opacity: 0.6;
}

.modal-contents {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-flow: column;
	gap: 30px;
}
.modal-img-wrapper {
	width: 100%;
	height: auto;
	aspect-ratio: 991 / 554;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.modal-img-wrapper > iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.modal-img-wrapper > figure {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.modal-img-wrapper > figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.modal-work-info {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 16px;
}

.modal-work-info > span {
	width: auto;
	background: var(--c-primary);
	color: var(--c-white);
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 8px 12px;
	font-size: 14px;
}
.modal-work-info > p {
	width: 100%;
	font-size: 24px;
	font-weight: var(--fw-semibold);
	color: var(--c-white);
	line-height: 1.5;
}
.modal-work-info > p br {
	display: none;
}

@media screen and (max-width: 999px) {
	.modal-body {
		width: 90%;
	}
	.modal-close {
		top: -40px;
		right: 5px;
		width: 24px;
	}
	.modal-contents {
		gap: 20px;
	}
	.modal-work-info {
		gap: 12px;
	}

	.modal-work-info > span {
		font-size: 13px;
	}
	.modal-work-info > p {
		font-size: 18px;
	}
	.modal-work-info > p br {
		display: inline;
	}
}
/* ------------------------------------------------------------
Features
---------------------------------------------------------------*/

.sec-features {
	background: #f8f8f8;
	padding-inline: 0;
}

.sec-features::before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
	aspect-ratio: 1400 / 874;
	background-image: url("../images/totaldesign/bg-feature-top-pc.webp");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sec-features::after {
	content: "";
	position: absolute;
	z-index: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: auto;
	aspect-ratio: 1400 / 874;
	background-image: url("../images/totaldesign/bg-feature-bottom-pc.webp");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
}

.features-cont {
	position: relative;
	z-index: 10;
	padding-block: 165px 108px;
	gap: 75px;
}

.features-head {
	width: 100%;
	padding-inline: 14.2%;
}

.features-head .ttl-box {
	max-width: 1000px;
	margin-inline: auto;
	width: 100%;
}

.features-contents {
	gap: 160px;
	max-width: 1720px;
	margin: 0 auto;
}
.features-contents-item {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 4.83%;
	padding-bottom: 118px;
	position: relative;
}
.features-contents-item:nth-of-type(odd) {
	padding-inline: 0 14.2%;
}
.features-contents-item:nth-of-type(even) {
	padding-inline: 14.2% 0;
	flex-flow: row-reverse;
}
.feature-bg-txt {
	position: absolute;
	z-index: 0;
	width: 100%;
	height: auto;
	bottom: 15px;
	left: 0;
	right: 0;
	margin-inline: auto;
	display: flex;
	justify-content: center;
}
.feature-bg-txt > span {
	width: 100%;
	white-space: nowrap;
	font-size: 120px;
	color: var(--c-l-gray);
	font-weight: var(--fw-md);
	position: relative;
	text-align: center;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.img-feature {
	width: 50.8%;
	aspect-ratio: 610 / 344;
	flex-shrink: 0;
	position: relative;
	z-index: 10;
}
.feature-txt-box {
	width: 100%;
	gap: 50px;
	position: relative;
	z-index: 10;
}
.feature-ttl {
	width: 100%;
	font-size: 28px;
	font-weight: var(--fw-b);
	line-height: 1.8;
}
.feature-ttl span {
	color: var(--c-primary);
}
.feature-txt-box > p {
	width: 100%;
}

@media screen and (max-width: 1300px) {
	.features-contents-item:nth-of-type(odd) {
		padding-inline: 0 8.3%;
	}
	.features-contents-item:nth-of-type(even) {
		padding-inline: 8.3% 0;
	}
}
@media screen and (max-width: 1200px) {
	.features-cont {
		padding-block: 80px;
		gap: 50px;
	}
	.features-head {
		padding-inline: 3.75%;
	}
	.features-contents {
		gap: 60px;
	}
	.features-contents-item {
		padding-bottom: 70px;
	}
	.feature-ttl {
		font-size: 24px;
		white-space: nowrap;
	}
}
@media screen and (max-width: 999px) {
	.sec-features::before {
		aspect-ratio: 400 / 250;
		background-image: url("../images/totaldesign/bg-feature-top-sp.webp");
	}

	.sec-features::after {
		aspect-ratio: 400 / 250;
		background-image: url("../images/totaldesign/bg-feature-bottom-sp.webp");
	}
	.features-contents-item {
		padding-bottom: 50px;
	}
	.features-contents-item:nth-of-type(odd) {
		padding-inline: 0 3.75%;
	}
	.features-contents-item:nth-of-type(even) {
		padding-inline: 3.75% 0;
	}
	.feature-ttl {
		font-size: 20px;
	}
	.feature-bg-txt > span {
		font-size: 80px;
	}
}
@media screen and (max-width: 768px) {
	.features-cont {
		gap: 35px;
	}
	.features-contents-item {
		padding-bottom: 35px;
		flex-flow: column !important;
		align-items: center;
		gap: 24px;
		padding-inline: 3.75% !important;
	}
	.features-contents {
		max-width: 500px;
		gap: 40px;
	}
	.img-feature {
		width: 100%;
	}
	.feature-txt-box {
		gap: 24px;
	}
	.feature-bg-txt > span {
		font-size: 63px;
	}
}

/* ------------------------------------------------------------
Performance Data
---------------------------------------------------------------*/
.sec-performance {
	padding-inline: 0;
}
.sec-performance::before {
	content: "POWER";
	position: absolute;
	z-index: 0;
	left: 0;
	right: 0;
	margin-inline: auto;
	top: -4vw;
	width: 100%;
	max-width: 1400px;
	height: auto;
	font-size: 27.785vw;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: var(--fw-b);
	color: #f9f9f9;
}

@media screen and (min-width: 1401px) {
	.sec-performance::before {
		font-size: 389px;
		top: -65px;
	}
}

.performance-cont {
	position: relative;
	z-index: 10;
	padding-block: 160px 120px;
	gap: 80px;
}

.performance-head {
	width: 100%;
	padding-inline: 3.75%;
	gap: 65px;
	align-items: center;
}

.performance-head .ttl-box {
	max-width: 1200px;
	margin-inline: auto;
	width: 100%;
	text-align: center;
	align-items: center;
}

.performance-head .ttl-box .icon-sub-ttl {
	text-align: center;
	justify-content: center;
}

.performance-contents {
	gap: 35px;
	max-width: 1720px;
	margin: 0 auto;
}
.performance-contents-item {
	width: 100%;
	position: relative;
}
.performance-contents-item:nth-of-type(odd) {
	padding-inline: 0 14.2%;
}
.performance-contents-item:nth-of-type(even) {
	padding-inline: 14.2% 0;
}
.pfc-inner {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 4.83%;
	padding-block: 40px 50px;
	padding-inline: 0 40px;
	background: var(--c-l-gray);
	position: relative;
}
.pfc-inner::before {
	content: "";
	background: #ffffff;
	width: 16.666%;
	height: calc(100% + 2px);
	position: absolute;
	top: -1px;
	bottom: -1px;
	left: -1px;
	z-index: 0;
}
.performance-contents-item:nth-of-type(even) .pfc-inner::before {
	right: -1px;
	left: auto;
}
.performance-contents-item:nth-of-type(even) .pfc-inner {
	flex-flow: row-reverse;
	padding-inline: 40px 0;
}

.img-pfc {
	width: 45.916%;
	height: auto;
	aspect-ratio: 551 / 310;
	flex-shrink: 0;
	position: relative;
	z-index: 10;
}

.pfc-txt-box {
	width: 100%;
	gap: 15px;
	position: relative;
	z-index: 10;
}
.pfc-txt-box > * {
	position: relative;
	z-index: 10;
}
.pfc-bg-num {
	position: absolute !important;
	z-index: 0 !important;
	font-size: 290px;
	color: var(--c-white);
	font-weight: var(--fw-b);
	right: -35px;
	top: -80px;
}
.pfc-ttl {
	width: 100%;
	font-size: 36px;
	font-weight: var(--fw-b);
	line-height: 1.8;
}
@media screen and (min-width: 1201px) {
	.performance-contents-item:nth-of-type(3) .pfc-ttl {
		font-size: 30px;
	}
}
.pfc-ttl span {
	color: var(--c-primary);
}
.pfc-txt-box > p {
	width: 100%;
	font-size: 16px;
	font-weight: var(--fw-sb);
}
.pfc-client {
	color: var(--c-gray);
}

.pfc-data-grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 17px;
}
.pfc-data-grid-item {
	gap: 15px;
	align-items: center;
}
.pfc-data-grid-item > h4 {
	width: 100%;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--c-gray);
	color: var(--c-white);
	border-radius: 9999px;
	font-size: 16px;
	font-weight: 500;
}
.pfc-data-detail {
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 4px;
	align-items: baseline;
}
.pfc-data-detail > i {
	width: 22px;
	height: auto;
	aspect-ratio: 22 / 6;
	background-image: url("../images/totaldesign/icon-3chevron.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: relative;
	bottom: 3px;
	flex-shrink: 0;
}
.pfc-data-detail > div {
	display: flex;
	align-items: baseline;
	gap: 2px;
}
.pfc-data-detail > div > strong {
	font-size: 50px;
	color: var(--c-primary);
	font-weight: var(--fw-sb);
	position: relative;
	bottom: -2px;
}
.pfc-data-detail > div > span {
	font-size: 22px;
	flex-shrink: 0;
	font-weight: var(--fw-sb);
}
.pfc-data-detail > div.pfd-sm > strong {
	font-size: 45px;
}
.pfc-data-detail > div.pfd-sm > span {
	font-size: 18px;
}
.pfc-data-detail > div.pfd-xs > strong {
	font-size: 22px;
	color: var(--c-text);
}
.pfc-data-detail > div.pfd-xs > span {
	font-size: 14px;
}

@media screen and (max-width: 1300px) {
	.performance-contents-item:nth-of-type(odd) {
		padding-inline: 0 8.3%;
	}
	.performance-contents-item:nth-of-type(even) {
		padding-inline: 8.3% 0;
	}
	.pfc-inner::before {
		width: 9.1%;
	}
}
@media screen and (max-width: 1200px) {
	.pfc-ttl {
		font-size: 28px;
		white-space: nowrap;
	}
}
@media screen and (max-width: 1100px) {
	.performance-contents-item:nth-of-type(odd) {
		padding-inline: 0 3.75%;
	}
	.performance-contents-item:nth-of-type(even) {
		padding-inline: 3.75% 0;
	}
	.pfc-inner::before {
		width: 4.5%;
	}
	.pfc-bg-num {
		font-size: 230px;
	}
}
@media screen and (max-width: 999px) {
	.performance-cont {
		padding-block: 80px;
		gap: 45px;
	}
	.performance-head {
		gap: 35px;
	}
	.performance-head .c-txt.--center {
		text-align: justify;
	}
	.performance-contents {
		gap: 24px;
	}
	.pfc-ttl {
		font-size: 26px;
	}
	.pfc-data-grid {
		gap: 10px;
	}
	.pfc-data-grid-item {
		gap: 10px;
	}
	.pfc-data-grid-item > h4 {
		height: 30px;
	}
	.pfc-data-detail > div > strong {
		font-size: 35px;
		bottom: -3px;
	}
	.pfc-data-detail > div > span {
		font-size: 16px;
	}
	.pfc-data-detail > div.pfd-sm > strong {
		font-size: 35px;
	}
	.pfc-data-detail > div.pfd-sm > span {
		font-size: 18px;
	}
	.pfc-data-detail > div.pfd-xs > strong {
		font-size: 20px;
		bottom: -1px;
	}
	.pfc-data-detail > div.pfd-xs > span {
		font-size: 12px;
	}
	.pfc-data-detail > i {
		width: 18px;
	}
}

@media screen and (max-width: 800px) {
	.performance-contents {
		max-width: 500px;
	}
	.performance-contents-item {
		padding-inline: 0 !important;
	}
	.pfc-inner {
		justify-content: flex-start;
		gap: 24px;
		padding-block: 0 40px;
		padding-inline: 0 !important;
		flex-flow: column !important;
		align-items: center;
	}
	.pfc-inner::before {
		width: calc(100% + 2px);
		height: 68px;
		bottom: auto;
	}
	.img-pfc {
		width: calc(100% - 30px);
		z-index: 20;
	}
	.pfc-txt-box {
		gap: 20px;
		padding-inline: 3.75% !important;
	}
	.pfc-data-grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}
	.pfc-data-grid-item {
		gap: 10px;
		flex-flow: row !important;
	}
	.pfc-bg-num {
		font-size: 160px;
		right: 15px;
		top: -15px;
	}
	.pfc-data-grid-item > h4 {
		height: 30px;
		width: 170px;
		font-size: 14px;
		flex-shrink: 0;
	}
	.pfc-data-detail {
		justify-content: flex-start;
	}
}
@media screen and (max-width: 600px) {
	.performance-head .ttl-box h2 {
		font-size: 55px;
	}
	.pfc-ttl {
		font-size: 24px;
	}
}

/* ------------------------------------------------------------
FLOW
---------------------------------------------------------------*/
.sec-flow::before {
	content: "";
	background: var(--c-l-gray);
	position: absolute;
	z-index: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 167px;
	clip-path: polygon(0 100%, 100% 0%, 100% 100%, 0% 100%);
}
.sec-flow::after {
	content: "";
	background: var(--c-l-gray-grad);
	position: absolute;
	z-index: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: calc(100% - 166px);
}
.flow-cont {
	padding-block: 0 160px;
	gap: 35px;
}
.flow-tab-area {
	width: 100%;
	position: relative;
	overflow: hidden;
}
.flow-tab-box {
	align-items: center;
}
.flow-tab-heading-wrapper {
	width: 100%;
	position: relative;
}
.flow-tab-heading {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
}
.flow-tab-heading label {
	width: 100%;
	max-width: 200px;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	gap: 15px;
	height: auto;
	aspect-ratio: 200 / 76;
	cursor: pointer;
	transition: all ease 0.33s;
	position: relative;
	background: var(--c-m-gray);
	color: var(--c-white);
}
.flow-tab-heading label:hover {
	opacity: 0.7;
}
.flow-tab-heading label.tab-is-active {
	background: var(--c-primary);
	opacity: 1;
}
.flow-tab-heading label > div {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.flow-tab-heading label > div > span {
	text-align: center;
	text-wrap: nowrap;
	font-family: var(--font-en);
	font-weight: var(--fw-md);
	font-size: 24px;
	line-height: 1;
	color: var(--c-white);
}
.flow-panel-container {
	width: 100%;
	background: var(--c-white);
	border: 1px solid var(--c-l-gray);
}
.flow-panel-inner {
	width: 100%;
}
.flow-panel-cont {
	padding: 48px;
	padding-top: 32px;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 32px;
	position: relative;
}
.flow-panel-cont > h3 {
	width: 100%;
	font-size: 29px;
	font-weight: var(--fw-sb);
	line-height: 1;
	position: relative;
	z-index: 10;
}
.flow-panel-cont > p {
	width: 100%;
	text-align: justify;
	position: relative;
	z-index: 10;
}
.flow-panel-num {
	position: absolute;
	letter-spacing: 0;
	color: var(--c-l-gray);
	font-family: var(--font-en);
	font-weight: var(--fw-b);
	z-index: 0;
	font-size: 220px;
	width: auto;
	right: 0;
	bottom: -35px;
	line-height: 1;
}
@media screen and (max-width: 999px) {
	.sec-flow::before {
		top: 100px;
		height: 115px;
	}
	.sec-flow::after {
		height: calc(100% - 214px);
	}
	.flow-cont {
		gap: 24px;
		padding-block: 0 80px;
	}
	.flow-tab-heading label {
		padding: 6px;
		aspect-ratio: 74 / 28;
	}
	.flow-tab-heading label > div > span {
		font-size: 14px;
	}
	.flow-panel-cont {
		padding: 24px 32px;
		gap: 16px;
	}
	.flow-panel-cont > h3 {
		font-size: 20px;
		line-height: 1.6;
	}
	.flow-panel-cont > p {
		font-size: 14px;
		line-height: 2;
	}
	span.flow-panel-num {
		font-size: 100px;
		bottom: -10px;
	}
}
@media screen and (max-width: 500px) {
	.flow-tab-heading label {
		padding: 12px 6px;
		aspect-ratio: auto;
	}
	.flow-tab-heading label > div > span {
		font-size: 12px;
	}
}

/* ------------------------------------------------------------
Staff
---------------------------------------------------------------*/
.sec-staff {
	padding-inline: 0;
	background: var(--c-bk);
}
.sec-staff::before {
	content: "";
	position: absolute;
	z-index: 10;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-image: url("../images/totaldesign/bg-staff-pc.webp");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0.2;
}
.staff-cont {
	padding-block: 86px 150px;
	gap: 50px;
	position: relative;
	z-index: 10;
}
.staff-head {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
.staff-slide-area {
	width: 100%;
	position: relative;
	gap: 24px;
}
.staff-slider {
	width: 100%;
}
.staff-slide-item {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}
.staff-slide-item-card {
	width: 100%;
	height: 100%;
	background: #fff;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-flow: column;
	align-items: center;
}
.staff-slide-item-card > .c-badge {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	max-width: 80%;
	line-height: 1.2;
}
.img-staff {
	aspect-ratio: 1 / 1;
	flex-shrink: 0;
}
.staff-info-area {
	height: 100%;
	align-items: center;
}
.staff-name-box {
	align-items: center;
	gap: 5px;
	padding-block: 14px;
	padding-inline: 16px;
}
.staff-name-box > span {
	width: 100%;
	text-align: center;
	font-size: 12px;
	color: var(--c-m-gray);
}
.staff-name-box > h3 {
	width: 100%;
	font-size: 24px;
	font-weight: var(--fw-sb);
	color: var(--c-primary);
	text-align: center;
}

.staff-skill {
	width: 100%;
	padding-bottom: 14px;
	padding-inline: 16px;
	display: flex;
	gap: 8px;
	align-items: flex-start;
}
.staff-skill > .c-badge {
	width: 67px;
	text-align: center;
	flex-shrink: 0;
	position: relative;
	top: 1px;
}
.staff-skill > p {
	width: 100%;
	font-size: 14px;
	font-weight: var(--fw-sb);
	line-height: 1.4;
}
.staff-comment-box {
	width: 100%;
	height: 100%;
	padding-block: 14px;
	padding-inline: 16px;
	display: flex;
	background: var(--c-l-gray);
	font-size: 15px;
	font-weight: var(--fw-sb);
	line-height: 1.4;
	color: var(--c-gray);
}

@media screen and (max-width: 1200px) {
	.staff-head {
		padding-inline: 3.75%;
	}
	.staff-cont {
		padding-block: 80px;
	}
}

@media screen and (max-width: 999px) {
	.sec-staff::before {
		background-image: url("../images/totaldesign/bg-staff-sp.webp");
	}
	.staff-cont {
		gap: 35px;
	}
}
@media screen and (max-width: 600px) {
	.staff-cont {
		padding-block: 80px 50px;
	}
}
/* ------------------------------------------------------------
FAQ
---------------------------------------------------------------*/

.faq-cont {
	padding-block: 130px 90px;
	gap: 40px;
	position: relative;
	z-index: 10;
}
.faq-list {
	gap: 16px;
}
.acc-box {
	width: 100%;
	background: var(--c-text);
	border: 4px solid var(--c-text);
	position: relative;
	overflow: hidden;
	transition: var(--transition-c);
}

@media (hover: hover) {
	.acc-box:hover {
		background: var(--c-primary);
		border: 4px solid var(--c-primary);
	}
}

.acc-btn {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 80px;
	padding-inline: 110px 90px;
	position: relative;
	cursor: pointer;
	color: var(--c-white);
}
.acc-btn::before {
	content: "Q";
	position: absolute;
	left: 48px;
	font-family: var(--font-en);
	color: var(--c-white);
	font-size: 36px;
	line-height: 1;
}
.acc-btn::after {
	content: "";
	position: absolute;
	right: 50px;
	width: 20px;
	height: auto;
	aspect-ratio: 1 / 1;
	background-image: url("../images/totaldesign/icon-plus.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
.is-open .acc-btn::after {
	background-image: url("../images/totaldesign/icon-minus.svg");
}
.acc-panel {
	width: 100%;
}
.acc-panel-inner {
	width: 100%;
	padding-block: 32px;
	background: var(--c-white);
	color: var(--c-text);
	padding-inline: 113px 48px;
	position: relative;
}
.acc-panel-inner ::before {
	content: "A";
	position: absolute;
	left: 50px;
	top: 23px;
	font-family: var(--font-en);
	font-size: 36px;
	color: var(--c-primary);
	line-height: 1;
}
.acc-panel-inner > p {
	width: 100%;
	font-size: 16px;
	line-height: 1.46;
	letter-spacing: 0.05em;
	text-align: justify;
}

@media screen and (max-width: 999px) {
	.faq-cont {
		padding-block: 80px;
		gap: 35px;
	}
	.faq-list {
		gap: 10px;
	}
	.acc-btn {
		padding-inline: 50px 60px;
		line-height: 1.4;
	}
	.acc-btn::before {
		left: 14px;
		font-size: 29px;
	}
	.acc-btn::after {
		right: 16px;
		width: 16px;
	}
	.acc-panel-inner {
		padding-block: 16px;
		padding-inline: 50px 16px;
	}
	.acc-panel-inner ::before {
		left: 16px;
		top: 12px;
		font-size: 29px;
	}
	.acc-panel-inner > p {
		font-size: 14px;
	}
}

/* ------------------------------------------------------------
Leave it to Us
---------------------------------------------------------------*/
.sec-litu::before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 0;
	top: 70px;
	width: 100%;
	height: calc(100% - 70px);
	background-image: url("../images/totaldesign/bg-litu-pc.webp");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.litu-cont {
	padding-block: 0px 48px;
}
.litu-cont .ttl-box {
	position: relative;
	z-index: 10;
	gap: 20px;
}
.litu-cont .ttl-box p {
	font-size: 30px;
	font-weight: var(--fw-b);
}
.litu-cont .ttl-box h3 {
	white-space: nowrap;
}
.litu-main-box {
	width: 100%;
	display: flex;
	align-items: flex-start;
	gap: 0;
	justify-content: space-between;
}
.litu-main-txt-box {
	gap: 38px;
	position: relative;
	z-index: 10;
	padding-top: 211px;
}
.litu-main-txt-box > .c-txt {
	padding-right: 80px;
	position: relative;
	z-index: 10;
}

@media screen and (max-width: 1399px) {
	.litu-cont .ttl-box h3 {
		font-size: 40px;
	}
	.litu-cont .ttl-box p {
		font-size: 24px;
	}
}
@media screen and (max-width: 1200px) {
	.litu-main-txt-box {
		gap: 30px;
		padding-top: 160px;
	}
}
@media screen and (max-width: 1100px) {
	.litu-cont .ttl-box p {
		font-size: 20px;
	}
	.litu-cont .ttl-box h3 {
		font-size: 31px;
	}
}
@media screen and (max-width: 999px) {
	.sec-litu::before {
		top: auto;
		bottom: 0;
		height: 77.4%;
		background-position: bottom;
		background-image: url("../images/totaldesign/bg-litu-sp.webp");
	}
	.litu-cont {
		gap: 36px;
		padding-block: 0 80px;
	}
	.litu-cont > .ttl-box {
		align-items: center;
		text-align: center;
		width: 100%;
	}
	.litu-cont > .ttl-box.ttl-box h2 {
		font-size: 60px;
	}
	.litu-main-box {
		justify-content: flex-end;
		flex-flow: column-reverse;
		gap: 30px;
	}
	.litu-main-box .ttl-box h3 {
		text-align: left;
		width: 100%;
		font-size: 28px;
	}
	.litu-main-txt-box {
		padding-top: 0;
		padding-inline: 3.75%;
	}
	.litu-main-txt-box > .c-txt {
		padding-right: 0px;
	}
}
