@import url("variables.css");

/*===================
    MAIN STYLE
====================*/
.home,
main {
	font-size: 1.6rem;
	font-family: var(--default);
	letter-spacing: 0.1em;
	line-height: calc(36 / 16);
	font-weight: 400;
	color: var(--para);
	font-feature-settings: "palt";
}

main {
	scroll-behavior: smooth;
	padding-top: 150px;
}

@media screen and (max-width: 1280px) {
	main {
		padding-top: 90px;
	}
}

@media screen and (max-width: 900px) {
	main {
		padding-top: 75px;
	}
}

.pc-only {
	display: block !important;
}

.pc-flex {
	display: flex !important;
}

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

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

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

	.pc-only,
	.pc-flex {
		display: none !important;
	}

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

	.sp-flex {
		display: flex !important;
	}
}

body {
	position: relative;
}

.no-scroll {
	overflow: hidden;
	touch-action: none;
}

.l-container {
	max-width: 1260px;
	width: 100%;
	margin-inline: auto;
	padding-inline: 30px;
}

.l-container-r360 {
	padding-right: max((50vw - 600px), 30px);
}

.l-container-l360 {
	padding-left: max((50vw - 600px), 30px);
}

.l-container-1000 {
	max-width: 1040px;
	width: 100%;
	margin-inline: auto;
	padding-inline: 20px;
}

/*===================
   Component start
====================*/
.c-heading1 .heading {
	margin-bottom: 18px;
	font-size: clamp(4rem, 4vw, 6.1rem);
	font-weight: 400;
	line-height: calc(72 / 61);
	letter-spacing: 0.1em;
}

.c-heading1 .subheading {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
	.c-heading1 .heading {
		margin-bottom: 6px;
	}

	.c-heading1 .subheading {
		font-size: 1.4rem;
	}
}

.c-btn1 {
	position: relative;
	width: 300px;
	height: 60px;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0;
	color: #000000;
	border-top: 1px solid #D1D1D1;
	border-bottom: 1px solid #D1D1D1;
}

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

.c-btn1:hover::after {
	right: 10px;
}

.c-btn1--transparent {
	background-color: rgba(255, 255, 255, 0.5);
}

.c-btn1.is-disable {
	opacity: 0.7;
	/* pointer-events: none; */
	cursor: not-allowed;
}

.c-btn1.is-disable:hover::after {
	right: 20px;
}

.c-btn1.is-disable button {
	pointer-events: none;
}


.c-btn2 {
	position: relative;
	width: 150px;
	height: 40px;
	padding: 10px 0;
	display: flex;
	align-items: center;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0;
	color: #000000;
	border-bottom: 1px solid #D1D1D1;
}

.c-btn2::after {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	content: "";
	width: 20px;
	height: 8px;
	background-image: url(../img/common/right-arrow.svg);
	background-repeat: no-repeat;
	background-size: contain;
	transition: all 0.3s ease;
}

.c-btn2:hover::after {
	right: -10px;
}

/*===================
   Component end
====================*/


/*===================
   Header start
====================*/
.c-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 150px;
	background: transparent;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.c-header__inner {
	height: 100%;
	padding: 20px 50px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
}

.c-header__logo {
	margin: 0;
	line-height: 1;
}

.c-header__logo-link {
	display: inline-block;
	text-decoration: none;
}

.c-header__logo-img {
	display: block;
	width: 422px;
	height: auto;
}

.c-header__nav {
	display: block;
	margin-bottom: 10px;
}

.c-header__nav-list {
	display: flex;
	align-items: center;
	gap: 60px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.c-header__nav-item {
	margin: 0;
	padding: 0;
}

.c-header__nav-link {
	position: relative;
	display: inline-flex;
	padding-block: 10px;
	align-items: center;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0em;
	text-decoration: none;
	white-space: nowrap;
}

.c-header__nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: #000000;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease;
}

.c-header__nav-link:hover::after,
.c-header__nav-link.is-active::after {
	transform: scaleX(1);
}

.c-header__menu-button {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	position: relative;
}

.c-header__menu-line {
	display: block;
	width: 28px;
	height: 2px;
	margin: 6px auto;
	background-color: #333;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.c-header.is-hidden {
	transform: translateY(-100%);
}

.c-header.is-top-page .c-header__logo-img {
	display: none;
}

@media screen and (max-width: 1440px) {
	.c-header__inner {
		padding: 20px 40px;
	}

	.c-header__nav-list {
		gap: 40px;
	}
}

@media screen and (max-width: 1280px) {
	.c-header {
		height: 90px;
	}

	.c-header__inner {
		padding: 16px 24px;
	}

	.c-header__logo-img {
		width: 220px;
	}

	.c-header__nav-list {
		gap: 32px;
	}
}

@media screen and (max-width: 1024px) {
	.c-header__nav-list {
		gap: 20px;
	}

	.c-header__nav-link {
		font-size: 1.4rem;
	}
}

@media screen and (max-width: 900px) {
	.c-header {
		height: 75px;
	}

	.c-header__inner {
		padding: 8px 10px;
	}

	.c-header.is-open {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.c-header::before {
		content: "";
		position: fixed;
		inset: 0;
		z-index: -1;
		pointer-events: none;

		background: transparent;
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);

		opacity: 0;
		transition: all 0.3s ease;
	}

	.c-header.is-open::before {
		opacity: 1;
	}

	.c-header__logo-img {
		width: 220px;
	}

	.c-header__menu-button {
		display: block;
	}

	/* .c-header__nav {
		position: absolute;
		top: 75px;
		left: 0;
		width: 100%;
		height: calc(100vh - 75px);
		margin-bottom: unset;
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	}

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

		background: transparent;
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		border-bottom: 1px solid transparent;
		transition: all 0.4s ease-out;
	} */
	.c-header__nav {
		position: fixed;
		top: 75px;
		left: 0;
		width: 100%;
		height: calc(100vh - 75px);

		/* background-color: transparent; */
		/* backdrop-filter: blur(10px); */
		/* -webkit-backdrop-filter: blur(10px); */

		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	}

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

	.c-header__nav-list {
		padding: 40px;
		flex-direction: column;
	}

	.c-header__nav-item {
		width: max-content;
	}

	.c-header__nav-link {
		display: flex;
		min-height: auto;
		font-size: 1.6rem;
	}

	.c-header__nav-list2 {
		margin-inline: 40px;
		padding: 40px 0px;
		border-top: 1px solid #D1D1D1;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.c-header.is-open .c-header__menu-line:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.c-header.is-open .c-header__menu-line:nth-child(2) {
		opacity: 0;
	}

	.c-header.is-open .c-header__menu-line:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}
}

@media screen and (max-width: 768px) {
	.c-header.is-top-page .c-header__logo-img {
		display: block;
	}
}

/*===================
   Header end
====================*/

/*===================
   Footer start
====================*/
.c-footer {
	border-top: 1px solid #D1D1D1;
}

.c-footer .c-header__inner {
	padding: 20px 50px 20px 90px;
	align-items: flex-start;
}

.c-footer .c-header__nav {
	margin-top: 16px;
	margin-bottom: unset;
}

.c-footer-meta {
	padding: 0px 50px 20px 90px;
	display: flex;
	justify-content: space-between;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0em;
}

.c-footer-meta .privacy {
	font-weight: 500;
}

@media screen and (max-width: 1440px) {
	.c-footer .c-header__inner {
		padding: 20px 40px;
	}

	.c-footer-meta {
		padding: 0px 40px 20px 40px;
	}
}

@media screen and (max-width: 1280px) {
	.c-footer .c-header__inner {
		padding: 16px 24px;
	}

	.c-footer-meta {
		padding: 0px 24px 16px 24px;
	}

	.c-footer .c-header__nav {
		margin-top: unset;
	}
}

@media screen and (max-width: 900px) {
	.c-footer .c-header__inner {
		justify-content: center;
	}

	.c-footer .c-header__logo-img {
		width: 290px;
	}

	.c-footer-meta {
		padding: 22px 24px 50px 24px;
		justify-content: center;
		letter-spacing: 0.1em;
	}

	.c-footer-meta .privacy {
		display: none;
	}
}

/*===================
   Footer end
====================*/

/*===================
   TOP page start
====================*/
.p-top__mv1 {
	position: relative;
	display: flex;
	z-index: 1;
}

.p-top__mv1-logo {
	flex: 1;
	margin-top: 70px;
	padding-inline: 130px 120px;
}

.p-top__mv1-image {
	width: 70.6%;
}

.p-top__mv2 {
	position: relative;
	margin-top: -208px;
}

.p-top__video {
	width: 50.5%;
	aspect-ratio: 968 / 649;
	overflow: hidden;
}

.p-top__video video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.p-top__mv2-text {
	position: absolute;
	top: 57%;
	right: 30px;
	transform: translateY(-50%);
	z-index: 1;
}

.p-top__mv2-text1 {
	margin-top: -43px;
	font-size: clamp(2.8rem, 3.5vw, 8rem);
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
	text-align: right;
}

.p-top__mv2-text2 {
	font-size: clamp(4.2rem, 5.5vw, 10.3rem);
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #EAF1F5;
	text-align: right;
}

@media screen and (max-width: 1600px) {
	.p-top__mv2 {
		margin-top: -100px;
	}

	.p-top__mv2-text1 {
		margin-top: -22px;
	}
}

@media screen and (max-width: 1440px) {
	.p-top__mv1-logo {
		padding-inline: 60px;
	}
}

@media screen and (max-width: 1024px) {
	.p-top__mv1-logo {
		margin-top: 40px;
		padding-inline: 40px;
	}

	.p-top__mv2 {
		margin-top: -60px;
	}

	.p-top__mv2-text1 {
		margin-top: -15px;
	}
}

@media screen and (max-width: 768px) {
	.p-top__mv {
		margin-top: 20px;
	}

	.p-top__mv1 {
		justify-content: flex-end;
	}

	.p-top__mv1-image {
		width: 82.5%;
	}

	.p-top__mv2 {
		margin-top: -82px;
	}

	.p-top__video {
		/* width: 91.5%;
		aspect-ratio: 357 / 338; */
		width: 63.5%;
		aspect-ratio: 2 /3;
	}

	.p-top__mv2-text {
		top: 75%;
		right: 10px;
	}
}


.p-top__intro {
	padding-inline: 75px;
	padding-block: 0px 130px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.p-top__intro-content {
	flex: 1;
}


.p-top__intro-text {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 60px;
}

.p-top__intro-text .heading {
	display: flex;
	align-items: flex-start;
	gap: 30px;
}

.p-top__intro-text .heading span {
	font-size: 3rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.18em;
	writing-mode: vertical-lr;
	text-orientation: mixed;
	white-space: nowrap;
}

.p-top__intro-text .subheading {
	transform: translateY(70px);
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.p-top__intro-text .subheading span {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.25em;
	writing-mode: vertical-lr;
	text-orientation: mixed;
	white-space: nowrap;
}

.p-top__intro .c-btn1 {
	margin: 120px auto 0;
}


.p-top__intro-gallery {
	width: 37.7%;
}

.p-top__intro-gallery .intro1 {
	width: 74%;
}

.p-top__intro-gallery .intro2 {
	width: 37%;
	margin: 225px 0 0 auto;
	display: block;
}

@media screen and (max-width: 1440px) {
	.p-top__intro {
		margin-top: 100px;
	}
}

@media screen and (max-width: 768px) {
	.p-top__intro {
		margin-top: unset;
		padding-block: 60px 60px;
		padding-inline: 30px;
		flex-direction: column;
		gap: 105px;
	}

	.p-top__intro-text {
		align-items: flex-start;
		gap: 36px;
	}

	.p-top__intro-text .subheading {
		transform: unset;
		padding-top: 55px;
	}

	.p-top__intro-text .heading span {
		font-size: 2.8rem;
	}

	.p-top__intro .c-btn1 {
		margin-top: 45px;
	}

	.p-top__intro-gallery {
		width: 100%;
	}

	.p-top__intro-gallery .intro1 {
		width: 89%;
	}

	.p-top__intro-gallery .intro2 {
		width: 52%;
		margin: 78px 10px 0 auto;
	}

}


.p-top__profile {
	padding-block: 100px;
}

.p-top__profile-inner {
	display: flex;
	align-items: flex-start;
	gap: 90px;
}

.p-top__profile-gallery {
	width: 48%;
}

.p-top__profile-gallery .profile2 {
	display: block;
	margin: 400px auto 0;
	width: 60%;
}

.p-top__profile-content {
	flex: 1;
	padding-top: 180px;
}

.p-top__profile-heading .heading {
	margin-bottom: 18px;
	font-size: 6.1rem;
	font-weight: 400;
	line-height: calc(72 / 61);
	letter-spacing: 0.1em;
}

.p-top__profile-heading .subheading {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: calc(24 / 16);
	letter-spacing: 0;
}

.p-top__profile-sec1 {
	margin-top: 120px;
}

.p-top__profile-sec1 .label {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0;
}

.p-top__profile-name {
	display: flex;
	align-items: center;
	gap: 24px;
}

.p-top__profile-name .name-jp {
	font-size: 3rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0;
}

.p-top__profile-name .name-en {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
}

.p-top__profile-sec1 .para {
	margin-top: 70px;
}

.p-top__profile-sec2 {
	margin-top: 105px;
}

.p-top__profile-sec2 .label {
	display: block;
	margin-bottom: 20px;
	font-size: 2rem;
	font-weight: 500;
	line-height: calc(29 / 20);
	letter-spacing: 0;
}

@media screen and (max-width: 1440px) {
	.p-top__profile-content {
		padding-top: 100px;
	}

	.p-top__profile-heading .heading {
		font-size: 5.5rem;
	}

	.p-top__profile-sec1,
	.p-top__profile-sec2 {
		margin-top: 80px;
	}
}

@media screen and (max-width: 1024px) {
	.p-top__profile-inner {
		gap: 40px;
	}

	.p-top__profile-gallery {
		width: 45%;
	}

	.p-top__profile-heading .heading {
		font-size: 5rem;
	}
}

@media screen and (max-width: 768px) {
	.p-top__profile {
		padding-block: 50px;
	}

	.p-top__profile .l-container-r360 {
		padding-left: 30px;
	}

	.p-top__profile-inner {
		flex-direction: column;
	}

	.p-top__profile-content {
		padding-top: unset;
	}

	.p-top__profile-heading .heading {
		margin-bottom: 6px;
		font-size: 4rem;
	}

	.p-top__profile-heading .subheading {
		font-size: 1.4rem;
	}

	.p-top__profile .profile1 {
		margin: 40px -30px 0;
		width: calc(100% + 60px);
		max-width: unset;
	}

	.p-top__profile-sec1 {
		margin-top: 20px;
	}

	.p-top__profile-name {
		align-items: flex-start;
		flex-direction: column;
		gap: 15px;
	}

	.p-top__profile-sec1 .para {
		margin-top: 50px;
	}

	.p-top__profile-sec2 {
		margin-top: 75px;
	}
}

.p-top__practice {
	position: relative;
	padding-block: 165px;
	overflow: hidden;
}

.p-top__practice::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-image: url(../img/top/practice-areas-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -2;
}

.p-top__practice-areas {
	margin: 90px auto 0;
	max-width: 1080px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 80px 40px;
}

.p-top__practice-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
}

.p-top__practice-item img {
	width: 200px;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
}

.p-top__practice-item span {
	font-size: 2rem;
	font-weight: 500;
	line-height: calc(29 / 20);
	letter-spacing: 0;
	text-align: center;
}


.p-top__practice .c-btn1 {
	margin: 150px auto 0;
}

.p-top__practice .blur1 {
	position: absolute;
	bottom: 0;
	right: 0;
	transform: translateX(40%);
	width: 47%;
	z-index: -1;
}

.p-top__practice .blur2 {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateX(-40%);
	width: 70%;
	z-index: -1;
}

@media screen and (max-width: 768px) {
	.p-top__practice {
		padding-block: 108px;
	}

	.p-top__practice::after {
		height: 80%;
		background-image: url(../img/top/practice-areas-bg-sp.png);
	}

	.p-top__practice-areas {
		grid-template-columns: repeat(2, 1fr);
		gap: 60px 20px;
	}

	.p-top__practice-item {
		gap: 16px;
	}

	.p-top__practice-item img {
		width: 148px;
	}

	.p-top__practice-item span {
		font-size: 1.6rem;
	}

	.p-top__practice .c-btn1 {
		margin: 80px auto 0;
	}

	.p-top__practice .blur1 {
		transform: translate(33%, 18%);
		width: 180%;
	}

	.p-top__practice .blur2 {
		display: none;
	}
}


.p-top__news {
	padding-block: 138px;
	overflow: hidden;
}

.p-top__news-inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
}

.p-top__news .c-btn2 {
	margin-top: 80px;
}

.p-top__news-content {
	flex: 1;
	max-width: 800px;
}

@media screen and (max-width: 768px) {
	.p-top__news {
		padding-block: 100px;
	}

	.p-top__news-inner {
		flex-direction: column;
		gap: 35px;
	}

	.p-top__news-content {
		width: 100%;
	}
}

.c-news-item {
	position: relative;
	padding: 20px 50px 20px 0;
	display: block;
	border-bottom: 1px solid #D1D1D1;
}

.c-news-item-info {
	display: flex;
	align-items: center;
	gap: 45px;
}

.c-news-item-date,
.c-news-item-cats>span {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
}

.c-news-item-cats>span {
	display: inline-block;
	padding: 6px 10px;
	background-color: #F0F0F0;
}

.c-news-item-title {
	margin-top: 10px;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: calc(36 / 16);
	letter-spacing: 0.1em;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;

	overflow: hidden;
}

.c-news-item::after {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	content: "";
	width: 20px;
	height: 8px;
	background-image: url(../img/common/right-arrow.svg);
	background-repeat: no-repeat;
	background-size: contain;
	transition: all 0.3s ease;
}

.c-news-item:hover::after {
	right: 10px;
}

@media screen and (max-width: 768px) {
	.c-news-item-info {
		gap: 16px;
	}
}


.p-top__office {
	padding-block: 200px 100px;
	background: linear-gradient(to bottom,
			rgba(220, 228, 229, 0.34),
			rgba(255, 255, 255, 0.34));
	overflow: hidden;
}

.p-top__office-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.p-top__office-main {
	flex: 1;
	min-width: 675px;
}

.p-top__office-title {
	margin: 100px 0 30px;
	font-size: 2rem;
	font-weight: 500;
	line-height: calc(29 / 20);
	letter-spacing: 0;
}

.p-top__office-item {
	padding-block: 12px;
	display: flex;
	align-items: flex-start;
	gap: 32px;
}

.p-top__office-item .label,
.p-top__office-item .text {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: calc(26 / 16);
	letter-spacing: 0.1em;
}

.p-top__office-item .label {
	min-width: 90px;
}

.p-top__office-item .maps {
	display: block;
	width: max-content;
	margin-left: auto;
	font-size: 1.4rem;
	line-height: calc(36 / 14);
	letter-spacing: 0.1em;
}

.p-top__office-image {
	position: relative;
	width: 40%;
	margin-right: 150px;
}

.p-top__office-image::after {
	position: absolute;
	top: 50%;
	left: 25%;
	width: 180%;
	height: 180%;
	transform: translateY(-50%);
	content: "";
	background-image: url(../img/top/office-blur.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.p-top__office-image img {
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 1440px) {
	.p-top__office-main {
		min-width: unset;
	}

	.p-top__office-image {
		margin-right: 100px;
	}
}

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

	.p-top__office-image {
		margin-right: 30px;
	}
}

@media screen and (max-width: 768px) {
	.p-top__office {
		padding-block: 60px;
	}

	.p-top__office .l-container-l360 {
		padding-left: unset;
	}

	.p-top__office-inner {
		flex-direction: column;
		gap: 90px;
	}

	.p-top__office-main {
		padding-inline: 30px;
	}

	.p-top__office-title {
		margin: 50px 0 30px;
	}

	.p-top__office-item {
		gap: 10px;
	}

	.p-top__office-image {
		width: 100%;
		margin-right: 0;
	}

	.p-top__office-image img {
		width: 73%;
	}

	.p-top__office-image::after {
		width: 100%;
		height: 150%;
	}
}

.c-contact {
	margin: 150px auto;
	padding-block: 68px 85px;
	max-width: 1200px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-top: 1px solid #D1D1D1;
	border-bottom: 1px solid #D1D1D1;
}

.c-contact .heading {
	font-size: 3rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.2em;
}

.c-contact .desc {
	margin: 35px 0 24px;
	text-align: center;
}

.c-contact .tel-fax {
	margin-top: 12px;
	font-size: 3rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.2em;
}

.c-contact .tel-fax .label {
	font-size: 2.6rem;
}

.c-contact .time {
	margin-top: 24px;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
}

.c-contact .c-btn1 {
	margin-top: 68px;
}

@media screen and (max-width: 768px) {
	.c-contact {
		margin: 100px auto 0;
		padding-inline: 30px;
		border-bottom: unset;
	}

	.c-contact .desc {
		line-height: calc(26 / 16);
		text-align: left;
	}

	.c-contact .tel-fax {
		font-size: 2.5rem;
	}

	.c-contact .tel-fax .label {
		font-size: 2.1rem;
	}

	.c-contact .time {
		font-size: 1.6rem;
	}
}

/*===================
   TOP page end
====================*/

.c-page-heading {
	padding: 140px 6.6%;
}

.c-page-heading .en {
	margin-bottom: 18px;
	font-size: clamp(4rem, 4vw, 6.1rem);
	font-weight: 400;
	line-height: calc(72 / 61);
	letter-spacing: 0.1em;
}

.c-page-heading .jp {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
	.c-page-heading {
		padding: 80px 30px;
	}

	.c-page-heading .en {
		margin-bottom: 6px;
	}

	.c-page-heading .jp {
		font-size: 1.4rem;
	}
}

/*===================
   About Us page start
====================*/
.p-about__main {
	padding-bottom: 220px;
	background: linear-gradient(to top,
			rgba(220, 228, 229, 0.34),
			rgba(255, 255, 255, 0.34));

	display: flex;
	align-items: flex-start;
	gap: 250px;
}

.p-about__main-side {
	flex: 1;
	margin-top: 240px;
}

.p-about__main-content {
	width: 57.5%;
	padding-right: 15px;
}

.p-about__main-subheading {
	margin-left: auto;
	width: max-content;
	display: flex;
	align-items: flex-start;
	gap: 30px;
}

.p-about__main-subheading span {
	font-size: 3rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.18em;
	writing-mode: vertical-lr;
	text-orientation: mixed;
	white-space: nowrap;
}

.p-about__main .leaves-shadow {
	width: 75%;
	margin-top: 90px;
}

.p-about__main-heading {
	margin-left: auto;
	display: flex;
	flex-direction: column;
}

.p-about__main-heading .text2 {
	/* font-size: clamp(4.2rem, 5.5vw, 10.3rem); */
	font-size: clamp(3rem, 4.5vw, 8rem);
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #EAF1F5;
	text-align: right;
}

.p-about__main-heading .text1 {
	margin-top: -43px;
	padding-right: 12px;
	/* font-size: clamp(3.2rem, 4.5vw, 8rem); */
	font-size: clamp(2.8rem, 3.8vw, 6rem);
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
	text-align: right;
}

.p-about__main-content .content {
	margin-top: 184px;
	max-width: 720px;
}

.p-about__main-content .content>.para:not(:first-of-type) {
	margin-top: 60px;
}

.p-about__main .c-btn2 {
	margin: 65px 0 0 auto;
}

@media screen and (max-width: 1600px) {
	.p-about__main-heading .text1 {
		margin-top: -28px;
	}
}

@media screen and (max-width: 1440px) {
	.p-about__main {
		gap: 100px;
	}

	.p-about__main-content {
		width: 65%;
	}

	.p-about__main-heading .text1 {
		margin-top: -24px;
	}
}

@media screen and (max-width: 1024px) {
	.p-about__main-heading .text1 {
		margin-top: -16px;
	}

	.p-about__main {
		gap: 60px;
	}

	.p-about__main-content .content {
		margin-top: 120px;
	}
}

@media screen and (max-width: 900px) {
	.p-about__main {
		padding-bottom: 100px;
		flex-direction: column;
		gap: 0;
	}

	.p-about__main-side {
		margin-top: unset;
	}

	.p-about__main-subheading {
		position: relative;
		margin-inline: auto;
	}

	.p-about__main .leaves-shadow {
		width: 58%;
		margin-top: -20%;
		aspect-ratio: 226 / 358;
	}

	.p-about__main-content {
		width: 100%;
		padding-right: unset;
		margin-top: -108px;
	}

	.p-about__main-content .content {
		max-width: unset;
		margin-top: 80px;
		padding-inline: 30px;
	}

	.p-about__main-content .content>.para {
		text-align: justify;
	}

	.p-about__main-content .content>.para:not(:first-of-type) {
		margin-top: 40px;
	}

	.p-about__main .c-btn2 {
		margin: 50px 0 0 auto;
	}

}

@media screen and (max-width: 680px) {
	.p-about__main .leaves-shadow {
		margin-top: -38%;
	}
}

/*===================
   About Us page end
====================*/


/*===================
   Single start
====================*/
.single-info {
	display: flex;
	align-items: center;
	gap: 45px;
}

.single-date,
.single-cats>span {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
}

.single-cats>span {
	display: inline-block;
	padding: 6px 10px;
	background-color: #F0F0F0;
}

.single-nav {
	margin: 150px 0 0 auto;
	width: max-content;
	display: flex;
	gap: 60px;
}

.c-content {
	margin-top: 40px;
}

.c-content h1 {
	margin-block: 40px 80px;
	font-size: 2.6rem;
	font-weight: 500;
	line-height: calc(46 / 26);
	letter-spacing: 0;
}

.c-content h2 {
	margin-block: 60px 20px;
	padding-block: 14px;
	font-size: 2rem;
	font-weight: 500;
	line-height: calc(29 / 20);
	letter-spacing: 0;
	border-bottom: 1px solid #D1D1D1;
}

.c-content h3 {
	margin-block: 60px 20px;
	padding-block: 12px;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: calc(26 / 18);
	letter-spacing: 0;
	border-bottom: 1px solid #D1D1D1;
}

.c-content ul {
	margin-block: 60px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.c-content ul li {
	position: relative;
	padding-left: 30px;
}

.c-content ul li::before {
	position: absolute;
	top: 0px;
	left: 0;
	content: "●";
}

.c-content>p {
	margin-top: 20px;
}

.c-content pre {
	margin-top: 20px;
	font-family: var(--default);
	white-space: normal;
}

.c-content .alignright {
	display: block;
	margin-left: auto;
}

.c-content .aligncenter {
	display: block;
	margin-inline: auto;
}

@media screen and (max-width: 768px) {
	.single-info {
		gap: 16px;
	}

	.single-nav {
		margin: 80px 0 0 auto;
		width: 100%;
		justify-content: space-between;
		gap: 20px;
	}

	.c-content h2,
	.c-content h3 {
		margin-block: 40px 20px;
	}

	.c-content ul {
		padding-block: 40px;
		gap: 12px;
	}
}

/*===================
   Single end
====================*/
.archive .pagination {
	margin-top: 40px;
}

.archive .nav-links {
	width: max-content;
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 6px;
}

.archive .page-numbers {
	width: 20px;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #D1D1D1;
	text-align: center;
}

.archive .page-numbers.current {
	color: #000000;
	text-decoration: underline;
}

.archive .page-numbers.next,
.archive .page-numbers.prev {
	display: block;
	width: 20px;
	height: 20px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.archive .page-numbers.next {
	background-image: url(../img/common/black-right-arrow.png);
}

.archive .page-numbers.prev {
	background-image: url(../img/common/black-left-arrow.png);
}

.archive-main .c-btn2 {
	margin: 80px 0 0 auto;
}

/*===================
   Archive start
====================*/
/*===================
   Archive end
====================*/