/* リキッドレイアウト対応 */

:root {
	--padding-pc: 25px;
	--padding-sp: 20px;
	--base-font-family: "Noto Sans JP", sans-serif;
	--en-font: "Albert Sans", sans-serif;
	--regular: 400;
	--normal: 500;
	--bold: 700;
	--black: #424242;
	--white: #ffffff;
	--gray: #7f7f7f;
	--light-gray: #c3c3c3;
	--indigo: #232134;
	--navy: #1e3044;
	--orange: #f76d1d;
	--orange-start: #f29747;
	--orange-end: #f21619;
	--blue-link: #1d4b9f;
	--wysiwyg-text: #333333;
	--wysiwyg-border: #999999;
	--wysiwyg-link: #034495;
	--wysiwyg-bg: #f7f7f7;
	--wysiwyg-highlight: #f9e479;
}

body {
	font-family: var(--base-font-family);
	font-feature-settings: "palt";
}

html {
	font-size: 16px;
}

/* pcの電話番号発信対応 */

a[href^="tel:"] {
	pointer-events: none;
}

/* ホバー */

a {
	text-decoration: none;
	color: inherit;
	transition: opacity 0.3s;
}

/* ドロワーメニュー開閉時のbody固定 */

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

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	max-width: 100%;
	display: block;
	width: 100%;
	object-fit: cover;
	height: 100%;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

html {
	overflow-wrap: break-word;
}

.achievement-logo__heading {
	margin-bottom: 2.5rem;
}

.achievement-logo__content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.achievement-logo__description {
	font-size: 1rem;
	font-weight: var(--medium);
	color: var(--black);
	line-height: 2;
	letter-spacing: 0.08em;
}

.achievement-logo__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
	gap: 0.5rem;
}

.achievement-logo__card {
	background-color: var(--white);
	border-radius: 0.25rem;
	box-shadow: 0px 0px 0.625rem 0px rgba(0, 0, 0, 0.25);
	height: 6.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
}

.achievement-logo__card-image {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.achievement-logo__card-img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}

.achievement-logo__img {
	width: 100%;
	height: auto;
	display: block;
}

.achievement-logo .cta {
	margin-top: 2.5rem;
	margin-bottom: 0;
}

.arrow-down {
	aspect-ratio: 1;
	width: 1.5rem;
	-webkit-mask-image: url("../images/common/arrow-down.svg");
	mask-image: url("../images/common/arrow-down.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
	background-color: var(--black);
}

.arrow-up {
	margin-top: 5px;
	aspect-ratio: 1;
	width: 1.125rem;
	-webkit-mask-image: url("../images/common/arrow-up.svg");
	mask-image: url("../images/common/arrow-up.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
	transition: 0.3s ease-out all;
}

.base-text {
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--black);
	line-height: 2;
	font-feature-settings: normal;
}

.breadcrumb {
	background-color: var(--white);
	padding: 0.5rem 0;
}

.breadcrumb__inner {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	max-width: 78.125rem;
	padding: 0 var(--padding-pc);
	margin-inline: auto;
}

.breadcrumb__link {
	font-size: 0.75rem;
	font-weight: var(--normal);
	color: var(--indigo);
	text-decoration: underline;
	line-height: 1.5;
	letter-spacing: -0.02em;
	padding: 0.5rem 0;
	transition: 0.3s ease-out all;
}

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

.breadcrumb__current {
	font-size: 0.75rem;
	font-weight: var(--normal);
	color: var(--gray);
	line-height: 1.5;
	letter-spacing: -0.02em;
}

.button {
	padding: 0.875rem 1.125rem;
	font-size: 0.9375rem;
	font-weight: var(--bold);
	border-radius: 0.25rem;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	width: -moz-fit-content;
	width: fit-content;
	text-align: center;
	background: linear-gradient(to bottom, var(--orange-start), var(--orange-end));
}

.button--outline {
	overflow: hidden;
	position: relative;
}

.button--outline::after {
	content: "";
	display: block;
	position: absolute;
	inset: 0;
	z-index: 1;
	background-color: var(--white);
	inset: 1px;
	border-radius: 0.1875rem;
}

.button--outline span {
	position: relative;
	z-index: 2;
	background-image: linear-gradient(to bottom, var(--orange-start), var(--orange-end));
	color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
}

.button--fill {
	box-shadow: 0 0.0625rem 0.5rem rgba(0, 0, 0, 0.2);
}

.button--fill span {
	color: var(--white);
}

.button2 {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	justify-content: center;
	border-radius: 0.25rem;
	padding: 0.875rem 3.375rem;
	width: -moz-fit-content;
	width: fit-content;
	min-width: 15rem;
	margin-inline: auto;
	border: 1px solid var(--indigo);
	background-color: var(--white);
	transition: 0.3s ease-in-out all;
}

.button2__text {
	font-size: 0.9375rem;
	font-weight: var(--bold);
	color: var(--indigo);
	transition: 0.3s ease-in-out all;
}

.button2__arrow {
	background-color: var(--indigo);
	margin-top: unset;
	transition: 0.3s ease-in-out all;
}

.circle-arrow {
	transition: 0.3s ease-out all;
	aspect-ratio: 1;
	width: 2rem;
	border-radius: 50%;
	background: linear-gradient(to bottom, var(--orange-start), var(--orange-end));
	display: grid;
	place-content: center;
}

.circle-arrow::after {
	content: "";
	margin-left: -1px;
	display: block;
	aspect-ratio: 1;
	width: 0.9375rem;
	-webkit-mask-image: url("../images/common/arrow-up.svg");
	mask-image: url("../images/common/arrow-up.svg");
	background-color: var(--white);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
}

.column-card__link {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.column-card__image {
	aspect-ratio: 330/173;
	background-color: var(--light-gray);
	overflow: hidden;
}

.column-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-out all;
}

.column-card__placeholder {
	width: 100%;
	height: 100%;
	background-color: var(--light-gray);
}

.column-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.875rem;
	font-weight: var(--normal);
	color: var(--gray);
	line-height: 1.5;
	letter-spacing: -0.02em;
}

.column-card__category {
	transition: 0.3s ease-out all;
}

.column-card__title {
	font-size: 1.125rem;
	font-weight: var(--bold);
	color: var(--indigo);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: 0.3s ease-out all;
}

.contact-form .need {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.contact-form .need::before {
	content: "必須";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	padding: 0.1875rem 0.375rem;
	border-radius: 0.25rem;
	background: #ff5558;
	color: var(--white);
	font-weight: var(--bold);
	line-height: 1.5;
	letter-spacing: -0.015rem;
	flex-shrink: 0;
}

.contact-form textarea + .need::before,
.contact-form .contact-form__textarea + .need::before {
	background: #f14668;
	font-size: 0.875rem;
	padding: 0.5rem;
	height: 1.625rem;
}

.contact-form .contact-form__label {
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--black);
	line-height: 1.5;
}

.contact-form .contact-form__required {
	background-color: #ff5558;
	color: var(--white);
	font-size: 0.75rem;
	font-weight: var(--bold);
	line-height: 1.5;
	letter-spacing: -0.015rem;
	padding: 0.375rem;
	border-radius: 0.25rem;
}

.contact-form .contact-form__input {
	width: 100%;
	background-color: var(--white);
	border: 0.0625rem solid #e2e1e5;
	border-radius: 0.3125rem;
	padding: 0.875rem 0.9375rem;
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--black);
	line-height: 1.75rem;
}

.contact-form .contact-form__input::-moz-placeholder {
	color: #d2d2d2;
}

.contact-form .contact-form__input::placeholder {
	color: #d2d2d2;
}

.contact-form .contact-form__textarea {
	width: 100%;
	background-color: var(--white);
	border: 0.0625rem solid #e2e1e5;
	border-radius: 0.3125rem;
	height: 12.5rem;
	padding: 0.625rem 0.9375rem;
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--black);
	line-height: 1.75rem;
	resize: vertical;
}

.contact-form .contact-form__textarea::-moz-placeholder {
	color: #d2d2d2;
}

.contact-form .contact-form__textarea::placeholder {
	color: #d2d2d2;
}

.contact-form .contact-form__checkbox-wrapper {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	position: relative;
}

.contact-form .contact-form__checkbox {
	display: block;
	position: absolute;
	opacity: 0;
	width: 2rem;
	height: 2rem;
	margin: 0;
	cursor: pointer;
	z-index: 1;
}

.contact-form .contact-form__checkbox-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--black);
	line-height: 1.75rem;
	cursor: pointer;
	position: relative;
	padding-left: 2.5rem;
}

.contact-form .contact-form__checkbox-label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 2rem;
	height: 2rem;
	border: 0.0625rem solid #e2e1e5;
	background-color: var(--white);
	border-radius: 0.25rem;
}

.contact-form .contact-form__checkbox:checked ~ .contact-form__checkbox-label::after {
	content: "";
	position: absolute;
	left: 0.5rem;
	top: 50%;
	width: 0.5rem;
	height: 1rem;
	border-right: 0.125rem solid var(--black);
	border-bottom: 0.125rem solid var(--black);
	transform: translateY(-60%) rotate(45deg);
}

.contact-form input[type=checkbox] + span {
	padding-left: 2.5rem;
	display: inline-block;
	position: relative;
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--black);
	line-height: 1.75rem;
}

.contact-form input[type=checkbox] + span::after,
.contact-form input[type=checkbox] + span::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
}

.contact-form input[type=checkbox] + span::before {
	border: 0.25rem solid rgba(0, 0, 0, 0.6);
	background-color: #ffffff;
	height: 1.625rem;
	width: 1.625rem;
	border-radius: 0.25rem;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.contact-form input[type=checkbox] + span::after {
	content: "";
	position: absolute;
	left: 0.5625rem;
	top: 50%;
	width: 0.5rem;
	height: 1rem;
	border-right: 0.25rem solid rgba(0, 0, 0, 0.6);
	border-bottom: 0.25rem solid rgba(0, 0, 0, 0.6);
	transform: translateY(-60%) rotate(45deg);
	display: none;
}

.contact-form input[type=checkbox]:checked + span::after {
	display: block;
}

.contact-form input[type=radio] + span {
	padding-left: 1.75rem;
	display: inline-block;
	position: relative;
	font-size: 1rem;
	line-height: 1.6;
	letter-spacing: -0.02em;
	font-weight: var(--fw-medium);
	font-family: var(--base-font);
	color: #000000;
	vertical-align: middle;
}

.contact-form input[type=radio] + span::after,
.contact-form input[type=radio] + span::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
}

.contact-form input[type=radio] + span::before {
	border: 2px solid #808080;
	height: 1.25rem;
	width: 1.25rem;
	border-radius: 50%;
	left: 0;
	top: 0.5lh;
	transform: translateY(-50%);
}

.contact-form input[type=radio] + span::after {
	background: radial-gradient(circle, #f14668 0 40%, transparent 40% 100%);
	height: 1.25rem;
	width: 1.25rem;
	border-radius: 50%;
	left: 0;
	top: 0.5lh;
	transform: translateY(-50%);
	opacity: 0;
}

.contact-form input[type=radio]:checked + span::before {
	border-color: #f14668;
}

.contact-form input[type=radio]:checked + span::after {
	opacity: 1;
}

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

.contact-form .contact-form__submit-wrapper {
	width: 100%;
	padding: unset;
	transition: 0.3s ease-in-out all;
	box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.3);
}

.contact-form .contact-form__submit-wrapper input {
	transition: 0.3s ease-in-out all;
	padding: 0.875rem 1.125rem;
	width: 100%;
	height: 100%;
	color: var(--white);
}

.contact-form .wpcf7-spinner {
	margin: 0;
	display: none;
}

.contact-form .wpcf7-acceptance {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	margin: 0;
}

.contact-form .wpcf7-acceptance .wpcf7-list-item {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	margin: 0;
}

.contact-form .wpcf7-acceptance input[type=checkbox] {
	width: 2rem;
	height: 2rem;
	margin: 0;
	flex-shrink: 0;
}

.contact-form .wpcf7-acceptance span {
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--black);
	line-height: 1.75rem;
}

.contact-form .wpcf7-list-item {
	display: block;
	margin: 0.4375rem 0;
}

.contact-form .contact-form__privacy-link {
	color: #0094ff;
	text-decoration: underline;
	text-underline-position: from-font;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none;
}

.contact-form p,
.contact-form div {
	margin: 0;
}

.contact-form p.contact-form__field,
.contact-form div.contact-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.contact-form p.contact-form__checkbox-wrapper,
.contact-form div.contact-form__checkbox-wrapper {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.contact-form p br,
.contact-form div br {
	display: none;
}

.contact-form br {
	display: none;
}

.contact-form .contact-form__hidden {
	display: none;
}

.contact {
	background-color: var(--indigo);
	padding: 4.5rem 0 4.375rem;
}

.contact__grid {
	display: grid;
	grid-template-columns: 1fr 1px 1fr 1px 1fr;
	gap: 2rem;
}

.contact__item {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact__icon {
	min-width: 0;
	width: 7rem;
	aspect-ratio: 1;
}

.contact__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.contact__title {
	font-size: 2rem;
	font-feature-settings: normal;
	font-weight: var(--bold);
	color: var(--white);
	line-height: 1.4;
}

.contact__description {
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--white);
	line-height: 2;
	font-feature-settings: normal;
}

.contact__button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	background: linear-gradient(to bottom, var(--orange-start), var(--orange-end));
	border-radius: 0.25rem;
	padding: 1.375rem 1.125rem;
	text-decoration: none;
	box-shadow: 0 0.0625rem 0.5rem rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease-out;
}

.contact__button .contact__button-icon {
	margin-top: 0;
	width: 1.25rem;
	aspect-ratio: 1;
	background-color: var(--white);
}

.contact__button-text {
	font-size: 1rem;
	font-weight: var(--bold);
	font-feature-settings: normal;
	color: var(--white);
}

.contact__divider {
	width: 1px;
	background-color: var(--white);
	align-self: stretch;
}

.content-section {
	background-color: var(--white);
	padding: 2.5rem 0;
}

.content-section--first {
	padding: 5rem 0 2.5rem;
}

.cta {
	margin-bottom: 3.5rem;
}

.cta__inner {
	max-width: 53.125rem;
	padding: 0 var(--padding-pc);
	margin-inline: auto;
}

.cta__content {
	display: flex;
	gap: 2.5rem;
	align-items: center;
	border: 1px solid var(--light-gray);
	border-radius: 0.5rem;
	padding-right: 0.25rem;
}

.cta__image {
	aspect-ratio: 282/219;
	width: 17.625rem;
	border-radius: 0.5rem 0 0 0.5rem;
	overflow: hidden;
}

.cta__image img {
	object-fit: cover;
}

.cta__text {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding-right: 1.875rem;
	flex: 1;
}

.cta__title {
	font-size: 1.5rem;
	font-weight: var(--bold);
	color: var(--indigo);
	line-height: 1;
	letter-spacing: 0.08em;
}

.cta__description {
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--indigo);
	line-height: 2;
}

.cta__button {
	max-width: 27.6875rem;
	display: flex;
	align-items: center;
	gap: 0.625rem;
	background: linear-gradient(to bottom, var(--orange-start), var(--orange-end));
	border-radius: 0.5rem;
	padding: 1rem 1.125rem;
	text-decoration: none;
	box-shadow: 0 0.0625rem 0.5rem rgba(0, 0, 0, 0.2);
	transition: 0.3s ease-out all;
}

.cta__button-badge {
	background-color: var(--white);
	color: var(--orange);
	font-size: 1.25rem;
	font-weight: var(--bold);
	padding: 0.25rem 0.125rem;
	text-align: center;
	letter-spacing: 0.08em;
	width: 3.875rem;
}

.cta__button-text {
	font-size: 1.125rem;
	font-weight: var(--bold);
	color: var(--white);
	letter-spacing: 0.08em;
	width: 50%;
	flex-grow: 1;
}

.cta__button-icon {
	width: 2rem;
	aspect-ratio: 1;
	margin-left: auto;
}

.faq__heading {
	margin-bottom: 2.5rem;
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	margin-bottom: 2.5rem;
}

.faq__item {
	position: relative;
}

.faq__question {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
	padding: 1rem 1.625rem;
	background-color: #f3f3f3;
	border-radius: 0.5rem;
	text-align: left;
	cursor: pointer;
	transition: all 0.3s ease;
}

.faq__question[aria-expanded=true] .faq__question-icon {
	transform: scaleY(-1);
}

.faq__question-label {
	font-size: 1.5rem;
	font-weight: var(--medium);
	color: var(--black);
	line-height: 1;
	flex-shrink: 0;
}

.faq__question-text {
	flex: 1;
	font-size: 1rem;
	font-weight: var(--medium);
	color: #313131;
	line-height: 1.5;
	letter-spacing: -0.02em;
	text-align: left;
}

.faq__question-icon {
	transition: 0.3s ease-out all;
}

.faq__answer {
	display: none;
	padding-top: 1rem;
	padding-left: 1.75rem;
	overflow: hidden;
}

.faq__answer-inner {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.faq__answer[aria-hidden=false] {
	display: block;
}

.faq__answer-label {
	font-size: 1.5rem;
	font-weight: var(--medium);
	color: var(--black);
	line-height: 1;
}

.faq__answer-text {
	margin-top: -0.3125rem;
	flex: 1;
	font-size: 1rem;
	font-weight: var(--medium);
	color: var(--black);
	line-height: 2;
}

.faq .cta {
	margin-top: 2.5rem;
}

.footer {
	background-color: var(--white);
	padding: 4rem 0 0;
	position: relative;
}

.footer__inner {
	max-width: 78.125rem;
	padding: 0 var(--padding-pc);
	margin-inline: auto;
}

.footer__content {
	justify-content: space-between;
	display: flex;
	gap: 9.125rem;
	align-items: flex-start;
}

.footer__left {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer__logo {
	width: 18.045375rem;
	flex-shrink: 0;
}

.footer__logo-link {
	display: block;
	transition: opacity 0.3s ease-in-out;
}

.footer__logo-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.footer__address {
	font-size: 1rem;
	font-weight: var(--regular);
	color: var(--black);
	line-height: 1.8;
	font-style: normal;
}

.footer__company {
	margin: 0;
}

.footer__postal {
	margin: 0;
}

.footer__location {
	margin: 0;
}

.footer__right {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.footer__nav-column {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 10rem;
}

.footer__nav-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer__nav-link {
	font-size: 1rem;
	font-weight: var(--regular);
	color: var(--black);
	text-decoration: none;
	line-height: 1.8;
	white-space: nowrap;
	transition: color 0.3s ease-in-out;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.footer__nav-link--bold {
	font-weight: var(--bold);
}

.footer__nav-link--external {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.footer__nav-link--external .popup {
	background-color: var(--black);
}

.footer__copyright {
	display: flex;
	gap: 2rem;
	align-items: flex-start;
	justify-content: center;
	padding: 1rem 12.8125rem;
	background-color: var(--white);
	margin-top: 3rem;
}

.footer__copyright-text {
	font-size: 0.75rem;
	font-weight: var(--regular);
	color: var(--black);
	line-height: 1;
	text-align: right;
	white-space: nowrap;
	margin: 0;
}

.grad {
	background: linear-gradient(to bottom, var(--orange-start), var(--orange-end));
}

.header {
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	left: 0;
	background-color: var(--white);
	height: 5rem;
	display: flex;
	align-items: center;
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0 3.125rem;
}

.header__logo-link {
	width: 18rem;
	display: block;
}

.header__drawer-button {
	display: none;
}

.header__menu {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.header__nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.header__nav-list {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.header__nav-item {
	position: relative;
}

.header__sub-menu {
	position: absolute;
	top: 100%;
	left: 0%;
	background-color: var(--white);
	border-radius: 0.5rem;
	box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
	list-style: none;
	margin: 0;
	padding: 0.5rem 0;
	min-width: 13.75rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
	z-index: 10;
}

.header__sub-menu::before {
	content: "";
	position: absolute;
	top: -0.5rem;
	left: 0;
	right: 0;
	height: 0.5rem;
}

.header__sub-menu-link {
	display: block;
	padding: 0.75rem 1.25rem;
	font-size: 0.875rem;
	font-weight: var(--normal);
	color: var(--black);
	text-decoration: none;
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
	white-space: nowrap;
}

.header__nav-link {
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--black);
	text-decoration: none;
	line-height: 1;
	transition: color 0.3s ease-in-out;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.75rem 0;
}

.header__nav-link--has-sub {
	font-weight: var(--bold);
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.header__nav-link--has-sub::after {
	content: "";
	aspect-ratio: 1;
	width: 0.75rem;
	background-color: var(--black);
	-webkit-mask-image: url("../images/common/arrow-down.svg");
	mask-image: url("../images/common/arrow-down.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
	transition: transform 0.3s ease-in-out;
}

.header__nav-link--external {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.header__buttons {
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
	flex-shrink: 0;
}

.header__button {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 3.125rem;
	padding: 0.6875rem 1.125rem;
	font-size: 0.9375rem;
	font-weight: var(--bold);
	border-radius: 0.25rem;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.header__button--outline {
	background-color: var(--white);
	border: 1px solid var(--orange-start);
	color: transparent;
	background-image: linear-gradient(to bottom, var(--orange-start), var(--orange-end));
	background-clip: text;
	-webkit-background-clip: text;
}

.header__button--fill {
	background: linear-gradient(to bottom, var(--orange-start), var(--orange-end));
	color: var(--white);
	box-shadow: 0 0.0625rem 0.5rem rgba(0, 0, 0, 0.2);
}

.drawer-menu {
	display: none;
}

.inner {
	max-width: 67.5rem;
	padding: 0 var(--padding-pc);
	margin-inline: auto;
}

.logo-slider__items {
	width: -moz-fit-content;
	width: fit-content;
	display: flex;
	gap: 2rem;
	animation: logo-slider 46s linear infinite;
}

.logo-slider__item {
	display: flex;
	gap: 2rem;
}

.logo-slider__img {
	width: 12.5rem;
	display: grid;
	padding: 0 1.25rem;
	place-content: center;
	aspect-ratio: 200/100;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
	border-radius: 0.25rem;
}

.logo-slider__img img {
	object-fit: contain;
	height: unset;
}

.logo {
	aspect-ratio: 28873/5372;
}

.logo img {
	object-fit: contain;
}

.news-item {
	position: relative;
	border-bottom: 1px solid var(--light-gray);
	transition: 0.3s ease-out all;
}

.news-item__link {
	display: block;
	transition: background-color 0.3s ease;
}

.news-item__content {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.5rem 2.5rem;
}

.news-item__date {
	font-family: var(--en-font);
	font-feature-settings: normal;
	font-size: 0.875rem;
	font-weight: var(--medium);
	color: var(--gray);
	line-height: 1.5;
	letter-spacing: -0.02em;
	flex-shrink: 0;
	width: 6.25rem;
}

.news-item__category {
	font-family: var(--en-font);
	font-size: 0.875rem;
	font-weight: var(--medium);
	color: var(--gray);
	line-height: 1.5;
	letter-spacing: -0.02em;
	font-feature-settings: normal;
	flex-shrink: 0;
	width: 7.5rem;
}

.news-item__title {
	font-size: 1rem;
	font-feature-settings: normal;
	font-weight: var(--medium);
	color: var(--black);
	line-height: 1.5;
	flex-grow: 1;
	display: inline-flex;
	word-break: break-all;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.news-item__title img {
	display: none;
	margin-left: 0.3125rem;
	width: 1.5rem;
	aspect-ratio: 1;
	transform: translateY(-1px);
	vertical-align: middle;
}

.news-item__link[target=_blank] .news-item__title img {
	display: inline-block;
}

.news-item__border {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background-color: var(--light-gray);
}

.page-header-2 {
	background-color: var(--indigo);
	padding: 10rem 0 5rem;
}

.page-header-2__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2.5rem;
	max-width: 65.625rem;
	padding: 0 var(--padding-pc);
	margin: 0 auto;
}

.page-header-2__content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 33.75rem;
	flex-shrink: 0;
}

.page-header-2__title {
	font-size: 2.5rem;
	font-weight: var(--normal);
	color: var(--white);
	line-height: 1;
}

.page-header-2__description {
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--white);
	line-height: 1.6;
	letter-spacing: 0.08em;
	text-align: justify;
}

.page-header-2__features-image {
	width: 100%;
}

.page-header-2__features-img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.page-header-2__features {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	background-color: var(--white);
	padding: 1.5rem 2.5rem;
	border-radius: 0.5rem;
}

.page-header-2__feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.page-header-2__feature-number {
	font-family: "Roboto", sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: #e0bc60;
	line-height: 1;
}

.page-header-2__feature-text {
	font-size: 1.125rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.32;
}

.page-header-2__achievement {
	height: 6.25rem;
}

.page-header-2__achievement-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: left;
}

.page-header-2__buttons {
	display: flex;
	gap: 0.5rem;
}

.page-header-2__form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	background-color: #f3f3f3;
	padding: 2.5rem;
	border-radius: 0.5rem;
	width: 26.3125rem;
	flex-shrink: 0;
}

.page-header-2__form-header {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: center;
	text-align: center;
}

.page-header-2__form-title {
	font-size: 1.5rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1;
}

.page-header-2__form-title em {
	color: #f76d1d;
	font-style: normal;
}

.page-header-2__form-description {
	font-size: 0.8125rem;
	font-weight: var(--normal);
	color: var(--black);
	line-height: 1.6;
}

.page-header-2__form-body {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.page-header-2__form-body .contact-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.page-header-2__form-body .contact-form__submit-wrapper {
	margin-top: 0.5rem;
}

.page-header-2__form-placeholder {
	font-size: 0.875rem;
	color: var(--gray);
	text-align: center;
	padding: 2.5rem 0;
}

.page-header {
	background-color: var(--indigo);
	padding: 9.375rem 0 5rem;
}

.page-header__inner {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: flex-start;
	width: 100%;
}

.page-header__title-en {
	font-family: var(--en-font);
	font-size: 4rem;
	font-weight: var(--normal);
	color: var(--white);
	line-height: 1;
}

.page-header__title-jp {
	font-size: 1.5rem;
	font-weight: var(--bold);
	color: var(--white);
	line-height: 1.2;
	letter-spacing: 0.16em;
}

.page-header__text {
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--white);
	line-height: 1.6;
	letter-spacing: 0.08em;
}

.page-header__buttons {
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
}

.pagination {
	display: flex;
	justify-content: center;
	padding: 0.625rem 0;
}

.pagination__inner {
	display: flex;
	gap: 1.25rem;
	align-items: center;
	justify-content: center;
}

.pagination__item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	aspect-ratio: 1;
	border: 1px solid var(--light-gray);
	border-radius: 62.5rem;
	text-decoration: none;
	font-family: var(--en-font);
	font-size: 1.25rem;
	font-weight: var(--normal);
	color: var(--light-gray);
	line-height: 1;
	transition: all 0.3s ease-in-out;
}

.pagination__item--prev {
	transform: rotate(180deg);
	border-color: var(--light-gray);
	background-color: var(--white);
}

.pagination__item--prev::after {
	content: "";
	aspect-ratio: 1;
	width: 1.25rem;
	background-color: var(--indigo);
	-webkit-mask-image: url("../images/common/arrow-nomal.svg");
	mask-image: url("../images/common/arrow-nomal.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
}

.pagination__item--next {
	border-color: var(--light-gray);
	background-color: var(--white);
}

.pagination__item--next::after {
	content: "";
	aspect-ratio: 1;
	width: 1.25rem;
	background-color: var(--indigo);
	-webkit-mask-image: url("../images/common/arrow-nomal.svg");
	mask-image: url("../images/common/arrow-nomal.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
}

.pagination__item--number {
	background-color: var(--white);
	color: var(--light-gray);
	border-color: var(--light-gray);
}

.pagination__item--active {
	background-color: var(--indigo);
	color: var(--white);
	border-color: var(--indigo);
	cursor: default;
	pointer-events: none;
}

.pagination__item.disabled,
.pagination__item[aria-disabled=true] {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

.popup {
	position: relative;
	aspect-ratio: 1;
	width: 1rem;
	background-color: var(--black);
	-webkit-mask-image: url("../images/common/popup.svg");
	mask-image: url("../images/common/popup.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
	transition: 0.3s ease-in-out all;
}

.section-title-top__title-en {
	font-family: var(--en-font);
	font-size: 1.5rem;
	font-weight: var(--medium);
	color: rgba(165, 165, 165, 0.8);
	margin-bottom: 0.5rem;
}

.section-title-top__title-jp {
	font-size: 2.5rem;
	font-weight: var(--bold);
	color: var(--black);
}

.section-title {
	font-size: 1.5rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.4;
	font-feature-settings: normal;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--black);
}

.service-card {
	border: 1px solid var(--light-gray);
	border-radius: 0.5rem;
	padding: 1.5rem 1.5rem 5rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.service-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.service-card__title {
	font-size: 1.5rem;
	font-weight: var(--bold);
	color: var(--navy);
	line-height: 1;
	letter-spacing: 0.08em;
	transition: 0.3s ease-out all;
}

.service-card__icon {
	transition: 0.3s ease-out all;
}

.service-card__description {
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--black);
	line-height: 1.6;
	letter-spacing: 0.08em;
	text-align: justify;
}

.service-card__list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.service-card__item {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding-bottom: 1px;
	border-bottom: 1px solid var(--black);
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.service-card__item-text {
	font-size: 1rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.6;
	letter-spacing: 0.08em;
	text-align: justify;
	transition: 0.3s ease-out all;
}

.service-card__item-icon {
	display: flex;
	margin-top: 0.1875rem;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	aspect-ratio: 1;
	background: linear-gradient(to bottom, var(--orange-start), var(--orange-end));
}

.service-card__item-icon--hidden {
	opacity: 0;
}

.service-challenge__heading {
	margin-bottom: 2.5rem;
}

.service-challenge__content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.service-challenge__title {
	font-size: 1.25rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.5;
	letter-spacing: 0.08em;
}

.service-challenge__text {
	font-size: 1rem;
	font-weight: var(--medium);
	color: var(--black);
	line-height: 2;
	letter-spacing: 0.08em;
}

.service-challenge__text ul {
	list-style: disc;
	margin-left: 1.5rem;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

.service-challenge__text ul li {
	margin-bottom: 0.25rem;
}

.service-challenge__text p {
	margin-bottom: 0.5rem;
}

.service-challenge__image {
	width: 29.3125rem;
	margin-inline: auto;
	margin-top: 1rem;
}

.service-challenge__img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

.service-column__heading {
	margin-bottom: 2.5rem;
}

.service-column__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.service-features__heading {
	margin-bottom: 2.5rem;
}

.service-features__item {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	margin-bottom: 2.5rem;
}

.service-features__item:last-child {
	margin-bottom: 0;
}

.service-features__content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	text-align: left;
}

.service-features__point-title {
	font-size: 1.25rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.5;
	letter-spacing: 0.08em;
}

.service-features__description {
	font-size: 1rem;
	font-weight: var(--medium);
	color: var(--black);
	line-height: 2;
	letter-spacing: 0.08em;
	text-align: left;
}

.service-features__description p {
	margin-bottom: 0.5rem;
}

.service-features__description p:last-child {
	margin-bottom: 0;
}

.service-features__images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.service-features__images--single {
	grid-template-columns: 1fr;
}

.service-features__image-item {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.service-features__image-wrapper {
	overflow: hidden;
	background-color: var(--white);
	position: relative;
}

.service-features__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.service-features__image:not([style*=object-fit]) {
	object-fit: cover;
}

.service-features__image-caption {
	font-size: 1rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.5;
	letter-spacing: 0.064em;
	text-align: left;
}

.service-features__consultant {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	background-color: var(--white);
	border: 1px solid var(--light-gray);
	border-radius: 0.5rem;
	padding: 2.5rem 1.5rem;
}

.service-features__consultant-image {
	width: 14.625rem;
	aspect-ratio: 234/246;
	flex-shrink: 0;
}

.service-features__consultant-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.service-features__consultant-info {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	flex: 1;
}

.service-features__consultant-label {
	font-size: 1rem;
	font-weight: var(--medium);
	color: var(--indigo);
	line-height: 2;
	letter-spacing: 0.08em;
}

.service-features__consultant-name {
	font-size: 1.5rem;
	font-weight: var(--bold);
	color: var(--indigo);
	line-height: 1;
	letter-spacing: 0.08em;
}

.service-features__consultant-bio {
	font-size: 0.875rem;
	font-weight: var(--medium);
	color: var(--indigo);
	line-height: 2;
	letter-spacing: 0.08em;
}

.service-features__consultant-bio p {
	margin-bottom: 0;
}

.service-list__heading {
	margin-bottom: 2.5rem;
}

.service-list__intro {
	margin-bottom: 2.5rem;
}

.service-list__intro-text {
	font-size: 1.25rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.5;
	letter-spacing: 0.08em;
}

.service-list__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.service-lp-intro__heading {
	margin-bottom: 2.5rem;
}

.service-lp-intro__intro {
	margin-bottom: 2.5rem;
}

.service-lp-intro__intro-text {
	font-size: 1.25rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.5;
	letter-spacing: 0.08em;
}

.service-lp-intro__content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.service-lp-intro__text {
	font-size: 1rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.5;
	letter-spacing: 0.08em;
}

.service-lp-intro__text p {
	margin-bottom: 0.25rem;
}

.service-lp-intro__images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	max-width: 41.5rem;
	margin: 0 auto;
}

.service-lp-intro__image-item {
	width: 100%;
}

.service-lp-intro__list-card {
	background-color: var(--white);
	border-radius: 0.5rem;
	box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.25);
	padding: 1.5rem;
}

.service-lp-intro__list-header {
	background-color: #e0bc60;
	color: var(--white);
	font-size: 1rem;
	font-weight: var(--bold);
	line-height: 1.32;
	text-align: center;
	padding: 0.75rem 1.5rem;
	margin: -1.5rem -1.5rem 1.5rem -1.5rem;
	border-radius: 0.5rem 0.5rem 0 0;
}

.service-lp-intro__list {
	list-style: disc;
	padding-left: 1.5rem;
	margin: 0;
	font-size: 1rem;
	font-weight: var(--bold);
	color: #424242;
	line-height: 1.5;
}

.service-lp-intro__list li {
	margin-bottom: 0.5rem;
}

.service-lp-intro__list li:last-child {
	margin-bottom: 0;
}

.service-lp-intro__image {
	width: 100%;
}

.service-lp-intro__img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

.service-lp-intro__note {
	margin-top: 2.5rem;
}

.service-lp-intro__note-text {
	font-size: 1.25rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.5;
	letter-spacing: 0.08em;
	margin-bottom: 1rem;
}

.service-lp-intro__note-description {
	font-size: 1rem;
	font-weight: var(--medium);
	color: var(--black);
	line-height: 2;
	letter-spacing: 0.08em;
}

.service-pricing__heading {
	margin-bottom: 2.5rem;
}

.service-pricing__description {
	font-size: 1rem;
	font-weight: var(--medium);
	color: var(--black);
	line-height: 2;
	letter-spacing: 0.08em;
	text-align: left;
	margin-bottom: 2.5rem;
}

.service-pricing__description p {
	margin-bottom: 0.5rem;
}

.service-pricing__description p:last-child {
	margin-bottom: 0;
}

.service-pricing__table {
	display: flex;
	flex-direction: column;
}

.service-pricing__row {
	display: grid;
	grid-template-columns: 12.5rem 1fr;
	border-bottom: 1px solid var(--light-gray);
}

.service-pricing__cell {
	padding: 1.5rem;
	font-size: 1rem;
	font-weight: var(--medium);
	color: var(--black);
	line-height: 1.5;
	letter-spacing: 0.08em;
}

.service-pricing__cell--name {
	background-color: #f3f3f3;
	text-align: center;
}

.service-pricing__cell--price {
	background-color: var(--white);
	text-align: left;
	font-weight: var(--bold);
}

.service-pricing__note {
	font-size: 0.875rem;
	font-weight: var(--normal);
	color: var(--gray);
	line-height: 1.5;
	letter-spacing: 0.08em;
	margin-top: 1rem;
	text-align: left;
}

.service-testimonials__heading {
	margin-bottom: 2.5rem;
}

.service-testimonials__intro {
	margin-bottom: 2.5rem;
}

.service-testimonials__intro-text {
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--black);
	line-height: 2;
	letter-spacing: 0.08em;
}

.service-testimonials__list {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.service-testimonials__item {
	padding: 2.5rem;
	background-color: var(--white);
	border: 1px solid var(--light-gray);
	border-radius: 0.5rem;
}

.service-testimonials__header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.service-testimonials__avatar {
	width: 3.125rem;
	height: 3.125rem;
	flex-shrink: 0;
	border-radius: 50%;
	overflow: hidden;
}

.service-testimonials__avatar-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.service-testimonials__title {
	font-size: 1.25rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.5;
	letter-spacing: 0.08em;
	flex: 1;
}

.service-testimonials__company {
	font-size: 0.875rem;
	font-weight: var(--medium);
	color: var(--gray);
	line-height: 2;
	letter-spacing: 0.08em;
	margin-bottom: 1rem;
}

.service-testimonials__text {
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--black);
	line-height: 2;
	letter-spacing: 0.08em;
}

.service-works__heading {
	margin-bottom: 2.5rem;
}

.service-works__intro {
	font-size: 1rem;
	font-weight: var(--medium);
	color: var(--black);
	line-height: 2;
	letter-spacing: 0.08em;
	margin-bottom: 2.5rem;
}

.service-works__intro p {
	margin-bottom: 0.25rem;
}

.service-works__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.page-sidebar {
	position: sticky;
	top: 6.25rem;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.page-sidebar__nav {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.page-sidebar__nav-item {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	text-decoration: none;
	color: #7f7f7f;
	font-size: 1rem;
	line-height: 2;
	transition: color 0.3s ease, font-weight 0.3s ease;
	position: relative;
	padding-left: 1.75rem;
	font-weight: var(--bold);
}

.page-sidebar__nav-item--active {
	color: var(--indigo, #232134);
}

.page-sidebar__nav-icon {
	position: absolute;
	left: 0;
	top: 0.5lh;
	width: 1rem;
	aspect-ratio: 1;
	flex-shrink: 0;
	display: none;
	opacity: 0;
	object-fit: contain;
	transform: translateY(-50%) rotate(-180deg) scale(0);
}

.page-sidebar__nav-item--active .page-sidebar__nav-icon {
	display: block;
	animation: iconRotate 0.3s ease-in-out forwards;
}

.page-sidebar__nav-text {
	transition: color 0.3s ease, font-weight 0.3s ease;
}

.page-sidebar__buttons {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.page-sidebar__button {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 3.125rem;
	padding: 0.6875rem 1.125rem;
	font-size: 0.9375rem;
	font-weight: var(--bold);
	border-radius: 0.25rem;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	text-align: center;
}

.page-sidebar__button--outline {
	background-color: var(--white);
	border: 1px solid var(--orange-start);
	color: transparent;
	background-image: linear-gradient(to bottom, var(--orange-start), var(--orange-end));
	background-clip: text;
	-webkit-background-clip: text;
}

.page-sidebar__button--fill {
	background: linear-gradient(to bottom, var(--orange-start), var(--orange-end));
	color: var(--white);
	box-shadow: 0 0.0625rem 0.5rem rgba(0, 0, 0, 0.2);
}

.single-column__back-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1rem;
	font-weight: var(--bold);
	color: var(--black);
	text-decoration: none;
	letter-spacing: 0.08em;
	transition: opacity 0.3s ease;
}

.single-column__back-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	height: 1.25rem;
	transform: rotate(180deg);
}

.single-column__back-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.single-column__back-text {
	line-height: 1.6;
}

.single-popular {
	padding: 5rem 0;
}

.single-popular__inner {
	max-width: 64.375rem;
	margin-inline: auto;
}

.single-popular__title {
	margin-bottom: 2.5rem;
}

.single-popular__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.single-popular__grid .column-card,
.single-popular__grid .works-card {
	width: 100%;
	max-width: 20.625rem;
}

.single-post {
	padding: 2.25rem 0;
}

.single-post__inner {
	max-width: 53.125rem;
	padding: 0 var(--padding-pc);
	margin-left: auto;
}

.single-post__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2.5rem;
	font-size: 0.875rem;
	font-weight: var(--medium);
	color: var(--gray);
	line-height: 1.5;
	letter-spacing: -0.02em;
}

.single-post__meta:has(.single-post__date) {
	flex-direction: row;
}

.single-post__meta:not(:has(.single-post__date)) {
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
}

.single-post__date {
	font-family: var(--en-font);
}

.single-post__category {
	font-family: var(--en-font);
}

.single-post__company {
	font-family: var(--en-font);
}

.single-post__title {
	font-size: 1.5rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.4;
	margin-bottom: 2.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--black);
}

.single-post__image {
	margin-bottom: 2.5rem;
}

.single-post__image img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 800/420;
	object-fit: cover;
	background-color: #d9d9d9;
}

.single-post__content {
	margin-bottom: 2.5rem;
}

.single-post__back {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2.5rem;
}

.single-related {
	padding: 5rem 0;
}

.single-related__inner {
	max-width: 64.375rem;
	margin-inline: auto;
}

.single-related__title {
	margin-bottom: 2.5rem;
}

.single-related__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.single-related__grid .column-card,
.single-related__grid .works-card {
	width: 100%;
	max-width: 20.625rem;
}

.single-service {
	padding: 9.375rem 0;
}

.single-service__title {
	margin-bottom: 2.5rem;
}

.single-service__cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.single-service__card {
	border: 1px solid var(--light-gray);
	border-radius: 0.5rem;
	padding: 1.5rem;
	display: block;
}

.single-service__card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
}

.single-service__card-title {
	font-size: 1.5rem;
	font-weight: var(--bold);
	color: var(--navy, #1e3044);
	line-height: 1;
	letter-spacing: 0.08em;
}

.single-service__card-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	flex-shrink: 0;
	transition: opacity 0.3s ease;
}

.single-service__card-link img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.single-service__card-description {
	font-size: 1rem;
	font-weight: var(--medium);
	color: var(--black);
	line-height: 1.6;
	letter-spacing: 0.08em;
	text-align: justify;
}

.tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.375rem 1rem;
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--indigo);
	line-height: 1.5;
	letter-spacing: -0.02em;
	border: 1px solid var(--indigo);
	border-radius: 1.5rem;
	background-color: var(--white);
	transition: all 0.3s ease;
}

.tag.is-active {
	background-color: var(--indigo);
	color: var(--white);
}

.tags {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
}

.works-card__link {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.works-card__image {
	aspect-ratio: 330/173;
	overflow: hidden;
	background-color: #d9d9d9;
}

.works-card__img {
	transition: 0.3s ease-out all;
}

.works-card__category {
	font-family: var(--en-font);
	font-size: 0.875rem;
	font-weight: var(--medium);
	color: var(--gray);
	line-height: 1.5;
	transition: 0.3s ease-out all;
}

.works-card__company {
	font-size: 1rem;
	font-weight: var(--medium);
	color: var(--indigo);
	line-height: 1;
	transition: 0.3s ease-out all;
}

.works-card__title {
	font-size: 1.25rem;
	font-weight: var(--bold);
	color: var(--indigo);
	line-height: 1.6;
	letter-spacing: 0.08em;
	text-align: justify;
	transition: 0.3s ease-out all;
}

.works-stats {
	min-width: 0;
}

.works-stats__stats {
	margin-inline: auto;
	max-width: 50rem;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	place-content: center;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.works-stats__stat {
	aspect-ratio: 261/100;
}

.works-stats__stat-img {
	object-fit: contain;
}

.works-stats__logo-slider .logo-slider__items {
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
	animation: unset;
	display: block;
}

.works-stats__logo-slider .logo-slider__item {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 0.5rem;
}

.works-stats__logo-slider .logo-slider__item:not(:first-of-type) {
	display: none;
}

.works-stats__logo-slider .logo-slider__img {
	width: unset;
}

.wysiwyg h2 {
	font-size: 1.5rem;
	font-weight: var(--bold);
	color: var(--wysiwyg-text);
	line-height: 1.4;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--wysiwyg-border);
}

.wysiwyg h3 {
	font-size: 1.25rem;
	font-weight: var(--bold);
	color: var(--wysiwyg-text);
	line-height: 1.4;
	margin-top: 2rem;
	margin-bottom: 1rem;
	padding-left: 1rem;
	border-left: 4px solid var(--wysiwyg-border);
}

.wysiwyg h4 {
	font-size: 1.125rem;
	font-weight: var(--bold);
	color: var(--wysiwyg-text);
	line-height: 1.4;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
}

.wysiwyg p {
	font-size: 1rem;
	font-weight: var(--regular);
	color: var(--wysiwyg-text);
	line-height: 1.6;
	margin-bottom: 1rem;
	margin-top: 1rem;
}

.wysiwyg p a {
	color: var(--wysiwyg-link);
	text-decoration: underline;
	text-underline-position: from-font;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none;
}

.wysiwyg p strong {
	font-weight: var(--bold);
}

.wysiwyg ul,
.wysiwyg ol {
	margin-bottom: 1rem;
}

.wysiwyg ul li {
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--wysiwyg-text);
	line-height: 1.6;
	padding-left: 1.5625rem;
	position: relative;
	margin-bottom: 0.5rem;
}

.wysiwyg ul li::before {
	content: "・";
	position: absolute;
	left: 0;
}

.wysiwyg ol {
	list-style: none;
	counter-reset: list-counter;
	padding-left: 0;
}

.wysiwyg ol li {
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--wysiwyg-text);
	line-height: 1.6;
	padding-left: 1.75rem;
	position: relative;
	margin-bottom: 0.5rem;
	counter-increment: list-counter;
}

.wysiwyg ol li::before {
	content: counter(list-counter) ".";
	position: absolute;
	left: 0;
}

.wysiwyg table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 2rem;
	border: 1px solid var(--wysiwyg-border);
}

.wysiwyg table tr:nth-of-type(1) td {
	font-weight: var(--bold);
	background-color: var(--wysiwyg-bg);
}

.wysiwyg table th,
.wysiwyg table td {
	padding: 1rem;
	border: 1px solid var(--wysiwyg-border);
	font-size: 1rem;
	line-height: 1.5;
}

.wysiwyg table th {
	background-color: var(--wysiwyg-bg);
	font-weight: var(--bold);
	color: var(--wysiwyg-text);
	text-align: left;
}

.wysiwyg table td {
	font-weight: var(--normal);
	color: var(--wysiwyg-text);
}

.wysiwyg blockquote {
	position: relative;
	padding: 1.5625rem 3rem 1.5625rem 3rem;
	margin: 2rem 0;
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--wysiwyg-text);
	line-height: 1.2;
}

.wysiwyg blockquote::before {
	content: '"';
	position: absolute;
	top: 0rem;
	left: 0rem;
	aspect-ratio: 1;
	width: 2rem;
	height: 2rem;
	padding: 0.6875rem 0 0 0.8125rem;
	border-top: 1px solid var(--wysiwyg-border);
	border-left: 1px solid var(--wysiwyg-border);
	font-size: 3rem;
	font-family: "Hiragino Kaku Gothic Pro", sans-serif;
	color: var(--wysiwyg-border);
	line-height: 1;
}

.wysiwyg blockquote::after {
	content: '"';
	position: absolute;
	bottom: 0rem;
	right: 0rem;
	aspect-ratio: 1;
	width: 2rem;
	height: 2rem;
	padding: 0 0.8125rem 0.6875rem 0;
	border-bottom: 1px solid var(--wysiwyg-border);
	border-right: 1px solid var(--wysiwyg-border);
	font-size: 3rem;
	font-family: "Hiragino Kaku Gothic Pro", sans-serif;
	color: var(--wysiwyg-border);
	line-height: 1;
}

.wysiwyg .has-underline {
	background: linear-gradient(transparent 60%, var(--wysiwyg-highlight) 60%);
}

.wysiwyg .wp-block-image {
	margin: 1rem 0;
}

.archive-pickup {
	margin-top: 5rem;
	margin-bottom: 7rem;
}

.archive-pickup__title {
	margin-bottom: 2.5rem;
}

.archive-pickup__empty {
	font-size: 1rem;
}

.archive-pickup__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1.1875rem;
}

.archive-column-list {
	background-color: var(--white);
	padding: 5rem 0;
}

.archive-column-list__title {
	margin-bottom: 2.5rem;
}

.archive-column-filter {
	margin-bottom: 2.5rem;
}

.archive-column-list__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4.375rem 1.25rem;
	max-width: 64.375rem;
	margin-inline: auto;
	margin-bottom: 2.5rem;
}

.archive-column-list__empty {
	font-size: 1rem;
	margin-top: -2.25rem;
	text-align: left;
	color: var(--black);
	line-height: 1.8;
	padding: 2.5rem 0;
}

.archive-download-list {
	background-color: var(--white);
	padding: 5rem 0 6.25rem;
}

.archive-download-list__title {
	margin-bottom: 2.5rem;
}

.archive-download-list__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3.75rem 1.25rem;
	max-width: 64.375rem;
	margin-inline: auto;
}

.archive-download-list__empty {
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--black);
	line-height: 1.8;
	text-align: center;
	padding: 2.5rem 0;
}

.archive-download-card {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	text-decoration: none;
}

.archive-download-card__image {
	aspect-ratio: 330/173;
	overflow: hidden;
	background-color: var(--light-gray);
}

.archive-download-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-out all;
}

.archive-download-card__placeholder {
	width: 100%;
	height: 100%;
	background-color: var(--light-gray);
}

.archive-download-card__meta {
	margin-top: unset;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.875rem;
	font-weight: var(--normal);
	color: var(--gray);
	line-height: 1.5;
	letter-spacing: -0.02em;
}

.archive-download-card__category {
	transition: 0.3s ease-out all;
}

.archive-download-card__title {
	font-size: 1.125rem;
	font-weight: var(--bold);
	color: var(--indigo);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: 0.3s ease-out all;
}

.archive-download-card__button {
	width: 100%;
	max-width: 9.75rem;
	margin-inline: auto;
	transition: 0.3s ease-out all;
}

.archive-news-list {
	background-color: var(--white);
	padding: 4.375rem 0 8.125rem;
}

.archive-news-list__inner {
	max-width: 59.375rem;
	padding: 0 var(--padding-pc);
	margin-inline: auto;
}

.archive-news-filter {
	margin-bottom: 3.0625rem;
}

.archive-news-list__items {
	display: flex;
	flex-direction: column;
	margin-bottom: 3.75rem;
}

.grid-content {
	margin-top: 1.875rem;
	max-width: 89.375rem;
	padding: 0 var(--padding-pc);
	margin-inline: auto;
	display: flex;
	justify-content: space-between;
	gap: 5rem;
}

.grid-content__main {
	padding-left: 10.3125rem;
	width: 50%;
	flex-grow: 1;
}

.grid-content__sidebar {
	width: 17.5rem;
	position: relative;
}

.company-purpose {
	background-color: var(--white);
	padding: 2.375rem 0 2.5rem 0.625rem;
}

.company-purpose__heading {
	margin: 0 0 2.5rem 0;
}

.company-purpose__content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.company-purpose__title {
	font-size: 1.5rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.5;
	font-feature-settings: normal;
	letter-spacing: 0.04em;
}

.company-purpose__text {
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--black);
	line-height: 2;
	display: grid;
	grid-template-columns: 1fr;
	font-feature-settings: normal;
	gap: 1lh;
}

.company-info {
	background-color: var(--white);
	padding: 2.5rem 0;
}

.company-info__title {
	margin-bottom: 2.5rem;
}

.company-info__table {
	display: flex;
	flex-direction: column;
}

.company-info__row {
	display: flex;
	border-bottom: 1px solid var(--light-gray);
}

.company-info__label {
	background-color: #f3f3f3;
	width: 12.5rem;
	padding: 0.9375rem;
	font-size: 1.125rem;
	font-weight: var(--normal);
	color: var(--black);
	line-height: 1.5;
	letter-spacing: 0.04em;
	font-feature-settings: normal;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.company-info__value {
	background-color: var(--white);
	flex: 1;
	padding: 1.5rem;
	font-size: 1.125rem;
	font-weight: var(--normal);
	color: var(--black);
	line-height: 1.5;
	letter-spacing: 0.04em;
	font-feature-settings: normal;
	display: flex;
	align-items: center;
}

.company-team {
	padding: 2.5rem 0 0;
	margin-bottom: 11.25rem;
}

.company-team__title {
	margin-bottom: 2.5rem;
}

.company-team__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 2rem;
}

.company-team__member {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-bottom: 1.625rem;
}

.js-team-modal .company-team__member-image {
	position: relative;
}

.js-team-modal .company-team__member-image::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0.8125rem;
	right: 0.8125rem;
	aspect-ratio: 1;
	width: 1.5rem;
	background-image: url("../images/common/toggle.svg");
	background-repeat: no-repeat;
	background-size: contain;
	transition: 0.3s ease-out all;
}

.company-team__member-image {
	width: 100%;
	aspect-ratio: 1;
	overflow: hidden;
	position: relative;
}

.company-team__member-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-in-out all;
}

.company-team__member-info {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.company-team__member-role {
	font-size: 0.875rem;
	font-weight: var(--normal);
	color: var(--black);
	line-height: 1.4;
	letter-spacing: 0.08em;
	margin: 0;
	transition: 0.3s ease-out all;
}

.company-team__member-name {
	font-size: 1.5rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.4;
	letter-spacing: 0.04em;
	margin: 0;
	transition: 0.3s ease-out all;
}

.company-team__member.js-team-modal {
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.team-modal {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.team-modal.is-open {
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
}

.team-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	cursor: pointer;
	pointer-events: auto;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.team-modal.is-open .team-modal__overlay {
	opacity: 1;
}

.team-modal__content {
	position: relative;
	background-color: var(--white);
	border-radius: 0.5rem;
	padding: 2.5rem;
	width: 50rem;
	max-width: 90vw;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.25);
	z-index: 10001;
	pointer-events: auto;
	opacity: 0;
	transform: translateY(1.25rem);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.team-modal.is-open .team-modal__content {
	opacity: 1;
	transform: translateY(0);
}

.team-modal__close {
	position: absolute;
	top: 2.5rem;
	right: 2.5rem;
	width: 2.125rem;
	height: 2.125rem;
	background-color: var(--indigo);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	z-index: 10002;
	transition: opacity 0.3s ease;
}

.team-modal__close:hover {
	opacity: 0.8;
}

.team-modal__close-icon {
	position: relative;
	width: 1.125rem;
	height: 1.125rem;
}

.team-modal__close-icon::before,
.team-modal__close-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1.125rem;
	height: 0.125rem;
	background-color: var(--white);
	transform: translate(-50%, -50%) rotate(45deg);
}

.team-modal__close-icon::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.team-modal__body {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-top: 0.625rem;
}

.team-modal__role {
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--black);
	line-height: 1.4;
	letter-spacing: 0.08em;
	margin: 0;
}

.team-modal__header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin: 2rem 0 0 0;
}

.team-modal__name {
	font-size: 1.5rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.4;
	letter-spacing: 0.04em;
	margin: 0;
}

.team-modal__twitter {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.125rem;
	height: 1.125rem;
	color: var(--black);
	transition: opacity 0.3s ease;
}

.team-modal__twitter:hover {
	opacity: 0.7;
}

.team-modal__twitter svg {
	width: 100%;
	height: 100%;
}

.team-modal__bio {
	font-size: 0.875rem;
	font-weight: var(--normal);
	color: var(--black);
	line-height: 2;
	letter-spacing: 0.08em;
	margin: 0;
	margin-top: 0.25rem;
}

.complete-page {
	padding-top: 3.75rem;
}

.complete-section {
	background-color: var(--white);
	padding: 5rem 0;
}

.complete-section__inner {
	max-width: 67.5rem;
	padding: 0 var(--padding-pc);
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.complete-section__title {
	font-size: 1.5rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.4;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--black);
}

.complete-section__text {
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--black);
	line-height: 2;
	text-align: left;
}

.complete-section__button {
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 18.75rem;
	width: -moz-fit-content;
	width: fit-content;
	background: linear-gradient(to bottom, var(--orange-start), var(--orange-end));
	border-radius: 0.25rem;
	box-shadow: 0 0.0625rem 0.75rem rgba(0, 0, 0, 0.2);
	text-decoration: none;
	padding: 1.0625rem 1.125rem;
	transition: all 0.3s ease-out;
}

.complete-section__button-text {
	font-size: 1rem;
	font-weight: var(--bold);
	color: var(--white);
	text-align: center;
}

.confirm-page {
	padding-top: 3.75rem;
}

.confirm-section {
	background-color: var(--white);
	padding: 5rem 0;
}

.confirm-section__inner {
	max-width: 64.375rem;
	padding: 0 var(--padding-pc);
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.confirm-section__header {
	width: 100%;
}

.confirm-section__title {
	font-size: 1.5rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--black);
}

.confirm-section__lead {
	font-size: 1rem;
	font-weight: var(--medium);
	color: var(--black);
	line-height: 2;
}

.confirm-section__form-wrapper {
	max-width: 35rem;
	width: 100%;
	margin-inline: auto;
	background-color: #f3f3f3;
	border-radius: 0.5rem;
	padding: 2.5rem;
}

/* 確認画面用フォームスタイル */

.confirm-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.confirm-form__field {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.confirm-form__label-wrapper {
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
}

.confirm-form__badge {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 3.0625rem;
	height: 1.625rem;
	padding: 0 0.5rem;
	background-color: #f14668;
	border-radius: 0.25rem;
	font-size: 0.875rem;
	font-weight: var(--bold);
	color: var(--white);
	line-height: 1.5;
	letter-spacing: -0.02em;
	flex-shrink: 0;
}

.confirm-form__label {
	font-size: 1rem;
	font-weight: var(--medium);
	color: var(--black);
	line-height: 1.5;
}

.confirm-form__value {
	font-size: 1rem;
	font-weight: var(--medium);
	color: var(--black);
	line-height: 1.6;
	letter-spacing: -0.02em;
	word-break: break-word;
}

.confirm-form__submit-wrapper {
	margin-top: 0.5rem;
}

.confirm-form__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 3.125rem;
	background: linear-gradient(to bottom, var(--orange-start), var(--orange-end));
	border: none;
	border-radius: 0.25rem;
	box-shadow: 0 0.0625rem 0.5rem rgba(0, 0, 0, 0.2);
	font-size: 0.9375rem;
	font-weight: var(--bold);
	color: var(--white);
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease-out;
}

.confirm-form__back-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 0.5rem;
}

.confirm-form__back-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	text-decoration: none;
	transition: opacity 0.3s ease-out;
}

.confirm-form__back-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	height: 1.25rem;
	transform: rotate(180deg);
}

.confirm-form__back-icon svg {
	width: 100%;
	height: 100%;
	fill: var(--black);
}

.confirm-form__back-text {
	font-size: 1rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.6;
	letter-spacing: 0.08em;
}

/* CF7確認画面用の上書きスタイル */

.confirm-page .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.confirm-page .wpcf7-confirm-field {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.confirm-page .wpcf7-confirm-label {
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
}

.confirm-page .wpcf7-confirm-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 3.0625rem;
	height: 1.625rem;
	padding: 0 0.5rem;
	background-color: #f14668;
	border-radius: 0.25rem;
	font-size: 0.875rem;
	font-weight: var(--bold);
	color: var(--white);
	line-height: 1.5;
	letter-spacing: -0.02em;
	flex-shrink: 0;
}

.confirm-page .wpcf7-confirm-name {
	font-size: 1rem;
	font-weight: var(--medium);
	color: var(--black);
	line-height: 1.5;
}

.confirm-page .wpcf7-confirm-value {
	font-size: 1rem;
	font-weight: var(--medium);
	color: var(--black);
	line-height: 1.6;
	letter-spacing: -0.02em;
	word-break: break-word;
}

.confirm-page .wpcf7-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 3.125rem;
	background: linear-gradient(to bottom, var(--orange-start), var(--orange-end));
	border: none;
	border-radius: 0.25rem;
	box-shadow: 0 0.0625rem 0.5rem rgba(0, 0, 0, 0.2);
	font-size: 0.9375rem;
	font-weight: var(--bold);
	color: var(--white);
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease-out;
}

.confirm-page .wpcf7-back-button,
.confirm-page .wpcf7-previous {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	background: transparent;
	border: none;
	cursor: pointer;
	transition: opacity 0.3s ease-out;
	margin-inline: auto;
}

.confirm-page .wpcf7-back-button::before,
.confirm-page .wpcf7-previous::before {
	content: "";
	display: block;
	width: 1.25rem;
	height: 1.25rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23424242'%3E%3Cpath d='M10 3.5L8.5 5l5 5-5 5 1.5 1.5 6.5-6.5L10 3.5z'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	transform: rotate(180deg);
}

.confirm-page .wpcf7-back-button span,
.confirm-page .wpcf7-back-button-text,
.confirm-page .wpcf7-previous span,
.confirm-page .wpcf7-previous-text {
	font-size: 1rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.6;
	letter-spacing: 0.08em;
}

.form-section {
	background-color: var(--white);
	padding: 2rem 0 5.5rem;
}

.form-section__inner {
	max-width: 83.125rem;
	padding: 0 var(--padding-pc);
	margin-inline: auto;
}

.form-section__wrapper {
	display: flex;
	align-items: flex-start;
	gap: 2.5rem;
}

.form-section__content {
	display: grid;
	width: 20%;
	flex-grow: 1;
	gap: 5rem;
	padding-left: 7.8125rem;
	margin-top: 2.5rem;
}

.form-section__item {
	display: grid;
	grid-template-columns: 100%;
	gap: 2.5rem;
}

.form-section__thumbnail {
	width: 100%;
	aspect-ratio: 555/291;
}

.form-section__thumbnail-img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 0.25rem;
}

.form-section__form-wrapper {
	width: 35rem;
	background-color: #f3f3f3;
	border-radius: 0.5rem;
	padding: 2.5rem;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.contact-form__label-wrapper {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.contact-page .logo-slider__item {
	grid-template-columns: 1fr 1fr 1fr;
}

.page-service-under .page-header__title-en {
	font-size: 2.5rem;
	font-weight: var(--medium);
}

.page-service-under .cta {
	margin-top: 5rem;
}

.page-service-under .cta__inner {
	padding: unset;
}

.page-service-under .grid-content__sidebar {
	padding-bottom: 3.5rem;
}

.privacy-policy-content {
	background-color: var(--white);
	padding: 2.5rem 0 5rem;
}

.privacy-policy-content__inner {
	max-width: 56.25rem;
	margin-inline: auto;
	padding: 0 var(--padding-pc);
}

.privacy-policy-section {
	margin-bottom: 3.75rem;
}

.privacy-policy-section:last-child {
	margin-bottom: 0;
}

.privacy-policy-section__title {
	margin-bottom: 1.5rem;
}

.privacy-policy-section__text {
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--black);
	line-height: 2;
	letter-spacing: 0.08em;
}

.privacy-policy-section__text p {
	margin-bottom: 1rem;
}

.privacy-policy-section__text p:last-child {
	margin-bottom: 0;
}

.privacy-policy-section__list {
	margin-top: 1rem;
	margin-bottom: 1rem;
	padding-left: 1.5rem;
	list-style-type: disc;
}

.privacy-policy-section__list li {
	margin-bottom: 0.5rem;
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--black);
	line-height: 2;
	letter-spacing: 0.08em;
}

.privacy-policy-section__list li:last-child {
	margin-bottom: 0;
}

.privacy-policy-section__contact {
	margin-top: 1.5rem;
	margin-bottom: 2rem;
}

.privacy-policy-section__contact-name {
	font-size: 1rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 2;
	letter-spacing: 0.08em;
	margin-bottom: 0.5rem;
}

.privacy-policy-section__contact-address {
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--black);
	line-height: 2;
	letter-spacing: 0.08em;
}

.privacy-policy-section__button {
	margin-top: 2rem;
}

.service-cards {
	background-color: var(--white);
	padding: 4.375rem 0 0;
	margin-bottom: 7.8125rem;
}

.service-cards__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.single-wrapper {
	display: flex;
	gap: 5rem;
	max-width: 90rem;
	margin-inline: auto;
	padding: 5rem var(--padding-pc) 0.625rem;
}

.single-wrapper__content {
	flex: 1;
	max-width: 67.625rem;
}

.single-wrapper__sidebar {
	width: 22.375rem;
	flex-shrink: 0;
	padding: 2.5rem;
	background-color: var(--white);
}

.single-news {
	padding: 5rem 0;
}

.single-news__inner {
	max-width: 53.125rem;
	padding: 0 var(--padding-pc);
	margin-inline: auto;
}

.single-news__meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2.5rem;
	font-size: 0.875rem;
	font-weight: var(--medium);
	color: var(--gray);
	line-height: 1.5;
	letter-spacing: -0.02em;
}

.single-news__date {
	font-family: var(--en-font);
}

.single-news__category {
	font-family: var(--en-font);
}

.single-news__title {
	font-size: 1.5rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.5;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--light-gray);
}

.single-news__image {
	margin-bottom: 2.5rem;
}

.single-news__image img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 800/420;
	object-fit: cover;
	background-color: #d9d9d9;
}

.single-news__content {
	margin-bottom: 2.5rem;
}

.single-news__back {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2.5rem;
}

.back-archive {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1rem;
	font-weight: var(--bold);
	color: var(--black);
	text-decoration: none;
	letter-spacing: 0.08em;
	transition: opacity 0.3s ease;
}

.back-archive__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	height: 1.25rem;
	transform: rotate(225deg);
}

.back-archive__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.back-archive__text {
	line-height: 1.6;
}

.single-works .single-post__meta {
	margin-bottom: 1rem;
}

.sitemap-content {
	background-color: var(--white);
	padding: 2.5rem 0 5rem;
}

.sitemap-content__inner {
	max-width: 56.25rem;
	margin-inline: auto;
	padding: 0 var(--padding-pc);
}

.sitemap-section {
	margin-bottom: 3.75rem;
}

.sitemap-section:last-child {
	margin-bottom: 0;
}

.sitemap-section__title {
	margin-bottom: 1.5rem;
}

.sitemap-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.sitemap-list__item {
	margin: 0;
	padding: 0.125rem 0;
}

.sitemap-list__item .top-mv__service-link-item {
	justify-content: flex-start;
	width: -moz-fit-content;
	width: fit-content;
	gap: 0.5rem;
	border-bottom: 1px solid var(--light-gray);
}

.sitemap-list__item .top-mv__service-link-icon {
	margin-top: 1px;
}

.sitemap-list__item--child {
	padding-left: 1.5rem;
}

.sitemap-list__item--grandchild {
	padding-left: 3rem;
}

.sitemap-list__item--grandchild .top-mv__service-link-text::before {
	content: "・";
	margin-right: 0.25rem;
}

.sitemap-list__item .top-mv__service-link-text .popup {
	width: 1rem;
	aspect-ratio: 1;
	background-color: var(--black);
	-webkit-mask-image: url("../images/common/popup.svg");
	mask-image: url("../images/common/popup.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
	display: inline-block;
	margin-left: 0.25rem;
}

.top-mv {
	padding: 10rem 0 6.25rem;
	overflow: hidden;
}

.top-mv__content {
	display: flex;
	gap: 3.75rem;
	align-items: flex-start;
	margin-bottom: 1.5rem;
}

.top-mv__left {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	width: 33.125rem;
}

.top-mv__title {
	font-size: 3rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.5;
	letter-spacing: 0.05em;
	width: calc(100% + 7.5rem);
}

.top-mv__description {
	font-size: 0.875rem;
	font-weight: var(--medium);
	color: var(--black);
	line-height: 1.6;
	letter-spacing: 0.08em;
	text-align: justify;
}

.top-mv__stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
}

.top-mv__stat {
	aspect-ratio: 261/100;
}

.top-mv__stat-img {
	object-fit: contain;
}

.top-mv__service-links {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
	margin-top: 1rem;
}

.top-mv__service-link {
	padding: 0.125rem 0;
	border-bottom: 1px solid var(--black);
}

.top-mv__service-link-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: opacity 0.3s ease;
}

.top-mv__service-link-text {
	font-size: 1rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.6;
	letter-spacing: 0.08em;
	transition: 0.3s ease-out all;
}

.top-mv__service-link-icon {
	width: 1.25rem;
	aspect-ratio: 1;
	background: linear-gradient(to bottom, var(--orange-start), var(--orange-end));
}

.top-mv__right {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	width: 40%;
	flex-grow: 1;
}

.top-mv__right .swiper {
	overflow: visible;
	width: 100%;
}

.top-mv__right .swiper-pagination {
	margin-top: 1.25rem;
	position: static !important;
}

.top-mv__right .swiper-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0rem;
}

.top-mv__right .swiper-pagination-bullet {
	opacity: 1;
	margin: 0;
	aspect-ratio: 1;
	width: 1rem;
	height: 1rem;
	-webkit-mask-image: url("../images/common/logo-icon.svg");
	mask-image: url("../images/common/logo-icon.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 1rem 1rem;
	mask-size: 1rem 1rem;
	-webkit-mask-position: center;
	mask-position: center;
	background: linear-gradient(to right, var(--orange-start), var(--orange-end));
	border-radius: unset;
	position: relative;
	transition: 0.3s ease-in-out all;
}

.top-mv__right .swiper-pagination-bullet::after {
	content: "";
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: var(--light-gray);
	-webkit-mask-image: url("../images/common/logo-icon.svg");
	mask-image: url("../images/common/logo-icon.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 1rem 1rem;
	mask-size: 1rem 1rem;
	-webkit-mask-position: center;
	mask-position: center;
	transition: 0.3s ease-in-out all;
	transform: scale(1) rotate(0deg);
}

.top-mv__right .swiper-pagination-bullet-active {
	transform: rotate(90deg);
}

.top-mv__right .swiper-pagination-bullet-active::after {
	transform: scale(0) rotate(90deg);
	opacity: 0;
}

.top-mv__document-image {
	box-shadow: 0 0 9.375rem rgba(242, 151, 71, 0.5);
	aspect-ratio: 440/320;
	background-color: #d5d4d4;
	border-radius: 0.5rem;
	overflow: hidden;
	margin-bottom: 0.875rem;
}

.top-mv__document-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.top-mv__document {
	transition: opacity 0.3s ease;
}

.top-mv__document-link {
	display: block;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.top-mv__document-title {
	font-size: 0.875rem;
	font-weight: var(--medium);
	color: var(--black);
	line-height: 1.6;
	letter-spacing: 0.08em;
	text-align: justify;
	transition: 0.3s ease-in-out all;
}

.top-mv__news {
	margin-bottom: 1.5rem;
}

.top-mv__news .news-item {
	border-bottom: unset;
}

.top-mv__news .news-item__content {
	padding-inline: unset;
}

.top-service {
	padding: 5rem 0 5.3125rem;
}

.top-service__heading {
	margin-bottom: 1.625rem;
}

.top-service__grid {
	gap: 1.5rem;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}

.top-feature {
	padding: 6.5rem 0 4rem;
}

.top-feature__heading {
	margin-bottom: 1.6875rem;
}

.top-feature__section {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	width: 100%;
	align-items: center;
	margin-bottom: 1.625rem;
}

.top-feature__section--book {
	padding: 3rem 0;
	margin-bottom: unset;
}

.top-feature__content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	text-align: center;
}

.top-feature__label {
	font-size: 1rem;
	font-weight: var(--medium);
	color: var(--black);
	line-height: 2;
}

.top-feature__title {
	font-size: 2rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.5;
	letter-spacing: 0.04em;
	font-feature-settings: normal;
	text-align: center;
}

.top-feature__text {
	font-size: 1rem;
	font-weight: var(--medium);
	font-feature-settings: normal;
	color: var(--black);
	line-height: 2;
	text-align: center;
}

.top-feature__image {
	width: 100%;
}

.top-feature__image01 {
	max-width: 50rem;
	margin-inline: auto;
}

.top-feature__image02 {
	margin-left: -2.1875rem;
	width: calc(100% + 4.375rem);
}

.top-feature__image03 {
	max-width: 51.625rem;
	margin-inline: auto;
}

.top-feature__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.top-feature__swiper {
	margin-bottom: 0.625rem;
	overflow: visible;
}

.top-feature__swiper .swiper-slide {
	aspect-ratio: 826/464;
	box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
}

.top-feature__pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	margin-top: 1.5rem;
	font-size: 1rem;
	font-weight: var(--bold);
	color: var(--indigo);
	letter-spacing: 0.08em;
}

.top-feature__pagination-current {
	font-family: var(--en-font);
}

.top-feature__pagination-separator {
	font-family: var(--en-font);
}

.top-feature__pagination-total {
	font-family: var(--en-font);
}

.top-feature__next-button {
	cursor: pointer;
	margin-top: 1rem;
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
	padding: 0.8125rem 3.125rem;
	border-radius: 0.25rem;
	border: 1px solid var(--indigo);
	display: flex;
	align-items: center;
	gap: 0.625rem;
	transition: 0.3s ease-in-out all;
}

.top-feature__next-button .text {
	font-size: 0.9375rem;
	font-weight: var(--bold);
	color: var(--indigo);
	transition: 0.3s ease-in-out all;
}

.top-feature__next-button .icon {
	aspect-ratio: 1;
	width: 1.5rem;
	background-color: var(--indigo);
	-webkit-mask-image: url("../images/common/loop.svg");
	mask-image: url("../images/common/loop.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: 0.3s ease-in-out all;
}

.top-feature__book {
	max-width: 50rem;
	margin-inline: auto;
	display: flex;
	gap: 1rem;
	align-items: center;
	padding: 2.75rem 2.5rem;
	border: 1px solid var(--light-gray);
	border-radius: 0.5rem;
}

.top-feature__book-image {
	width: 21.4375rem;
	aspect-ratio: 343/212;
}

.top-feature__book-img {
	object-fit: contain;
}

.top-feature__book-content {
	padding-left: 1.5rem;
	width: 50%;
	flex-grow: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.5rem;
}

.top-feature__book-title {
	font-size: 1.5rem;
	font-weight: var(--bold);
	color: var(--indigo);
	line-height: 1.4;
	letter-spacing: 0.08em;
}

.top-feature__book-text {
	font-size: 1rem;
	font-weight: var(--medium);
	color: var(--indigo);
	line-height: 2;
}

.top-feature__button {
	margin-inline: unset;
}

.top-feature__button .popup {
	width: 1.25rem;
}

.top-works {
	padding: 3.75rem 0 0;
	margin-bottom: 3.75rem;
	overflow: hidden;
}

.top-works__heading {
	margin-bottom: 3.125rem;
}

.top-works__stats-wrapper .works-stats__logo-slider {
	margin-bottom: 4rem;
}

.top-works__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-bottom: 2.5rem;
}

.top-news {
	background-color: var(--white);
	margin-bottom: 8.5rem;
}

.top-news__heading {
	margin-bottom: 1.5625rem;
}

.top-news__content {
	max-width: 56.25rem;
	margin-inline: auto;
}

.top-news__filter {
	margin-bottom: 4.25rem;
}

.top-news__items {
	margin-bottom: 2.5rem;
}

.top-news__button {
	display: flex;
	justify-content: center;
}

.top-news__button .button {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.top-news__button-icon {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	position: relative;
	z-index: 2;
}

.top-column {
	background-color: var(--white);
	padding: 4.375rem 0 7.5rem;
}

.top-column__heading {
	margin-bottom: 1.625rem;
}

.top-column__content {
	display: flex;
	flex-direction: column;
	gap: 5rem;
}

.top-column__section {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	width: 100%;
}

.top-column__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	width: 100%;
	max-width: 64.375rem;
}

.top-column__button {
	display: flex;
	justify-content: center;
}

.top-company {
	background-color: var(--white);
	padding: 5rem 0 4rem;
}

.top-company__heading {
	margin-bottom: 1.625rem;
}

.top-company__content {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.top-company__text {
	font-size: 1rem;
	font-weight: var(--medium);
	color: var(--black);
	line-height: 1.6;
	letter-spacing: 0.08em;
	text-align: justify;
}

.top-company__cards {
	gap: 1.5rem;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}

.top-company__card {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: flex-end;
	padding: 1.5rem;
	border: 1px solid var(--light-gray);
	border-radius: 0.5rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.top-company__card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.top-company__card-title {
	font-size: 1.5rem;
	transition: 0.3s ease-out all;
	font-weight: var(--bold);
	color: var(--indigo);
	line-height: 1;
	letter-spacing: 0.08em;
	transition: color 0.3s ease;
}

.works-archive__mv {
	background-color: var(--indigo);
	padding: 5rem 12.8125rem;
}

.works-archive__mv-inner {
	max-width: 64.375rem;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: flex-start;
}

.works-archive__mv-title {
	font-size: 2.5rem;
	font-weight: var(--normal);
	color: var(--white);
	line-height: 1;
	letter-spacing: 0.08em;
}

.works-archive__mv-text {
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--white);
	line-height: 1.6;
	letter-spacing: 0.08em;
}

.works-archive__mv-buttons {
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
}

.works-archive__content {
	background-color: var(--white);
	padding: 5rem 12.8125rem;
}

.works-archive__content-inner {
	max-width: 64.375rem;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.works-archive__filter {
	padding: 1.5rem 0;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.works-archive__filter-label {
	min-width: 8.75rem;
	font-family: var(--en-font);
	font-size: 0.875rem;
	font-weight: var(--normal);
	color: var(--gray);
	line-height: 1.5;
	width: 8.75rem;
}

.works-archive__filter-tags {
	justify-content: flex-start;
}

.works-archive__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
}

.works-archive__card {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.works-archive__card-image {
	width: 100%;
	height: 10.8125rem;
	background-color: #d9d9d9;
	border-radius: 0.5rem;
	overflow: hidden;
}

.works-archive__card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.works-archive__card-category {
	font-family: var(--en-font);
	font-size: 0.875rem;
	font-weight: var(--normal);
	color: var(--gray);
	line-height: 1.5;
}

.works-archive__card-company {
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--navy);
	line-height: 1;
}

.works-archive__card-title {
	font-size: 1.25rem;
	font-weight: var(--bold);
	color: var(--navy);
	line-height: 1.6;
	letter-spacing: 0.08em;
	text-align: justify;
}

.works-archive__pagination {
	display: flex;
	gap: 1.25rem;
	align-items: center;
	justify-content: center;
	padding: 0.625rem 0;
}

.works-archive__pagination-prev {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	border: 1px solid var(--light-gray);
	border-radius: 62.5rem;
	text-decoration: none;
	transform: rotate(180deg);
}

.works-archive__pagination-next {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	border: 1px solid var(--light-gray);
	border-radius: 62.5rem;
	text-decoration: none;
}

.works-archive__pagination-icon {
	display: block;
	aspect-ratio: 1;
	width: 1.25rem;
	-webkit-mask-image: url("../images/common/arrow-up.svg");
	mask-image: url("../images/common/arrow-up.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
	background-color: var(--indigo);
}

.works-archive__pagination-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	font-family: var(--en-font);
	font-size: 1.25rem;
	font-weight: var(--normal);
	color: var(--light-gray);
	line-height: 1;
	text-decoration: none;
	border: 1px solid var(--light-gray);
	border-radius: 62.5rem;
}

.works-archive__pagination-number--active {
	background-color: var(--indigo);
	color: var(--white);
	border-color: var(--indigo);
}

@media (any-hover: hover) {

a:hover .arrow-up {
	transform: rotate(45deg);
}

a.breadcrumb__link:hover {
	color: var(--orange);
	text-decoration-color: var(--orange);
}

.button2:hover {
	background-color: var(--indigo);
}

.button2:hover .button2__text {
	color: var(--white);
}

.button2:hover .button2__arrow {
	background-color: var(--white);
}

a:hover .circle-arrow {
	transform: rotate(45deg);
}

.column-card__link:hover .column-card__category {
	color: var(--orange-start);
}

.column-card__link:hover .column-card__title {
	color: var(--orange);
}

.column-card__link:hover .column-card__img {
	transform: scale(1.05);
}

.contact__button:hover {
	opacity: 0.7;
}

.cta__button:hover {
	opacity: 0.8;
}

.faq__question:hover {
	opacity: 0.8;
}

.footer__logo-link:hover {
	opacity: 0.8;
}

.footer__nav-link:hover {
	color: var(--orange);
}

.header__nav-item--has-sub:hover .header__sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.header__nav-item--has-sub:hover .header__nav-link--has-sub::after {
	transform: scaleY(-1);
}

.header__sub-menu-link:hover {
	background-color: rgba(247, 109, 29, 0.1);
	color: var(--orange);
}

.header__nav-link:hover {
	color: var(--orange);
}

.header__nav-link:hover .popup {
	background-color: var(--orange);
}

.news-item__link:hover {
	background-color: rgba(228, 242, 253, 0);
}

.news-item:hover {
	background-color: #e8e8e8;
	transform: translateX(0.3125rem);
}

a.pagination__item:hover {
	border-color: var(--indigo);
	color: var(--indigo);
}

.service-card__header:hover {
	opacity: 0.8;
}

a.service-card__header:hover .service-card__title {
	color: var(--orange);
}

a.service-card__header:hover .service-card__icon {
	transform: rotate(45deg);
}

a.service-card__item:hover .service-card__item-text {
	color: var(--orange);
	transform: translateX(0.3125rem);
}

.page-sidebar__nav-item:hover {
	color: var(--black);
}

.single-column__back-link:hover {
	opacity: 0.7;
}

.single-service__card-link:hover {
	opacity: 0.7;
}

.tag:hover {
	background-color: var(--indigo);
	color: var(--white);
}

.works-card__link:hover .works-card__category {
	color: var(--orange-start);
}

.works-card__link:hover .works-card__company {
	color: var(--orange-start);
}

.works-card__link:hover .works-card__title {
	color: var(--orange);
}

.works-card__link:hover .works-card__img {
	transform: scale(1.05);
}

.archive-download-card:hover .archive-download-card__category {
	color: var(--orange-start);
}

.archive-download-card:hover .archive-download-card__title {
	color: var(--orange);
}

.archive-download-card:hover .archive-download-card__img {
	transform: scale(1.05);
}

.archive-download-card:hover .archive-download-card__button {
	opacity: 0.8;
}

.company-team__member.js-team-modal:hover {
	opacity: 0.8;
}

.company-team__member.js-team-modal:hover .company-team__member-image img {
	transform: scale(1.05);
}

.company-team__member.js-team-modal:hover .company-team__member-image::after {
	transform: rotate(90deg) scale(1.2);
}

.company-team__member.js-team-modal:hover .company-team__member-name,
.company-team__member.js-team-modal:hover .company-team__member-role {
	color: var(--orange);
}

.complete-section__button:hover {
	opacity: 0.8;
}

.confirm-form__submit:hover {
	opacity: 0.8;
}

.confirm-form__back-link:hover {
	opacity: 0.7;
}

.confirm-page .wpcf7-submit:hover {
	opacity: 0.8;
}

.confirm-page .wpcf7-back-button:hover,
.confirm-page .wpcf7-previous:hover {
	opacity: 0.7;
}

.back-archive:hover {
	opacity: 0.7;
}

.top-mv__service-link-item:hover {
	opacity: 0.8;
}

.top-mv__service-link-item:hover .top-mv__service-link-text {
	color: var(--orange);
	transform: translateX(0.3125rem);
}

.top-mv__document-link:hover {
	opacity: 0.9;
}

.top-mv__document-link:hover .top-mv__document-img {
	transform: scale(1.05);
}

.top-mv__document-link:hover .top-mv__document-title {
	color: var(--orange);
}

.top-feature__next-button:hover {
	background-color: var(--indigo);
}

.top-feature__next-button:hover .text {
	color: var(--white);
}

.top-feature__next-button:hover .icon {
	background-color: var(--white);
	transform: rotate(180deg);
}

.top-feature__button:hover .popup {
	background-color: var(--white);
}

.top-company__card:hover {
	border-color: var(--orange);
}

.top-company__card:hover .top-company__card-title {
	color: var(--indigo);
}

.top-company__card:hover .top-company__card-title {
	color: var(--orange);
}

}

@media only screen and (min-width: 768px) {

.sp {
	display: none !important;
}

}

@media (min-width: 768px) {

html {
	font-size: 1.1851851852vw;
}

}

@media (min-width: 1350px) {

html {
	font-size: 16px;
}

}

@media only screen and (max-width: 767px) {

.pc {
	display: none !important;
}

}

@media screen and (max-width: 767px) {

a[href^="tel:"] {
	pointer-events: all;
}

a:hover {
	opacity: 0.8;
}

html.is-fixed {
	overflow: hidden;
	position: fixed;
	width: 100%;
}

.achievement-logo__heading {
	margin-bottom: 2rem;
}

.achievement-logo__content {
	gap: 0.75rem;
	margin-bottom: 2rem;
}

.achievement-logo__description {
	font-size: 0.875rem;
}

.achievement-logo__grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 0.5rem;
}

.achievement-logo__card {
	height: 5rem;
	padding: 1rem;
}

.achievement-logo__image {
	max-width: 100%;
}

.achievement-logo .cta {
	margin-top: 2rem;
	margin-bottom: 0;
}

.arrow-down {
	width: 1.25rem;
}

.base-text {
	font-size: 0.875rem;
}

.breadcrumb__inner {
	flex-wrap: wrap;
	max-width: 37.5rem;
	padding: 0 var(--padding-sp);
	gap: 0rem 0.5rem;
}

.button {
	width: 100%;
	padding: 0.75rem 0.9375rem;
	font-size: 0.875rem;
}

.column-card__link {
	gap: 0.75rem;
}

.column-card__meta {
	font-size: 0.75rem;
}

.column-card__title {
	font-size: 1rem;
	-webkit-line-clamp: 2;
}

.contact-form .contact-form__label {
	font-size: 0.875rem;
}

.contact-form .contact-form__required {
	font-size: 0.6875rem;
	padding: 0.3125rem;
}

.contact-form .contact-form__input {
	width: 100%;
	padding: 0.625rem 0.75rem;
	font-size: 0.875rem;
}

.contact-form .contact-form__textarea {
	height: 10rem;
	padding: 0.5rem 0.75rem;
	font-size: 0.875rem;
}

.contact-form .contact-form__checkbox-wrapper {
	gap: 0.375rem;
}

.contact-form .contact-form__checkbox {
	width: 1.75rem;
	height: 1.75rem;
}

.contact-form .contact-form__checkbox-label {
	font-size: 0.875rem;
	line-height: 1.5rem;
	padding-left: 2.25rem;
}

.contact-form .contact-form__checkbox-label::before {
	width: 1.75rem;
	height: 1.75rem;
}

.contact-form input[type=checkbox] + span {
	padding-left: 2.25rem;
	font-size: 0.875rem;
	line-height: 1.5rem;
}

.contact-form input[type=checkbox] + span::before {
	height: 1.75rem;
	width: 1.75rem;
}

.contact-form .contact-form__submit-wrapper input {
	padding: 0.75rem 0.9375rem;
}

.contact-form .wpcf7-acceptance input[type=checkbox] {
	width: 1.75rem;
	height: 1.75rem;
}

.contact-form .wpcf7-acceptance span {
	font-size: 0.875rem;
	line-height: 1.5rem;
}

.contact {
	padding: 2.5rem 0 3.75rem;
}

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

.contact__icon {
	width: 7.5rem;
	margin-inline: auto;
}

.contact__title {
	text-align: center;
	font-size: 1.5rem;
}

.contact__description {
	font-size: 0.875rem;
}

.contact__button {
	padding: 0.5rem 0.625rem;
}

.contact__button .contact__button-icon {
	width: 1rem;
}

.contact__divider {
	width: 100%;
	height: 1px;
}

.content-section {
	padding: 2rem 0;
}

.content-section--first {
	padding: 2.5rem 0 2rem;
}

.cta {
	margin-bottom: 2.5rem;
}

.cta__inner {
	max-width: 37.5rem;
	padding: 0 var(--padding-sp);
}

.cta__content {
	gap: 1.25rem;
	display: grid;
	border-radius: 0.25rem;
	padding-right: unset;
}

.cta__image {
	width: 100%;
	aspect-ratio: 282/189;
	border-radius: unset;
}

.cta__text {
	gap: 0.75rem;
	padding: 0.3125rem 0.625rem 1.5rem;
}

.cta__title {
	font-size: 1.25rem;
}

.cta__description {
	font-size: 0.875rem;
}

.cta__button {
	padding: 0.75rem 0.625rem;
	border-radius: 0.25rem;
	gap: 0.4375rem;
}

.cta__button-badge {
	font-size: 0.875rem;
	padding: 0.1875rem 0.125rem 0.25rem 0.25rem;
	width: -moz-fit-content;
	width: fit-content;
	line-height: 1;
}

.cta__button-text {
	font-size: 0.875rem;
}

.cta__button-icon {
	width: 1.5625rem;
}

.faq__heading {
	margin-bottom: 2rem;
}

.faq__list {
	gap: 2rem;
	margin-bottom: 2rem;
}

.faq__question {
	padding: 0.75rem 1rem;
	border-radius: 0.25rem;
}

.faq__question-label {
	font-size: 1.25rem;
}

.faq__question-text {
	font-size: 0.875rem;
}

.faq__answer {
	padding-top: 0.75rem;
	padding-left: 1rem;
}

.faq__answer-label {
	font-size: 1.25rem;
}

.faq__answer-text {
	font-size: 0.875rem;
}

.faq .cta {
	margin-top: 2rem;
}

.footer {
	padding: 2.5rem 0 0;
}

.footer__inner {
	max-width: 37.5rem;
	padding: 0 var(--padding-sp);
}

.footer__content {
	flex-direction: column;
	gap: 2rem;
	padding: 0;
}

.footer__left {
	width: 100%;
	align-items: center;
	text-align: center;
}

.footer__logo {
	width: 14.375rem;
	height: auto;
}

.footer__address {
	font-size: 0.875rem;
	line-height: 1.6;
}

.footer__right {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem 1rem;
}

.footer__nav-column {
	width: 100%;
	min-width: 0;
}

.footer__nav-column:nth-child(3),
.footer__nav-column:nth-child(4) {
	grid-column: span 1;
}

.footer__nav-list {
	gap: 0.75rem;
}

.footer__nav-link {
	font-size: 0.875rem;
	line-height: 1.6;
	white-space: normal;
}

.footer__nav-link--external .popup {
	width: 1.125rem;
}

.footer__copyright {
	padding: 1rem var(--padding-sp);
	margin-top: 2rem;
	justify-content: center;
}

.footer__copyright-text {
	font-size: 0.6875rem;
	text-align: center;
}

.header {
	height: auto;
	padding: 0.625rem 0;
}

.header__inner {
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 0 var(--padding-sp) 0 1rem;
}

.header__logo-link {
	width: 12.5rem;
}

.header__drawer-button {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 1.875rem;
	height: 1.25rem;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 101;
	position: relative;
}

.header__drawer-button-line {
	display: block;
	width: 100%;
	height: 0.125rem;
	background-color: var(--black);
	transition: all 0.3s ease-in-out;
	border-radius: 0.125rem;
}

.header__drawer-button.open .header__drawer-button-line:nth-child(1) {
	transform: translateY(0.5625rem) rotate(45deg);
}

.header__drawer-button.open .header__drawer-button-line:nth-child(2) {
	opacity: 0;
}

.header__drawer-button.open .header__drawer-button-line:nth-child(3) {
	transform: translateY(-0.5625rem) rotate(-45deg);
}

.header__menu {
	display: none;
}

.drawer-menu {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: auto;
	overscroll-behavior: none;
	scrollbar-width: none;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.drawer-menu.open {
	opacity: 1;
	visibility: visible;
}

.drawer-menu__content {
	background-color: rgba(0, 0, 0, 0.3);
}

.drawer-menu__wrap {
	position: relative;
	z-index: 1;
	margin-left: auto;
	min-height: calc(100vh + 5rem);
	width: 80%;
	max-width: 20rem;
	height: -moz-fit-content;
	height: fit-content;
	background-color: var(--white);
	padding: 5rem 1.25rem 2.5rem;
	overflow-y: auto;
	clip-path: inset(0 0 0 20%);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
}

.drawer-menu.open .drawer-menu__wrap {
	clip-path: inset(0 0 0 0);
	opacity: 1;
	visibility: visible;
}

.drawer-menu__nav {
	margin-bottom: 2rem;
}

.drawer-menu__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.drawer-menu__link--accordion {
	width: 100%;
	background: none;
	border: none;
	cursor: pointer;
	justify-content: space-between;
	border-bottom: 1px solid var(--light-gray);
}

.drawer-menu__accordion-icon {
	width: 0.75rem;
	height: 0.75rem;
	background-color: var(--black);
	-webkit-mask-image: url("../images/common/arrow-down.svg");
	mask-image: url("../images/common/arrow-down.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
	transition: transform 0.3s ease-in-out;
}

.drawer-menu__link--accordion[aria-expanded=true] .drawer-menu__accordion-icon {
	transform: scaleY(-1);
}

.drawer-menu__sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: none;
	background-color: #f8f8f8;
}

.drawer-menu__sub-menu-link {
	display: block;
	padding: 0.75rem 1rem 0.75rem 1.5rem;
	font-size: 0.875rem;
	font-weight: var(--normal);
	color: var(--black);
	text-decoration: none;
	border-bottom: 1px solid var(--light-gray);
	transition: color 0.3s ease-in-out;
}

.drawer-menu__link {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 1rem;
	font-weight: var(--normal);
	color: var(--black);
	text-decoration: none;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--light-gray);
	transition: color 0.3s ease-in-out;
}

.drawer-menu__buttons {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.drawer-menu__button {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 3.125rem;
	padding: 0.6875rem 1.125rem;
	font-size: 0.9375rem;
	font-weight: var(--bold);
	border-radius: 0.25rem;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	width: 100%;
}

.drawer-menu__button--outline {
	background-color: var(--white);
	border: 1px solid var(--orange-start);
	color: transparent;
	background-image: linear-gradient(to bottom, var(--orange-start), var(--orange-end));
	background-clip: text;
	-webkit-background-clip: text;
}

.drawer-menu__button--fill {
	background: linear-gradient(to bottom, var(--orange-start), var(--orange-end));
	color: var(--white);
	box-shadow: 0 0.0625rem 0.5rem rgba(0, 0, 0, 0.2);
}

.inner {
	max-width: 37.5rem;
	padding: 0 var(--padding-sp);
}

.news-item__content {
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: space-between;
	padding: 1.5rem 1.25rem;
}

.news-item__date {
	font-size: 0.75rem;
	width: auto;
	width: 30%;
}

.news-item__category {
	font-size: 0.75rem;
	width: unset;
}

.news-item__title {
	font-size: 0.875rem;
	width: 100%;
}

.news-item__title img {
	width: 1.125rem;
}

.page-header-2 {
	padding: 5rem 0 2.5rem;
}

.page-header-2__inner {
	flex-direction: column;
	max-width: 37.5rem;
	padding: 0 var(--padding-sp);
	gap: 2rem;
}

.page-header-2__content {
	width: 100%;
}

.page-header-2__title {
	font-size: 1.75rem;
}

.page-header-2__description {
	font-size: 0.875rem;
}

.page-header-2__features-image {
	width: 100%;
}

.page-header-2__features {
	padding: 1.25rem 1.5rem;
}

.page-header-2__feature-number {
	font-size: 2rem;
}

.page-header-2__feature-text {
	font-size: 1rem;
}

.page-header-2__buttons {
	flex-direction: column;
	width: 100%;
}

.page-header-2__button {
	width: 100%;
	justify-content: center;
}

.page-header-2__form {
	width: 100%;
	padding: 1.5rem;
}

.page-header-2__form-title {
	font-size: 1.25rem;
}

.page-header-2__form-description {
	font-size: 0.75rem;
}

.page-header {
	padding: 6.875rem 0 3.75rem;
}

.page-header__inner {
	gap: 0.875rem;
}

.page-header__title-en {
	font-size: 2.5rem;
}

.page-header__title-jp {
	font-size: 1.125rem;
}

.page-header__text {
	font-size: 0.875rem;
}

.page-header__buttons {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.pagination {
	padding: 0.5rem 0;
}

.pagination__inner {
	gap: 0.625rem;
}

.pagination__item {
	width: 2.1875rem;
	font-size: 0.875rem;
}

.pagination__item--prev::after {
	width: 1rem;
}

.pagination__item--next::after {
	width: 1rem;
}

.section-title-top__title-en {
	font-size: 1.25rem;
}

.section-title-top__title-jp {
	font-size: 2rem;
}

.section-title {
	font-size: 1.25rem;
	padding-bottom: 0.75rem;
}

.service-card {
	gap: 1.125rem;
	padding: 1.5rem 1rem;
	border-radius: 0.25rem;
}

.service-card__title {
	font-size: 1.25rem;
}

.service-card__description {
	font-size: 0.875rem;
}

.service-card__list {
	gap: 0.625rem;
}

.service-card__item {
	padding: 0.5rem 0 0.125rem;
}

.service-card__item-text {
	font-size: 0.875rem;
}

.service-card__item-icon {
	width: 1.125rem;
}

.service-challenge__heading {
	margin-bottom: 2rem;
}

.service-challenge__content {
	gap: 0.75rem;
}

.service-challenge__title {
	font-size: 1.125rem;
}

.service-challenge__text {
	font-size: 0.875rem;
}

.service-challenge__text ul {
	margin-left: 1.25rem;
}

.service-challenge__image {
	width: 100%;
	max-width: 29.3125rem;
	margin-top: 0.75rem;
}

.service-column__heading {
	margin-bottom: 2rem;
}

.service-column__grid {
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.service-features__heading {
	margin-bottom: 2rem;
}

.service-features__item {
	gap: 2rem;
	margin-bottom: 2rem;
}

.service-features__content {
	gap: 0.75rem;
}

.service-features__point-title {
	font-size: 1.125rem;
}

.service-features__description {
	font-size: 0.875rem;
}

.service-features__images {
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

.service-features__image-item {
	gap: 0.75rem;
}

.service-features__image-caption {
	font-size: 0.875rem;
}

.service-features__consultant {
	flex-direction: column;
	gap: 1.25rem;
	padding: 1.5rem 1rem;
}

.service-features__consultant-image {
	width: 100%;
	max-width: 14.625rem;
	aspect-ratio: 234/246;
}

.service-features__consultant-label {
	font-size: 0.875rem;
}

.service-features__consultant-name {
	font-size: 1.25rem;
}

.service-features__consultant-bio {
	font-size: 0.75rem;
}

.service-list__heading {
	margin-bottom: 2rem;
}

.service-list__intro {
	margin-bottom: 2rem;
}

.service-list__intro-text {
	font-size: 1.125rem;
}

.service-list__grid {
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

.service-lp-intro__heading {
	margin-bottom: 2rem;
}

.service-lp-intro__intro {
	margin-bottom: 2rem;
}

.service-lp-intro__intro-text {
	font-size: 1.125rem;
}

.service-lp-intro__content {
	gap: 0.75rem;
}

.service-lp-intro__text {
	font-size: 0.875rem;
}

.service-lp-intro__images {
	grid-template-columns: 1fr;
	gap: 0.3125rem;
}

.service-lp-intro__list-card {
	padding: 1.25rem;
}

.service-lp-intro__list-header {
	font-size: 0.875rem;
	padding: 0.625rem 1.25rem;
	margin: -1.25rem -1.25rem 1.25rem -1.25rem;
}

.service-lp-intro__list {
	font-size: 0.875rem;
	padding-left: 1.25rem;
}

.service-lp-intro__list li {
	margin-bottom: 0.375rem;
}

.service-lp-intro__image {
	width: 100%;
}

.service-lp-intro__note {
	margin-top: 2rem;
}

.service-lp-intro__note-text {
	font-size: 1.125rem;
	margin-bottom: 0.75rem;
}

.service-lp-intro__note-description {
	font-size: 0.875rem;
}

.service-pricing__heading {
	margin-bottom: 2rem;
}

.service-pricing__description {
	font-size: 0.875rem;
	margin-bottom: 2rem;
}

.service-pricing__table {
	max-width: 100%;
}

.service-pricing__row {
	grid-template-columns: 1fr 1fr;
}

.service-pricing__cell {
	padding: 1rem;
	font-size: 0.875rem;
}

.service-pricing__note {
	font-size: 0.75rem;
	margin-top: 0.75rem;
}

.service-testimonials__heading {
	margin-bottom: 2rem;
}

.service-testimonials__intro {
	margin-bottom: 2rem;
}

.service-testimonials__intro-text {
	font-size: 0.875rem;
}

.service-testimonials__list {
	gap: 2rem;
}

.service-testimonials__item {
	padding: 1.5rem;
}

.service-testimonials__header {
	flex-direction: column;
	gap: 0.75rem;
}

.service-testimonials__title {
	font-size: 1.125rem;
}

.service-testimonials__company {
	font-size: 0.75rem;
	margin-bottom: 0.75rem;
}

.service-testimonials__text {
	font-size: 0.875rem;
}

.service-works__heading {
	margin-bottom: 2rem;
}

.service-works__intro {
	font-size: 0.875rem;
	margin-bottom: 2rem;
}

.service-works__grid {
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.page-sidebar {
	gap: 2rem;
}

.single-column__back-link {
	font-size: 0.875rem;
	gap: 0.5rem;
}

.single-column__back-icon {
	width: 1.125rem;
	height: 1.125rem;
}

.single-popular {
	padding: 2.5rem 0;
}

.single-popular__title {
	margin-bottom: 2rem;
}

.single-popular__grid {
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.single-popular__grid .column-card,
.single-popular__grid .works-card {
	max-width: 100%;
}

.single-post {
	padding: 2.5rem 0;
}

.single-post__inner {
	margin-left: unset;
	padding: unset;
}

.single-post__meta {
	margin-bottom: 2rem;
	font-size: 0.75rem;
	gap: 0.75rem;
}

.single-post__meta:not(:has(.single-post__date)) {
	gap: 0.375rem;
}

.single-post__title {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
	padding-bottom: 0.75rem;
}

.single-post__image {
	margin-bottom: 2rem;
}

.single-post__content {
	margin-bottom: 2rem;
}

.single-post__back {
	margin-top: 2rem;
}

.single-related {
	padding: 2.5rem 0;
}

.single-related__title {
	margin-bottom: 2rem;
}

.single-related__grid {
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.single-related__grid .column-card,
.single-related__grid .works-card {
	max-width: 100%;
}

.single-service {
	padding: 2.5rem 0;
}

.single-service__title {
	margin-bottom: 2rem;
}

.single-service__cards {
	grid-template-columns: 1fr;
	gap: 1rem;
}

.single-service__card {
	padding: 1rem;
}

.tag {
	padding: 0.3125rem 0.875rem;
	font-size: 0.875rem;
}

.tags {
	gap: 0.75rem;
}

.works-card__link {
	gap: 0.75rem;
}

.works-card__category {
	font-size: 0.75rem;
}

.works-card__company {
	font-size: 0.875rem;
}

.works-card__title {
	font-size: 1.125rem;
}

.works-stats__stats {
	grid-template-columns: 1fr 1fr;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.works-stats__stat {
	width: 45%;
}

.works-stats__logo-slider .logo-slider__items {
	width: 100%;
}

.works-stats__logo-slider .logo-slider__item {
	grid-template-columns: 1fr 1fr;
}

.works-stats__logo-slider .logo-slider__img {
	width: 100%;
}

.wysiwyg h2 {
	font-size: 1.25rem;
	margin-top: 2rem;
}

.wysiwyg h3 {
	font-size: 1.125rem;
	margin-top: 1.5rem;
}

.wysiwyg h4 {
	font-size: 1rem;
}

.wysiwyg p {
	font-size: 0.875rem;
}

.wysiwyg ul li {
	font-size: 0.875rem;
	padding-left: 1.25rem;
}

.wysiwyg ol li {
	font-size: 0.875rem;
	padding-left: 1.5rem;
}

.wysiwyg table {
	font-size: 0.875rem;
	margin-bottom: 1.5rem;
}

.wysiwyg table th,
.wysiwyg table td {
	padding: 0.75rem;
	font-size: 0.875rem;
}

.wysiwyg blockquote {
	padding: 1.25rem 2rem;
	font-size: 0.875rem;
	margin: 1.5rem 0;
}

.wysiwyg blockquote::before {
	font-size: 2.25rem;
}

.wysiwyg blockquote::after {
	font-size: 2.25rem;
}

.archive-pickup {
	margin-top: 3.125rem;
	margin-bottom: 3.75rem;
}

.archive-pickup__title {
	margin-bottom: 2rem;
}

.archive-pickup__empty {
	font-size: 0.875rem;
}

.archive-pickup__grid {
	gap: 1.5rem;
	grid-template-columns: 1fr;
}

.archive-column-list {
	padding: 2.5rem 0;
}

.archive-column-list__title {
	margin-bottom: 2rem;
}

.archive-column-filter {
	margin-bottom: 2rem;
}

.archive-column-list__grid {
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.archive-column-list__empty {
	font-size: 0.875rem;
	padding: 2rem 0;
}

.archive-download-list {
	padding: 2.5rem 0 3.75rem;
}

.archive-download-list__title {
	margin-bottom: 2rem;
}

.archive-download-list__grid {
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.archive-download-list__empty {
	font-size: 0.875rem;
	padding: 2rem 0;
}

.archive-download-card {
	width: 100%;
}

.archive-download-card__meta {
	font-size: 0.75rem;
}

.archive-download-card__title {
	font-size: 1rem;
	min-height: unset;
	-webkit-line-clamp: 2;
}

.archive-download-card__button {
	width: 100%;
}

.archive-news-list {
	padding: 2.5rem 0;
	margin-bottom: 1.875rem;
}

.archive-news-list__inner {
	max-width: 37.5rem;
	padding: 0 var(--padding-sp);
}

.archive-news-filter {
	margin-bottom: 1.25rem;
}

.archive-news-list__items {
	margin-bottom: 2rem;
}

.grid-content {
	max-width: 37.5rem;
	padding: 0 var(--padding-sp);
	flex-direction: column-reverse;
	gap: 3.75rem;
	margin-top: 1rem;
}

.grid-content__main {
	padding-left: unset;
	width: 100%;
}

.grid-content__sidebar {
	display: none;
}

.company-purpose {
	padding: 2.5rem 0 2rem;
}

.company-purpose__heading {
	margin-bottom: 2rem;
}

.company-purpose__content {
	gap: 1.5rem;
}

.company-purpose__title {
	font-size: 1.125rem;
}

.company-purpose__text {
	font-size: 0.875rem;
}

.company-info {
	padding: 2rem 0;
}

.company-info__title {
	margin-bottom: 2rem;
}

.company-info__row {
	flex-direction: column;
}

.company-info__label {
	width: 100%;
	padding: 0.75rem 1rem;
	font-size: 1rem;
}

.company-info__value {
	padding: 1rem;
	font-size: 1rem;
}

.company-team {
	padding: 2rem 0 0;
	margin-bottom: 6.25rem;
}

.company-team__title {
	margin-bottom: 2rem;
}

.company-team__grid {
	gap: 1.5rem;
	grid-template-columns: 1fr 1fr;
}

.company-team__member {
	padding-bottom: 0.8125rem;
}

.company-team__member-role {
	font-size: 0.75rem;
}

.company-team__member-name {
	font-size: 1.25rem;
}

.team-modal__content {
	padding: 1.5rem;
	width: 90vw;
}

.team-modal__close {
	top: 1rem;
	right: 1rem;
	width: 1.75rem;
	height: 1.75rem;
}

.team-modal__role {
	font-size: 0.875rem;
}

.team-modal__header {
	gap: 1rem;
	margin-top: 1.5rem;
}

.team-modal__name {
	font-size: 1.25rem;
}

.team-modal__bio {
	font-size: 0.75rem;
}

.complete-page {
	padding-top: 1.875rem;
}

.complete-section {
	padding: 2.5rem 0;
}

.complete-section__inner {
	max-width: 37.5rem;
	padding: 0 var(--padding-sp);
	gap: 2rem;
}

.complete-section__title {
	font-size: 1.25rem;
}

.complete-section__text {
	font-size: 0.875rem;
}

.complete-section__button {
	width: 100%;
	height: 3.125rem;
}

.complete-section__button-text {
	font-size: 0.875rem;
}

.confirm-page {
	padding-top: 1.875rem;
}

.confirm-section {
	padding: 2.5rem 0;
}

.confirm-section__inner {
	max-width: 37.5rem;
	padding: 0 var(--padding-sp);
	gap: 1.5rem;
}

.confirm-section__title {
	font-size: 1.25rem;
	padding-bottom: 0.75rem;
}

.confirm-section__lead {
	font-size: 0.875rem;
}

.confirm-section__form-wrapper {
	padding: 1.5rem 1rem;
	border-radius: 0.25rem;
}

.confirm-form {
	gap: 1.25rem;
}

.confirm-form__field {
	gap: 0.75rem;
}

.confirm-form__value {
	font-size: 0.875rem;
}

.confirm-form__back-text {
	font-size: 0.875rem;
}

.confirm-page .wpcf7-form {
	gap: 1.25rem;
}

.confirm-page .wpcf7-confirm-field {
	gap: 0.75rem;
}

.confirm-page .wpcf7-confirm-value {
	font-size: 0.875rem;
}

.confirm-page .wpcf7-back-button span,
.confirm-page .wpcf7-back-button-text,
.confirm-page .wpcf7-previous span,
.confirm-page .wpcf7-previous-text {
	font-size: 0.875rem;
}

.form-section {
	padding: 1.5rem 0 2rem;
}

.form-section__inner {
	max-width: 37.5rem;
	padding: 0 var(--padding-sp);
}

.form-section__wrapper {
	display: grid;
	grid-template-columns: 100%;
	gap: 3.125rem;
}

.form-section__content {
	gap: 2rem;
	width: 100%;
	padding-left: unset;
}

.form-section__item {
	gap: 1.125rem;
}

.form-section__form-wrapper {
	width: 100%;
	padding: 1.125rem 0.75rem;
	border-radius: 0.25rem;
}

.contact-form {
	gap: 1.25rem;
}

.contact-page .logo-slider__item {
	grid-template-columns: 1fr 1fr;
}

.privacy-policy-content {
	padding: 2rem 0 2.5rem;
}

.privacy-policy-content__inner {
	max-width: 37.5rem;
	padding: 0 var(--padding-sp);
}

.privacy-policy-section {
	margin-bottom: 2.5rem;
}

.privacy-policy-section__title {
	margin-bottom: 1.125rem;
}

.privacy-policy-section__text {
	font-size: 0.875rem;
}

.privacy-policy-section__list {
	padding-left: 1.25rem;
}

.privacy-policy-section__list li {
	font-size: 0.875rem;
}

.privacy-policy-section__contact {
	margin-top: 1.25rem;
	margin-bottom: 1.5rem;
}

.privacy-policy-section__contact-name {
	font-size: 0.875rem;
}

.privacy-policy-section__contact-address {
	font-size: 0.875rem;
}

.privacy-policy-section__button {
	margin-top: 1.5rem;
}

.service-cards {
	padding: 2.5rem 0 0;
	margin-bottom: 6.25rem;
}

.service-cards__grid {
	grid-template-columns: 1fr;
	gap: 0.75rem;
}

.single-wrapper {
	flex-direction: column;
	gap: 2.5rem;
	padding: 2.5rem var(--padding-sp);
}

.single-wrapper__content {
	max-width: 100%;
}

.single-wrapper__sidebar {
	display: none;
}

.single-news {
	padding: 2.5rem 0;
}

.single-news__inner {
	max-width: 37.5rem;
	padding: 0 var(--padding-sp);
}

.single-news__meta {
	margin-bottom: 2rem;
	font-size: 0.75rem;
	gap: 0.75rem;
}

.single-news__title {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
	padding-bottom: 0.75rem;
}

.single-news__image {
	margin-bottom: 2rem;
}

.single-news__content {
	margin-bottom: 2rem;
}

.single-news__back {
	margin-top: 2rem;
}

.back-archive {
	font-size: 0.875rem;
	gap: 0.5rem;
}

.back-archive__icon {
	width: 1.125rem;
	height: 1.125rem;
}

.sitemap-content {
	padding: 2rem 0 2.5rem;
}

.sitemap-content__inner {
	max-width: 37.5rem;
	padding: 0 var(--padding-sp);
}

.sitemap-section {
	margin-bottom: 2.5rem;
}

.sitemap-section__title {
	margin-bottom: 1.125rem;
}

.sitemap-list {
	gap: 0.75rem;
}

.sitemap-list__item--child {
	padding-left: 1.25rem;
}

.sitemap-list__item--grandchild {
	padding-left: 2.5rem;
}

.sitemap-list__item .top-mv__service-link-text .popup {
	width: 0.875rem;
}

.top-mv {
	padding: 4.6875rem 0 3.75rem;
}

.top-mv__content {
	flex-direction: column;
	gap: 2rem;
}

.top-mv__left {
	gap: 1rem;
	width: 100%;
	order: 2;
}

.top-mv__title {
	margin-bottom: 0.5rem;
	width: 100%;
	font-size: 1.75rem;
}

.top-mv__stats {
	flex-direction: column;
	gap: 0.75rem;
}

.top-mv__stat {
	width: 100%;
}

.top-mv__service-links {
	gap: 0.625rem;
}

.top-mv__service-link-text {
	font-size: 0.875rem;
}

.top-mv__service-link-icon {
	width: 1.125rem;
}

.top-mv__right {
	width: 100%;
	gap: 1.25rem;
	order: -1;
}

.top-mv__document-image {
	aspect-ratio: 440/320;
}

.top-mv__document-title {
	font-size: 0.75rem;
}

.top-mv__news {
	width: 100%;
}

.top-mv__logo-slider {
	width: 100%;
}

.top-service {
	padding: 6.25rem 0 2.5rem;
}

.top-service__heading {
	margin-bottom: 1.375rem;
}

.top-service__grid {
	grid-template-columns: 1fr;
	gap: 0.75rem;
}

.top-feature {
	padding: 3.125rem 0;
}

.top-feature__heading {
	margin-bottom: 2rem;
}

.top-feature__section {
	gap: 2rem;
}

.top-feature__section--book {
	padding: 2rem 0;
}

.top-feature__content {
	gap: 0.75rem;
}

.top-feature__label {
	font-size: 0.875rem;
}

.top-feature__title {
	font-size: 1.5rem;
}

.top-feature__text {
	font-size: 0.875rem;
	text-align: left;
}

.top-feature__image {
	width: 100%;
	margin-left: unset;
}

.top-feature__image02 {
	margin-left: 0;
	width: 100%;
}

.top-feature__book {
	flex-direction: column;
	gap: 1.5rem;
	padding: 1.5rem;
}

.top-feature__book-image {
	width: 100%;
	height: auto;
}

.top-feature__book-content {
	width: 100%;
	padding-left: unset;
}

.top-feature__book-title {
	font-size: 1.25rem;
}

.top-feature__book-text {
	font-size: 0.875rem;
}

.top-works {
	padding: 1.875rem 0 0;
	margin-bottom: 5rem;
}

.top-works__heading {
	margin-bottom: 2rem;
}

.top-works__stats-wrapper .works-stats__logo-slider {
	margin-bottom: 2.5rem;
}

.top-works__grid {
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

.top-news {
	margin-bottom: 5rem;
}

.top-news__heading {
	margin-bottom: 1.125rem;
}

.top-news__filter {
	margin-bottom: 2.5rem;
}

.top-news__button {
	width: 100%;
}

.top-news__button .button {
	width: 100%;
	justify-content: center;
}

.top-column {
	padding: 2.5rem 0 3.75rem;
}

.top-column__heading {
	margin-bottom: 1.625rem;
}

.top-column__content {
	gap: 3.6875rem;
}

.top-column__section {
	gap: 2rem;
}

.top-column__grid {
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.top-column__button {
	width: 100%;
}

.top-company {
	padding: 2.5rem 0 2rem;
}

.top-company__heading {
	margin-bottom: 1.125rem;
}

.top-company__content {
	gap: 2rem;
}

.top-company__text {
	font-size: 0.875rem;
}

.top-company__cards {
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

.top-company__card {
	width: 100%;
	gap: 1.25rem;
	padding: 1.25rem;
}

.top-company__card-title {
	font-size: 1.25rem;
}

.works-archive__mv {
	padding: 2.5rem var(--padding-sp);
}

.works-archive__mv-inner {
	gap: 0.875rem;
}

.works-archive__mv-title {
	font-size: 2rem;
}

.works-archive__mv-text {
	font-size: 0.875rem;
}

.works-archive__mv-buttons {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.works-archive__content {
	padding: 2.5rem var(--padding-sp);
}

.works-archive__content-inner {
	gap: 2rem;
}

.works-archive__filter {
	padding: 1.25rem 0;
}

.works-archive__filter-label {
	width: 100%;
	font-size: 0.75rem;
}

.works-archive__grid {
	grid-template-columns: 1fr;
	gap: 2rem;
}

.works-archive__card {
	gap: 0.875rem;
}

.works-archive__card-image {
	height: 9.375rem;
	border-radius: 0.25rem;
}

.works-archive__card-category {
	font-size: 0.75rem;
}

.works-archive__card-company {
	font-size: 0.875rem;
}

.works-archive__card-title {
	font-size: 1.125rem;
}

.works-archive__pagination {
	gap: 1rem;
	padding: 0.5rem 0;
}

.works-archive__pagination-prev {
	width: 3rem;
	height: 3rem;
}

.works-archive__pagination-next {
	width: 3rem;
	height: 3rem;
}

.works-archive__pagination-icon {
	width: 1rem;
}

.works-archive__pagination-number {
	width: 3rem;
	height: 3rem;
	font-size: 1rem;
}

}

@media screen and (max-width: 767px) and (any-hover: hover) {

.drawer-menu__sub-menu-link:hover {
	color: var(--orange-start);
}

.drawer-menu__link:hover {
	color: var(--orange-start);
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@keyframes logo-slider {

0% {
	transform: translateX(0);
}

100% {
	transform: translateX(calc(-50% - 1rem));
}

}

@keyframes iconRotate {

0% {
	transform: translateY(-50%) rotate(-180deg) scale(0);
	opacity: 0;
}

100% {
	transform: translateY(-50%) rotate(0deg) scale(1);
	opacity: 1;
}

}

