:root {
	--padding-inner: 16px;
}

:root {
	--font-family-base: "Zen Old Mincho", sans-serif;
	--font-family-second: "Noto Sans JP", sans-serif;
	--font-family-third: "Kaisei HarunoUmi", sans-serif;
}

:root {
	--font-weight-light: 300;
	--font-weight-regular: 400;
	--font-weight-medium: 500;
	--font-weight-semibold: 600;
	--font-weight-bold: 700;
	--font-weight-black: 900;
}

:root {
	--black: #000;
	--white: #fff;
	--gray: #F5F5F5;
	--gray-dark: #747272;
	--hover-color: #383838;
	--border-color: #888;
}

:root {
	--z-index-header: 100;
	--z-index-to-top: 200;
	--z-index-drawer: 1000;
	--z-index-hamburger: 10000;
}

:root {
	--cq-ref-inner: 1240;
	--cq-ref-mobile: 375;
	--cq-ref: 1440;
	--fluid-basis-mobile: (100vw - 320px) / (375 - 320);
	--fluid-basis: (100vw - 768px) / (1440 - 768);
	--fluid-basis-2: (100vw - 1440px) / (1800 - 1440);
}

:root {
	--duration-short: 0.2s;
	--duration-base: 0.3s;
	--duration-long: 0.6s;
	--duration-fv: 0.7s;
	--ease-smooth-bounce: cubic-bezier(.48, .07, .33, .79);
}

body {
	color: var(--black);
	font-family: var(--font-family-base);
}

.u-desktop {
	display: none;
}

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

html {
	font-size: 16px;
}

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

html {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	word-wrap: anywhere;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-break: strict;
	line-height: 1.5;
	margin: 0;
	overflow-wrap: anywhere;
	text-rendering: optimizeLegibility;
	word-break: normal;
}

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

ul,
ol {
	list-style: none;
}

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

a,
span,
button {
	display: inline-block;
}

small,
time,
figure {
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

address {
	font-style: normal;
}

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

article > * + * {
	margin-top: 1em;
}

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

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

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	-webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
	border: 0;
	clip-path: polygon(0 0, 0 0, 0 0, 0 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

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

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

button {
	color: inherit;
}

a {
	-webkit-tap-highlight-color: transparent;
}

button {
	-webkit-tap-highlight-color: transparent;
}

.inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}

.lecture {
	margin-top: 2.5rem;
	padding-bottom: 6.25rem;
}

.lecture__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: var(--padding-inner);
	padding-right: var(--padding-inner);
}

.lecture__content {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr;
}

.lecture__nav-list {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.lecture__nav-link {
	border: 1px solid #888;
	display: block;
	font-size: 1.125rem;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.26em;
	padding: 0.375rem 1.25rem;
	text-align: center;
	transition: background-color var(--duration-base) ease, color var(--duration-base) ease, border-color var(--duration-base) ease;
	width: 100%;
}

.lecture__intro {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.lecture__text {
	font-size: 1rem;
	font-weight: var(--font-weight-medium);
}

.lecture__point-item {
	display: grid;
	font-size: 1rem;
	font-weight: var(--font-weight-medium);
	gap: 0.375rem;
	grid-template-columns: max-content 1fr;
	padding-left: 0.3125rem;
	position: relative;
}

.lecture__point-item::before {
	aspect-ratio: 1/1;
	background-color: var(--black);
	border-radius: calc(infinity * 1px);
	content: "";
	display: inline-block;
	margin-top: 0.6875rem;
	width: 0.25rem;
}

.lecture__section {
	margin-top: 5rem;
}

.lecture__section-header {
	align-items: center;
	display: flex;
	gap: 1.25rem;
}

.lecture__section--header-img-wrap {
	width: 8.75rem;
}

.lecture__section--header-img {
	-o-object-fit: contain;
	border-radius: 90px;
	height: auto;
	object-fit: contain;
}

.lecture__section-title {
	border: 1px solid var(--border-color);
	font-size: 1.25rem;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.26em;
	line-height: 1.34;
	max-width: 15.625rem;
	padding: 0.1875rem 1.25rem;
	text-align: center;
	width: 100%;
}

.lecture__section-content {
	margin-top: 1.875rem;
	padding-left: 0.625rem;
	padding-right: 0.625rem;
}

.lecture__section-content h3 {
	background-color: rgba(217, 217, 217, 0.28);
	display: inline-block;
	font-size: 1.125rem;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.1em;
	line-height: 1.34;
	margin-top: 1.875rem;
	padding: 0.1875rem 0.3125rem;
}

.lecture__section-content h3:first-child {
	margin-top: 0;
}

.lecture__section-content p {
	font-size: 1rem;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.1em;
	line-height: 1.34;
	margin-top: 1.25rem;
}

.lecture__section-content p.mt-small {
	margin-top: 0.3125rem;
}

.lecture__section-content p strong {
	font-size: 1.125rem;
	font-weight: var(--font-weight-medium);
}

.lecture__section-content p span.bg-red {
	background-color: rgba(255, 78, 78, 0.14);
}

.lecture__section-content p.text-notice {
	font-size: 1.125rem;
	margin-top: 1.25rem;
}

.lecture__section-content ul,
.lecture__section-content ol {
	margin-top: 1.25rem;
}

.lecture__section-content ul li {
	display: grid;
	font-size: 1rem;
	font-weight: var(--font-weight-medium);
	gap: 0.375rem;
	grid-template-columns: max-content 1fr;
	letter-spacing: 0.1em;
	line-height: 1.34;
	padding-left: 0.3125rem;
	position: relative;
}

.lecture__section-content ul li::before {
	aspect-ratio: 1/1;
	background-color: var(--black);
	border-radius: calc(infinity * 1px);
	content: "";
	display: inline-block;
	height: -moz-fit-content;
	height: fit-content;
	margin-top: 0.5625rem;
	width: 0.25rem;
}

.lecture__section-content ol li {
	font-size: 1rem;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.1em;
	line-height: 1.34;
	padding-left: 1.5625rem;
	position: relative;
}

.lecture__section-content ol li::before {
	content: counter(list-item) ". ";
	font-weight: var(--font-weight-medium);
	left: 0.375rem;
	position: absolute;
}

.lecture__section-content .lecture__section-content-list ul,
.lecture__section-content .lecture__section-content-list ol {
	margin-top: 0.3125rem;
}

.materials-select {
	margin-top: 2.5rem;
	padding-bottom: 6.25rem;
}

.materials-select__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: var(--padding-inner);
	padding-right: var(--padding-inner);
}

.materials-select__items {
	display: flex;
	flex-direction: column;
	gap: 4.375rem;
}

.materials-select__item {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}

.materials-select__img-wrap {
	overflow: hidden;
}

.materials-select__img {
	-o-object-fit: cover;
	aspect-ratio: 441/339;
	height: auto;
	object-fit: cover;
}

.materials-select__title {
	border: 1px solid var(--border-color);
	font-size: 1.125rem;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.26em;
	line-height: 1.34;
	margin-left: auto;
	margin-right: auto;
	padding: 0.4375rem 1.25rem;
	text-align: center;
}

.materials-select__list {
	margin-top: 1.5rem;
}

.materials-select__list-item {
	display: grid;
	font-size: 1rem;
	font-weight: var(--font-weight-medium);
	gap: 0.375rem;
	grid-template-columns: max-content 1fr;
	position: relative;
}

.materials-select__list-item::before {
	aspect-ratio: 1/1;
	background-color: var(--black);
	border-radius: calc(infinity * 1px);
	content: "";
	display: inline-block;
	margin-top: 0.6875rem;
	width: 0.25rem;
}

.cost {
	margin-top: 3.75rem;
	padding-bottom: 5rem;
}

.cost__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: var(--padding-inner);
	padding-right: var(--padding-inner);
}

.cost__title {
	border: 1px solid var(--border-color);
	font-size: 1.125rem;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.26em;
	line-height: 1.34;
	margin-left: auto;
	margin-right: auto;
	max-width: 34.5625rem;
	padding: 0.5rem 1.25rem;
	text-align: center;
}

.cost__content {
	margin-top: 3rem;
}

.cost__heading {
	font-size: 1.375rem;
	font-weight: var(--font-weight-medium);
	margin-top: 1.875rem;
}

.cost__text-wrap {
	display: grid;
	gap: 1.25rem;
	margin-top: 1.5rem;
}

.cost__text {
	font-size: 1rem;
	font-weight: var(--font-weight-medium);
}

.cost__list {
	display: grid;
	gap: 1.25rem;
	margin-top: 1.5rem;
}

.cost__list-item {
	display: grid;
	font-size: 1rem;
	font-weight: var(--font-weight-medium);
	gap: 0.375rem;
	grid-template-columns: max-content 1fr;
	padding-left: 0.3125rem;
}

.cost__list-item::before {
	aspect-ratio: 1/1;
	background-color: var(--black);
	border-radius: calc(infinity * 1px);
	content: "";
	display: inline-block;
	margin-top: 0.6875rem;
	width: 0.1875rem;
}

.schedule {
	margin-top: 2.5rem;
}

.schedule__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: var(--padding-inner);
	padding-right: var(--padding-inner);
}

.schedule__title {
	border: 1px solid var(--border-color);
	font-size: 1.125rem;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.26em;
	line-height: 1.34;
	margin-left: auto;
	margin-right: auto;
	max-width: 34.5625rem;
	padding: 0.5rem 1.25rem;
	text-align: center;
}

.schedule__lead {
	font-size: 1rem;
	font-weight: var(--font-weight-medium);
	margin-top: 3.75rem;
	text-align: center;
}

.schedule__flow {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 3rem;
}

.schedule__flow-item {
	font-size: 1rem;
	font-weight: var(--font-weight-medium);
}

.schedule__text {
	font-size: 1rem;
	font-weight: var(--font-weight-medium);
}

.schedule__accordion {
	margin-left: auto;
	margin-right: auto;
	margin-top: 4.1875rem;
	max-width: 812px;
}

.schedule__accordion-btn {
	background-color: #D9D9D9;
	display: block;
	font-size: 1rem;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.26em;
	line-height: 1.34;
	margin-left: auto;
	margin-right: auto;
	padding: 0.5rem 2.5rem;
	position: relative;
	transition: filter var(--duration-base) ease;
}

.schedule__accordion-btn::after {
	aspect-ratio: 1/1;
	background: url("../images/common/arrow-icon.webp") no-repeat center center/cover;
	content: "";
	position: absolute;
	right: 0.625rem;
	rotate: 180deg;
	top: 50%;
	transition: rotate var(--duration-base) ease;
	translate: 0 -50%;
	width: 1.125rem;
}

.schedule__accordion-btn.is-open::after {
	rotate: 0deg;
}

.schedule__accordion-content {
	margin-top: -0.625rem;
	max-height: 0;
	overflow: hidden;
	transition: max-height var(--duration-base) ease-in-out;
}

.schedule__accordion-content.is-open {
	max-height: var(--accordion-height);
}

.schedule__accordion-body {
	background-color: #F2F2F2;
	margin-top: -0.625rem;
	padding: 3.25rem 1.25rem 2rem 1.25rem;
}

.schedule__accordion-title {
	font-size: 1rem;
	font-weight: var(--font-weight-medium);
}

.schedule__tips {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 1.25rem;
}

.schedule__tips-item {
	font-size: 0.875rem;
	line-height: 1.9;
}

.schedule__tips-title {
	font-size: 0.875rem;
	font-weight: var(--font-weight-medium);
}

.schedule__tips-text {
	font-size: 0.875rem;
	font-weight: var(--font-weight-medium);
}

.schedule__tips-sub-item {
	display: grid;
	font-size: 0.875rem;
	font-weight: var(--font-weight-medium);
	gap: 0.375rem;
	grid-template-columns: max-content 1fr;
	padding-left: 0.3125rem;
}

.schedule__tips-sub-item::before {
	aspect-ratio: 1/1;
	background-color: var(--black);
	border-radius: calc(infinity * 1px);
	content: "";
	display: inline-block;
	margin-top: 0.6875rem;
	width: 0.1875rem;
}

.mv {
	background-color: var(--gray);
	container-type: inline-size;
	padding-bottom: 0.3125rem;
	padding-top: 5.875rem;
	position: relative;
	width: 100%;
}

.mv__swiper {
	width: 100%;
}

.mv__swiper .swiper-wrapper {
	will-change: transform;
}

.mv__slide {
	align-items: center;
	backface-visibility: hidden;
	contain: layout paint;
	display: flex;
	height: auto;
	justify-content: center;
	transform: translateZ(0);
	width: 100%;
	will-change: transform;
}

.mv__img {
	border-radius: 18px;
	height: auto;
	transform: translateZ(0);
	will-change: transform;
}

.mv__text-wrap {
	display: inline-flex;
	flex-direction: row-reverse;
	gap: calc((35 * 100) / var(--cq-ref) * 1cqw);
	left: 80%;
	opacity: 0;
	position: absolute;
	top: 52%;
	transition: opacity 0.7s ease-in-out;
	translate: -50% -50%;
	will-change: opacity;
}

.mv__slide.swiper-slide-active.is-first .mv__text-wrap {
	opacity: 1;
}

.mv__slide.swiper-slide-active:not(.is-first) .mv__text-wrap {
	opacity: 1;
	transition-delay: 0.7s;
}

.mv__img {
	-o-object-fit: cover;
	aspect-ratio: 499/331;
	height: 100%;
	object-fit: cover;
}

.mv__text-wrap-item {
	font-feature-settings: "vert" on;
	background: rgba(254, 254, 254, 0.65);
	color: #000;
	font-size: calc((38 * 100) / var(--cq-ref) * 1cqw);
	font-weight: var(--font-weight-regular);
	height: -moz-fit-content;
	height: fit-content;
	letter-spacing: 0.15em;
	line-height: 1.11;
	padding: calc((20 * 100) / var(--cq-ref) * 1cqw) calc((8 * 100) / var(--cq-ref) * 1cqw);
	text-align: center;
	white-space: nowrap;
	writing-mode: vertical-rl;
}

.mv__text-wrap-item:nth-child(2) {
	margin-top: calc((100 * 100) / var(--cq-ref) * 1cqw);
}

.mv__pagination {
	align-items: center;
	bottom: auto;
	display: flex;
	gap: 0.1875rem;
	justify-content: center;
	margin-top: 1.25rem;
	position: relative;
	text-align: center;
}

.mv__pagination .swiper-pagination-bullet {
	opacity: 1 !important;
}

.mv__pagination .swiper-pagination-bullet {
	-webkit-clip-path: inset(0 round 50%);
	background-color: #D9D9D9;
	clip-path: inset(0 round 50%);
	height: 0.625rem;
	transition: width 0.3s ease, background-color 0.3s ease, -webkit-clip-path 0.3s ease;
	transition: width 0.3s ease, background-color 0.3s ease, clip-path 0.3s ease;
	transition: width 0.3s ease, background-color 0.3s ease, clip-path 0.3s ease, -webkit-clip-path 0.3s ease;
	width: 0.625rem;
}

.mv__pagination .swiper-pagination-bullet-active {
	-webkit-clip-path: inset(0 round 999px);
	clip-path: inset(0 round 999px);
	height: 0.625rem;
	width: 1.125rem;
}

.top-about {
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.top-about__inner {
	container-type: inline-size;
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: var(--padding-inner);
	padding-right: var(--padding-inner);
}

.top-about__content {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr;
}

.top-about__title {
	font-family: var(--font-family-third);
	font-size: 1.125rem;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.4em;
	line-height: 1.11;
	writing-mode: vertical-rl;
}

.top-about__box {
	position: relative;
}

.top-about__box-img {
	-o-object-fit: contain;
	height: auto;
	object-fit: contain;
}

.top-about__box-text {
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.26em;
	line-height: 1.34;
}

.top-about__box-text + .top-about__box-text {
	margin-top: 1.25rem;
}

.top-flow {
	margin-top: 7.5rem;
}

.top-flow__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: var(--padding-inner);
	padding-right: var(--padding-inner);
}

.top-flow__title {
	font-size: 1.75rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.35em;
	text-align: center;
}

.top-flow__grid {
	display: grid;
	gap: 0.9375rem;
	grid-template-columns: 1fr;
	margin-top: 2.5rem;
}

.top-flow__list {
	display: flex;
	flex-direction: column;
}

.top-flow__item {
	-webkit-text-decoration: none;
	align-items: center;
	background-color: #f2f2f2;
	color: inherit;
	display: flex;
	gap: 1.25rem;
	padding: 1rem;
	text-decoration: none;
	transition: opacity 0.3s;
}

.top-flow__item:hover {
	opacity: 0.8;
}

.top-flow__number {
	align-items: center;
	aspect-ratio: 1/1;
	background-color: var(--black);
	border-radius: calc(infinity * 1px);
	color: #fff;
	display: flex;
	font-size: 0.75rem;
	justify-content: center;
	text-align: center;
	width: 1.375rem;
}

.top-flow__text {
	font-size: 1.25rem;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.26em;
	line-height: 1.34;
}

.top-flow__arrow-center {
	-webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
	aspect-ratio: 25/25;
	background-color: #ccc;
	clip-path: polygon(0 0, 100% 0%, 50% 100%);
	height: -moz-fit-content;
	height: fit-content;
	margin-left: auto;
	margin-right: auto;
	width: 1.25rem;
}

.top-flow__arrow {
	-webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
	aspect-ratio: 25/25;
	background-color: #ccc;
	clip-path: polygon(0 0, 100% 0%, 50% 100%);
	margin-bottom: 0.9375rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0.9375rem;
	width: 1.25rem;
}

.top-flow__more {
	margin-top: 2.5rem;
	text-align: center;
}

.top-links {
	margin-top: 6.25rem;
	padding-bottom: 6.25rem;
}

.top-links__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: var(--padding-inner);
	padding-right: var(--padding-inner);
}

.top-links__list {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr;
}

.top-links__link {
	display: block;
}

.top-links__item.top-links__item--03 .top-links__img-wrap {
	position: relative;
}

.top-links__img-wrap {
	overflow: hidden;
}

.top-links__img {
	-o-object-fit: cover;
	aspect-ratio: 312/267;
	height: auto;
	object-fit: cover;
	transition: transform var(--duration-base) ease;
	will-change: transform;
}

.top-links__label {
	border: 1px solid var(--black);
	font-family: var(--font-family-second);
	font-size: 1rem;
	font-weight: var(--font-weight-bold);
	padding: 0.375rem 1.25rem;
	text-align: center;
	transition: background-color var(--duration-base) ease, color var(--duration-base) ease, border-color var(--duration-base) ease;
}

.top-service__mv {
	position: relative;
}

.top-service__mv-img {
	height: auto;
}

.top-service__mv-title {
	background-color: rgba(49, 46, 46, 0.62);
	bottom: 1.25rem;
	color: #FFFAFA;
	display: inline-block;
	font-family: var(--font-family-second);
	font-size: 1.125rem;
	font-weight: var(--font-weight-bold);
	left: 0;
	padding: 0.4375rem 1.0625rem;
	position: absolute;
}

.top-service__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: var(--padding-inner);
	padding-right: var(--padding-inner);
}

.top-service__nav {
	margin-top: 3.125rem;
}

.top-service__nav-list {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}

.top-service__nav-link {
	background-color: var(--white);
	border: 1px solid var(--black);
	border-radius: 1px;
	display: block;
	font-family: var(--font-family-second);
	font-size: 1.125rem;
	font-weight: var(--font-weight-bold);
	padding: 0.625rem 1.25rem;
	text-align: center;
	transition: background-color var(--duration-base) ease, color var(--duration-base) ease, border-color var(--duration-base) ease;
	width: 100%;
}

.top-service__content {
	margin-top: 5rem;
}

.top-service__cards {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr;
}

.top-service__card-img-wrap {
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.top-service__card-img {
	-o-object-fit: cover;
	aspect-ratio: 63/53;
	height: auto;
	object-fit: cover;
}

.top-service__card-title {
	font-size: 1rem;
	font-weight: var(--font-weight-semibold);
	margin-top: 0.8125rem;
	text-align: center;
}

.top-service__card-read-more-btn {
	background-color: var(--gray);
	display: block;
	font-size: 0.8125rem;
	font-weight: var(--font-weight-medium);
	margin-left: auto;
	margin-right: auto;
	margin-top: 0.6875rem;
	padding: 0.3125rem 2.5rem 0.3125rem 0.625rem;
	position: relative;
	transition: opacity var(--duration-base) ease;
	width: -moz-fit-content;
	width: fit-content;
}

.top-service__card-read-more-btn::after {
	aspect-ratio: 1/1;
	background: url("../images/common/arrow-icon.webp") no-repeat center center/cover;
	content: "";
	position: absolute;
	right: 0.625rem;
	rotate: 180deg;
	top: 50%;
	transition: rotate var(--duration-base) ease;
	translate: 0 -50%;
	width: 1.25rem;
}

.top-service__card.is-open .top-service__card-read-more-btn::after {
	rotate: 0deg;
}

.top-service__card-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height var(--duration-base) ease-in-out;
}

.top-service__card-body {
	background-color: var(--gray);
	padding: 0.4375rem 0.75rem 2.5rem 0.75rem;
}

.top-service__card-01 .top-service__card-text {
	font-size: 0.75rem;
}

.top-service__card-text {
	font-size: 0.8125rem;
	font-weight: var(--font-weight-medium);
	margin-top: 0.9375rem;
}

.top-service__card-text strong {
	font-weight: var(--font-weight-black);
}

.top-service__card-action {
	margin-top: 1.875rem;
}

.top-service__card-link {
	background: var(--gray-dark);
	border: 1px solid var(--gray-dark);
	border-radius: 8px;
	color: var(--white);
	display: block;
	font-family: var(--font-family-second);
	font-size: 0.8125rem;
	font-weight: var(--font-weight-medium);
	margin-left: auto;
	margin-right: auto;
	padding: 0.3125rem 0.625rem;
	padding: 0.3125rem 2.5rem 0.375rem 0.625rem;
	position: relative;
	transition: background-color var(--duration-base) ease, color var(--duration-base) ease;
	width: -moz-fit-content;
	width: fit-content;
}

.top-service__card-link::after {
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	content: "";
	height: 8px;
	position: absolute;
	right: 17px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	transition: border-color var(--duration-base) ease;
	width: 8px;
}

.top-support {
	margin-top: 5rem;
}

.top-support__inner {
	container-type: inline-size;
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: var(--padding-inner);
	padding-right: var(--padding-inner);
}

.top-support__content + .top-support__content {
	margin-top: 3.75rem;
}

.top-support__media {
	align-items: flex-end;
	display: grid;
	grid-template-columns: 1fr 0.19fr;
	justify-content: space-between;
}

.top-support__img {
	-o-object-fit: cover;
	aspect-ratio: 3/2;
	height: auto;
	object-fit: cover;
}

.top-support__vertical-title {
	font-size: 1.25rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.4em;
	writing-mode: vertical-rl;
}

.top-support__vertical-title-second {
	margin-top: 6.25rem;
}

.top-support__list {
	margin-top: 1.875rem;
}

.top-support__item {
	font-size: 0.875rem;
	font-weight: var(--font-weight-medium);
	line-height: 1.54;
	margin-top: 0.5rem;
	padding-left: 0.6em;
	position: relative;
}

.top-support__item::before {
	aspect-ratio: 1/1;
	background-color: currentColor;
	border-radius: calc(infinity * 1px);
	content: "";
	left: 0;
	position: absolute;
	top: 0.65em;
	width: 0.25em;
}

.top-support__text-wrap {
	display: flex;
	flex-direction: column;
	gap: 0.9375rem;
	margin-top: 1.875rem;
}

.top-support__text {
	font-size: 0.875rem;
	font-weight: var(--font-weight-medium);
	line-height: 1.54;
}

.top-works {
	margin-top: 3.75rem;
}

.top-works__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: var(--padding-inner);
	padding-right: var(--padding-inner);
}

.top-works__title {
	font-size: 1.75rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.35em;
	text-align: center;
}

.top-works__list {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
	margin-top: 2rem;
}

.top-works__link {
	display: block;
	transition: opacity var(--duration-base) ease-in-out;
}

.top-works__img-wrap {
	overflow: hidden;
}

.top-works__img {
	-o-object-fit: cover;
	aspect-ratio: 3/2;
	height: auto;
	object-fit: cover;
	transition: transform var(--duration-base) ease-in-out;
	will-change: transform;
}

.top-works__button-wrap {
	margin-top: 2.5rem;
	text-align: center;
}

.js-fade-in {
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
}

.js-fade-in.is-active {
	opacity: 1;
}

.js-fade-up {
	opacity: 0;
	transition: opacity 1s ease-in-out, translate 1s ease-in-out;
	translate: 0 10px;
}

.js-fade-up.is-active {
	opacity: 1;
	translate: 0 0;
}

.js-slide-left {
	opacity: 0;
	transition: opacity 1s ease-in-out, translate 1s ease-in-out;
	translate: 10px 0;
}

.js-slide-left.is-active {
	opacity: 1;
	translate: 0;
}

.js-scaleImg {
	overflow: hidden;
}

.js-scaleImg img {
	opacity: 0;
	scale: 1.05;
	transition: scale 0.9s ease-in-out, opacity 0.9s ease-in-out;
}

.js-scaleImg.is-active img {
	opacity: 1;
	scale: 1;
}

.js-scaleImg.--delay-1 img {
	transition-delay: var(--delay-1);
}

.js-scaleImg.--delay-2 img {
	transition-delay: var(--delay-2);
}

.js-scaleImg.--delay-3 img {
	transition-delay: var(--delay-3);
}

.js-scaleImg.--delay-4 img {
	transition-delay: var(--delay-4);
}

.js-scaleImg.--delay-5 img {
	transition-delay: var(--delay-5);
}

:root {
	--delay-1: 0.1s;
	--delay-2: 0.2s;
	--delay-3: 0.3s;
	--delay-4: 0.4s;
	--delay-5: 0.5s;
}

.--delay-1 {
	transition-delay: var(--delay-1);
}

.--delay-2 {
	transition-delay: var(--delay-2);
}

.--delay-3 {
	transition-delay: var(--delay-3);
}

.--delay-4 {
	transition-delay: var(--delay-4);
}

.--delay-5 {
	transition-delay: var(--delay-5);
}

.breadcrumb {
	padding: 0.3125rem 0.3125rem;
}

.breadcrumb__list {
	align-items: center;
	display: flex;
	gap: 0.25rem;
}

.breadcrumb__item {
	font-size: 0.875rem;
	font-weight: var(--font-weight-regular);
}

.breadcrumb__item::after {
	content: "/";
	left: 50%;
	margin-left: 0.25rem;
	top: 50%;
	translate: -50% -50%;
}

.breadcrumb__item:last-child::after {
	content: "";
}

.breadcrumb__link {
	transition: opacity 0.3s ease-in-out;
}

.breadcrumb__link:hover {
	opacity: 0.7;
}

.btn-link {
	border: 1px solid var(--border-color);
	display: inline-block;
	font-size: 1rem;
	font-weight: var(--font-weight-black);
	padding: 0.75rem 4.375rem 0.75rem 1.875rem;
	position: relative;
	transition: background-color var(--duration-base) ease, color var(--duration-base) ease;
}

.btn-link::after {
	border-right: 2px solid #000;
	border-top: 2px solid #000;
	content: "";
	height: 0.625rem;
	position: absolute;
	right: 1.25rem;
	top: 52%;
	transform: translateY(-50%) rotate(45deg);
	transition: border-color var(--duration-base) ease;
	width: 0.625rem;
}

.drawer {
	-webkit-clip-path: inset(0 0 100% 0);
	background: url("../images/common/drawer-bg.webp") no-repeat center center/cover;
	border-radius: 3px;
	clip-path: inset(0 0 100% 0);
	overflow: hidden;
	position: fixed;
	right: 0;
	top: 0;
	transition: -webkit-clip-path 0.5s ease;
	transition: clip-path 0.5s ease;
	transition: clip-path 0.5s ease, -webkit-clip-path 0.5s ease;
	width: 100%;
	z-index: var(--z-index-drawer);
}

.drawer.is-open {
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);
}

.drawer__inner {
	height: 100%;
	padding-bottom: 2.5rem;
	padding-left: 0.9375rem;
	padding-right: 0.9375rem;
	padding-top: 1.875rem;
	width: 100%;
}

.drawer__close-btn {
	aspect-ratio: 1/1;
	bottom: 0.625rem;
	position: absolute;
	right: 0.625rem;
	width: 1.5rem;
}

.drawer__close-icon {
	-o-object-fit: contain;
	height: auto;
	object-fit: contain;
}

.drawer__title {
	font-family: var(--font-family-second);
	font-size: 1rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.1em;
	line-height: 1.2;
	text-align: center;
}

.drawer__bg-img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.drawer__nav {
	margin-top: 1.875rem;
}

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

.drawer__menu-link {
	-webkit-text-decoration: none;
	align-items: center;
	background-color: var(--white);
	border: 1px solid var(--black);
	display: block;
	display: flex;
	justify-content: center;
	margin: 0 auto;
	padding: 1rem 1.25rem;
	text-decoration: none;
	transition: background-color var(--duration-short);
	width: 100%;
}

.drawer__menu-link:hover {
	background-color: var(--gray);
}

.drawer__menu-text {
	color: var(--black);
	font-family: var(--font-family-second);
	font-size: 1rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.193;
	text-align: center;
}

.footer {
	background: url("../images/common/footer-bg.webp") no-repeat center center/cover;
	padding-bottom: 5rem;
	padding-top: 3.75rem;
}

.footer__inner {
	padding-left: var(--padding-inner);
	padding-right: var(--padding-inner);
}

.footer__brand {
	text-align: left;
}

.footer__logo-wrap {
	display: block;
	max-width: 12.5rem;
	transition: opacity var(--duration-base) ease;
}

.footer__logo {
	-o-object-fit: contain;
	height: auto;
	object-fit: contain;
}

.footer__nav {
	margin-top: 1.875rem;
}

.footer__nav-list {
	align-items: center;
	display: flex;
	gap: 1.25rem;
}

.footer__nav-link {
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	background: rgba(246, 246, 246, 0.72);
	border-radius: 1px;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
	color: #4D4D4D;
	font-family: var(--font-family-second);
	font-size: 0.875rem;
	font-weight: var(--font-weight-medium);
	line-height: 1.182;
	padding: 0.625rem 1.25rem;
	transition: opacity var(--duration-base) ease;
}

.header {
	height: 4.375rem;
	left: 0;
	pointer-events: none;
	position: fixed;
	right: 0;
	top: 0;
	z-index: var(--z-index-header);
}

.header__inner {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: space-between;
	padding-left: 0.9375rem;
	padding-right: 0.9375rem;
}

.header__logo-link {
	align-items: center;
	display: flex;
	height: 100%;
	pointer-events: auto;
	width: 8.3125rem;
}

.header__logo-img {
	-o-object-fit: contain;
	height: auto;
	object-fit: contain;
}

.header__menu-btn {
	border: 1px solid #000;
	border-radius: 1px;
	font-family: var(--font-family-second);
	font-size: 0.8125rem;
	font-weight: var(--font-weight-semibold);
	line-height: 1;
	padding: 0.3125rem 1.0625rem 0.375rem 1.0625rem;
	pointer-events: auto;
	text-align: center;
	text-transform: uppercase;
	transition: opacity var(--duration-base);
}

.sub-mv--relative {
	position: relative;
}

.sub-mv__title {
	background-color: rgba(49, 46, 46, 0.62);
	bottom: 1.25rem;
	color: #FFFAFA;
	display: inline-block;
	font-family: var(--font-family-second);
	font-size: 1.125rem;
	font-weight: var(--font-weight-bold);
	left: 0;
	padding: 0.4375rem 1.0625rem;
	position: absolute;
}

.sub-mv__img {
	-o-object-fit: cover;
	aspect-ratio: 16/9;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.to-top {
	bottom: 1.25rem;
	cursor: pointer;
	opacity: 0;
	position: fixed;
	right: 1.25rem;
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
	visibility: hidden;
	width: 2.125rem;
	z-index: var(--z-index-to-top);
}

.to-top.js-active {
	opacity: 1;
	visibility: visible;
}

.to-top__img {
	-o-object-fit: contain;
	height: auto;
	object-fit: contain;
}

@media (any-hover: hover) {

a:hover {
	cursor: pointer;
}

.lecture__nav-link:hover {
	background-color: var(--hover-color);
	border-color: var(--hover-color);
	color: var(--white);
}

.schedule__accordion-btn:hover {
	filter: brightness(0.95);
}

.top-links__link:hover .top-links__img {
	transform: scale(1.05);
}

.top-links__link:hover .top-links__label {
	background-color: var(--hover-color);
	border-color: var(--hover-color);
	color: var(--white);
}

.top-service__nav-link:hover {
	background-color: var(--hover-color);
	border-color: var(--hover-color);
	color: var(--white);
}

.top-service__card-read-more-btn:hover {
	opacity: 0.7;
}

.top-service__card-link:hover {
	background: var(--gray);
	color: var(--gray-dark);
}

.top-service__card-link:hover::after {
	border-color: var(--gray-dark);
}

.top-works__link:hover {
	opacity: 0.7;
}

.top-works__link:hover .top-works__img {
	transform: scale(1.05);
}

.btn-link:hover {
	background-color: var(--hover-color);
	color: var(--white);
}

.btn-link:hover::after {
	border-color: var(--white);
}

.footer__logo-wrap:hover {
	opacity: 0.7;
}

.footer__nav-link:hover {
	opacity: 0.7;
}

.header__menu-btn:hover {
	opacity: 0.7;
}

.to-top:hover {
	opacity: 0.7;
}

}

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

.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

html {
	font-size: 1.2903225806vw;
}

.inner {
	max-width: 1310px;
	padding-left: 35px;
	padding-right: 35px;
}

.lecture {
	margin-top: 6.25rem;
	padding-bottom: 14.375rem;
}

.lecture__inner {
	max-width: calc(1330px + var(--padding-inner) * 2);
}

.lecture__content {
	gap: clamp(40px, 40px + 60 * var(--fluid-basis), 100px);
	grid-template-columns: 553fr 675fr;
}

.lecture__nav-list {
	gap: 4.0625rem;
}

.lecture__nav-link {
	font-size: 1.875rem;
}

.lecture__intro {
	gap: 1.5625rem;
}

.lecture__text {
	font-size: 1.5rem;
}

.lecture__point-item {
	font-size: 1.5rem;
	gap: 0.625rem;
	padding-left: 0.625rem;
}

.lecture__point-item::before {
	margin-top: 1rem;
	width: 0.375rem;
}

.lecture__section {
	margin-top: 10rem;
}

.lecture__section-header {
	gap: 6.875rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 1260px;
}

.lecture__section--header-img-wrap {
	width: 14.6875rem;
}

.lecture__section-title {
	font-size: 1.875rem;
	max-width: 34.5625rem;
	padding: 0.375rem 1.25rem;
	width: 100%;
}

.lecture__section-content {
	margin-top: 5rem;
	padding-left: 4.375rem;
	padding-right: 4.375rem;
}

.lecture__section-content h3 {
	font-size: 1.5rem;
	margin-top: 3.125rem;
	padding: 0.1875rem 0.625rem;
}

.lecture__section-content p {
	font-size: 1.25rem;
	margin-top: 1.5625rem;
}

.lecture__section-content p strong {
	font-size: 1.5rem;
}

.lecture__section-content p.text-notice {
	font-size: 1.5rem;
	margin-top: 3.75rem;
}

.lecture__section-content ul,
.lecture__section-content ol {
	margin-top: 1.5625rem;
}

.lecture__section-content ul li {
	font-size: 1.25rem;
	gap: 0.625rem;
	padding-left: 0.625rem;
}

.lecture__section-content ul li::before {
	margin-top: 0.6875rem;
	width: 0.3125rem;
}

.lecture__section-content ol li {
	font-size: 1.25rem;
	padding-left: 1.875rem;
}

.materials-select {
	margin-top: 6.25rem;
	padding-bottom: 10rem;
}

.materials-select__inner {
	max-width: calc(1300px + var(--padding-inner) * 2);
}

.materials-select__items {
	gap: 8.75rem;
}

.materials-select__item {
	gap: 6.375rem;
	grid-template-columns: 440fr 757fr;
}

.materials-select__title {
	font-size: 1.5rem;
	max-width: 34.5625rem;
	padding: 0.5625rem 1.25rem;
}

.materials-select__list {
	margin-top: 2.8125rem;
}

.materials-select__list-item {
	font-size: 1.5rem;
	gap: 0.625rem;
}

.materials-select__list-item::before {
	margin-top: 1rem;
	width: 0.4375rem;
}

.cost {
	margin-top: 8.125rem;
	padding-bottom: 10rem;
}

.cost__inner {
	max-width: calc(1130px + var(--padding-inner) * 2);
}

.cost__title {
	font-size: 1.5rem;
}

.cost__content {
	margin-top: 3.75rem;
}

.cost__heading {
	font-size: 2rem;
	margin-top: 3.125rem;
}

.cost__text-wrap {
	gap: 1.875rem;
	margin-top: 2.5rem;
}

.cost__text {
	font-size: 1.5rem;
}

.cost__list {
	gap: 1.875rem;
	margin-top: 2.5rem;
}

.cost__list-item {
	font-size: 1.5rem;
	gap: 0.625rem;
	padding-left: 0.625rem;
}

.cost__list-item::before {
	margin-top: 1rem;
	width: 0.375rem;
}

.schedule {
	margin-top: 5rem;
}

.schedule__inner {
	max-width: calc(1140px + var(--padding-inner) * 2);
}

.schedule__title {
	font-size: 1.5rem;
}

.schedule__lead {
	font-size: 1.5rem;
	margin-top: 7.5rem;
}

.schedule__flow {
	gap: 1.875rem;
	margin-top: 5rem;
}

.schedule__flow-item {
	font-size: 1.5rem;
}

.schedule__text {
	font-size: 1.5rem;
}

.schedule__accordion-btn {
	font-size: 1.5rem;
	padding: 1.75rem 5.4375rem;
}

.schedule__accordion-btn::after {
	right: 1.625rem;
	width: 1.5rem;
}

.schedule__accordion-content {
	margin-top: -1.25rem;
}

.schedule__accordion-body {
	padding: 5.125rem 4.375rem 3.25rem 4.375rem;
}

.schedule__accordion-title {
	font-size: 1.5rem;
}

.schedule__tips {
	margin-top: 1.875rem;
}

.schedule__tips-item {
	font-size: 1rem;
}

.schedule__tips-title {
	font-size: 1rem;
}

.schedule__tips-text {
	font-size: 1rem;
}

.schedule__tips-sub-item {
	font-size: 1rem;
	padding-left: 0.625rem;
}

.schedule__tips-sub-item::before {
	margin-top: 0.75rem;
	width: 0.3125rem;
}

.mv {
	padding-bottom: 1.9375rem;
	padding-top: 8.6875rem;
}

.mv__slide {
	border-radius: 41px;
}

.mv__img {
	border-radius: 41px;
}

.mv__text-wrap {
	gap: calc((35 * 100) / var(--cq-ref) * 1cqw);
}

.mv__text-wrap-item {
	font-size: calc((36 * 100) / var(--cq-ref) * 1cqw);
}

.mv__pagination {
	gap: 0.5rem;
	margin-top: 2.5625rem;
}

.mv__pagination .swiper-pagination-bullet {
	height: 1.125rem;
	width: 1.125rem;
}

.mv__pagination .swiper-pagination-bullet-active {
	height: 1.125rem;
	width: 2.25rem;
}

.top-about {
	padding-bottom: 9.375rem;
	padding-top: 9.375rem;
}

.top-about__inner {
	--cq-ref-inner: 1410;
	max-width: calc(1410px + var(--padding-inner) * 2);
}

.top-about__content {
	gap: calc((50 * 100) / var(--cq-ref-inner) * 1cqw);
	grid-template-columns: max-content 1fr;
	margin-left: calc((20 * 100) / var(--cq-ref-inner) * 1cqw);
}

.top-about__title {
	font-size: calc((32 * 100) / var(--cq-ref-inner) * 1cqw);
}

.top-about__box {
	margin-top: calc((200 * 100) / var(--cq-ref-inner) * 1cqw);
}

.top-about__box-img-wrap {
	border-radius: 31px 0 0 0;
	max-width: calc(964 * 100 / var(--cq-ref-inner) * 1cqw);
}

.top-about__box-img {
	border-radius: 31px 0 0 0;
}

.top-about__box-content {
	background-color: var(--white);
	padding: calc((30 * 100) / var(--cq-ref-inner) * 1cqw) calc((35 * 100) / var(--cq-ref-inner) * 1cqw) calc((50 * 100) / var(--cq-ref-inner) * 1cqw) calc((35 * 100) / var(--cq-ref-inner) * 1cqw);
	position: absolute;
	right: 0;
	top: 0;
}

.top-about__box-text {
	font-size: calc((24 * 100) / var(--cq-ref-inner) * 1cqw);
	max-width: calc((535 * 100) / var(--cq-ref-inner) * 1cqw);
}

.top-about__box-text + .top-about__box-text {
	margin-top: calc((30 * 100) / var(--cq-ref-inner) * 1cqw);
}

.top-flow {
	margin-top: 10rem;
}

.top-flow__inner {
	max-width: calc(1100px + var(--padding-inner) * 2);
}

.top-flow__title {
	font-size: 2.5rem;
}

.top-flow__grid {
	align-items: stretch;
	gap: 1.25rem;
	grid-template-columns: 1fr max-content 1fr;
	margin-top: 5rem;
}

.top-flow__list {
	height: 100%;
	justify-content: space-between;
}

.top-flow__item {
	flex-shrink: 0;
	padding: 1.25rem 2.1875rem 1.25rem 1.5625rem;
}

.top-flow__number {
	aspect-ratio: 1/1;
	background-color: var(--black);
	border-radius: calc(infinity * 1px);
	color: #fff;
	font-size: 1.375rem;
	width: 2.0625rem;
}

.top-flow__text {
	font-size: 1.875rem;
}

.top-flow__arrow-center {
	flex-shrink: 0;
	margin-bottom: 1.875rem;
	margin-top: auto;
	rotate: 205deg;
	width: 1.5625rem;
}

.top-flow__arrow {
	flex-shrink: 0;
	width: 1.5625rem;
}

.top-flow__more {
	margin-top: 5rem;
}

.top-links {
	margin-top: 10rem;
	padding-bottom: 11.25rem;
}

.top-links__inner {
	--cq-ref-inner: 1200;
	max-width: calc(1000px + var(--padding-inner) * 2);
}

.top-links__list {
	gap: 1.75rem;
	grid-template-columns: repeat(3, 1fr);
}

.top-links__item.top-links__item--03 .top-links__img-wrap::after {
	-webkit-clip-path: ellipse(40% 53% at 113% 50%);
	background: var(--white);
	clip-path: ellipse(40% 53% at 113% 50%);
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 40%;
}

.top-links__img {
	aspect-ratio: 312/313;
}

.top-links__label {
	font-size: 1.25rem;
	margin-top: 1.625rem;
	min-width: 10.875rem;
}

.top-service__mv-title {
	bottom: 3.75rem;
	font-size: 2.75rem;
	padding: 0.875rem 1.875rem;
}

.top-service__inner {
	--cq-ref-inner: 1410;
	max-width: calc(1060px + var(--padding-inner) * 2);
}

.top-service__nav {
	margin-top: 7.5rem;
}

.top-service__nav-list {
	gap: 2.5rem;
	grid-template-columns: repeat(3, 1fr);
	padding-left: 3.75rem;
	padding-right: 3.75rem;
}

.top-service__nav-link {
	font-size: 1.375rem;
	padding: 1.25rem 1.25rem;
}

.top-service__content {
	margin-top: 7.5rem;
}

.top-service__cards {
	gap: 1rem;
	grid-template-columns: repeat(3, 1fr);
}

.top-service__card-img-wrap {
	padding-left: 1.875rem;
	padding-right: 1.875rem;
}

.top-service__card-read-more-btn {
	font-size: 0.9375rem;
}

.top-service__card-body {
	display: flex;
	flex-direction: column;
	min-height: 26.875rem;
}

.top-service__card-01 .top-service__card-text {
	font-size: 0.75rem;
	margin-top: 0.8125rem;
}

.top-service__card-text {
	font-size: 0.875rem;
	margin-top: 1.25rem;
}

.top-service__card-action {
	margin-top: auto;
	padding-top: 0.625rem;
}

.top-service__card-link::after {
	top: 52%;
}

.top-support {
	margin-top: 10rem;
}

.top-support__inner {
	--cq-ref-inner: 970;
	max-width: calc(970px + var(--padding-inner) * 2);
}

.top-support__content + .top-support__content {
	margin-top: calc((120 * 100) / var(--cq-ref-inner) * 1cqw);
}

.top-support__content {
	padding-right: calc((140 * 100) / var(--cq-ref-inner) * 1cqw);
}

.top-support__media {
	grid-template-columns: 1fr max-content;
	padding-left: calc((30 * 100) / var(--cq-ref-inner) * 1cqw);
}

.top-support__img-wrap {
	max-width: calc((630 * 100) / var(--cq-ref-inner) * 1cqw);
}

.top-support__vertical-title {
	font-size: calc((36 * 100) / var(--cq-ref-inner) * 1cqw);
}

.top-support__vertical-title-second {
	margin-top: calc((160 * 100) / var(--cq-ref-inner) * 1cqw);
	padding-right: calc((10 * 100) / var(--cq-ref-inner) * 1cqw);
}

.top-support__list {
	margin-top: calc((52 * 100) / var(--cq-ref-inner) * 1cqw);
	max-width: calc((660 * 100) / var(--cq-ref-inner) * 1cqw);
}

.top-support__item {
	font-size: calc((24 * 100) / var(--cq-ref-inner) * 1cqw);
}

.top-support__text-wrap {
	gap: calc((30 * 100) / var(--cq-ref-inner) * 1cqw);
	margin-top: calc((52 * 100) / var(--cq-ref-inner) * 1cqw);
	max-width: calc((640 * 100) / var(--cq-ref-inner) * 1cqw);
}

.top-support__text {
	font-size: calc((24 * 100) / var(--cq-ref-inner) * 1cqw);
}

.top-works {
	margin-top: 10rem;
}

.top-works__inner {
	--cq-ref-inner: 1200;
	max-width: calc(1385px + var(--padding-inner) * 2);
}

.top-works__title {
	font-size: 2.5rem;
}

.top-works__list {
	gap: 1.5rem;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 5rem;
}

.top-works__button-wrap {
	margin-top: 5rem;
}

.breadcrumb {
	padding: 0.3125rem var(--padding-inner);
}

.breadcrumb__item {
	font-size: 1.125rem;
}

.btn-link {
	font-size: 1.125rem;
	padding: 0.75rem 4.375rem 0.75rem 1.875rem;
}

.drawer {
	right: 1.875rem;
	top: 2.5rem;
	width: -moz-fit-content;
	width: fit-content;
}

.drawer__inner {
	border: 1px solid #c8c8c8;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}

.drawer__menu-link {
	min-width: 25rem;
	padding: 1rem 1.25rem;
}

.footer {
	padding-bottom: 1.875rem;
	padding-top: 1.875rem;
}

.footer__inner {
	padding-left: 1.875rem;
	padding-right: 6.25rem;
}

.footer__logo-wrap {
	max-width: 14.5625rem;
}

.footer__nav {
	margin-top: 13rem;
}

.footer__nav-list {
	gap: 1rem;
	justify-content: flex-end;
}

.footer__nav-link {
	font-size: 1rem;
	padding: 0.625rem 1.875rem;
}

.header {
	height: 7.1875rem;
}

.header__inner {
	padding-left: 2.5rem;
	padding-right: 1.875rem;
}

.header__logo-link {
	width: 13.125rem;
}

.header__menu-btn {
	font-size: max(0.9375rem, 12px);
	padding: 0.375rem 1.6875rem 0.4375rem 1.6875rem;
}

.sub-mv__title {
	bottom: 3.75rem;
	font-size: 2.75rem;
	padding: 0.875rem 2.5rem;
}

.to-top {
	bottom: 2.5rem;
	right: 1.875rem;
	width: 2.75rem;
}

}

@media (min-width: 768px) {

a[href*="tel:"] {
	-webkit-text-decoration: none;
	cursor: default;
	pointer-events: none;
	text-decoration: none;
}

}

@media (min-width: 1240px) {

html {
	font-size: 16px;
}

}

@media (max-width: 768px) {

.--delay-1,
.--delay-2,
.--delay-3,
.--delay-4 {
	transition-delay: 0s;
}

}

@media (max-width: 767px) {

.lecture__content {
	grid-template-areas: "intro" "nav";
}

.lecture__nav {
	grid-area: nav;
}

.lecture__intro {
	grid-area: intro;
}

.lecture__section-header {
	flex-direction: column;
}

.materials-select__list-item {
	padding-left: 0.3125rem;
}

.top-about__content {
	grid-template-areas: "content" "title" "img";
	position: relative;
}

.top-about__title {
	grid-area: title;
	left: 6%;
	line-height: 1.3;
	position: absolute;
	rotate: 90deg;
	top: 50%;
	translate: -50% -140%;
	writing-mode: sideways-lr;
}

.top-about__box {
	display: contents;
}

.top-about__box-img-wrap {
	grid-area: img;
}

.top-about__box-content {
	font-size: 0.875rem;
	grid-area: content;
	padding-left: 3.75rem;
}

.top-flow__item--second {
	margin-top: 0.3125rem;
}

.top-links__list {
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.top-links__label {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1rem;
	max-width: 10.875rem;
}

.top-support__media {
	gap: 1.25rem;
}

.footer__logo-wrap {
	margin-left: auto;
	margin-right: auto;
}

.footer__nav-list {
	flex-direction: column;
}

.footer__nav-link {
	min-width: 11.125rem;
	text-align: center;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}