:root {
	--primary-gradient: linear-gradient(to right, #4773CD 0%, #31ADA5 100%);
}

body {
	margin: 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.03em;
	color: #1A1A1A;
}

.para {
	font-size: clamp(14px, 1.6rem, 16px);
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.03em;
	color: #1A1A1A;
}

@media screen and (max-width: 767px) {
	.para {
		font-size: clamp(13px, 1.4rem, 14px);
		line-height: calc(22 / 14);
		letter-spacing: 0;
	}
}

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

p {
	margin: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

.sp-only {
	display: none !important;
}

@media (max-width: 767px) {
	.sp-only {
		display: block !important;
	}
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	box-sizing: border-box;
}

@media (max-width: 767px) {
	.container {
		padding: 0 24px;
	}
}

/* Header start */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	padding: 2.4rem 2.4rem 0;
}

.header__inner {
	height: 8rem;
	min-height: 60px;
	padding: 2rem 5.2rem 2rem 3.2rem;
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);

	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.header__logo {
	color: #111;
	text-decoration: none;
	line-height: 1.2;
	display: flex;
	flex-direction: column;
}

.header__logo-main {
	font-size: clamp(16px, 2.1rem, 21px);
	font-weight: 700;
	letter-spacing: 0.03em;
}

.header__logo-sub {
	font-family: "Rajdhani", sans-serif;
	font-size: clamp(12px, 1.6rem, 16px);
	font-weight: 700;
	letter-spacing: 0.02em;
}

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

.header__nav a {
	color: #1A1A1A;
	font-size: clamp(14px, 1.6rem, 16px);
	font-weight: 700;
	text-decoration: none;
	transition: all 0.2s ease;
}

.header__nav a:hover {
	color: #21407F;
}

.header__menu-btn {
	display: none;
}

@media (max-width: 767px) {
	.header {
		padding: 0;
		box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
	}

	.header__inner {
		height: 6rem;
		max-height: 80px;
		padding: 1.4rem 1.8rem;
		border-radius: 0;
	}

	.header__logo-main {
		font-size: clamp(14px, 1.4rem, 16px);
		letter-spacing: 0.04em;
	}

	.header__logo-sub {
		font-size: clamp(11px, 1.1rem, 12px);
	}

	.header__menu-btn {
		display: block;
		width: 28px;
		height: 22px;
		padding: 0;
		border: none;
		background: transparent;
		cursor: pointer;
		position: relative;
		z-index: 20;
	}

	.header__menu-btn span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 3px;
		background: #000000;
		border-radius: 4px;
		transition: top 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
	}

	.header__menu-btn span:nth-child(1) {
		top: 0;
	}

	.header__menu-btn span:nth-child(2) {
		top: 10px;
	}

	.header__menu-btn span:nth-child(3) {
		top: 20px;
	}

	.header__menu-btn.is-open span:nth-child(1) {
		top: 10px;
		transform: rotate(45deg);
	}

	.header__menu-btn.is-open span:nth-child(2) {
		opacity: 0;
	}

	.header__menu-btn.is-open span:nth-child(3) {
		top: 10px;
		transform: rotate(-45deg);
	}

	.header__nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		padding: 3.2rem 5.6rem;
		background: #f0f0f0;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);

		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
		z-index: -1;
	}

	.header__nav.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.header__nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.header__nav li {
		border-bottom: 1px solid #eee;
	}

	.header__nav li:last-child {
		border-bottom: none;
	}

	.header__nav a {
		position: relative;
		display: block;
		padding: 1.2rem 0;
		font-size: clamp(20px, 2rem, 20px);
	}

	.header__nav a::after {
		position: absolute;
		top: 50%;
		right: 1rem;
		transform: translateY(-50%);
		content: "";
		width: 10px;
		height: 20px;
		background-image: url("../img/common/arrow-right.svg");
		background-size: contain;
		background-repeat: no-repeat;
	}
}

/* Header end */

/* Footer start */
.footer {
	background: #f0f0f0;
	padding: 11.6rem 16.8rem 11.2rem 18.6rem
}

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

.footer__logo {
	display: inline-flex;
	flex-direction: column;
	line-height: 1.2;
	flex-shrink: 0;
}

.footer__logo-main {
	font-size: clamp(16px, 2.1rem, 21px);
	font-weight: 700;
	letter-spacing: 0.03em;
}

.footer__logo-sub {
	font-family: "Rajdhani", sans-serif;
	font-size: clamp(12px, 1.6rem, 16px);
	font-weight: 700;
	letter-spacing: 0.02em;
}

.footer__content {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

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

.footer__nav a {
	font-size: clamp(14px, 1.6rem, 16px);
	font-weight: 700;
	line-height: 1.5;
	transition: all 0.2s ease;
}

.footer__nav a:hover {
	color: #21407F;
}

.footer__copyright {
	margin: 3.2rem 0 0;
	font-size: clamp(13px, 1.4rem, 14px);
	line-height: 1.5;
}

@media screen and (max-width: 1280px) {
	.footer {
		padding: 8rem 8rem;
	}
}

@media screen and (max-width: 1024px) {
	.footer {
		padding: 8rem 2.4rem;
	}

}

@media (max-width: 767px) {
	.footer {
		padding: 5rem 2.4rem 4.6rem;
	}

	.footer__inner {
		max-width: none;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0;
	}

	.footer__logo {
		align-items: center;
		text-align: center;
	}

	.footer__logo-main {
		font-size: clamp(14px, 1.4rem, 16px);
	}

	.footer__logo-sub {
		font-size: clamp(11px, 1.1rem, 12px);
	}

	.footer__content {
		align-items: center;
		margin-top: 3.8rem;
	}

	.footer__nav-list {
		flex-direction: column;
		gap: 1.8rem;
		text-align: center;
	}

	.footer__nav a {
		font-size: clamp(16px, 1.6rem, 16px);
	}

	.footer__copyright {
		margin-top: 3.4rem;
		font-size: clamp(12px, 1.2rem, 13px);
		text-align: center;
	}
}

/* Footer end */


/* Component start */
.c-sec-heading {
	position: relative;
	width: max-content;
}

.c-sec-heading .en {
	display: block;
	font-family: "Rajdhani", sans-serif;
	font-size: clamp(83px, 13.8rem, 138px);
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0em;
	color: rgba(65, 90, 139, 0.25);
}

.c-sec-heading .jp {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: max-content;
	font-size: clamp(22px, 3.2rem, 32px);
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.03em;
	color: #FFF;
}

.c-sec-heading.dark .en {
	color: rgba(33, 64, 127, 0.15)
}

.c-sec-heading.dark .jp {
	left: 2rem;
	transform: translate(0, -50%);
	color: #1A1A1A;
}

@media screen and (max-width: 767px) {
	.c-sec-heading {
		margin-inline: auto;
	}

	.c-sec-heading .en {
		font-size: clamp(75px, 8.3rem, 83px);
	}

	.c-sec-heading .jp {
		font-size: clamp(22px, 2.4rem, 24px);

	}

	.c-sec-heading.dark .jp {
		left: 50%;
		transform: translate(-50%, -50%);
	}
}

.c-btn1 {
	position: relative;
	width: 240px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(14px, 1.6rem, 16px);
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.03em;
	color: #21407F;
	background-color: #FFF;
	border-radius: 5rem;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.c-btn1::after {
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translateY(-50%);
	content: "";
	width: 8px;
	height: 15px;
	background-image: url(../img/common/arrow-right.svg);
	background-size: contain;
	background-repeat: no-repeat;
}

.c-btn1.prev::after {
	right: unset;
	left: 20px;
	background-image: url(../img/common/arrow-left.svg);
}

.c-btn1:hover {
	color: #fff;
	background-color: #21407F;
}

.c-btn1:hover::after {
	background-image: url(../img/common/arrow-right-white.svg);
}

.c-btn1.prev:hover::after {
	background-image: url(../img/common/arrow-left-white.svg);
}

@media screen and (max-width: 767px) {
	.c-btn1 {
		font-size: clamp(16px, 1.6rem, 16px);
	}
}


.c-mainvisual {
	position: relative;
	width: 100%;
	height: auto;
	min-height: 400px;
	aspect-ratio: 1366 / 542;
	overflow: hidden;
}

.c-mainvisual.linear {
	background: var(--primary-gradient);
}

.c-mainvisual .main-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.c-mainvisual::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: #1A1A1A;
	opacity: 0.5;
}

.c-mainvisual.linear::after {
	content: none;
}

.c-mainvisual__heading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: max-content;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 1;
}

.c-mainvisual__heading .en {
	font-family: "Rajdhani", sans-serif;
	font-size: clamp(55px, 9.8rem, 98px);
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
	color: #fff;
}

.c-mainvisual__heading .jp {
	margin-top: 1rem;
	font-size: clamp(22px, 2.4rem, 24px);
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #fff;
}

.c-mainvisual__bc {
	position: absolute;
	width: 100%;
	top: clamp(100px, 13rem, 130px);
	left: 0;
	z-index: 1;
}

.c-mainvisual__bc-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.c-mainvisual__bc a,
.c-mainvisual__bc span {
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #fff;
	transition: all 0.2s ease;
}

.c-mainvisual__bc span {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-width: 80%;
}

.c-mainvisual__bc a:not(:first-of-type),
.c-mainvisual__bc span {
	position: relative;
	padding-left: 16px;
}

.c-mainvisual__bc a:not(:first-of-type)::before,
.c-mainvisual__bc span::before {
	position: absolute;
	top: 3px;
	left: 0px;
	width: 6px;
	height: 10px;
	content: "";
	background-image: url(../img/common/arrow-bc.svg);
	background-size: contain;
	background-repeat: no-repeat;
}

.c-mainvisual .umbrella {
	position: absolute;
	top: -4rem;
	right: 0px;
	transform: translateX(30%);
	opacity: 0.2;
	mix-blend-mode: lighten;
}

@media screen and (max-width: 767px) {
	.c-mainvisual {
		min-height: unset;
		aspect-ratio: 390 / 300;
	}

	.c-mainvisual__bc {
		top: clamp(76px, 7.6rem, 100px);
	}

	.c-mainvisual__bc-inner {
		width: 70%;
	}

	.c-mainvisual__bc a,
	.c-mainvisual__bc span {
		font-size: 12px;
	}

	.c-mainvisual__heading {
		top: 55%;
	}

	.c-mainvisual .umbrella {
		top: 15rem;
		transform: translateX(29%) scale(1.9);
	}

	.c-mainvisual__heading .en {
		font-size: clamp(36px, 4rem, 40px);
	}

	.c-mainvisual__heading .jp {
		font-size: clamp(18px, 2rem, 20px);
	}
}


.c-pagination {
	display: flex;
	gap: 3.4rem;
	align-items: center;
	justify-content: center;
}

.c-pagination .numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
}

.c-pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-family: "Rajdhani", sans-serif;
	font-size: clamp(20px, 2rem, 20px);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.03em;
	color: #D8D5D5;
	transition: all 0.2s ease;
}

.c-pagination .page-numbers.current {
	color: #1A1A1A;
}

.c-pagination a.page-numbers:hover {
	color: #21407F;
}

.c-pagination .prev,
.c-pagination .next {
	position: relative;
	display: block;
	width: 30px;
	height: 30px;
}

.c-pagination .prev::before,
.c-pagination .next::before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	content: "";
	width: 8px;
	height: 15px;
	background-size: contain;
	background-repeat: no-repeat;
}

.c-pagination .prev::before {
	background-image: url(../img/common/arrow-left.svg);
}

.c-pagination .next::before {
	background-image: url(../img/common/arrow-right.svg);
}

/* Component end */


/* Page Top start */
.p-top__mv {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.p-top__mv .img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 683 / 768;
	object-fit: cover;
}

.p-top__mv .title {
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: "Noto Serif JP", serif;
	color: #fff;
	text-align: center;
	line-height: 1.4;
	display: flex;
	max-width: 95%;
	width: max-content;
	flex-direction: column;
	align-items: center;
	z-index: 1;
}

.p-top__mv .title__main {
	font-size: clamp(42px, 7rem, 70px);
	font-weight: 700;
	letter-spacing: 0em;
}

.p-top__mv .title__sub {
	font-size: clamp(20px, 3rem, 30px);
	font-weight: 700;
}

.p-top__mv::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(19, 36, 72, 0.52);
	mix-blend-mode: multiply;
}

@media screen and (max-width: 767px) {
	.p-top__mv {
		grid-template-columns: repeat(1, 1fr);
	}

	.p-top__mv .img {
		aspect-ratio: 390 / 320;
	}

	.p-top__mv .title {
		top: 50%;
		gap: 2rem;
	}

	.p-top__mv .title__main {
		font-size: clamp(32px, 3.6rem, 36px);
	}


	.p-top__mv .title__sub {
		font-size: clamp(18px, 2rem, 20px);
	}
}


.p-top__about {
	position: relative;
	padding-block: 15.4rem 12rem;
	background: var(--primary-gradient);
	overflow: hidden;
}

.p-top__about-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.p-top__about .desc {
	margin-top: 4.2rem;
}

.p-top__about .desc>p {
	font-size: clamp(16px, 2rem, 20px);
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.03em;
	text-align: center;
	color: #fff;
}

.p-top__about .desc>p:not(:first-of-type) {
	margin-top: 3.6rem;
}

.p-top__about .c-btn1 {
	margin-top: 7.2rem;
}

/* .p-top__about .umbrella {
	position: absolute;
	top: 6.5rem;
	right: 0px;
	transform: translateX(33%);
	width: 100%;
	max-width: 1366px;
	opacity: 0.2;
	mix-blend-mode: lighten;
} */

.p-top__about .umbrella {
	position: absolute;
	top: 2.5rem;
	right: 0px;
	transform: translateX(31%) scale(1.25);
	opacity: 0.2;
	mix-blend-mode: lighten;
}


@media screen and (max-width: 1024px) {
	.p-top__about {
		padding-block: 10rem;
	}
}

@media screen and (max-width: 767px) {
	.p-top__about {
		padding-block: 8rem;
	}

	.p-top__about .container {
		padding: 0 2rem;
	}

	.p-top__about .desc {
		margin-top: 1.6rem;
	}

	.p-top__about .desc>p {
		font-size: clamp(14px, 1.6rem, 16px);
	}

	.p-top__about .c-btn1 {
		margin-top: 4.5rem;
	}

	.p-top__about .umbrella {
		top: 10.5rem;
		transform: translateX(21%) scale(1.9);
	}
}

.p-top__gallery {
	overflow: hidden;
}

.p-top-swiper {
	width: 100%;
}

.p-top-swiper .swiper-wrapper {
	transition-timing-function: linear;
}

.p-top-swiper .swiper-slide {
	width: 29.3%;
}

.p-top-swiper .swiper-slide img {
	width: 100%;
	height: auto;
	aspect-ratio: 400 / 280;
	object-fit: cover;
	display: block;
}

@media screen and (max-width: 767px) {
	.p-top-swiper .swiper-slide {
		width: 58.46%;
	}
}

.p-top__service {
	padding: 12rem 0;
	background: var(--primary-gradient);
}

.p-top__service-inner {
	background: #fff;
	border-radius: 1rem;
	padding: 8rem 2.6rem 8rem 7rem;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);

	display: flex;
	justify-content: space-between;
	gap: 6rem;

	position: relative;
}

.p-top__service .info {
	width: 45%;
	position: relative;
	z-index: 2;
}

.p-top__service .para {
	margin-top: 1.6rem;
}

.p-top__service .c-btn1 {
	margin-top: 2.8rem;
}

.p-top__service .gallery {
	position: absolute;
	top: 50%;
	right: 2.6rem;
	transform: translateY(-50%);
	width: 37.5%;
	display: flex;
	align-items: center;
	gap: 2rem;
}

.p-top__service .gallery1,
.p-top__service .gallery2 {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.p-top__service .gallery img {
	border-radius: 1rem;
	display: block;
	width: 100%;
}

@media screen and (max-width: 1024px) {
	.p-top__service {
		padding: 10rem 0;
	}

	.p-top__service .gallery {
		width: 42.5%;
	}
}


@media screen and (max-width: 767px) {
	.p-top__service {
		padding: 8rem 0;
	}

	.p-top__service-inner {
		padding: 5rem 2rem 4rem;
		flex-direction: column;
		gap: 4rem;
	}

	.p-top__service .info,
	.p-top__service .gallery {
		width: 100%;
	}

	.p-top__service .c-btn1 {
		margin-inline: auto;
	}

	.p-top__service .gallery {
		position: unset;
		transform: translateY(0);
		gap: 1.4rem;
	}

	.p-top__service .gallery1,
	.p-top__service .gallery2 {
		gap: 1.4rem;
	}
}


.p-top__news {
	padding-block: 12rem;
}


.c-news-item {
	padding: 2.2rem 0;
	display: flex;
	align-items: flex-start;
	gap: 4rem;
	border-bottom: 1px solid #D8D5D5
}

.c-news-item .date {
	margin-top: 0.4rem;
	width: 100px;
	font-family: "Rajdhani", sans-serif;
	font-size: clamp(14px, 1.6rem, 16px);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.03em;
	color: #21407F;
}

.c-news-item .para {
	flex: 1;
}

.c-news-item:hover .para {
	color: #21407F;
}

.p-top__news .c-btn1 {
	margin: 2.8rem 0 0 auto;
}

@media screen and (max-width: 1024px) {
	.p-top__news {
		padding-block: 10rem;
	}
}

@media screen and (max-width: 767px) {
	.p-top__news {
		padding-block: 8rem;
	}


	.c-news-item {
		padding: 1.6rem 0 0.8rem;
		flex-direction: column;
		gap: 0.8rem;
	}

	.c-news-item .date {
		margin-top: unset;
		width: 100%;
		font-size: clamp(13px, 1.4rem, 14px);
	}

	.p-top__news .c-btn1 {
		margin: 4rem auto 0;
	}
}

/* Page Top end */


/* Page Service start */
.p-service__content {
	padding-bottom: 12rem;
	background: var(--primary-gradient);
}

.p-service__content-inner {
	position: relative;
	margin-top: -12rem;
	padding-block: 8.6rem;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.p-service__content .item {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.p-service__content .item-reverse {
	flex-direction: row-reverse;
}

.p-service__content .item-text,
.p-service__content .item-image {
	flex: 1;
}

.p-service__content .item-text>p {
	max-width: 470px;
	padding-inline: 5rem;
	margin-inline: auto;
	font-size: clamp(18px, 2rem, 20px);
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.03em;
}

.p-service__content .item-image {
	border-radius: 10px 0 0 10px;
	overflow: hidden;
}

.p-service__content .item-reverse .item-image {
	border-radius: 0 10px 10px 0;
}

.p-service__content .item-image img {
	width: 100%;
	height: auto;
	aspect-ratio: 559 / 327;
	object-fit: cover;
}

@media screen and (max-width: 1024px) {
	.p-service__content {
		padding-bottom: 10rem;
	}

	.p-service__content-inner {
		margin-top: -10rem;
		padding-block: 8rem;
	}
}

@media screen and (max-width: 767px) {
	.p-service__content {
		padding-bottom: 8rem;
	}

	.p-service__content-inner {
		margin-top: -4.6rem;
		padding: 6rem 2.4rem;
		gap: 4.8rem;
	}

	.p-service__content .item,
	.p-service__content .item-reverse {
		flex-direction: column-reverse;
		gap: 2.4rem;
	}

	.p-service__content .item-image,
	.p-service__content .item-reverse .item-image {
		border-radius: 6px;
	}

	.p-service__content .item-text,
	.p-service__content .item-image {
		width: 100%;
	}

	.p-service__content .item-text>p {
		max-width: unset;
		padding-inline: unset;
		font-size: clamp(14px, 1.6rem, 16px);
		letter-spacing: 0em;
	}
}

/* Page Service end */



/* Page Company start */
.p-company__content {
	padding-bottom: 12rem;
	background: var(--primary-gradient);
}

.p-company__content-inner {
	position: relative;
	margin-top: -12rem;
	padding: 5.6rem 24px 8.6rem;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.p-company__content .list {
	max-width: 780px;
	margin-inline: auto;
}

.p-company__content .item {
	padding: 2rem 0;
	display: flex;
	align-items: flex-start;
	gap: 2rem;
	border-bottom: 1px solid #D8D5D5;
}

.p-company__content .item:not(:first-of-type) {
	margin-top: 0.6rem;
}

.p-company__content .item-label,
.p-company__content .item-content span,
.p-company__content .item-content p {
	font-size: clamp(18px, 2rem, 20px);
	line-height: calc(24 / 20);
	letter-spacing: 0.03em;
}

.p-company__content .item-label {
	width: 150px;
	font-weight: bold;
	color: #21407F;
}

.p-company__content .item-content {
	flex: 1;
}

.p-company__content .sub-item {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
}

.p-company__content .sub-item:not(:first-of-type) {
	margin-top: 1.1rem;
}

.p-company__content .sub-item span {
	width: 176px;
}

.p-company__content .sub-item p {
	flex: 1;
}

@media screen and (max-width: 1024px) {
	.p-company__content {
		padding-bottom: 10rem;
	}

	.p-company__content-inner {
		margin-top: -10rem;
	}

	.p-company__content .item-label {
		width: 120px;
	}

	.p-company__content .sub-item span {
		width: 150px;
	}
}

@media screen and (max-width: 767px) {
	.p-company__content {
		padding-bottom: 8rem;
	}

	.p-company__content-inner {
		margin-top: -4.6rem;
		padding: 4.5rem 2.4rem 6rem;
	}

	.p-company__content .item {
		padding: 0.8rem 0 0.9rem;
		flex-direction: column;
		gap: 0.4rem;
	}

	.p-company__content .item-label {
		width: 100%;
	}

	.p-company__content .item-label,
	.p-company__content .item-content span,
	.p-company__content .item-content p {
		font-size: clamp(14px, 1.6rem, 16px);
		line-height: 1.5;
		letter-spacing: 0;
	}

	.p-company__content .item-content {
		width: 100%;
	}

	.p-company__content .sub-item {
		flex-direction: column;
		gap: 0;
	}

	.p-company__content .sub-item span {
		width: 100%;
	}
}

/* Page Company end */


/* Page News List start */
.p-news .c-mainvisual__heading {
	top: 58%;
}

@media screen and (max-width: 767px) {
	.p-news .c-mainvisual__heading {
		top: 60%;
	}
}

.p-news__content {
	padding-block: 8rem 15.6rem;
}

.p-news__content .c-pagination {
	margin-top: 10rem;
}

@media screen and (max-width: 767px) {
	.p-news__content {
		padding-block: 4.2rem 7.5rem;
	}

	.p-news__content .c-pagination {
		margin-top: 5.2rem;
	}
}

/* Page News List end */


/* Page single start */
.p-single__content {
	padding-bottom: 8rem;
}

.p-single__content-inner {
	position: relative;
	margin-top: -34.8rem;
	padding: 7rem 8rem 8rem;
	background-color: #fff;
	border-radius: 10px;
}

.p-single__content .date {
	display: inline-block;
	margin-bottom: 1.6rem;
	font-family: "Rajdhani", sans-serif;
	font-size: clamp(14px, 1.6rem, 16px);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.03em;
	color: #21407F;
}

.p-single__content .title {
	margin-bottom: 5.2rem;
	padding-bottom: 2rem;
	font-size: clamp(20px, 2.4rem, 24px);
	font-weight: bold;
	line-height: calc(34 / 24);
	letter-spacing: 0.03em;
	border-bottom: 1px solid #D8D5D5;
}

.p-single__content .thumb {
	margin-top: 5.2rem;
	margin-inline: auto;
	max-width: 700px;
	width: 100%;
	height: auto;
	aspect-ratio: 700 / 460;
	background-color: #D9D9D9;
}

.p-single__content .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-single__content .content {
	margin-top: 5.6rem;
}

.p-single__content .content h2 {
	margin: 3.2rem 0 1rem;
	font-size: clamp(18px, 2rem, 20px);
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.03em;
}

.p-single__content .content h3 {
	margin: 2.4rem 0 0.8rem;
	font-size: clamp(16px, 1.8rem, 18px);
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.03em;
}

.p-single__content .content p {
	font-size: clamp(14px, 1.6rem, 16px);
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.03em;
}

.p-single__content .c-btn1 {
	margin: 8rem auto 0;
}

@media screen and (max-width: 1280px) {
	.p-single__content-inner {
		margin-top: -30rem;
	}
}

@media screen and (max-width: 1024px) {
	.p-single__content-inner {
		padding: 7rem 4rem 8rem;
	}
}

@media screen and (max-width: 767px) {
	.p-single__content {
		padding-bottom: 4rem;
	}

	.p-single__content-inner {
		margin-top: -15.6rem;
		padding: 3rem 2.4rem 4rem;
	}

	.p-single__content .date {
		margin-bottom: 0.9rem;
		font-size: clamp(13px, 1.4rem, 14px);
	}

	.p-single__content .title {
		margin-bottom: 2rem;
		padding-bottom: 1.2rem;
		font-size: clamp(20px, 2rem, 20px);
		line-height: 1.5;
		letter-spacing: 0;
	}

	.p-single__content .thumb {
		margin-top: 2rem;
	}

	.p-single__content .content {
		margin-top: 1.4rem;
	}

	.p-single__content .content h2 {
		font-size: clamp(18px, 1.8rem, 18px);
	}

	.p-single__content .content h3 {
		font-size: clamp(16px, 1.6rem, 16px);
	}

	.p-single__content .content p {
		font-size: clamp(13px, 1.4rem, 14px);
		line-height: calc(22 / 14);
		letter-spacing: 0;
	}

	.p-single__content .c-btn1 {
		margin: 5.5rem auto 0;
	}
}

/* Page single end */

/* Page Privacy Policy start */
.p-privacy .c-mainvisual__heading {
	top: 58%;
}

@media screen and (max-width: 767px) {
	.p-privacy .c-mainvisual__heading {
		top: 60%;
	}
}

.p-privacy__content {
	padding-block: 8.8rem 12rem;
}


.p-privacy__content .para.first {
	margin-bottom: 5.9rem;
}

.privacy-heading {
	margin: 4.9rem 0 1.7rem;
	padding-bottom: 1.5rem;
	font-size: clamp(20px, 2.4rem, 24px);
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.03em;
	color: #21407F;
	border-bottom: 1px solid #D8D5D5;
}

.privacy-list {
	margin: 0;
	padding-left: 1.5em;
	font-size: inherit;
	line-height: inherit;
	list-style-type: decimal;
}

.privacy-list li {
	font-size: clamp(14px, 1.6rem, 16px);
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.03em;
}

.privacy-list ol {
	padding-left: 1.5em;
	list-style-type: lower-alpha;
}

.privacy-list ol ol {
	list-style-type: lower-roman;
}

@media screen and (max-width: 767px) {
	.p-privacy__content {
		padding-block: 5.2rem 7.6rem;
	}

	.p-privacy__content .para.first {
		margin-bottom: 2.8rem;
	}

	.privacy-heading {
		margin: 2.7rem 0 1.3rem;
		padding-bottom: 1.2rem;
		font-size: clamp(20px, 2rem, 20px);
	}

	.privacy-list {
		padding-left: 1.2em;
	}

	.privacy-list li {
		font-size: clamp(13px, 1.4rem, 14px);
		line-height: calc(22 / 14);
		letter-spacing: 0;
	}
}

/* Page Privacy Policy end */